/*
  Static B2B frontend foundation.
  All shared and desktop-first styles live here. Responsive overrides live in media.css.
*/

:root {
  --forest: #173e2d;
  --forest-dark: #0f2b20;
  --ink: #17211b;
  --paper: #ffffff;
  --parchment: #f3f0e8;
  --muted: #69736d;
  --line: #d7ddd8;
  --accent: #c56f36;
  --max: 1600px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
iframe,
video {
  display: block;
  max-width: 100%;
}

img {
  object-fit: cover;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Baskerville, Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 50px;
}

.page-shell {
  min-block-size: 60vh;
}

.section {
  padding: 90px 0;
}


.section--dark {
  color: var(--paper);
  background: var(--forest-dark);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.section-heading__copy {
  max-width: 100%;
}

.section-heading__eyebrow,
.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading h2,
.display-title {
  max-width: 900px;
  font-size: clamp(38px, 4vw, 50px);
}

.section-heading p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
}

.section--dark .section-heading p,
.section--dark .section-heading__eyebrow {
  color: #cad5cd;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-block-size: 44px;
  color: var(--forest);
  font-weight: 700;
}

.text-link::after {
  content: "\2197";
  color: var(--accent);
}

.section--dark .text-link {
  color: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 50px;
  padding: 13px 24px;
  border: 1px solid var(--forest);
  border-radius: 0;
  color: var(--paper);
  background: var(--forest);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  color: var(--paper);
  border-color: var(--accent);
  background: var(--accent);
}

.btn:active {
  color: var(--paper);
  background: var(--forest-dark);
}

.btn--outline {
  color: var(--forest);
  background: transparent;
}

.btn--light {
  color: var(--forest-dark);
  border-color: var(--paper);
  background: var(--paper);
}

.btn--light:hover {
  color: var(--paper);
}

.hero-slide .btn--outline {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-slide .btn--outline:hover {
  border-color: var(--accent);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: var(--paper);
}

.site-header.is-sticky {
  box-shadow: 0 12px 30px rgba(23, 33, 27, 0.09);
}

.header-top {
  color: var(--paper);
  background: var(--forest-dark);
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-block-size: 38px;
  gap: 24px;
}

.header-top__inner p,
.header-top__links a {
  font-size: 16px;
}

.header-top__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-main {
  border-bottom: 1px solid var(--line);
}

.header-main__inner {
  display: flex;
  align-items: center;
  min-block-size: 82px;
  gap: 38px;
}

.site-logo {
  display: inline-flex;
  width: 22%;
  align-items: center;
  min-block-size: 50px;
  gap: 14px;
  color: var(--forest-dark);
}

.site-logo:hover {
  color: var(--forest-dark);
}

.header-main .site-logo__image {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--forest);
  font-family: Baskerville, Georgia, serif;
  font-size: 21px;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__text strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.site-logo__text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 16px;
}

.main-nav {
  display: flex;
  width: 60%;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
}

.main-nav__list {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

.main-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav__link {
  display: inline-flex;
  align-items: center;
  min-block-size: 44px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.main-nav__link.is-active,
.main-nav__link:hover {
  color: var(--accent);
}

.main-nav__item--has-menu>.main-nav__link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  visibility: hidden;
  min-width: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(23, 33, 27, 0.12);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.main-nav__item:hover>.nav-dropdown,
.main-nav__item:focus-within>.nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown li {
  position: relative;
}

.nav-dropdown>li>a {
  display: block;
  position: relative;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  white-space: nowrap;
}

.nav-dropdown>li:last-child>a {
  border-bottom: 0;
}

.nav-dropdown--products {
  min-width: 250px;
}

.nav-dropdown>li>a:hover,
.nav-dropdown>li>a:focus-visible {
  color: var(--forest);
  background: var(--parchment);
}

.header-actions {
  display: flex;
  width: 18%;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-button,
.search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.icon-button:hover,
.menu-button:hover,
.search-close:hover {
  color: var(--paper);
  border-color: var(--forest);
  background: var(--forest);
}

.icon-button svg,
.menu-button svg,
.search-close svg,
.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-button {
  display: none;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(15, 43, 32, 0.94);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-panel.is-open {
  visibility: visible;
  opacity: 1;
}

.search-panel__inner {
  position: relative;
  width: min(900px, 100%);
  padding: 70px;
  background: var(--paper);
}

.search-panel__inner h2 {
  margin-bottom: 28px;
  font-size: 42px;
}

.search-form {
  display: flex;
  gap: 12px;
}

.search-form input {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
}

.search-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 180;
  visibility: hidden;
  width: min(420px, 90vw);
  padding: 24px;
  color: var(--paper);
  background: var(--forest-dark);
  box-shadow: -20px 0 50px rgba(15, 43, 32, 0.2);
  opacity: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mobile-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-panel__head strong {
  font-family: Baskerville, Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.mobile-panel__close {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}

.mobile-nav a,
.mobile-nav button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-block-size: 50px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.mobile-nav__submenu {
  display: none;
  padding-left: 18px;
}

.mobile-nav__submenu.is-open {
  display: block;
}

.mobile-nav__submenu .mobile-nav__overview {
  color: var(--accent);
  font-weight: 700;
}

.swiper {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  height: 100%;
  font-size: 0;
  white-space: nowrap;
  transition-property: transform;
}

.swiper-slide {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  vertical-align: top;
  white-space: normal;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--paper);
  background: rgba(15, 43, 32, 0.3);
  cursor: pointer;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 30px;
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  font-size: 24px;
}

.swiper-button-prev::before {
  content: "\2190";
}

.swiper-button-next::before {
  content: "\2192";
}

.swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 28px;
  z-index: 10;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 9px;
}

.swiper-pagination-bullet {
  display: block;
  width: 34px;
  height: 3px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--paper);
}

.hero-slider,
.hero-slide {
  min-block-size: calc(100vh - 120px);
}

.hero-slide {
  overflow: hidden;
}

.hero-slide__media,
.page-banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .hero-slide__media {
  left: -14%;
  width: 128%;
  will-change: transform;
}

.hero-slide__media::after,
.page-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 43, 32, 0.9) 0%, rgba(15, 43, 32, 0.62) 46%, rgba(15, 43, 32, 0.12) 100%);
}

.hero-slide__media picture,
.hero-slide__media img,
.page-banner__media picture,
.page-banner__media img {
  width: 100%;
  height: 100%;
}

.hero-slide__media img {
  object-fit: cover;
}

.hero-slide__content,
.page-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-block-size: inherit;
  align-items: center;
}

.hero-slide__copy {
  max-width: 850px;
  padding: 80px 0 120px;
  color: var(--paper);
}

.hero-slide__copy h1,
.hero-slide__copy h2 {
  max-width: 780px;
  font-size: 50px;
}

.hero-slide__copy p {
  max-width: 620px;
  margin: 26px 0 34px;
  font-size: 19px;
}


.detail-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.page-banner {
  position: relative;
  min-block-size: 480px;
  color: var(--paper);
  background: var(--forest-dark);
  overflow: hidden;
}

.page-banner__content {
  min-block-size: 480px;
}

.page-banner__copy {
  max-width: 800px;
  padding: 70px 0;
}

.page-banner__copy h1 {
  font-size: 50px;
}

.banner-description {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.page-banner__copy > .btn,
.page-banner__copy > .search-form {
  margin-top: 26px;
}

.breadcrumbs {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.breadcrumbs__inner {
  display: flex;
  min-block-size: 60px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 16px;
}

.breadcrumbs__inner span:not(:last-child)::after,
.breadcrumbs__inner a::after {
  content: "/";
  margin-left: 10px;
  color: var(--line);
}

.img-content .img_box {
  overflow: hidden;
  position: relative;
  display: block;
  padding-top: 50%;
  background: var(--line);
}

.img_box img,
.img_box iframe,
.img_box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img_box img {
  transition: transform 0.5s ease;
}

a:hover .img_box img,
.card:hover .img_box img {
  transform: scale(1.035);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}

.card {
  display: flex;
  width: calc(33.333% - 32px);
  min-width: 0;
  margin: 16px;
  flex-direction: column;
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.section--tint .card {
  background: transparent;
}

.card__body {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 25px 0 10px;
}

.card__meta {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.card .text-link {
  margin-top: auto;
}

.card--featured {
  width: calc(66.666% - 32px);
}

.card--featured .img_box {
  padding-top: 48%;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.split-layout--top {
  align-items: flex-start;
}

.split-layout--reverse {
  flex-direction: row-reverse;
}

.split-layout__media,
.split-layout__content {
  width: 50%;
  min-width: 0;
}

.split-layout__media .img_box {
  padding-top: 78%;
}

.split-layout__content h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4vw, 50px);
}

.split-layout__content h3 {
  margin-bottom: 18px;
  font-size: 36px;
}

.split-layout__content p {
  margin-bottom: 20px;
  color: var(--muted);
}

.feature-list {
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  width: 38%;
  font-weight: 700;
}

.feature-list span {
  color: var(--muted);
}

.category-tabs,
.filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.category-tabs button,
.filter-links a {
  display: inline-flex;
  align-items: center;
  min-block-size: 44px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  cursor: pointer;
}

.category-tabs button.is-active,
.category-tabs button:hover,
.filter-links a.is-active,
.filter-links a:hover {
  color: var(--paper);
  border-color: var(--forest);
  background: var(--forest);
}

/* Homepage category product carousels */
.home-products {
  overflow: hidden;
}

.product-carousel__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.product-carousel__toolbar .category-tabs {
  margin-bottom: 0;
}

.product-carousel__counter {
  display: flex;
  min-width: 150px;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-family: Baskerville, Georgia, serif;
  font-size: 22px;
}

.product-carousel__counter i {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--line);
}

.product-carousel__counter span:first-child {
  color: var(--forest);
}

.product-carousel__panel {
  position: relative;
}

.product-carousel__panel[hidden] {
  display: none;
}

.product-list-slider {
  width: 100%;
  overflow: hidden;
}

.product-list-slider .swiper-wrapper {
  align-items: stretch;
}

.product-slide-card {
  height: auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.product-slide-card>a {
  display: flex;
  height: 100%;
  min-block-size: 520px;
  flex-direction: column;
  color: var(--ink);
}

.product-slide-card__media {
  position: relative;
  display: block;
  background: #aab2ae;
  overflow: hidden;
}

.product-slide-card__media .img_box {
  padding-top: 74%;
}

.product-slide-card__media .img_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 43, 32, 0), rgba(15, 43, 32, 0.2));
  transition: background-color 0.4s ease;
}

.product-slide-card__number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.product-slide-card__body {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 52px 28px 0;
  transition: color 0.35s ease, background-color 0.35s ease, padding-left 0.35s ease;
}

.product-slide-card__body small {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-slide-card__body strong {
  margin: 9px 0 13px;
  font-family: Baskerville, Georgia, serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.08;
}

.product-slide-card__body>span {
  color: var(--muted);
  transition: color 0.35s ease;
}

.product-slide-card__body i {
  position: absolute;
  top: 26px;
  right: 18px;
  color: var(--accent);
  font-size: 21px;
  font-style: normal;
}

.product-slide-card>a:hover,
.product-slide-card>a:focus-visible {
  color: var(--paper);
}

.product-slide-card>a:hover .product-slide-card__body,
.product-slide-card>a:focus-visible .product-slide-card__body {
  padding-left: 22px;
  background: var(--forest);
}

.product-slide-card>a:hover .product-slide-card__body>span,
.product-slide-card>a:focus-visible .product-slide-card__body>span {
  color: #cedbd3;
}

.product-slide-card>a:hover .img_box img,
.product-slide-card>a:focus-visible .img_box img {
  transform: scale(1.04);
}

.product-carousel__footer {
  display: flex;
  min-block-size: 94px;
  align-items: flex-end;
  gap: 38px;
  margin-top: 26px;
}

.product-carousel__progress-group {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}

.product-carousel__progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-carousel__progress {
  --carousel-progress: 33.333%;
  position: relative;
  height: 12px;
  background: var(--parchment);
  cursor: ew-resize;
  overflow: hidden;
}

.product-carousel__progress::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--carousel-progress);
  background: linear-gradient(90deg, var(--forest) 0%, var(--forest) calc(100% - 9px), var(--accent) calc(100% - 9px));
  transition: width 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-carousel__progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(16.666% - 1px), rgba(255, 255, 255, 0.52) calc(16.666% - 1px), rgba(255, 255, 255, 0.52) 16.666%);
  pointer-events: none;
}

.product-carousel__nav {
  display: flex;
  width: auto;
  gap: 8px;
}

.product-carousel__nav button {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
}

.product-carousel__nav button:hover,
.product-carousel__nav button:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.product-carousel__nav button.swiper-button-disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.service-selector__media .img_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 43, 32, 0.04), rgba(15, 43, 32, 0.72));
  pointer-events: none;
  transition: background 0.45s ease;
}

/* Homepage service selector */
.service-selector {
  display: flex;
  align-items: stretch;
  gap: clamp(48px, 7vw, 112px);
}

.service-selector__media {
  position: relative;
  width: 48%;
  min-width: 0;
  background: #7f8d86;
  overflow: hidden;
}

.service-selector__media .img-content,
.service-selector__media .img_box {
  display: block;
  height: 100%;
}

/* .service-selector__media .img_box {
  padding-top: 0;
} */

.service-selector__media .img_box .service-selector__image {
  z-index: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 0.48s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.service-selector__media .img_box .service-selector__image.is-active {
  opacity: 0.72;
  transform: scale(1);
}

.service-selector__media[data-tone="configure"] .img_box::after {
  background: linear-gradient(180deg, rgba(197, 111, 54, 0.04), rgba(89, 53, 30, 0.72));
}

.service-selector__media[data-tone="support"] .img_box::after {
  background: linear-gradient(180deg, rgba(28, 51, 61, 0.04), rgba(19, 41, 49, 0.74));
}

.service-selector__media-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper);
}

.service-selector__media-label span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-selector__media-label strong {
  max-width: 360px;
  font-family: Baskerville, Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  text-align: right;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.service-selector__media-label strong.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.service-selector__content {
  display: flex;
  width: 52%;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.service-selector__content h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4vw, 50px);
}

.service-selector__content>p {
  max-width: 680px;
  color: var(--muted);
}

.service-selector__list {
  margin: 32px 0 22px;
  border-top: 1px solid var(--line);
}

.service-option {
  position: relative;
  display: flex;
  min-block-size: 82px;
  align-items: center;
  gap: 22px;
  padding: 18px 56px 18px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color 0.3s ease, background-color 0.3s ease, padding-left 0.3s ease;
}

.service-option:hover,
.service-option:focus-visible,
.service-option.is-active {
  padding-left: 24px;
  color: var(--paper);
  background: var(--forest);
}

.service-option__number {
  width: 34px;
  color: var(--accent);
  font-weight: 700;
}

.service-option strong {
  width: 30%;
  font-size: 17px;
}

.service-option > span:nth-of-type(2) {
  flex: 1;
  min-width: 0;
  color: var(--muted);
  transition: color 0.3s ease;
}

.service-option:hover>span:nth-of-type(2),
.service-option:focus-visible>span:nth-of-type(2),
.service-option.is-active>span:nth-of-type(2) {
  color: #cedbd3;
}

.service-option i {
  position: absolute;
  right: 20px;
  color: var(--accent);
  font-size: 20px;
  font-style: normal;
}

/* Homepage solution stories: alternating project records with content-driven height. */
.solution-showcase {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.solution-story {
  display: flex;
  align-items: stretch;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: #263d34;
  overflow: hidden;
}

.solution-story:nth-child(even) .solution-story__copy {
  order: -1;
}

.solution-story .img-content {
  display: block;
  width: 56%;
  flex: 0 0 56%;
}

.solution-story .img_box {
  display: block;
  height: 100%;
  padding-top: 56.25%;
}

.solution-story .img_box img {
  filter: saturate(0.65) contrast(1.04);
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.75s ease;
}

.solution-story__copy {
  display: flex;
  width: 44%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px) clamp(28px, 5vw, 80px);
}

.solution-story__copy small {
  color: #e7a173;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-story__copy strong {
  max-width: 620px;
  margin-top: 14px;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 400;
  line-height: 1.08;
}

.solution-story__copy > span {
  max-width: 520px;
  margin-top: 18px;
  color: #d4ded7;
}

.solution-story__copy i {
  margin-top: 30px;
  color: var(--accent);
  font-size: 22px;
  font-style: normal;
}

.solution-story:hover,
.solution-story:focus-visible {
  color: var(--paper);
}

.solution-story:hover .img_box img,
.solution-story:focus-visible .img_box img {
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.045);
}

/* Homepage case editorial */
.case-editorial {
  display: flex;
  min-block-size: 610px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.case-editorial__feature {
  position: relative;
  display: block;
  width: 70%;
  color: var(--paper);
  background: var(--forest-dark);
  overflow: hidden;
}

.case-editorial__feature .img-content,
.case-editorial__feature .img_box {
  display: block;
  height: 100%;
}

/* .case-editorial__feature .img_box {
  padding-top: 0;
} */

.case-editorial__feature .img_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 43, 32, 0.02), rgba(15, 43, 32, 0.9));
}

.case-editorial__feature-copy {
  position: absolute;
  right: 40px;
  bottom: 38px;
  left: 40px;
  z-index: 2;
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
}

.case-editorial__feature-copy small {
  color: #e6a171;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-editorial__feature-copy strong {
  margin: 10px 0 16px;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(40px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.04;
}

.case-editorial__feature-copy>span {
  max-width: 620px;
  color: #d4ded7;
}

.case-editorial__feature-copy i {
  margin-top: 24px;
  color: var(--paper);
  font-style: normal;
  font-weight: 700;
}

.case-editorial__feature:hover,
.case-editorial__feature:focus-visible {
  color: var(--paper);
}

.case-editorial__index {
  display: flex;
  width: 30%;
  flex-direction: column;
  background: var(--parchment);
}

.case-editorial__index-head {
  display: flex;
  min-block-size: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-editorial__index a {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 26px 56px 26px 26px;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.case-editorial__index a:last-child {
  border-bottom: 0;
}

.case-editorial__index a>span {
  color: var(--accent);
  font-weight: 700;
}

.case-editorial__index a strong {
  margin: 7px 0;
  font-family: Baskerville, Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.case-editorial__index a small {
  color: var(--muted);
  font-size: 16px;
}

.case-editorial__index a i {
  position: absolute;
  right: 24px;
  color: var(--accent);
  font-size: 20px;
  font-style: normal;
}

.case-editorial__index a:hover,
.case-editorial__index a:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.case-editorial__index a:hover small,
.case-editorial__index a:focus-visible small {
  color: #cedbd3;
}

/* Homepage company metrics */
.home-metrics {
  display: flex;
  align-items: stretch;
  margin-top: 72px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.home-figures-section {
  padding-top: 0;
}

.home-figures-section .home-metrics {
  margin-top: 0;
}

.home-metrics__intro {
  display: flex;
  width: 32%;
  flex-direction: column;
  justify-content: center;
  padding: 38px 42px 38px 0;
  border-right: 1px solid var(--line);
}

.home-metrics__intro h3 {
  margin-bottom: 14px;
  font-size: 34px;
}

.home-metrics__intro p {
  color: var(--muted);
}

.home-metrics__list {
  display: flex;
  width: 68%;
}

.home-metric {
  display: flex;
  width: 25%;
  min-block-size: 250px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.home-metric:last-child {
  border-right: 0;
}

.home-metric strong {
  display: block;
  margin-bottom: auto;
  color: var(--forest);
  font-family: Baskerville, Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

.home-metric>span {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 700;
}

.home-metric small {
  color: var(--muted);
  font-size: 16px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.pagination .is-current,
.pagination a:hover {
  color: var(--paper);
  border-color: var(--forest);
  background: var(--forest);
}

.catalog-layout,
.article-layout,
.contact-layout {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.catalog-sidebar,
.article-sidebar {
  position: sticky;
  top: 30px;
  width: 290px;
  min-width: 0;
}

.catalog-main,
.article-main {
  width: calc(100% - 350px);
  min-width: 0;
}

.sidebar-title {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  font-size: 26px;
}

.category-tree>li {
  border-bottom: 1px solid var(--line);
}

.category-tree__parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-block-size: 50px;
  gap: 12px;
}

.category-tree__toggle {
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}

.category-tree__toggle::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
}

.category-tree__toggle[aria-expanded="true"]::after {
  content: "\2212";
}

.category-tree__children {
  display: none;
  padding: 2px 0 18px 18px;
}

.category-tree__children.is-open {
  display: block;
}

.category-tree__branch-label {
  display: block;
  padding: 9px 0 7px;
  color: var(--ink);
  font-weight: 700;
}

.category-tree__parent .category-tree__branch-label {
  flex: 1 1 auto;
}

.category-tree__branch-label:hover,
.category-tree__branch-label:focus-visible {
  color: var(--accent);
}

.faq-layout,
.inquiry-layout {
  display: flex;
  align-items: stretch;
  gap: 70px;
}

.faq-layout__media,
.faq-layout__content,
.inquiry-layout__form,
.inquiry-layout__media {
  width: 50%;
  min-width: 0;
}

.faq-layout__media .img_box,
.inquiry-layout__media .img_box {
  height: 100%;
  min-block-size: 520px;
  padding-top: 0;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-block-size: 68px;
  padding: 16px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item__question::after {
  content: "+";
  width: auto;
  color: var(--accent);
  font-size: 28px;
  font-weight: 400;
}

.faq-item__question[aria-expanded="true"]::after {
  content: "\2212";
}

.faq-item__answer {
  display: none;
  padding: 0 0 22px;
  color: var(--muted);
}

.faq-item__answer.is-open {
  display: block;
}

.form-intro {
  margin-bottom: 28px;
}

.form-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 3vw, 44px);
}

.form-intro p {
  color: var(--muted);
}

.form-row {
  display: flex;
  gap: 18px;
}

.form-field {
  width: 100%;
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-block-size: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
}

.form-field textarea {
  min-block-size: 145px;
  resize: vertical;
}

/* Shared project inquiry workspace */
.inquiry-section {
  padding: 120px 0;
  background: var(--parchment);
}

.inquiry-shell {
  display: flex;
  min-block-size: 760px;
  background: var(--forest-dark);
}

.inquiry-story {
  display: flex;
  width: 44%;
  min-width: 0;
  padding: clamp(44px, 4.4vw, 72px);
  color: var(--paper);
  flex-direction: column;
}

.inquiry-story h2 {
  max-width: 600px;
  margin: 0px 0 24px;
  color: var(--paper);
  font-size: clamp(38px, 3.4vw, 50px);
  line-height: 0.98;
}

.inquiry-story__lead {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.inquiry-story__steps {
  display: flex;
  gap: 28px;
  margin: 42px 0;
}

.inquiry-story__steps>div {
  width: 50%;
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.inquiry-story__steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.inquiry-story__steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-family: Baskerville, Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.inquiry-story__steps p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.inquiry-story__media {
  position: relative;
  min-block-size: 245px;
  margin-top: auto;
  overflow: hidden;
}

.inquiry-story__media .img_box {
  height: 245px;
  padding-top: 0;
}

.inquiry-story__media .img_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(9, 35, 26, 0.82));
}

.inquiry-story__media figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.inquiry-workspace {
  width: 56%;
  min-width: 0;
  padding: clamp(46px, 5vw, 82px);
  color: var(--ink);
  background: var(--paper);
}

.inquiry-workspace .form-intro {
  max-width: 620px;
  margin-bottom: 42px;
}

.inquiry-workspace .form-intro h3 {
  margin: 17px 0 15px;
  font-size: clamp(32px, 3vw, 44px);
}

.inquiry-workspace .form-intro p {
  color: var(--muted);
}

.inquiry-workspace .form-field {
  margin-bottom: 24px;
}

.inquiry-workspace .wpcf7 form > p,
.inquiry-workspace .form-field p {
  margin: 0;
}

.inquiry-workspace .wpcf7-form-control-wrap {
  display: block;
}

.inquiry-workspace .form-field label {
  margin-bottom: 9px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inquiry-workspace .form-field label span {
  color: var(--accent);
}

.inquiry-workspace .form-field input,
.inquiry-workspace .form-field textarea {
  border: 0;
  border-bottom: 1px solid #9ca39e;
  color: var(--ink);
  background: #efeee8;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.inquiry-workspace .form-field input:focus,
.inquiry-workspace .form-field textarea:focus {
  outline: 2px solid transparent;
  border-color: var(--accent);
  background: #f6f5f0;
}

.inquiry-workspace .form-field textarea {
  min-block-size: 170px;
}

.inquiry-workspace__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.inquiry-workspace__submit p {
  max-width: 270px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.product-detail {
  padding-top: 60px;
}

.product-summary {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.product-gallery,
.product-info {
  width: 50%;
  min-width: 0;
}

.product-gallery__main .img_box {
  padding-top: 76%;
}

.product-gallery__thumbs {
  margin-top: 12px;
}

.product-gallery__thumbs .swiper-slide {
  width: 120px;
  cursor: pointer;
}

.product-gallery__thumbs .img_box {
  padding-top: 78%;
  border: 1px solid transparent;
}

.product-gallery__thumbs .swiper-slide-thumb-active .img_box {
  border-color: var(--accent);
}

.product-info h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 5vw, 50px);
}

.product-info__summary {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.product-info__facts {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.product-info__facts li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.tabs {
  border-top: 1px solid var(--ink);
}

.tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.tabs__button {
  min-block-size: 56px;
  padding: 12px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.tabs__button.is-active {
  color: var(--paper);
  background: var(--forest);
}

.tabs__panel {
  display: none;
  padding: 38px 0;
}

.tabs__panel.is-active {
  display: block;
}

.download-panel__intro {
  margin-bottom: 26px;
}

.download-panel__intro h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 42px);
}

.download-panel__intro p {
  color: var(--muted);
}

.download-list {
  border-top: 1px solid var(--line);
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-block-size: 78px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.download-item > div {
  display: grid;
  gap: 4px;
}

.download-item strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.download-item > div > span {
  color: var(--muted);
  font-size: 15px;
}

.download-item__button {
  flex: 0 0 auto;
  min-block-size: 44px;
  padding: 12px 22px;
  border: none;
  color: #fff;
  background: var(--accent);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s;
}

.download-item__button:hover{
  background: var(--forest);
}

.parameter-table {
  width: 100%;
  border-collapse: collapse;
}

.parameter-table th,
.parameter-table td {
  padding: 14px 18px;
  border: 1px solid var(--line);
  font-size: 16px;
  text-align: left;
}

.parameter-table th {
  width: 32%;
  background: var(--parchment);
}

.related-slider {
  overflow: hidden;
}

.related-slider .swiper-slide {
  height: auto;
}

.detail-hero {
  display: flex;
  min-block-size: 640px;
  color: var(--paper);
  background: var(--forest-dark);
}

.detail-hero__copy,
.detail-hero__media {
  width: 50%;
  min-width: 0;
}

.detail-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(50px, calc((100vw - 1600px) / 2 + 50px));
  padding-right: 7vw;
}

.detail-hero__title {
  margin-bottom: 20px;
  color: var(--paper);
  font-family: Baskerville, Georgia, serif;
  font-size: 50px;
  line-height: 1;
}

.detail-hero__description {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.detail-hero__media .img_box {
  height: 100%;
  min-block-size: 640px;
  padding-top: 0;
}

/* Shared, editorial detail body for service, solution, and case pages */
.detail-article {
  padding: 110px 0 120px;
  background: var(--paper);
}

.detail-article__inner {
  max-width: 1400px;
}

.detail-article__media {
  max-width: 1280px;
  margin: 0 auto;
}

.detail-article__media .img_box {
  padding-top: 56.25%;
}

.detail-article__media img {
  object-fit: cover;
}

.detail-article__body {
  max-width: 860px;
  margin: 72px auto 0;
}

.detail-article__body h1 {
  max-width: 780px;
  margin: 18px 0 26px;
  font-size: clamp(42px, 4vw, 50px);
  line-height: 1.04;
  text-wrap: balance;
}

.detail-article__body h3 {
  margin: 42px 0 12px;
  font-family: Baskerville, Georgia, serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
}

.detail-article__body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  text-wrap: pretty;
}

.detail-article__body .detail-article__lead {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.65;
}

.article-header {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5vw, 50px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
}

.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-author img {
  width: 64px;
  height: 64px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  object-fit: cover;
  object-position: 50% 24%;
}

.article-author span,
.article-author small,
.article-author strong {
  display: block;
}

.article-author small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-author strong {
  color: var(--ink);
  font-family: Baskerville, Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.article-content {
  padding: 40px 0;
}

.article-content h2 {
  margin: 44px 0 18px;
  font-size: 36px;
}

.article-content p {
  margin-bottom: 20px;
  color: #3f4a43;
}

.article-content p:last-child{
  margin-bottom: 0;
}

.article-content .img-content {
  margin: 34px 0;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.share-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-links {
  margin-top: 28px;
}

.social-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
}

.sidebar-block {
  margin-bottom: 36px;
}

.sidebar-list li {
  border-bottom: 1px solid var(--line);
}

.sidebar-list a {
  display: block;
  padding: 13px 0;
}

/* Article detail editorial rail */
.article-layout {
  gap: clamp(54px, 6vw, 96px);
}

.article-rail {
  top: 118px;
  width: 380px;
}

.article-rail__topics,
.article-rail__related,
.article-rail__questions {
  padding: 30px;
}

.article-rail__topics {
  color: var(--paper);
  background: var(--forest-dark);
}

.article-rail__related {
  background: var(--paper);
}

.article-rail__questions {
  background: var(--parchment);
}

.article-rail__index {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-rail h2 {
  font-size: 31px;
  line-height: 1.05;
}

.article-topic-list {
  margin-top: 28px;
}

.article-topic-list a {
  display: flex;
  min-block-size: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
}

.article-topic-list a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.article-topic-list a:hover,
.article-topic-list a.is-active {
  color: var(--paper);
}

.article-topic-list a.is-active span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--accent);
}

.article-topic-list small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.article-rail__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.article-rail__head>a {
  width: auto;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.article-related-card {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.article-related-card:last-child {
  padding-bottom: 0;
}

.article-related-card__media {
  display: block;
  width: 112px;
  height: 82px;
  overflow: hidden;
  background: var(--line);
}

.article-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-related-card:hover .article-related-card__media img {
  transform: scale(1.04);
}

.article-related-card__copy {
  min-width: 0;
}

.article-related-card__copy small {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-related-card__copy strong {
  display: block;
  font-family: Baskerville, Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.18;
}

.article-rail__questions>h2 {
  margin-bottom: 22px;
}

.article-rail__faq {
  border-color: rgba(23, 62, 45, 0.38);
}

.article-rail__faq .faq-item__question {
  min-block-size: 58px;
  padding: 14px 0;
  font-size: 15px;
  line-height: 1.35;
}

.article-rail__faq .faq-item__question::after {
  font-size: 22px;
}

.article-rail__faq .faq-item__answer {
  font-size: 14px;
}

.comments-placeholder {
  margin-top: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--parchment);
}

/* About page editorial system. Factory and certificate modules remain unchanged. */
.about-hero {
  position: relative;
  min-block-size: 720px;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-dark);
}

.about-hero__media,
.about-hero__media::after {
  position: absolute;
  inset: 0;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__media::after {
  content: "";
  background: linear-gradient(90deg, rgba(8, 31, 22, 0.94) 0%, rgba(8, 31, 22, 0.76) 46%, rgba(8, 31, 22, 0.18) 78%, rgba(8, 31, 22, 0.28) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-block-size: 720px;
  align-items: center;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.about-hero__copy {
  width: 67.5%;
  min-width: 0;
  max-width: 920px;
}

.about-hero__copy h1 {
  margin: 0 0 20px;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.about-hero__description {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.about-overview {
  padding: 100px 0 108px;
  background: var(--paper);
}

.about-overview__grid {
  display: flex;
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.about-overview__media {
  width: 41%;
  min-width: 0;
  margin: 0;
  position: relative;
}

.about-overview__media .play-btns{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 4;
  background: var(--accent);
  cursor: pointer;
  transition: all 0.5s;
} 

.about-overview__media .play-btns:hover{
  transform: translate(-50%,-50%) scale(1.08);
}

.about-overview__media .play-btns svg{
  width: 36%;
}

.about-overview__media .play-btns svg path{ 
  fill: #fff;
}

.about-overview__media img {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 42%;
}

.about-overview__media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-overview__media figcaption span {
  color: var(--accent);
}

.about-overview__content {
  width: 59%;
  min-width: 0;
  padding-top: 0;
}

.about-overview__content h2 {
  max-width: 830px;
  margin: 24px 0 54px;
  font-size: 50px;
  line-height: 0.98;
}

.about-overview__body {
  display: flex;
  gap: 34px;
  max-width: 850px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.about-overview__body p {
  width: 50%;
  min-width: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-overview__link {
  display: inline-flex;
  gap: 24px;
  margin-top: 42px;
}

.about-data-strip {
  position: relative;
  margin-top: -48px;
  background: var(--paper);
}

.about-data-strip__frame {
  display: flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.about-data-strip__intro {
  width: 27.2%;
  min-width: 0;
  padding: 32px 36px;
  border-right: 1px solid var(--line);
}

.about-data-strip__intro h2 {
  max-width: 260px;
  margin: 14px 0 12px;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.04;
}

.about-data-strip__intro p {
  max-width: 310px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-data-strip__metrics {
  display: flex;
  width: 72.8%;
  margin: 0;
}

.about-data-strip__item {
  width: 25%;
  min-width: 0;
  padding: 30px 24px;
  border-left: 1px solid var(--line);
}

.about-data-strip__item:first-child {
  border-left: 0;
}

.about-data-strip__item dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-data-strip__item dt span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
}

.about-data-strip__item dd {
  margin: 0;
}

.about-data-strip__item strong {
  display: block;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(48px, 4.6vw, 50px);
  font-weight: 400;
  line-height: 0.9;
}

.about-data-strip__item small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.about-advantages {
  padding: 125px 0;
  background: var(--paper);
}

.about-advantages__grid {
  display: flex;
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
}

.about-advantages__intro {
  width: 36.364%;
  min-width: 0;
  position: sticky;
  top: 120px;
}

.about-advantages__intro h2 {
  margin: 22px 0 24px;
  font-size: clamp(46px, 4.8vw, 50px);
  line-height: 1;
}

.about-advantages__intro p {
  max-width: 470px;
  color: var(--muted);
}

.about-advantages__list {
  width: 63.636%;
  min-width: 0;
  border-bottom: 1px solid var(--ink);
}

.about-advantage {
  display: flex;
  min-block-size: 164px;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--ink);
}

.about-advantage>span {
  width: 56px;
  align-self: start;
  padding-top: 30px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.about-advantage h3 {
  margin-bottom: 9px;
  font-size: 30px;
}

.about-advantage > div {
  width: calc(100% - 254px);
  min-width: 0;
}

.about-advantage p {
  color: var(--muted);
}

.about-advantage small {
  width: 150px;
  text-align: right;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-history {
  padding: 110px 0 120px;
  background: var(--parchment);
}

.about-history__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 58px;
}

.about-history__head h2 {
  max-width: 780px;
  margin-top: 20px;
  font-size: clamp(48px, 5vw, 50px);
  line-height: 1;
}

.about-history__head>p {
  max-width: 430px;
  padding-bottom: 8px;
  color: var(--muted);
}

.about-history__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.about-history__counter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: Baskerville, Georgia, serif;
  font-size: 18px;
}

.about-history__counter strong {
  color: var(--forest);
  font-size: 30px;
  font-weight: 400;
}

.about-history__counter span {
  color: var(--muted);
}

.about-history__nav {
  display: flex;
  gap: 8px;
}

.about-history__nav button {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.about-history__nav button:hover,
.about-history__nav button:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.about-history-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 42px;
}

.about-history-slider .swiper-wrapper {
  align-items: stretch;
}

.about-history-card {
  display: inline-flex;
  min-block-size: 310px;
  flex-direction: column;
  padding: 34px 36px;
  border-top: 3px solid var(--forest);
  background: var(--paper);
  transition: color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}

.about-history-card.swiper-slide-active {
  color: var(--paper);
  background: var(--forest-dark);
}

.about-history-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}

.about-history-card__top>span {
  color: var(--accent);
  font-family: Baskerville, Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-history-card__top small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-history-card.swiper-slide-active .about-history-card__top small,
.about-history-card.swiper-slide-active p,
.about-history-card.swiper-slide-active em {
  color: rgba(255, 255, 255, 0.58);
}

.about-history-card>strong {
  display: block;
  margin-bottom: 14px;
  font-family: Baskerville, Georgia, serif;
  font-size: 38px;
  font-weight: 400;
}

.about-history-card p {
  color: var(--muted);
}

.about-history-card em {
  margin-top: auto;
  padding-top: 38px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-history__progress.swiper-pagination-progressbar {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(23, 62, 45, 0.14);
}

.about-history__progress .swiper-pagination-progressbar-fill {
  background: var(--accent);
}

.metric-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric-item {
  width: 25%;
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-family: Baskerville, Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

.metric-item span {
  color: var(--muted);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--accent);
}

.timeline__item {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 0 0 42px 34px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -6px;
  width: 11px;
  height: 11px;
  background: var(--accent);
}

.timeline__item strong {
  width: 150px;
  font-family: Baskerville, Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.timeline__item p {
  color: var(--muted);
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  width: auto;
  gap: 18px;
  padding-right: 18px;
}

.marquee__item {
  width: 420px;
}

.marquee__item .img_box {
  padding-top: 68%;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* Contact page conversation workspace */
.contact-stage {
  background: var(--parchment);
}

.contact-stage__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.contact-stage__heading>div {
  max-width: 780px;
}

.contact-stage__heading h2 {
  font-size: clamp(34px, 3.2vw, 48px);
}

.contact-stage__heading>p {
  max-width: 470px;
  color: var(--muted);
}

.contact-workspace {
  display: flex;
  align-items: stretch;
  box-shadow: 0 26px 80px rgba(15, 43, 32, 0.1);
}

.contact-hub {
  display: flex;
  width: 44%;
  min-width: 0;
  flex-direction: column;
  padding: 52px;
  color: var(--paper);
  background: var(--forest-dark);
}

.contact-hub__number,
.contact-form-card__number {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-hub__intro h3,
.contact-form-card__head h3 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3vw, 44px);
}

.contact-hub__intro p {
  max-width: 570px;
  color: #c9d5ce;
}

.contact-channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 38px 0 12px;
}

.contact-channel {
  position: relative;
  display: flex;
  width: calc(50% - 6px);
  min-block-size: 168px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 50px 24px 24px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.contact-channel--primary {
  width: 100%;
  min-block-size: 148px;
  color: var(--forest-dark);
  background: var(--accent);
}

.contact-channel:hover,
.contact-channel:focus-visible {
  color: var(--forest-dark);
  background: var(--paper);
  transform: translateY(-3px);
}

.contact-channel>span {
  margin-bottom: auto;
  color: currentColor;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.contact-channel strong {
  font-family: Baskerville, Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
}

.contact-channel small {
  margin-top: 6px;
  color: currentColor;
  font-size: 16px;
  opacity: 0.72;
}

.contact-channel i {
  position: absolute;
  top: 22px;
  right: 22px;
  color: currentColor;
  font-size: 21px;
  font-style: normal;
}

.contact-hub__address {
  padding: 24px;
  color: var(--forest-dark);
  background: var(--paper);
}

.contact-hub__address span,
.contact-hub__footer>span {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hub__address p {
  color: var(--muted);
}

.contact-hub__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding-top: 36px;
}

.contact-hub .social-link {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-hub .social-link:hover,
.contact-hub .social-link:focus-visible {
  color: var(--forest-dark);
  background: var(--paper);
}

.contact-form-card {
  width: 56%;
  min-width: 0;
  padding: 52px;
  background: var(--paper);
}

.contact-form-card__head {
  max-width: 720px;
  margin-bottom: 34px;
}

.contact-form-card__head p {
  color: var(--muted);
}

.contact-form-card .form-field {
  margin-bottom: 20px;
}

.contact-form-card .wpcf7 form > p,
.contact-form-card .form-field p {
  margin: 0;
}

.contact-form-card .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-card .form-field label {
  margin-bottom: 9px;
}

.contact-form-card .form-field input,
.contact-form-card .form-field textarea {
  border-color: transparent;
  background: var(--parchment);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-card .form-field input:focus,
.contact-form-card .form-field textarea:focus {
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(197, 111, 54, 0.12);
}

.contact-form-card .form-field textarea {
  min-block-size: 180px;
}

.contact-form-card__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 6px;
}

.contact-form-card__submit p {
  max-width: 430px;
  color: var(--muted);
}

.contact-form-card__submit .btn {
  width: auto;
  gap: 18px;
  min-width: 190px;
}

.contact-form-card__submit .wpcf7-spinner {
  margin: 0;
}

.map-frame {
  width: 100%;
  min-block-size: 520px;
  border: 0;
  background: var(--line);
}

/* Shared status pages for route errors and successful form submissions. */
.status-page {
  padding: 70px 0 88px;
  background: var(--paper);
}

.status-page__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  gap: clamp(54px, 7vw, 112px);
  padding-top: 54px;
}

.status-page__copy {
  align-self: center;
  max-width: 720px;
  padding: 28px 0 34px clamp(0px, 3vw, 52px);
}

.status-page__eyebrow {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-page h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: 50px;
  line-height: 1.02;
  text-wrap: balance;
}

.status-page__copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.status-page__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.status-page__text-link {
  display: inline-flex;
  min-block-size: 48px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-weight: 700;
}

.status-page__text-link span {
  color: var(--accent);
}

.status-page__signal {
  position: relative;
  display: flex;
  min-block-size: 430px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 72px 38px 44px;
  color: var(--paper);
  background: var(--forest-dark);
}

.status-page--success .status-page__signal {
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  background: var(--forest);
}

.status-page__signal-label {
  position: absolute;
  top: 34px;
  left: 38px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-page__signal strong {
  font-family: Baskerville, Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

.status-page__route {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-page__route::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.status-page__route i {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 2px solid var(--forest-dark);
  background: var(--paper);
}

.status-page__route i:last-child {
  background: var(--accent);
}

.status-page__checks {
  width: 100%;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.status-page__checks li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.status-page__checks li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.status-page__routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-page__routes a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 24px 26px;
  color: var(--ink);
}

.status-page__routes a + a {
  border-left: 1px solid var(--line);
}

.status-page__routes span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.status-page__routes strong {
  min-width: 0;
  font-size: 16px;
}

.status-page__routes i {
  color: var(--accent);
  font-style: normal;
}

.status-page__routes a:hover {
  color: var(--forest);
  background: var(--parchment);
}

.privacy-content {
  max-width: 980px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin: 46px 0 16px;
  font-size: 34px;
}

.privacy-content p,
.privacy-content li {
  margin-bottom: 14px;
  color: var(--muted);
}

.privacy-content ul {
  padding-left: 22px;
  list-style: disc;
}

.search-results__summary {
  margin-bottom: 34px;
  color: var(--muted);
}

.search-result {
  display: flex;
  gap: 34px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.search-result__media {
  width: 250px;
}

.search-result__copy {
  width: calc(100% - 284px);
}

.search-result__copy h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.search-result__copy p {
  margin-bottom: 14px;
  color: var(--muted);
}

.site-footer {
  color: var(--paper);
  background: var(--forest-dark);
}

.footer-main {
  display: flex;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 60px;
}

.footer-brand {
  width: 30%;
}

.footer-brand .site-logo {
  display: block;
  width: min(280px, 100%);
  min-block-size: auto;
  aspect-ratio: 1920 / 655;
  background: url("../images/company-logo-footer.webp") center / contain no-repeat;
  color: var(--paper);
}

.footer-brand .site-logo__mark,
.footer-brand .site-logo__text {
  display: none;
}

.footer-brand .site-logo__text small {
  color: #b9c5bd;
}

.footer-brand>p {
  max-width: 400px;
  margin: 24px 0;
  color: #b9c5bd;
}

.footer-columns {
  display: flex;
  width: 70%;
  gap: 50px;
}

.footer-column {
  width: 33.333%;
}

.footer-column h2 {
  margin-bottom: 20px;
  font-family: Aptos, "Trebuchet MS", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  padding: 5px 0;
  color: #b9c5bd;
  font-size: 16px;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  min-block-size: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #b9c5bd;
}

.footer-bottom__links {
  display: flex;
  gap: 22px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  visibility: hidden;
  width: 48px;
  height: 48px;
  border: 1px solid var(--forest);
  color: var(--paper);
  background: var(--forest);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
}

.back-to-top:hover {
  background: var(--accent);
}

.sidebar-icons {
  position: fixed;
  right: 10px;
  top: 35%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-icons a,
.sidebar-icons button {
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.sidebar-icons span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

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

.sidebar-icons.sidebar-color a,
.sidebar-icons.sidebar-color button {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

.sidebar-icons.sidebar-color span img {
  width: 65%;
  height: 65%;
}

.mobile-bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-around;
  padding: 6px 0;
  border-top: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  padding-top: 4px;
  color: #444;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

.mobile-bottom-nav .nav-item .icon {
  display: flex;
  height: 26px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3px;
  color: #333;
}

.mobile-bottom-nav .nav-item svg,
.mobile-bottom-nav .nav-item img {
  display: block;
  width: 24px;
  height: 24px;
}

.mobile-bottom-nav .nav-item svg {
  fill: currentColor;
}

.mobile-bottom-nav .nav-item:hover {
  color: var(--forest);
}

@media (max-width: 768px) {
  .sidebar-icons {
    display: none;
  }

  .mobile-bottom-nav {
    display: flex;
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-site-header] {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 9999;
}

/* Product detail related content: three intentionally different reading modes. */
.product-related-products {
  background: var(--paper);
}

.product-related-products__head {
  align-items: end;
}

.product-related-products__head>p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
}

.related-product-card {
  position: relative;
  height: auto;
  padding-top: 16px;
  border-top: 2px solid var(--forest);
  background: transparent;
}

.related-product-card__number {
  position: absolute;
  top: 30px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(15, 43, 32, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.related-product-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--line);
}

.related-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.related-product-card:hover .related-product-card__media img {
  transform: scale(1.035);
}

.related-product-card__body {
  padding: 24px 0 8px;
}

.related-product-card__body>span,
.related-product-card__body small {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-product-card__body h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.related-product-card__body p {
  min-block-size: 52px;
  margin-bottom: 20px;
  color: var(--muted);
}

.product-related-news {
  color: var(--paper);
  background: var(--forest-dark);
}

.product-related-news__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.product-related-news__head h2 {
  max-width: 720px;
  color: var(--paper);
  font-size: clamp(42px, 5vw, 50px);
}

.product-related-news .text-link {
  color: var(--paper);
}

.related-news-layout {
  display: flex;
  gap: 42px;
}

.related-news-lead {
  position: relative;
  display: block;
  width: 64.583%;
  min-block-size: 520px;
  overflow: hidden;
}

.related-news-lead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 29, 21, 0.03) 25%, rgba(9, 29, 21, 0.94) 100%);
}

.related-news-lead>img {
  width: 100%;
  height: 100%;
  min-block-size: 520px;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.related-news-lead:hover>img {
  transform: scale(1.03);
}

.related-news-lead__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  padding: 42px;
}

.related-news-lead__overlay small,
.related-news-lead__overlay strong,
.related-news-lead__overlay>span {
  display: block;
}

.related-news-lead__overlay small,
.related-news-list small {
  margin-bottom: 12px;
  color: #f19a64;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-news-lead__overlay strong {
  max-width: 620px;
  margin-bottom: 24px;
  font-family: Baskerville, Georgia, serif;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.04;
}

.related-news-lead__overlay>span {
  font-size: 14px;
  font-weight: 700;
}

.related-news-list {
  width: 35.417%;
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.related-news-list>a {
  display: flex;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--paper);
}

.related-news-list>a>span {
  width: 38px;
  color: rgba(255, 255, 255, 0.46);
  font-family: Baskerville, Georgia, serif;
  font-size: 24px;
}

.related-news-list h3 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 29px;
  transition: color 0.25s ease;
}

.related-news-list > a > div {
  width: calc(100% - 102px);
  min-width: 0;
}

.related-news-list p {
  color: rgba(255, 255, 255, 0.58);
}

.related-news-list b {
  width: 24px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
}

.related-news-list>a:hover h3 {
  color: #f19a64;
}

.product-related-services {
  background: var(--parchment);
  padding-bottom:  0 !important;
}

.product-related-services__head {
  max-width: 900px;
}

.related-service-list {
  border-top: 1px solid var(--forest);
}

.related-service-row {
  display: flex;
  align-items: center;
  gap: 34px;
  min-block-size: 190px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s ease, background-color 0.35s ease;
}

.related-service-row:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: var(--paper);
}

.related-service-row__index {
  width: 74px;
  align-self: start;
  padding-top: 8px;
  color: var(--accent);
  font-family: Baskerville, Georgia, serif;
  font-size: 28px;
}

.related-service-row small {
  display: block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-service-row > div {
  width: calc(100% - 372px);
  min-width: 0;
}

.related-service-row h3 {
  margin-bottom: 10px;
  font-size: 32px;
}

.related-service-row p {
  color: var(--muted);
}

.related-service-row figure {
  width: 230px;
  height: 126px;
  overflow: hidden;
}

.related-service-row figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.related-service-row:hover figure img {
  transform: scale(1.05);
}

.related-service-row>b {
  width: 34px;
  color: var(--forest);
  font-size: 25px;
  font-weight: 400;
}

.certificate-slider .img-content .img_box {
  padding-top: 141.4285%;
}

.certificate-items {
  padding: 20px;
  background: #0F2B20;
}

.certificate-section {
  padding-top: 0 !important;
}


/* 弹窗过度动画 */
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/* 弹窗过度动画 end */

/* Distinct collection layouts: service journey, solution atlas, and case ledger. */
.service-journey {
  background: var(--paper);
  padding-bottom: 0 !important;
}

.service-journey__intro {
  width: 58%;
  margin-bottom: 54px;
}

.service-journey__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.service-journey__intro h2,
.solution-atlas__head h2,
.case-ledger__head h2 {
  font-size: clamp(40px, 4vw, 50px);
}

.service-journey__intro p,
.solution-atlas__head p,
.case-ledger__head > p {
  margin-top: 18px;
  color: var(--muted);
}

.service-stage {
  position: relative;
  display: block;
  font-size: 0;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s !important;
}

.service-stage__media,
.service-stage__copy {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}

.service-stage__media {
  width: 40%;
  overflow: hidden;
  position: relative;
  min-block-size: 276px;
}

.service-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-block-size: 276px;
  transition: transform 0.5s ease;
  will-change: transform;
  filter: saturate(0.82);
}

.service-stage:hover {
  background: var(--parchment);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.service-stage:hover .service-stage__media img {
  transform: scale(1.03);
}

.service-stage__copy {
  width: 60%;
  padding: 34px 62px 34px 34px;
  position: relative;
  font-size: 16px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-stage__index {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.service-stage__copy,
.service-stage__copy strong,
.service-stage__copy em {
  display: block;
}

.service-stage__copy strong {
  margin-bottom: 12px;
  font-family: Baskerville, Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  display: inline-block;
  transition: all 0.5s;
}

.service-stage__copy em {
  max-width: 580px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
  transition: all 0.5s;
  display: inline-block;

}

.service-mores{
  display: inline-flex;
  padding: 10px 24px;
  border: 1px solid #173E2D;
  color: #173E2D;
  font-size: 18px;
  line-height: 1.45;
  margin-top: 20px;
  transition: all 0.5s;
}

.service-stage:hover .service-mores{
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}


.service-stage:hover{
  background-color: #fff;
}

.solution-atlas {
  background: var(--parchment);
}

.solution-atlas__head {
  width: 68%;
  margin-bottom: 50px;
}

.solution-route__body > span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--paper);
}

.solution-atlas__secondary {
  margin: 22px -14px -14px;
  font-size: 0;
}

.solution-route {
  display: inline-block;
  width: 33.333%;
  padding: 14px;
  vertical-align: top;
}

.solution-route__media {
  display: block;
  height: auto;
  overflow: hidden;
}

.solution-route__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter 0.35s ease;
}

.solution-route:hover .solution-route__media img {
  filter: brightness(0.94);
}

.solution-route__body {
  min-block-size: auto;
  padding: 30px 32px 32px;
  border-top: 3px solid var(--accent);
  background: var(--paper);
  font-size: 16px;
}

.solution-route__body > span {
  margin-bottom: 14px;
}

.solution-route__body h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.solution-route__body p {
  margin-bottom: 18px;
  color: var(--muted);
}

.case-ledger {
  background: var(--paper);
}

.case-ledger__head {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--ink);
  font-size: 0;
}

.case-ledger__head > div,
.case-ledger__head > p {
  display: inline-block;
  vertical-align: bottom;
}

.case-ledger__head > div {
  width: 66%;
  font-size: 16px;
}

.case-ledger__head > p {
  width: 34%;
  padding-left: 48px;
  font-size: 16px;
}

.case-ledger__filters {
  padding: 22px 0 42px;
}

.case-ledger__filters a {
  display: inline-block;
  margin-right: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 14px;
}

.case-ledger__filters a.is-active,
.case-ledger__filters a:hover {
  color: var(--forest);
  border-color: var(--forest);
}

.case-feature__meta,
.case-record__body > span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-feature__body h3 {
  margin-bottom: 20px;
  font-size: 40px;
}

.case-feature__body > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.case-feature__body dl {
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.case-feature__body dl div {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0;
}

.case-feature__body dt,
.case-feature__body dd {
  display: inline-block;
  width: 50%;
  font-size: 13px;
}

.case-feature__body dd {
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.case-ledger__records {
  margin: 22px -14px -14px;
  font-size: 0;
}

.case-record {
  display: inline-grid;
  grid-template-columns: 43% 57%;
  width: 50%;
  padding: 14px;
  vertical-align: top;
}

.case-record__media,
.case-record__body {
  display: block;
  vertical-align: top;
}

.case-record__media {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  height: auto;
  align-self: stretch;
}

.case-record__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease;
  position: absolute;
  left: 0;
  top: 0;
}

.case-record:hover .case-record__media img {
  filter: brightness(0.94);
}

.case-record__body {
  width: 100%;
  min-width: 0;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-left: 0;
  background: var(--paper);
  font-size: 16px;
}

.case-record__body > span {
  margin-bottom: 16px;
}

.case-record__body h3 {
  margin-bottom: 14px;
  font-size: 29px;
}

.case-record__body p {
  margin-bottom: 16px;
  color: var(--muted);
}

.mod-comment {
  padding: 30px;
  margin-top: 30px;
  border: 1px solid #ccc;
  border-radius: 16px;
  --user-header-width: 100px;
  --main-color: green;
}
.mod-comment .flexs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.mod-comment .mod-comment-imgs {
  width: var(--user-header-width);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 100%;
  overflow: hidden;
}
.mod-comment .mod-comment-imgs img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.mod-comment .mod-comment-info {
  width: calc(100% - var(--user-header-width));
  padding-left: 25px;
}
.mod-comment .mod-comment-name {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.65;
  color: #333;
}
.mod-comment .mod-comment-texts {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
.mod-comment .mod-comment-mores {
  font-size: 18px;
  color: #222;
  line-height: 1.65;
  text-decoration: none;
  transition: all 0.5s;
}
.mod-comment .mod-comment-mores:hover {
  color: var(--main-color);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .mod-comment {
    padding: 25px 20px;
    --user-header-width: 80px;
  }
  .mod-comment .mod-comment-name {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .mod-comment .flexs {
    flex-direction: column;
    align-items: flex-start;
  }
  .mod-comment .mod-comment-imgs {
    margin-bottom: 15px;
  }
  .mod-comment .mod-comment-info {
    width: 100%;
    padding-left: 0px;
  }
}

.prodeta-infos{
  padding-bottom: 0 !important;
}

.proseletct{
  padding-bottom: 0 !important;
}

.home-services{
  background: #F3F0E8;
}
