:root {
  --wy-font-sans: "Manrope", "Segoe UI", sans-serif;
  --wy-font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --wy-ink: #121818;
  --wy-muted: #5f6967;
  --wy-line: #d8dfdd;
  --wy-surface: #f6f6f2;
  --wy-card: #ffffff;
  --wy-white: #ffffff;
  --wy-dark: #10191b;
  --wy-dark-soft: #253238;
  --wy-green: #0e7c73;
  --wy-gold: #d7a22d;
  --wy-gold-soft: #f4ead2;
  --wy-shadow: 0 18px 50px rgba(18, 24, 24, 0.08);
  --container: min(1240px, calc(100% - 40px));
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wy-muted);
  font-family: var(--wy-font-sans);
  line-height: 1.65;
  background: linear-gradient(180deg, #fbfbf8 0%, #f5f5f1 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link,
.screen-reader-text,
.form-honeypot {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--wy-white);
  background: var(--wy-green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background:
    linear-gradient(90deg, #0e7c73, rgba(18, 24, 24, 0.14)),
    rgba(18, 24, 24, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(90deg, rgba(14, 124, 115, 0.78), rgba(18, 24, 24, 0.08)),
    rgba(18, 24, 24, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

body.home .site-header::before {
  opacity: 0.52;
}

body.home .site-header::after {
  opacity: 1;
}

body.home .site-header .site-navigation {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, rgba(10, 17, 19, 0.16), rgba(10, 17, 19, 0.08));
}

body.home .site-header.is-scrolled {
  background:
    linear-gradient(90deg, #0e7c73, rgba(18, 24, 24, 0.94)),
    rgba(18, 24, 24, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

body.home .site-header.is-scrolled::before,
body.home .site-header.is-scrolled::after {
  opacity: 1;
}

body.home .site-header.is-scrolled .site-navigation {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 190, 77, 0.88) 18%, rgba(17, 135, 125, 0.75) 100%);
  opacity: 0.9;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, #0e7c73, rgba(18, 24, 24, 0.94)),
    rgba(18, 24, 24, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.1);
}

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

.brand,
.brand-copy-link,
.site-navigation,
.nav-menu,
.hero-actions,
.section-heading,
.section-heading--light,
.product-category-row,
.contact-chip-row,
.footer-social {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  position: relative;
  z-index: 1;
}

.brand-logo img,
.brand-logo .custom-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong,
.nav-menu a,
.section-heading h2,
.section-heading--light h2,
.about-copy h2,
.inquiry-copy h2,
.site-footer h2 {
  color: var(--wy-white);
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.site-navigation {
  gap: 18px;
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-menu {
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.nav-menu a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wy-gold), rgba(17, 135, 125, 0.9));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #ffe1a2;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-search {
  position: relative;
}

.header-search__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--wy-white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header-search__toggle:hover,
.header-search__toggle:focus-visible,
.header-search.is-open .header-search__toggle {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.header-search__toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.header-search__form {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  width: min(420px, calc(100vw - 40px));
  padding: 8px;
  border: 1px solid rgba(14, 124, 115, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(10, 40, 38, 0.18);
}

.header-search__form[hidden] {
  display: none;
}

.header-search__form input,
.header-search__form button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
}

.header-search__form input {
  min-width: 0;
  padding: 0 16px;
  color: var(--wy-ink);
  background: transparent;
  outline: 0;
}

.header-search__form button {
  padding: 0 18px;
  color: var(--wy-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--wy-green);
  cursor: pointer;
}

.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 5;
  width: max-content;
  min-width: 160px;
  max-width: min(360px, calc(100vw - 40px));
  display: none;
  gap: 0;
  margin: 0;
  padding: 24px 26px 22px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(55, 140, 133, 0.92);
  box-shadow: 0 18px 34px rgba(10, 40, 38, 0.2);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-menu .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 18px;
}

.nav-menu > .menu-item-has-children:hover > .sub-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-menu .sub-menu li {
  position: relative;
  padding-left: 0;
}

.nav-menu .sub-menu li::before {
  content: none;
}

.nav-menu .sub-menu li:hover::before,
.nav-menu .sub-menu li:focus-within::before {
  content: none;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 8px 2px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.34;
  text-transform: none;
  white-space: nowrap;
}

.nav-menu .sub-menu a::after {
  content: none;
}

.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu a:focus-visible {
  color: var(--wy-gold);
  background: transparent;
}

.header-language {
  position: relative;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.04);
}

.header-language::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
}

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

.header-cta,
.button-dark {
  color: var(--wy-white);
  background: linear-gradient(135deg, #11877d 0%, #0f5f58 100%);
}

.button-primary {
  color: var(--wy-white);
  background: linear-gradient(135deg, #11877d 0%, #0f5f58 100%);
}

.button-outline {
  color: var(--wy-ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 24, 24, 0.12);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(18, 24, 24, 0.12);
}

.header-cta {
  box-shadow: 0 8px 22px rgba(17, 135, 125, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--wy-white);
}

.menu-toggle span:not(.screen-reader-text) + span:not(.screen-reader-text) {
  margin-top: 5px;
}

.homepage-main {
  overflow: clip;
}

.section-block {
  position: relative;
  isolation: isolate;
  padding: 92px 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--wy-gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading,
.section-heading--light {
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2,
.section-heading--light h2,
.about-copy h2,
.inquiry-copy h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--wy-font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2 {
  color: var(--wy-ink);
}

.section-heading p,
.section-heading--light p,
.section-note {
  max-width: 460px;
  margin: 0;
  font-size: 0.98rem;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.78);
}

.section-link {
  color: var(--wy-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--wy-green);
}

.hero-section {
  position: relative;
  padding: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(12, 20, 22, 0.05) 0%, rgba(12, 20, 22, 0) 52%),
    radial-gradient(circle at top left, rgba(14, 124, 115, 0.12), transparent 34%);
  pointer-events: none;
}

.hero-frame {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-frame--full {
  width: 100%;
}

.hero-media__main {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--wy-shadow);
  background: var(--wy-card);
}

.hero-media__main--banner {
  border-radius: 0 0 20px 20px;
  box-shadow: none;
}

.hero-media__main img {
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  object-fit: cover;
  object-position: center center;
}

.hero-media__main[data-slide] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-media__main[data-slide].is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slider-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--wy-white);
  background: rgba(10, 17, 19, 0.34);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.hero-slider-arrow span {
  font-size: 2rem;
  line-height: 1;
}

.hero-slider-arrow--prev {
  left: 24px;
}

.hero-slider-arrow--next {
  right: 24px;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(14, 118, 110, 0.7);
  transform: translateY(-50%) scale(1.04);
}

.hero-slider-dots {
  display: flex;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-slider-dot:hover,
.hero-slider-dot.is-active {
  background: var(--wy-white);
  border-color: var(--wy-white);
}
.product-card__copy h3,
.news-featured__body h3,
.news-item__copy h3,
.project-card figcaption,
.footer-list a,
.footer-list li {
  color: var(--wy-ink);
}

.products-section {
  padding-top: 44px;
  background: linear-gradient(180deg, #fbfbf8 0%, #f3f4ef 100%);
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 24px 0 18px;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(14, 124, 115, 0.05), transparent 30%),
    radial-gradient(circle at bottom left, rgba(215, 162, 45, 0.05), transparent 24%);
}

.products-section::after {
  display: none;
}

.product-category-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.product-category-row--page {
  margin-bottom: 0;
}

.product-category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(18, 24, 24, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(18, 24, 24, 0.1);
}

.product-category-card__media {
  margin: 0;
  background: linear-gradient(180deg, #f8f8f4 0%, #eef1ea 100%);
}

.product-category-card__media img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.product-category-card__title {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--wy-ink);
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
}

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

.product-card,
.news-featured,
.news-item,
.project-card,
.about-stat,
.contact-chip,
.inquiry-form-wrap {
  background: var(--wy-card);
  box-shadow: var(--wy-shadow);
}

.product-card {
  overflow: hidden;
  border: 1px solid #e7e7e1;
  border-radius: 16px;
  box-shadow: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 247, 0.96));
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(18, 24, 24, 0.08);
}

.product-card__media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f6f6f3 0%, #ecece8 100%);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.35s ease;
}

.product-card__media-link {
  display: block;
}

.product-card__title-link {
  color: inherit;
}

.product-card__title-link:hover {
  color: var(--wy-green);
}

.product-card__copy {
  padding: 18px 18px 20px;
}

.product-catalog-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--wy-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(14, 124, 115, 0.1);
}

.product-card__copy span,
.news-featured__body span,
.news-item__copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--wy-green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__copy h3,
.news-featured__body h3,
.news-item__copy h3,
.project-card figcaption,
.footer-list a,
.footer-list li {
  color: var(--wy-ink);
}

.product-card__copy h3,
.news-featured__body h3,
.news-item__copy h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.4;
}

.product-card__copy p,
.news-featured__body p,
.news-item__copy p,
.about-copy p,
.inquiry-copy p {
  margin: 0;
}

.product-category-card__copy {
  display: grid;
  gap: 10px;
}

.product-category-card__copy p {
  margin: 0;
  color: var(--wy-dark-soft);
  line-height: 1.72;
}

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

.product-card--catalog {
  height: 100%;
}

.product-card--catalog .product-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.product-card--catalog .product-card__copy h3 {
  font-size: 1.08rem;
}

.product-card--catalog .product-card__copy p {
  color: var(--wy-dark-soft);
  line-height: 1.72;
}

.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f4 100%);
}

.about-section::before {
  display: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
  padding: 12px 0;
}

.about-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(18, 24, 24, 0.12);
  z-index: 1;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(9, 22, 24, 0.22));
  pointer-events: none;
}

.about-media::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(6px);
}

.about-media img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.about-copy {
  position: relative;
  z-index: 2;
  margin-left: -78px;
  padding: 40px 36px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 244, 0.96));
  box-shadow: 0 28px 58px rgba(18, 24, 24, 0.1);
  overflow: hidden;
}

.about-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0e766e;
}

.about-highlight-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.about-highlight-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--wy-white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--wy-dark-soft), rgba(14, 124, 115, 0.92));
  box-shadow: 0 10px 20px rgba(16, 25, 27, 0.12);
}

.about-copy p {
  margin-bottom: 14px;
}

.about-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.about-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px 0 34px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 999px;
  color: var(--wy-ink);
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.84);
}

.about-tags span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wy-green), var(--wy-gold));
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(14, 124, 115, 0.08);
}

.about-actions {
  margin-top: 26px;
}

.certificates-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #eef2ef 0%, #e7ece8 100%);
}

.certificates-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.4) 12%, transparent 12%, transparent 32%, rgba(255, 255, 255, 0.36) 32%, rgba(255, 255, 255, 0.36) 34%, transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.3) 18%, transparent 18%, transparent 56%, rgba(255, 255, 255, 0.3) 56%, rgba(255, 255, 255, 0.3) 58%, transparent 58%);
  opacity: 0.55;
  pointer-events: none;
}

.certificates-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.82fr) minmax(320px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.certificates-stage {
  position: relative;
  min-height: auto;
  padding: 0;
}

.certificate-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 88px 0 28px 166px;
}

.certificate-marks span {
  color: #172122;
  font-family: var(--wy-font-display);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 0;
  padding-left: 4px;
  width: 100%;
}

.certificate-card {
  margin: 0;
  padding: 12px 12px 14px;
  border: 1px solid rgba(215, 162, 45, 0.4);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px rgba(18, 24, 24, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: contain;
  background: var(--wy-white);
  border-radius: 12px;
  transition: transform 0.32s ease;
}

.certificate-card figcaption,
.certificate-card span {
  padding-top: 10px;
  color: var(--wy-ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.certificate-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(18, 24, 24, 0.12);
}

.certificate-card:hover img {
  transform: scale(1.05);
}

.certificates-copy {
  position: relative;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 430px);
  min-width: 0;
  box-sizing: border-box;
  padding: 54px 42px 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 58px rgba(18, 24, 24, 0.12);
}

.certificates-copy h2 {
  margin: 0 0 18px;
  color: var(--wy-ink);
  font-family: var(--wy-font-display);
  font-size: clamp(1.9rem, 2.55vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.certificates-copy p {
  margin: 0 0 10px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.certificates-copy .button {
  margin-top: 10px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 24px;
}

.news-section::before {
  content: "";
  position: absolute;
  inset: 44px 0 24px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(14, 124, 115, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at bottom right, rgba(215, 162, 45, 0.05), transparent 24%);
}

.news-section::after {
  display: none;
}

.news-featured {
  overflow: hidden;
  border: 1px solid #e7e7e1;
  border-radius: 18px;
  box-shadow: none;
}

.news-featured__image {
  margin: 0;
}

.news-featured__image img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.news-featured__body {
  padding: 22px 24px 26px;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid #e7e7e1;
  border-radius: 16px;
  box-shadow: none;
}

.news-item__thumb {
  overflow: hidden;
  border-radius: 12px;
}

.news-item__thumb img {
  width: 100%;
  height: 100%;
  min-height: 138px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-item__copy {
  align-self: center;
}

.projects-section {
  overflow: hidden;
  color: var(--wy-ink);
  background:
    linear-gradient(180deg, #eff3f0 0%, #e6ece8 100%);
}

.projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(14, 124, 115, 0.08), transparent 20%),
    linear-gradient(90deg, rgba(18, 24, 24, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 24, 24, 0.03) 1px, transparent 1px);
  background-size: auto, 120px 120px, 120px 120px;
  opacity: 0.18;
  pointer-events: none;
}

.projects-shell {
  position: relative;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  margin: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(18, 24, 24, 0.08);
  box-shadow: 0 18px 36px rgba(18, 24, 24, 0.08);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(8, 24, 28, 0.42));
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--wy-white);
  font-family: var(--wy-font-display);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.inquiry-section {
  position: relative;
  background: linear-gradient(180deg, #fafaf7 0%, #f1f4ef 100%);
}

.inquiry-section::before {
  content: "";
  position: absolute;
  inset: 12px 0 auto;
  height: 80%;
  z-index: -1;
  background:
    radial-gradient(circle at left center, rgba(14, 124, 115, 0.08), transparent 24%),
    radial-gradient(circle at right center, rgba(215, 162, 45, 0.05), transparent 20%);
}

.inquiry-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #edf3ef 0%, #e4ece6 100%);
  border: 1px solid rgba(18, 24, 24, 0.08);
  box-shadow: 0 20px 44px rgba(18, 24, 24, 0.08);
}

.inquiry-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  background:
    linear-gradient(135deg, rgba(14, 124, 115, 0.14), rgba(16, 25, 27, 0.04)),
    url("../images/inquiry-home-5.webp") center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.inquiry-copy {
  padding: 42px 36px;
}

.inquiry-copy h2 {
  color: var(--wy-dark);
  margin: 28px 0 16px;
}

.inquiry-copy p {
  color: rgba(16, 25, 27, 0.76);
}

.contact-chip-row {
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 24px;
}

.contact-chip {
  display: flex;
  flex: 1 1 220px;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-width: 180px;
  min-height: 108px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(16, 25, 27, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(18, 24, 24, 0.04);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.contact-chip strong,
.contact-chip span {
  display: block;
}

.contact-chip strong {
  margin-bottom: 0;
  color: var(--wy-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-chip span {
  color: rgba(16, 25, 27, 0.74);
  font-size: 0.92rem;
  line-height: 1.65;
}

.inquiry-form-wrap {
  align-self: stretch;
  padding: 30px;
  border-radius: 18px 0 0 18px;
  background: rgba(255, 255, 255, 0.94);
}

.contact-feedback {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.contact-feedback-success {
  color: #17504a;
  background: #e2f5f1;
}

.contact-feedback-error {
  color: #7b2f1f;
  background: #fde6dd;
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(18, 24, 24, 0.12);
  border-radius: 14px;
  color: var(--wy-ink);
  background: #fbfbf8;
  resize: vertical;
}

.inquiry-form textarea {
  min-height: 180px;
}

.inquiry-form .button {
  min-width: 180px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(17, 135, 125, 0.22);
  border-color: rgba(17, 135, 125, 0.38);
}

.advantage-tile:hover {
  transform: translateY(-4px);
}

.product-card:hover .product-card__media img {
  transform: scale(1.08);
}

.news-featured:hover .news-featured__image img,
.news-item:hover .news-item__thumb img,
.project-card:hover img {
  transform: scale(1.06);
}

.contact-chip:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.62);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 24px;
  color: rgba(244, 247, 246, 0.82);
  background: linear-gradient(180deg, #203036 0%, #172126 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.85fr 1fr;
  gap: 28px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 1.6rem;
  line-height: 1.05;
  color: var(--wy-white);
}

.footer-brand p {
  max-width: 320px;
  margin: 0 0 18px;
  color: rgba(244, 247, 246, 0.78);
}

.footer-social {
  gap: 10px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--wy-white);
  background: rgba(255, 255, 255, 0.16);
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  background: var(--wy-green);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 12px;
  color: rgba(244, 247, 246, 0.82);
}

.site-footer .footer-list a,
.site-footer .footer-list li {
  color: rgba(244, 247, 246, 0.82);
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #9de2da;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(244, 247, 246, 0.68);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__legal,
.footer-mobile__legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom__legal a,
.footer-mobile__legal a,
.inquiry-privacy-note a {
  color: #9de2da;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-bottom__legal a:hover,
.footer-bottom__legal a:focus-visible,
.footer-mobile__legal a:hover,
.footer-mobile__legal a:focus-visible,
.inquiry-privacy-note a:hover,
.inquiry-privacy-note a:focus-visible {
  color: #dffbf6;
}

.footer-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .about-layout,
  .certificates-shell,
  .inquiry-shell,
  .news-layout,
  .product-overview-grid,
  .page-split-grid,
  .page-split-grid--next-step,
  .page-contact-grid,
  .page-cert-layout,
  .page-hero__inner {
    grid-template-columns: 1fr;
  }

  .product-category-row,
  .product-grid,
  .project-grid,
  .product-grid--catalog,
  .privacy-policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantages-grid,
  .about-stats,
  .footer-grid,
  .page-card-grid,
  .page-metrics,
  .page-metrics--products,
  .page-facility-grid,
  .page-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-section::after,
  .about-section::before,
  .news-section::after,
  .inquiry-shell::before {
    display: none;
  }

  .hero-media__main img,
  .about-media img {
    min-height: 420px;
  }

  .hero-media__main[data-slide] img,
  .hero-media__main[data-slide].is-active img {
    min-height: 420px;
  }

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

  .about-copy {
    margin-left: 0;
  }

  .certificates-stage {
    min-height: auto;
    padding: 0;
  }

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

  .hero-media__main img {
    max-height: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-navigation {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(16, 25, 27, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  }

  .header-language::before {
    display: none;
  }

  .header-search,
  .header-search__form {
    width: 100%;
  }

  .header-search__toggle {
    width: 42px;
    height: 42px;
  }

  .header-search__form {
    position: static;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
    border-radius: 16px;
  }

  .header-search__form button {
    width: 100%;
  }

  .site-navigation.is-open {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-menu,
  .nav-menu > li,
  .nav-menu .sub-menu {
    width: 100%;
  }

  .nav-menu a::after {
    bottom: -5px;
  }

  .nav-menu .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(55, 140, 133, 0.94);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu > .menu-item-has-children:hover > .sub-menu {
    display: grid;
  }

  .nav-menu .sub-menu::before {
    content: none;
  }

  .nav-menu .sub-menu a {
    color: rgba(255, 255, 255, 0.9);
    white-space: normal;
  }

  .header-language,
  .header-cta {
    width: fit-content;
  }

  .section-block {
    padding: 78px 0;
  }

  .advantages-grid,
  .about-stats,
  .product-category-row,
  .product-grid,
  .project-grid,
  .footer-grid,
  .page-card-grid,
  .page-metrics,
  .page-metrics--products,
  .page-facility-grid,
  .page-cert-grid,
  .product-grid--catalog {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: 28px 22px;
  }

  .advantage-tile {
    min-height: 0;
  }

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

  .certificates-copy {
    width: min(100%, 520px);
    padding: 34px 24px 24px;
    border-radius: 24px;
  }

  .certificates-copy h2 {
    font-size: clamp(2.2rem, 6vw, 3.4rem);
  }

  .news-item {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-mobile__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-slider-arrow {
    width: 46px;
    height: 46px;
  }

  .hero-slider-arrow--prev {
    left: 14px;
  }

  .hero-slider-arrow--next {
    right: 14px;
  }

  .page-rich-text,
  .product-overview-card,
  .metric-card,
  .page-card,
  .page-contact-form,
  .page-contact-panel,
  .news-story {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 78px;
  }

  .container {
    width: min(100% - 28px, 1240px);
  }

  .hero-section {
    padding-bottom: 0;
  }

  .hero-media__main img,
  .about-media img,
  .news-featured__image img {
    min-height: 280px;
  }

  .hero-media__main img {
    max-height: none;
  }

  .hero-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slider-arrow span {
    font-size: 1.6rem;
  }

  .products-section {
    padding-top: 38px;
  }

  .certificate-marks span {
    font-size: 1.6rem;
  }

  .certificates-copy {
    width: 100%;
    padding: 28px 20px 22px;
  }

  .certificates-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .inquiry-copy,
  .inquiry-form-wrap {
    padding: 22px;
  }

  .page-hero {
    padding: 122px 0 54px;
  }

  .page-hero__copy h1 {
    max-width: none;
  }

  .page-hero__media img {
    min-height: 300px;
  }

  .product-category-card__body,
  .product-card__copy {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.basic-page {
  padding-bottom: 92px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 74px;
  background:
    linear-gradient(135deg, rgba(14, 124, 115, 0.12), rgba(255, 255, 255, 0.9)),
    linear-gradient(180deg, #f7faf8 0%, #eef3ef 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(215, 162, 45, 0.14), transparent 24%),
    radial-gradient(circle at right center, rgba(14, 124, 115, 0.12), transparent 26%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 52px;
  align-items: center;
}

.page-hero__copy {
  max-width: 680px;
}

.page-hero__copy .section-kicker {
  margin-bottom: 14px;
}

.page-hero__copy h1,
.basic-page .section-heading h2,
.page-cert-copy h2,
.page-contact-panel h2,
.news-story h2 {
  margin: 0;
  color: var(--wy-ink);
  font-family: var(--wy-font-display);
  line-height: 0.96;
  text-transform: uppercase;
}

.page-hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.page-hero__lead {
  max-width: 60ch;
  margin: 22px 0 0;
  color: var(--wy-dark-soft);
  font-size: 1.05rem;
  line-height: 1.78;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-hero__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(18, 24, 24, 0.12);
}

.page-hero__media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.page-hero--banner {
  isolation: isolate;
  padding: 0;
  background: var(--page-hero-image) center bottom / cover no-repeat;
}

.page-hero--banner::before {
  content: none;
}

.page-hero--banner .page-hero__inner {
  display: flex;
  align-items: center;
  min-height: 360px;
}

.page-hero--banner .page-hero__copy {
  max-width: 720px;
}

.page-hero--banner .page-hero__copy h1 {
  max-width: none;
  color: var(--wy-white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.page-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  font-weight: 700;
}

.page-hero__breadcrumb a {
  color: var(--wy-white);
  transition: color 0.2s ease;
}

.page-hero__breadcrumb a:hover,
.page-hero__breadcrumb a:focus-visible,
.page-hero__breadcrumb span:last-child {
  color: var(--wy-white);
}

.page-content-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: rgba(18, 24, 24, 0.56);
  font-size: 0.92rem;
  font-weight: 700;
}

.page-content-breadcrumb a {
  color: var(--wy-green);
}

.page-content-breadcrumb a:hover,
.page-content-breadcrumb a:focus-visible,
.page-content-breadcrumb span:last-child {
  color: var(--wy-ink);
}

.page-section {
  padding: 82px 0 0;
}

.page-section--alt {
  position: relative;
}

.page-section--alt::before {
  content: "";
  position: absolute;
  inset: 32px 0 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 124, 115, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at right top, rgba(215, 162, 45, 0.05), transparent 20%);
}

.basic-page--products .page-hero--banner {
  background-position: center center;
}

.basic-page--products .page-hero--banner + .page-section--alt::before {
  inset: 0;
}

.basic-page--solutions .application-section::before {
  inset: 0;
}

.basic-page--solutions .application-section {
  padding-top: 54px;
}

.page-stack {
  display: grid;
  gap: 32px;
}

.page-rich-text {
  padding: 34px 38px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(18, 24, 24, 0.06);
}

.page-rich-text p,
.page-card p,
.facility-card__copy p,
.page-cert-copy p,
.page-contact-panel li,
.news-story p,
.news-story__points li,
.page-content-default .entry-content {
  color: var(--wy-dark-soft);
}

.privacy-policy-page .page-hero--banner {
  background-position: center center;
}

.privacy-policy-shell {
  display: grid;
  gap: 28px;
}

.privacy-policy-intro,
.privacy-policy-card,
.privacy-policy-contact {
  padding: 34px 38px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(18, 24, 24, 0.06);
}

.privacy-policy-intro {
  display: grid;
  gap: 18px;
}

.privacy-policy-intro p,
.privacy-policy-card p,
.privacy-policy-card li,
.privacy-policy-contact p {
  margin: 0;
  color: var(--wy-dark-soft);
}

.privacy-policy-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wy-green);
  background: rgba(14, 124, 115, 0.1);
}

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

.privacy-policy-card {
  display: grid;
  gap: 16px;
}

.privacy-policy-card--full {
  grid-column: 1 / -1;
}

.privacy-policy-card h2,
.privacy-policy-contact h2 {
  margin: 0;
  color: var(--wy-ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.privacy-policy-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.privacy-policy-card a,
.privacy-policy-contact a {
  color: var(--wy-green);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.privacy-policy-contact {
  display: grid;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(14, 124, 115, 0.08), rgba(215, 162, 45, 0.08)),
    rgba(255, 255, 255, 0.9);
}


.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.page-metrics--products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-overview-card {
  gap: 18px;
  padding: 34px 36px;
}

.product-overview-card h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.product-overview-points {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.product-overview-points li {
  position: relative;
  padding-left: 20px;
  color: var(--wy-dark-soft);
  line-height: 1.72;
}

.product-overview-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wy-green);
  box-shadow: 0 0 0 6px rgba(14, 124, 115, 0.08);
}

.product-catalog-note {
  max-width: 78ch;
  margin: 0 0 22px;
  color: var(--wy-dark-soft);
  line-height: 1.76;
}

.page-metrics,
.page-card-grid,
.page-facility-grid,
.news-page-grid {
  display: grid;
  gap: 22px;
}

.page-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.page-card,
.page-contact-form,
.page-contact-panel,
.news-story {
  padding: 28px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(18, 24, 24, 0.06);
}

.page-card,
.metric-card {
  position: relative;
  overflow: hidden;
}

.page-card::before,
.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #0e766e;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wy-green);
  font-family: var(--wy-font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.92;
}

.metric-card span {
  color: var(--wy-dark-soft);
  font-weight: 600;
}

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

.page-card-grid.page-card-grid--single {
  grid-template-columns: 1fr;
}

.page-card-grid.page-card-grid--support {
  grid-template-columns: 1fr;
  gap: 16px;
  flex: 1;
}

.page-split-grid--next-step {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 24px;
  align-items: stretch;
}

.page-split-grid--next-step > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.next-step-panel {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  min-width: 0;
}

.page-card--support {
  gap: 10px;
  padding: 22px 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(18, 24, 24, 0.05);
}

.page-card--support h3 {
  font-size: 1.05rem;
  line-height: 1.22;
}

.page-card--support p {
  font-size: 0.94rem;
  line-height: 1.72;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center::after {
  margin-left: auto;
  margin-right: auto;
}

.next-step-panel .page-card-grid {
  flex: 1;
  align-items: stretch;
  grid-template-rows: 1fr;
  height: 100%;
  min-height: 0;
}

.next-step-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  min-height: 100%;
  padding: 38px 42px 40px;
  text-align: left;
  border-color: rgba(14, 124, 115, 0.14);
  background:
    linear-gradient(160deg, rgba(14, 124, 115, 0.08) 0%, rgba(255, 255, 255, 0.97) 64%, rgba(215, 162, 45, 0.1) 100%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 46px rgba(18, 24, 24, 0.08);
}

.next-step-card h3 {
  margin: 0;
  color: var(--wy-ink);
  font-size: clamp(1.88rem, 2.45vw, 2.52rem);
  line-height: 1;
  text-transform: uppercase;
}

.next-step-card p {
  max-width: 46ch;
  margin: 28px 0 0;
  font-size: 1.05rem;
  line-height: 1.86;
}

.next-step-list {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.next-step-list li {
  position: relative;
  padding-left: 22px;
  color: var(--wy-dark-soft);
  font-size: 1.02rem;
  line-height: 1.66;
}

.next-step-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wy-green);
  box-shadow: 0 0 0 5px rgba(14, 124, 115, 0.08);
}

.next-step-card .page-hero__actions {
  justify-content: flex-start;
  width: 100%;
  margin-top: auto;
  padding-top: 42px;
}

.next-step-card .button {
  min-width: 164px;
}

.page-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-card h3,
.facility-card__copy h3,
.metric-card span,
.page-contact-panel strong {
  margin: 0;
  color: var(--wy-ink);
}

.page-card h3,
.facility-card__copy h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.3;
}

.page-card p,
.facility-card__copy p,
.page-contact-panel li,
.news-story p,
.page-content-default .entry-content {
  line-height: 1.78;
}

.page-facility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.facility-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(18, 24, 24, 0.08);
}

.facility-card__media {
  margin: 0;
  aspect-ratio: 16 / 11;
  min-height: 240px;
  overflow: hidden;
  background: #eef2ef;
}

.facility-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 26px;
}

.page-cert-layout,
.page-contact-grid,
.page-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.page-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-content: start;
  align-items: start;
}

.page-cert-copy {
  padding: 22px 30px 22px;
  border-radius: 28px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(18, 24, 24, 0.08);
}

.page-contact-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 8px 0 18px;
}

.page-cert-copy h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.65rem);
  margin: 8px 0 0;
}

.page-cert-copy p {
  font-size: 1.03rem;
  margin: 0;
  line-height: 1.5;
}

.page-cert-copy > .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 0;
  text-align: center;
}

.news-page-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  width: var(--container);
}

.news-sidebar {
  display: grid;
  gap: 18px;
}

.news-sidebar__block {
  padding: 22px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(18, 24, 24, 0.06);
}

.news-sidebar__block h2 {
  margin: 0 0 16px;
  color: var(--wy-dark);
  font-size: 1.05rem;
  line-height: 1.25;
  text-transform: none;
}

.news-category-tabs {
  display: grid;
  gap: 8px;
}

.news-category-tabs__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(18, 24, 24, 0.12);
  border-radius: 12px;
  color: var(--wy-dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.84);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-category-tabs__link:hover,
.news-category-tabs__link:focus-visible,
.news-category-tabs__link.is-active {
  color: var(--wy-white);
  border-color: var(--wy-green);
  background: var(--wy-green);
}

.news-feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-feature-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(18, 24, 24, 0.08);
}

.news-feature-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.news-feature-list a:not(.news-feature-list__thumb),
.news-feature-list span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--wy-dark-soft);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.news-feature-list__thumb {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1.25 / 1;
  background: rgba(18, 24, 24, 0.08);
}

.news-feature-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature-list a:not(.news-feature-list__thumb):hover,
.news-feature-list a:not(.news-feature-list__thumb):focus-visible {
  color: var(--wy-green);
}

.news-page-grid {
  grid-template-columns: 1fr;
}

.news-story,
.news-story.is-featured {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
}

.news-story__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  align-self: start;
}

.news-story__media-link {
  display: block;
  height: 100%;
}

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

.news-story__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.news-story__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-bottom: 10px;
  color: var(--wy-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-story__meta-item + .news-story__meta-item::before,
.single-article-meta__item + .single-article-meta__item::before {
  content: '·';
  margin-right: 10px;
  color: currentColor;
}

.news-story h2 {
  font-size: clamp(1.3rem, 1.65vw, 1.8rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.news-story__summary {
  display: -webkit-box;
  width: 100%;
  min-height: 3.2em;
  max-height: 3.2em;
  margin: 0;
  overflow: hidden;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-story__summary-row {
  display: block;
}

.news-story__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s ease;
}

.news-story__title-link:hover,
.news-story__title-link:focus-visible {
  color: var(--wy-green);
}

.news-story__points {
  display: none;
  margin: 20px 0 0;
  padding-left: 20px;
}

.news-story__points li {
  line-height: 1.72;
}

.news-story__points li + li {
  margin-top: 10px;
}

.news-story__actions {
  margin-top: 20px;
}

.page-contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.page-contact-info-section {
  padding-bottom: 28px;
}

.contact-info-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(14, 124, 115, 0.045), rgba(255, 255, 255, 0) 46%),
    rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 70px rgba(18, 24, 24, 0.1);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 360px;
  max-width: 100%;
  background:
    linear-gradient(145deg, rgba(232, 244, 242, 0.98), rgba(249, 250, 246, 0.98));
  border-right: 1px solid rgba(14, 124, 115, 0.12);
  pointer-events: none;
}

.contact-info-card h2 {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 42px 38px 0;
  color: var(--wy-dark);
  font-size: clamp(2.5rem, 3vw, 3.65rem);
  line-height: 0.92;
  white-space: nowrap;
  text-shadow: none;
}

.contact-info-company {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 2;
  max-width: 28ch;
  margin: 0;
  padding: 22px 38px;
  color: var(--wy-dark-soft);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.5;
}

.contact-info-list {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  max-width: none;
  margin: 0;
  padding: 42px 48px;
}

.contact-info-list div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  min-width: 0;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 24, 24, 0.09);
  border-radius: 0;
  background: transparent;
}

.contact-info-list div:nth-child(7),
.contact-info-list div:nth-child(8) {
  grid-column: 1 / -1;
}

.contact-info-list div:last-child {
  grid-column: 1 / -1;
}

.contact-info-list dt,
.contact-info-list dd {
  margin: 0;
  color: var(--wy-dark-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info-list dt {
  color: var(--wy-green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-info-list a {
  color: var(--wy-green);
  text-decoration: none;
}

.contact-info-list a:hover,
.contact-info-list a:focus-visible {
  text-decoration: underline;
}

.contact-info-social {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: start;
  margin: 0;
  padding: 0 38px 42px;
}

.contact-info-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(18, 24, 24, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-info-social__link svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-info-social__link:hover,
.contact-info-social__link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 24px rgba(18, 24, 24, 0.18);
}

.contact-info-social__link--email {
  background: #f1b72d;
}

.contact-info-social__link--facebook {
  background: #31599b;
}

.contact-info-social__link--whatsapp {
  background: #25d366;
}

.contact-info-social__link--twitter {
  background: #10191b;
}

.contact-info-social__link--instagram {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
}

.basic-page--solutions .page-split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.page-inquiry-section {
  padding-top: 0;
}

.inquiry-copy--page {
  display: flex;
  flex-direction: column;
}

.inquiry-form-wrap--page {
  padding: 34px;
}

.page-contact-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.page-contact-list li {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18, 24, 24, 0.08);
}

.page-contact-list strong {
  letter-spacing: 0.03em;
}

.page-contact-list li:last-child {
  border-bottom: 0;
}

.page-contact-list span a {
  color: var(--wy-green);
}

.page-contact-list--embedded {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(16, 25, 27, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.page-contact-list--embedded li {
  grid-template-columns: minmax(92px, 112px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
}

.page-contact-list--embedded strong {
  margin-top: 3px;
  color: var(--wy-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-contact-list--embedded span,
.page-contact-list--embedded span a {
  color: rgba(16, 25, 27, 0.78);
}

.page-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.solution-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 22px;
  padding: 28px 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(18, 24, 24, 0.06);
}

.solution-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--wy-green);
}

.solution-panel__header h2 {
  margin: 0 0 10px;
}

.solution-panel__header p {
  margin: 0;
  max-width: 34ch;
  color: rgba(16, 25, 27, 0.7);
}

.solution-panel__list {
  display: grid;
  gap: 14px;
}

.solution-panel__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(14, 124, 115, 0.12);
  background: linear-gradient(180deg, rgba(14, 124, 115, 0.03) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.solution-panel__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--wy-green);
  font-family: var(--wy-font-display);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.06em;
  background: rgba(14, 124, 115, 0.1);
}

.solution-panel__body h3 {
  color: var(--wy-dark);
  margin-bottom: 8px;
}

.solution-panel__body p {
  margin: 0;
  color: rgba(16, 25, 27, 0.72);
}

.page-content-default {
  padding: 28px 34px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.solutions-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.solutions-overview__copy,
.solutions-overview__metrics,
.solutions-support-intro,
.solutions-category-card,
.solution-application-card {
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(18, 24, 24, 0.06);
}

.solutions-overview__copy {
  padding: 36px 38px;
}

.solutions-overview__copy h2,
.solutions-support-intro h2 {
  max-width: 13ch;
  margin: 10px 0 18px;
  color: var(--wy-ink);
  font-family: var(--wy-font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.7rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.solutions-overview__copy p,
.solutions-support-intro p,
.solutions-category-card p,
.solution-application-card__body p {
  color: var(--wy-dark-soft);
}

.solutions-overview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.solutions-overview__metrics {
  display: grid;
  gap: 0;
  padding: 8px 28px;
}

.solutions-overview__metrics article {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 120px;
  border-bottom: 1px solid rgba(18, 24, 24, 0.08);
}

.solutions-overview__metrics article:last-child {
  border-bottom: 0;
}

.solutions-overview__metrics strong {
  color: var(--wy-green);
  font-family: var(--wy-font-display);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.solutions-overview__metrics span {
  color: var(--wy-dark-soft);
  font-weight: 800;
}

.solutions-application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.solution-application-card {
  overflow: hidden;
}

.solution-application-card__media {
  display: block;
  overflow: hidden;
  background: var(--wy-dark);
}

.solution-application-card__media img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solution-application-card:hover .solution-application-card__media img {
  transform: scale(1.05);
}

.solution-application-card__body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.solution-application-card__body > span,
.solutions-category-card > span {
  color: var(--wy-green);
  font-family: var(--wy-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}

.solution-application-card h3,
.solutions-category-card h3 {
  margin: 0;
  color: var(--wy-ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.solution-application-card p,
.solutions-category-card p {
  margin: 0;
  line-height: 1.7;
}

.solution-application-card__fit {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(14, 124, 115, 0.08);
}

.solution-application-card__fit strong {
  color: var(--wy-green);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-application-card__fit small {
  color: var(--wy-dark);
  font-weight: 800;
  line-height: 1.35;
}

.solution-application-card__link {
  justify-self: start;
  color: var(--wy-green);
  font-weight: 900;
  text-transform: uppercase;
}

.solutions-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

.solutions-category-card {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 18px 22px;
  white-space: nowrap;
}

.solutions-category-card > span {
  flex: 0 0 auto;
}

.solutions-category-card h3 {
  min-width: 0;
  font-size: 1.04rem;
  line-height: 1.2;
}

.solutions-support-layout {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) repeat(4, minmax(150px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.solutions-support-intro {
  display: grid;
  align-content: space-between;
  padding: 24px;
}

.solutions-support-intro h2 {
  max-width: none;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  white-space: nowrap;
}

.solutions-support-intro .button {
  justify-self: start;
  margin-top: 18px;
  min-width: 150px;
  padding: 0 18px;
}

.application-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.application-intro__media {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.application-intro__media img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
}

.application-intro__copy h2,
.application-heading h2,
.application-cta h2 {
  margin: 8px 0 18px;
  color: var(--wy-ink);
  font-family: var(--wy-font-sans);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.16;
  text-transform: none;
}

.application-intro__copy p,
.application-heading p,
.application-card__body p,
.application-cta p {
  color: var(--wy-dark-soft);
  line-height: 1.76;
}

.application-section {
  padding-bottom: 0;
}

.application-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.application-heading .section-kicker,
.application-intro .section-kicker,
.application-cta .section-kicker {
  color: var(--wy-green);
}

.application-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.application-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 6px;
  background: var(--wy-white);
  box-shadow: 0 12px 28px rgba(18, 24, 24, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.application-card:hover {
  border-color: rgba(14, 124, 115, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(18, 24, 24, 0.12);
}

.basic-page--solutions .application-card-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.basic-page--solutions .application-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
}

.basic-page--solutions .application-card:nth-child(even) {
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.42fr);
}

.basic-page--solutions .application-card:nth-child(even) .application-card__media {
  order: 2;
}

.basic-page--solutions .application-card:nth-child(even) .application-card__body {
  order: 1;
}

.application-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}

.basic-page--solutions .application-card__media {
  height: 300px;
}

.application-card__number {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--wy-white);
  font-family: var(--wy-font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  background: var(--wy-green);
  box-shadow: 0 12px 22px rgba(16, 25, 27, 0.22);
}

.application-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 124, 115, 0), rgba(14, 124, 115, 0.18));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.application-card__media img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  transition: transform 0.36s ease, filter 0.36s ease;
}

.basic-page--solutions .application-card__media img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.application-card:hover .application-card__media img {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.application-card:hover .application-card__media::after {
  opacity: 1;
}

.application-card__body {
  padding: 24px 24px 26px;
}

.basic-page--solutions .application-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: 28px 34px;
}

.application-card__body h3 {
  margin: 0 0 12px;
  color: var(--wy-ink);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.application-card:hover .application-card__body h3 {
  color: var(--wy-green);
}

.application-card__body p {
  margin: 0;
  font-size: 0.95rem;
}

.application-card__scenario {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 24, 24, 0.08);
}

.application-card__scenario strong {
  color: var(--wy-ink);
}

.application-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.application-product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(14, 124, 115, 0.16);
  border-radius: 999px;
  color: var(--wy-dark);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  background: rgba(14, 124, 115, 0.07);
}

.application-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--wy-green);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease;
}

.application-card__link::after {
  content: ">";
  transition: transform 0.2s ease;
}

.application-card:hover .application-card__link {
  gap: 12px;
  color: var(--wy-dark);
}

.application-card:hover .application-card__link::after {
  transform: translateX(2px);
}

.solutions-category-section {
  padding-top: 56px;
}

.solutions-support-card {
  align-items: center;
  justify-content: flex-start;
  min-height: 92px;
}

.solutions-support-card h3 {
  font-size: 0.98rem;
  white-space: nowrap;
}

.application-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 6px;
  background: var(--wy-white);
  box-shadow: 0 14px 34px rgba(18, 24, 24, 0.06);
}

.application-cta > div {
  max-width: 760px;
}

.application-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
}

.basic-page--solutions .page-hero--banner .page-hero__inner {
  justify-content: center;
  min-height: 300px;
  text-align: center;
}

.basic-page--solutions .page-hero--banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)),
    var(--page-hero-image) center bottom / cover no-repeat;
}

.basic-page--solutions .page-hero--banner .page-hero__copy {
  max-width: 900px;
}

.basic-page--solutions .page-hero--banner .page-hero__copy h1 {
  font-size: clamp(2.7rem, 4vw, 4.2rem);
}

.basic-page--solutions .page-hero__breadcrumb {
  justify-content: center;
}

.application-showcase {
  width: min(1080px, calc(100% - 40px));
}

.application-showcase__heading {
  max-width: 880px;
  margin: 0 auto 58px;
  text-align: center;
}

.application-showcase__heading h2 {
  margin: 0;
  color: var(--wy-ink);
  font-family: var(--wy-font-sans);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.application-showcase__heading span {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
}

.application-showcase__heading span::before,
.application-showcase__heading span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wy-green);
  box-shadow: 18px 0 0 var(--wy-green), 36px 0 0 var(--wy-green);
}

.application-row-list {
  display: grid;
  gap: 42px;
}

.application-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(18, 24, 24, 0.12);
  border-radius: 4px;
  background: var(--wy-white);
  box-shadow: 0 14px 34px rgba(18, 24, 24, 0.12);
}

.application-row.is-reversed .application-row__media {
  order: 2;
}

.application-row.is-reversed .application-row__content {
  order: 1;
}

.application-row__media {
  display: block;
  overflow: hidden;
  height: 300px;
  min-height: 300px;
  background: #dfe8ea;
}

.application-row__media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.36s ease, filter 0.36s ease;
}

.application-row:hover .application-row__media img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.application-row__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  padding: 34px 38px;
}

.application-row__content h3 {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--wy-green);
  color: var(--wy-ink);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.25;
  transition: color 0.22s ease;
}

.application-row:hover .application-row__content h3 {
  color: var(--wy-green);
}

.application-row__content p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--wy-dark-soft);
  font-size: 0.96rem;
  line-height: 1.68;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.application-row__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 146px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 2px;
  color: #12395d;
  font-size: 0.86rem;
  font-weight: 800;
  background: #d8e7f3;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.application-row__button span:last-child {
  transition: transform 0.22s ease;
}

.application-row__button:hover,
.application-row__button:focus-visible {
  color: var(--wy-white);
  background: var(--wy-green);
  transform: translateY(-1px);
}

.application-row__button:hover span:last-child,
.application-row__button:focus-visible span:last-child {
  transform: translateX(3px);
}

.application-final-section {
  padding-top: 64px;
}

.application-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 40px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 4px;
  background: var(--wy-white);
  box-shadow: 0 14px 34px rgba(18, 24, 24, 0.08);
}

.application-final-cta > div {
  max-width: 760px;
}

.application-final-cta h2 {
  margin: 0 0 10px;
  color: var(--wy-ink);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.16;
}

.application-final-cta p {
  margin: 0;
  color: var(--wy-dark-soft);
  line-height: 1.72;
}

.certificate-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
}

.certificate-detail__media {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(18, 24, 24, 0.06);
}

.certificate-detail__media img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.certificate-detail__content {
  padding: 34px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(18, 24, 24, 0.06);
}

.certificate-detail__content h2 {
  margin: 10px 0 18px;
  color: var(--wy-ink);
  font-family: var(--wy-font-display);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.certificate-detail__content p {
  color: var(--wy-dark-soft);
  line-height: 1.78;
}

@media (max-width: 1180px) {
  .page-hero__inner,
  .page-cert-layout,
  .page-contact-grid,
  .page-split-grid,
  .application-intro,
  .application-row,
  .solutions-overview,
  .solutions-support-layout,
  .certificate-detail,
  .news-story,
  .news-story.is-featured {
    grid-template-columns: 1fr;
  }

  .page-metrics,
  .page-card-grid,
  .page-facility-grid,
  .page-cert-grid,
  .application-card-grid,
  .solutions-application-grid,
  .solutions-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-support-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-category-card {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .page-hero {
    padding: 124px 0 60px;
  }

  .page-stack {
    gap: 24px;
  }

  .page-hero__media img {
    min-height: 320px;
  }

  .page-metrics,
  .page-card-grid,
  .page-facility-grid,
  .page-cert-grid,
  .application-card-grid,
  .solutions-application-grid,
  .solutions-category-grid,
  .solutions-support-layout {
    grid-template-columns: 1fr;
  }

  .page-rich-text,
  .metric-card,
  .page-card,
  .page-contact-form,
  .page-contact-panel,
  .solution-panel,
  .application-cta,
  .solutions-overview__copy,
  .solutions-support-intro,
  .news-story,
  .page-content-default {
    padding: 22px;
  }

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

  .solutions-category-section .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .solutions-category-section .section-heading p {
    max-width: none;
  }

  .solutions-category-card,
  .solutions-support-card {
    align-items: flex-start;
  }

  .basic-page--solutions .application-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .basic-page--solutions .application-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .basic-page--solutions .application-card:nth-child(even) .application-card__media,
  .basic-page--solutions .application-card:nth-child(even) .application-card__body {
    order: initial;
  }

  .basic-page--solutions .application-card__media img {
    min-height: 0;
    aspect-ratio: 1.32 / 1;
  }

  .basic-page--solutions .application-card__media {
    height: 220px;
  }

  .basic-page--solutions .application-card__body {
    padding: 24px;
  }

  .application-final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .application-row,
  .application-row.is-reversed {
    grid-template-columns: 1fr;
  }

  .application-row.is-reversed .application-row__media,
  .application-row.is-reversed .application-row__content {
    order: initial;
  }

  .application-row__content {
    min-height: auto;
    padding: 28px;
  }

  .application-row__media,
  .application-row__media img {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .page-hero__copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .page-hero__lead {
    font-size: 1rem;
  }

  .page-hero__actions,
  .page-contact-social {
    flex-direction: column;
  }

  .page-hero__actions .button,
  .page-contact-social .button,
  .inquiry-form .button {
    width: 100%;
  }

  .news-story__media img {
    min-height: 0;
  }

  .page-contact-list li {
    padding: 14px 0;
  }

  .page-contact-list--embedded li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 1180px) {
  .basic-page--news .news-story,
  .basic-page--news .news-story.is-featured {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  .news-page-shell {
    grid-template-columns: 1fr;
  }

  .news-category-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .page-hero--banner {
    padding: 0;
  }

  .page-hero--banner .page-hero__inner {
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .news-category-tabs,
  .basic-page--news .news-story,
  .basic-page--news .news-story.is-featured {
    grid-template-columns: 1fr;
  }

  .news-story__media {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .page-hero--banner {
    background-position: center bottom;
  }

  .page-hero--banner .page-hero__inner {
    min-height: 260px;
  }

  .page-hero--banner .page-hero__copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }
}

.hero-media__main--banner {
  position: relative;
  isolation: isolate;
}

.hero-media__main--banner::after {
  display: none;
}

.hero-media__overlay {
  position: absolute;
  top: 48%;
  left: 8.9%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 52%;
  max-width: none;
  padding: 0;
  color: #2a9698;
  background: transparent;
  transform: translateY(-50%);
  pointer-events: auto;
  user-select: text;
  -webkit-user-select: text;
}

.hero-media__title,
.hero-media__lead,
.hero-media__label,
.hero-media__copy {
  position: relative;
  z-index: 1;
  margin: 0;
  color: inherit;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.22);
  user-select: text;
  -webkit-user-select: text;
}

.hero-media__title {
  font-family: var(--wy-font-sans);
  font-size: clamp(2.04rem, 3.18vw, 2.96rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-media__title br {
  display: block;
  content: "";
}

.hero-media__overlay--product {
  gap: clamp(14px, calc(20px * var(--hero-image-scale, 1)), 24px);
  color: #050505;
  text-shadow: none;
}

.hero-media__overlay--product .hero-media__title {
  font-size: clamp(2.4rem, calc(3.72rem * var(--hero-image-scale, 1)), 4.1rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: normal;
}

.hero-media__title-accent {
  color: #078f91;
}

.hero-media__overlay--product .hero-media__lead {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  font-size: clamp(1.08rem, calc(1.52rem * var(--hero-image-scale, 1)), 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  color: #118b8d;
}

.hero-media__lead {
  align-self: flex-start;
  margin-top: 5px;
  padding-top: 7px;
  border-top: 3px solid rgba(58, 181, 182, 0.9);
  font-size: clamp(1.3rem, 2.08vw, 1.9rem);
  font-weight: 300;
  line-height: 1.14;
}

.hero-media__label {
  display: block;
  margin-top: 3px;
  font-size: clamp(1.16rem, 1.24vw, 1.34rem);
  font-weight: 700;
  line-height: 1.2;
  color: #237e81;
}

.hero-media__copy {
  max-width: 76ch;
  font-size: clamp(1.06rem, 1.12vw, 1.2rem);
  line-height: 1.5;
  color: rgba(33, 109, 113, 0.96);
  text-wrap: pretty;
}

.hero-media__overlay ::selection,
.hero-media__overlay::selection {
  color: #0f3c3d;
  background: rgba(108, 215, 218, 0.34);
}

@media (max-width: 1100px) {
  .hero-media__overlay {
    left: 8.2%;
    width: min(58%, 720px);
    max-width: calc(100% - 14%);
  }
}

@media (max-width: 860px) {
  .hero-media__main img {
    min-height: 72vh;
    max-height: 72vh;
  }

  .hero-media__overlay {
    left: 7%;
    width: min(66%, 620px);
    max-width: calc(100% - 12%);
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .hero-media__main img {
    min-height: 58vh;
    max-height: 58vh;
  }

  .hero-slider-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-slider-arrow--prev {
    left: 12px;
  }

  .hero-slider-arrow--next {
    right: 12px;
  }

  .hero-slider-nav {
    bottom: 16px;
  }

  .hero-media__overlay {
    left: 6%;
    width: 88%;
    max-width: none;
    gap: 4px;
    padding: 0;
  }

  .hero-media__lead {
    padding-top: 6px;
  }
}

.about-media::after {
  display: none;
}

.product-category-row {
  align-items: stretch;
  gap: 22px;
}

.product-category-card {
  min-height: 100%;
  border: 1px solid rgba(18, 24, 24, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 243, 238, 0.96));
}

.product-category-card__media {
  overflow: hidden;
}

.product-category-card__media img {
  aspect-ratio: 1.42 / 1;
}

.product-category-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(14, 124, 115, 0.08));
}

.product-category-card__title {
  padding: 0;
  font-size: 1.04rem;
  text-align: left;
}

.product-category-card__button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificates-shell {
  grid-template-columns: minmax(0, 2.08fr) minmax(280px, 0.72fr);
  gap: 30px;
  align-items: start;
}

.certificate-grid,
.page-cert-grid {
  gap: 24px;
}

.certificate-card {
  padding: 14px 14px 18px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(18, 24, 24, 0.08);
}

.certificate-card img {
  aspect-ratio: 0.7 / 1;
}

.certificate-card figcaption,
.certificate-card span {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 3.5em;
  padding-top: 14px;
  line-height: 1.4;
}

.page-cert-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  align-items: stretch;
}

.page-cert-layout .page-cert-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  height: 100%;
  box-sizing: border-box;
}

@media (min-width: 1181px) {
  .basic-page--about-us .page-cert-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 420px);
    gap: 34px;
    align-items: stretch;
  }

  .basic-page--about-us .page-cert-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px;
  }

  .basic-page--about-us .page-cert-grid .certificate-card {
    justify-self: center;
    width: min(100%, 172px);
    padding: 10px 10px 13px;
  }

  .basic-page--about-us .page-cert-grid .certificate-card:nth-child(4n + 1) {
    justify-self: start;
  }

  .basic-page--about-us .page-cert-grid .certificate-card:nth-child(4n) {
    justify-self: end;
  }

  .basic-page--about-us .page-cert-grid .certificate-card img {
    aspect-ratio: 0.74 / 1;
    max-height: 226px;
  }

  .basic-page--about-us .page-cert-layout .page-cert-copy {
    width: min(100%, 410px);
    justify-self: start;
    align-self: center;
    justify-content: center;
    gap: 18px;
    height: auto;
    min-height: 0;
    padding: 32px 32px 30px;
  }

  .basic-page--about-us .page-cert-copy h2 {
    margin: 0 0 4px;
    font-size: clamp(2.16rem, 2.58vw, 3.05rem);
    line-height: 0.98;
  }

  .basic-page--about-us .page-cert-copy p {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .basic-page--about-us .page-cert-copy .button {
    min-height: 48px;
    padding: 0 30px;
    font-size: 0.98rem;
  }

  .basic-page--about-us .page-cert-copy > .button {
    margin: 10px auto 0;
  }
}

.page-cert-grid .certificate-card {
  align-self: start;
  padding: 16px 16px 20px;
}

.page-cert-grid .certificate-card img {
  aspect-ratio: 0.66 / 1;
}

.inquiry-shell::before {
  width: 45%;
  opacity: 0.3;
}

.inquiry-form-wrap {
  padding: 34px;
}

body.home .certificates-shell {
  grid-template-columns: minmax(0, 1.82fr) minmax(320px, 0.86fr);
  gap: 42px;
  align-items: center;
}

body.home .certificate-grid {
  gap: 16px;
  align-items: stretch;
  margin-top: 0;
  padding-left: 4px;
  width: 100%;
}

body.home .certificate-card {
  padding: 12px 12px 14px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px rgba(18, 24, 24, 0.08);
}

body.home .certificate-card img {
  aspect-ratio: 0.82 / 1;
  object-fit: contain;
  background: var(--wy-white);
  border-radius: 12px;
}

body.home .certificate-card figcaption,
body.home .certificate-card span {
  display: block;
  min-height: 0;
  padding-top: 10px;
  color: var(--wy-ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

body.home .certificates-copy {
  align-self: center;
  justify-self: center;
  justify-content: center;
  width: min(100%, 430px);
  padding: 54px 42px 34px;
  border-radius: 34px;
}

body.home .certificates-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 2.55vw, 3.2rem);
  line-height: 0.98;
}

body.home .certificates-copy p {
  margin: 0 0 10px;
}

body.home .certificates-copy .button {
  margin-top: 10px;
}

.inquiry-form {
  gap: 16px;
}

.inquiry-form .button {
  width: 100%;
}

/* Homepage preview log 2026-03-14: temporarily disable all homepage links for client review.
   Re-enable later by uncommenting the block below.
body.home a,
body.home a:hover,
body.home a:focus,
body.home a:active {
  pointer-events: none !important;
  cursor: default !important;
}
*/

@media (max-width: 1180px) {
  .product-category-row,
  .certificate-grid,
  .page-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certificates-shell,
  .page-cert-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .product-category-row {
    grid-template-columns: 1fr;
  }

  .inquiry-shell {
    grid-template-columns: 1fr;
  }

  .inquiry-shell::before {
    inset: 0;
    width: auto;
    height: 220px;
  }

  .inquiry-copy,
  .inquiry-form-wrap {
    padding: 24px;
  }

  .contact-info-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    padding: 0;
  }

  .contact-info-card::before {
    inset: 0 0 auto;
    width: auto;
    min-width: 0;
    height: 230px;
  }

  .contact-info-card h2,
  .contact-info-company,
  .contact-info-social,
  .contact-info-list {
    grid-column: 1;
  }

  .contact-info-card h2 {
    grid-row: auto;
    padding: 30px 24px 0;
  }

  .contact-info-company {
    grid-row: auto;
    padding: 12px 24px 0;
  }

  .contact-info-social {
    grid-row: auto;
    padding: 0 24px 30px;
    margin: 0;
  }

  .contact-info-list {
    grid-row: auto;
    grid-template-columns: 1fr;
    padding: 18px 24px 26px;
  }

  .contact-info-list div {
    gap: 5px;
  }
}

@media (max-width: 560px) {
  .certificate-grid,
  .page-cert-grid {
    grid-template-columns: 1fr;
  }
}

/* Product system */

.product-shell,
.single-product-page {
  padding: 42px 0 84px;
}

.single-product-page .container {
  width: min(1360px, calc(100% - 40px));
}

.product-shell {
  position: relative;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(37, 50, 56, 0.78);
  font-size: 0.98rem;
}

.product-breadcrumbs a {
  color: var(--wy-green);
  text-decoration: none;
}

.product-breadcrumbs strong {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-breadcrumbs a:hover,
.product-breadcrumbs strong {
  color: var(--wy-dark);
}

.product-directory-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  padding: 28px 32px;
  border: 1px solid rgba(14, 124, 115, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(14, 124, 115, 0.14) 0%, rgba(236, 247, 244, 0.92) 48%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 22px 52px rgba(18, 24, 24, 0.08);
}

.product-directory-intro h1,
.single-product-summary h1 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 4vw, 3.9rem);
  line-height: 0.98;
}

.product-directory-intro h1 {
  margin: 0;
  color: var(--wy-dark);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.product-directory-intro__meta {
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.product-directory-intro__meta p,
.single-product-summary__lead,
.single-product-content,
.single-product-content p {
  color: var(--wy-dark-soft);
  line-height: 1.8;
}

.product-directory-intro__meta p {
  margin: 0;
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.62;
}

.product-directory-intro__meta .button {
  min-width: 240px;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--wy-green) 0%, #127b72 68%, #0f6260 100%);
  border-color: var(--wy-green);
  box-shadow: 0 14px 28px rgba(17, 135, 125, 0.16);
}

.product-directory-intro__meta .button:hover,
.product-directory-intro__meta .button:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--wy-green) 0%, #127b72 68%, #0f6260 100%);
}

.product-directory-intro__meta .product-directory-catalog-button,
.product-directory-intro__meta .product-directory-catalog-button:visited,
.product-directory-intro__meta .product-directory-catalog-button:hover,
.product-directory-intro__meta .product-directory-catalog-button:focus-visible {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  min-width: 240px;
  min-height: 0;
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--wy-green) 0%, #127b72 68%, #0f6260 100%) !important;
  border-color: var(--wy-green) !important;
  box-shadow: 0 14px 28px rgba(17, 135, 125, 0.16) !important;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transform: none !important;
  transition: none;
}

.product-directory-catalog-button__label {
  display: block;
  line-height: 1;
  transform: none !important;
  transition: none;
}

.product-directory-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.32fr) minmax(0, 0.68fr);
  gap: 20px;
  align-items: start;
}

.product-directory-sidebar,
.product-directory-table,
.single-product-gallery,
.single-product-summary,
.single-product-content {
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 244, 0.94));
  box-shadow: 0 18px 40px rgba(18, 24, 24, 0.06);
}

.product-directory-sidebar {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-directory-table {
  border: 0;
  box-shadow: none;
}

@media (min-width: 1181px) {
  .product-directory-sidebar {
    position: sticky;
    top: 104px;
    max-height: calc(100vh - 128px);
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .product-directory-search {
    position: sticky;
    top: 0;
    z-index: 2;
    padding-bottom: 14px;
    background: var(--wy-surface);
  }

  .product-directory-table__header {
    position: sticky;
    top: 104px;
    z-index: 10;
  }

  .product-directory-table__header.is-stuck {
    isolation: isolate;
  }

  .product-directory-table__header.is-stuck::before {
    content: "";
    position: fixed;
    top: 0;
    left: var(--product-directory-sticky-mask-left, 0px);
    z-index: 0;
    width: var(--product-directory-sticky-mask-width, 100vw);
    height: var(--product-directory-sticky-mask-height, 200px);
    background: var(--wy-surface);
    pointer-events: none;
  }

  .product-directory-table__header.is-stuck > div {
    position: relative;
    z-index: 1;
    background: #137a72;
  }

  .product-directory-table__header.is-stuck > div:first-child {
    border-radius: 24px 0 0 0;
  }

  .product-directory-table__header.is-stuck > div:last-child {
    border-radius: 0 24px 0 0;
  }

}

.product-directory-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 14px;
}

.product-directory-search input,
.product-directory-search button {
  min-height: 58px;
  border: 1px solid rgba(14, 124, 115, 0.16);
}

.product-directory-search input {
  padding: 0 18px;
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
}

.product-directory-search button {
  padding: 0 24px;
  border-color: var(--wy-green);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, var(--wy-green) 0%, #127b72 68%, #0f6260 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.product-directory-panel {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(244, 250, 248, 0.96), rgba(255, 255, 255, 0.98));
}

.product-directory-panel__header {
  padding: 22px 24px 18px;
  background: #137a72;
}

.product-directory-panel__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1;
}

.product-directory-groups {
  padding: 0 24px 22px;
}

.product-directory-group {
  border-top: 1px solid rgba(14, 124, 115, 0.12);
}

.product-directory-group__toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--wy-dark);
  font-size: 1.08rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.product-directory-group.is-active .product-directory-group__toggle {
  color: var(--wy-green);
}

.product-directory-group__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wy-green) 0%, #0f6763 100%);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(14, 124, 115, 0.18);
}

.product-directory-group__body {
  display: grid;
  gap: 12px;
  padding: 0 0 16px 42px;
}

.product-directory-group__link,
.product-directory-children a {
  color: var(--wy-dark-soft);
  text-decoration: none;
}

.product-directory-group__link.is-current,
.product-directory-children a.is-current,
.product-directory-group__link:hover,
.product-directory-children a:hover {
  color: var(--wy-green);
}

.product-directory-children {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-directory-table__header,
.product-directory-row {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(140px, 0.65fr) minmax(160px, 0.62fr) minmax(120px, 0.42fr);
}

.product-directory-table__header {
  background: #137a72;
  color: #fff;
  font-family: var(--wy-font-display);
  font-size: 1.18rem;
  border-radius: 24px 24px 0 0;
}

.product-directory-table__header > div {
  padding: 20px 16px;
  text-align: center;
}

.product-directory-table__title {
  text-align: left;
}

.product-directory-row {
  background: linear-gradient(180deg, rgba(246, 250, 248, 0.98), rgba(239, 246, 243, 0.98));
}

.product-directory-row:nth-child(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 247, 0.98));
}

.product-directory-row > div {
  min-height: 156px;
  border-top: 1px solid rgba(14, 124, 115, 0.08);
  border-right: 1px solid rgba(14, 124, 115, 0.08);
}

.product-directory-row > div:last-child,
.product-directory-table__header > div:last-child {
  border-right: 0;
}

.product-directory-row__name {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
}

.product-directory-row__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 243, 0.92));
}

.product-directory-row__thumb img {
  max-width: 100%;
  max-height: 116px;
  object-fit: contain;
}

.product-directory-row__copy {
  display: grid;
  gap: 8px;
}

.product-directory-row__copy h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.42;
}

.product-directory-row__copy h2 a {
  color: var(--wy-dark);
  text-decoration: none;
}

.product-directory-row__copy h2 a:hover {
  color: var(--wy-green);
}

.product-directory-row__copy p {
  margin: 0;
  color: var(--wy-dark-soft);
  font-size: 0.92rem;
  line-height: 1.58;
}

.product-directory-row__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  color: var(--wy-dark);
  text-align: center;
  line-height: 1.52;
}

.product-directory-row__cell--resource {
  padding: 22px;
}

.product-directory-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #11877d 0%, #0f5f58 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(17, 135, 125, 0.14);
}

.product-directory-download:hover {
  background: linear-gradient(135deg, #149588 0%, #0f6a62 100%);
  color: #fff;
}

.product-directory-download--empty {
  color: rgba(18, 24, 24, 0.35);
  background: rgba(18, 24, 24, 0.04);
}

.product-directory-empty {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(140px, 0.65fr) minmax(160px, 0.62fr) minmax(120px, 0.42fr);
  min-height: 156px;
  background: linear-gradient(180deg, rgba(246, 250, 248, 0.98), rgba(239, 246, 243, 0.98));
}

.product-directory-empty__content {
  display: grid;
  grid-column: 1 / -1;
  align-content: center;
  min-height: 156px;
  padding: 28px 32px;
  border-top: 1px solid rgba(14, 124, 115, 0.08);
}

.product-directory-empty h2,
.product-directory-empty p {
  margin: 0;
}

.product-directory-empty h2 {
  color: var(--wy-dark);
  font-size: 1.2rem;
}

.product-directory-empty p {
  margin-top: 8px;
  color: var(--wy-dark-soft);
  line-height: 1.65;
}

.product-directory-pagination {
  margin-top: 28px;
}

.product-directory-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-directory-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-directory-pagination .page-numbers a,
.product-directory-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(14, 124, 115, 0.14);
  border-radius: 999px;
  color: var(--wy-dark);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.94);
}

.product-directory-pagination .page-numbers .current,
.product-directory-pagination .page-numbers a:hover {
  border-color: var(--wy-green);
  background: var(--wy-green);
  color: #fff;
}

.single-product-hero {
  display: grid;
  grid-template-columns: 660px 660px;
  justify-content: space-between;
  gap: 26px;
  align-items: stretch;
}

.single-product-gallery {
  height: 100%;
  overflow: hidden;
}

.single-product-gallery__stage {
  position: relative;
  min-height: 500px;
  background: #fff;
  overflow: hidden;
}

.single-product-gallery__slide {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 18px;
  overflow: hidden;
}

.single-product-gallery__slide.is-active {
  display: flex;
}

.single-product-gallery__slide img {
  max-width: 100%;
  max-height: 455px;
  object-fit: contain;
}

.single-product-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 52px;
  height: 52px;
  border: 0;
  background: linear-gradient(135deg, var(--wy-green) 0%, #0f6b67 100%);
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 28px rgba(14, 124, 115, 0.18);
}

.single-product-gallery__arrow--prev {
  left: 0;
}

.single-product-gallery__arrow--next {
  right: 0;
}

.single-product-gallery__thumbs {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 0;
  padding: 0 0 8px;
  box-sizing: border-box;
  border-top: 1px solid rgba(18, 24, 24, 0.08);
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #fff;
}

.single-product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.single-product-gallery__thumb {
  flex: 0 0 20%;
  max-width: 20%;
  min-width: 0;
  position: relative;
  padding: 8px 6px;
  border: 0;
  border-right: 1px solid rgba(18, 24, 24, 0.08);
  background: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.single-product-gallery__thumb:last-child {
  border-right: 0;
}

.single-product-gallery__thumb.is-active {
  background: rgba(14, 124, 115, 0.04);
}

.single-product-gallery__thumb.is-active::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 2px solid rgba(14, 124, 115, 0.88);
  border-radius: 10px;
  pointer-events: none;
}

.single-product-gallery__thumb img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.single-product-summary {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  min-width: 0;
  padding: 24px 30px 18px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 247, 0.94));
  box-shadow: 0 18px 40px rgba(18, 24, 24, 0.06);
  overflow: hidden;
}

.single-product-summary__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--wy-dark);
  font-family: var(--wy-font-display);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.single-product-summary h1 {
  margin: 10px 0 0;
  max-width: 100%;
  font-size: clamp(1.34rem, 1.48vw, 1.88rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.single-product-summary__lead {
  margin: 10px 0 12px;
  font-size: 0.93rem;
  line-height: 1.52;
}

.single-product-specs h2,
.single-product-section h2 {
  margin: 0 0 8px;
  font-size: clamp(1.28rem, 1.55vw, 1.72rem);
}

.single-product-specs h2 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.single-product-specs__table {
  margin: 0;
}

.single-product-specs__row {
  display: grid;
  grid-template-columns: minmax(160px, 0.6fr) minmax(0, 1fr);
  gap: 20px;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(18, 24, 24, 0.1);
}

.single-product-specs__row dt {
  color: var(--wy-green);
  font-weight: 800;
}

.single-product-specs__row dd {
  margin: 0;
  color: var(--wy-dark);
}

.single-product-specs__empty {
  padding: 20px 0 0;
  color: var(--wy-dark-soft);
}

.single-product-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
  padding-top: 0;
}

.single-product-quote-button {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  min-width: 238px;
  height: 50px;
  min-height: 50px;
  padding: 0 28px;
  margin: 0;
  border: 0;
  border-radius: 3px;
  color: #fff !important;
  background: linear-gradient(135deg, #11877d 0%, #0f5f58 100%);
  box-shadow: 0 16px 32px rgba(17, 135, 125, 0.2);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.single-product-quote-button span {
  display: block;
  line-height: 1;
  transform: translateY(1px);
}

.single-product-quote-button:visited,
.single-product-quote-button:hover,
.single-product-quote-button:focus {
  color: #fff !important;
  text-decoration: none;
}

.single-product-quote-button:hover,
.single-product-quote-button:focus {
  background: linear-gradient(135deg, #129186 0%, #106861 100%);
}

.single-product-section {
  margin-top: 52px;
}

.single-product-detail-tabs {
  position: relative;
  min-height: var(--single-product-tabs-height, auto);
}

.single-product-detail-tabs__menu {
  z-index: 24;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 38px;
  margin-bottom: 0;
  padding: 22px 42px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 24, 24, 0.055);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 8px 18px rgba(18, 24, 24, 0.025);
  backdrop-filter: blur(16px);
  transition: padding 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, border-radius 0.22s ease;
}

.single-product-detail-tabs.is-stuck .single-product-detail-tabs__menu {
  position: fixed;
  top: var(--single-product-tabs-top, 98px);
  left: var(--single-product-tabs-left, 20px);
  width: var(--single-product-tabs-width, auto);
  margin-bottom: 0;
  padding: 18px 42px 17px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(18, 24, 24, 0.055);
  border-top-color: transparent;
  border-radius: 0;
  box-shadow: 0 7px 18px rgba(18, 24, 24, 0.035);
  backdrop-filter: blur(18px);
}

.single-product-detail-tabs.is-stuck .single-product-detail-tabs__trigger::after {
  bottom: -18px;
}

.single-product-detail-tabs__trigger {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: rgba(18, 24, 24, 0.78);
  font-family: var(--wy-font-sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.single-product-detail-tabs__trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 2px;
  background: var(--wy-green);
  opacity: 0;
  transform: scaleX(0.62);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.single-product-detail-tabs__trigger.is-active {
  color: var(--wy-green);
}

.single-product-detail-tabs__trigger.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.single-product-detail-tabs__trigger:hover,
.single-product-detail-tabs__trigger:focus-visible {
  color: var(--wy-dark);
}

.single-product-detail-tabs.is-stuck .single-product-detail-tabs__trigger:hover,
.single-product-detail-tabs.is-stuck .single-product-detail-tabs__trigger:focus-visible {
  transform: translateY(-1px);
}

.single-product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.single-product-content {
  padding: 0;
}

.single-product-content--tab {
  margin-top: 0;
  padding: 40px 42px;
  background: #fff;
  border: 1px solid rgba(18, 24, 24, 0.055);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 10px 24px rgba(18, 24, 24, 0.028);
}

.single-product-content__section {
  margin: 0;
  scroll-margin-top: 120px;
}

.single-product-content__section + .single-product-content__section {
  margin-top: 46px;
  padding-top: 46px;
  border-top: 1px solid rgba(18, 24, 24, 0.055);
}

.single-product-content__section h2 {
  margin: 0 0 22px;
  color: var(--wy-ink);
  font-size: clamp(1.75rem, 2.1vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.single-product-content__section#advantages {
  padding-top: 30px;
  padding-bottom: 58px;
  border-top: 1px solid rgba(18, 24, 24, 0.095);
  border-bottom: 1px solid rgba(18, 24, 24, 0.095);
}

.single-product-content__section#advantages h2 {
  margin-bottom: 54px;
  color: #000;
  font-size: clamp(1.95rem, 2.25vw, 2.65rem);
}

.single-product-content__section#advantages > p {
  max-width: none;
}

.single-product-content__section#advantages + .single-product-content__section {
  border-top: 0;
}

.single-product-content__section#advantages + .single-product-content__section#use-scenario-diagram {
  margin-top: 22px;
  padding-top: 14px;
}

.single-product-content__section p {
  max-width: 96ch;
  margin: 0;
  color: rgba(18, 24, 24, 0.76);
  font-size: 1.03rem;
  line-height: 1.84;
}

.single-product-content__section p img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-product-content__figure-grid--scenarios .single-product-content__media {
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-product-content__figure-grid--scenarios .single-product-content__media:first-child {
  margin-top: 0;
}

.single-product-content__section#product-description p,
.single-product-content__section#specification p,
.single-product-content__section#use-scenario-diagram p {
  max-width: none;
}

.single-product-content .has-text-align-left,
.single-article-content .has-text-align-left {
  text-align: left !important;
}

.single-product-content .has-text-align-center,
.single-article-content .has-text-align-center {
  text-align: center !important;
}

.single-product-content .has-text-align-right,
.single-article-content .has-text-align-right {
  text-align: right !important;
}

.single-product-content .aligncenter,
.single-article-content .aligncenter {
  display: block;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center;
}

.single-product-content .alignleft,
.single-article-content .alignleft {
  float: left;
  margin-right: 24px !important;
  margin-left: 0 !important;
}

.single-product-content .alignright,
.single-article-content .alignright {
  float: right;
  margin-right: 0 !important;
  margin-left: 24px !important;
}

.single-product-content__media {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 24, 24, 0.055);
  border-radius: 18px;
}

.single-product-content__image {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.single-product-content__media--table .single-product-content__image,
.single-product-content__media--advantages .single-product-content__image {
  border-radius: 0;
}

.single-product-spec-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 18px;
  background: #fff;
}

.single-product-spec-table-wrap + .single-product-spec-table-wrap {
  margin-top: 18px;
}

.single-product-spec-table {
  width: 100% !important;
  height: auto !important;
  min-width: 860px;
  border-collapse: collapse;
  color: rgba(18, 24, 24, 0.72);
  font-size: 1rem;
  line-height: 1.45;
}

.single-product-spec-table th,
.single-product-spec-table td {
  padding: 15px 18px;
  border-right: 1px solid rgba(18, 24, 24, 0.12);
  border-bottom: 1px solid rgba(18, 24, 24, 0.1);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.single-product-spec-table th:last-child,
.single-product-spec-table td:last-child {
  border-right: 0;
}

.single-product-spec-table--has-rowspan-note tbody td:last-child:not(.single-product-spec-table__note),
.single-product-spec-table--has-rowspan-note tbody th:last-child:not(.single-product-spec-table__note) {
  border-right: 1px solid rgba(18, 24, 24, 0.12);
}

.single-product-spec-table tr:last-child td {
  border-bottom: 0;
}

.single-product-spec-table thead th,
.single-product-spec-table thead td {
  background: #0f7970;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.single-product-spec-table td[colspan],
.single-product-spec-table th[colspan],
.single-product-spec-table__note {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.single-product-spec-table tbody td:first-child:not([rowspan]):not([colspan]),
.single-product-spec-table tbody th:first-child:not([rowspan]):not([colspan]) {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.single-product-spec-table td[rowspan],
.single-product-spec-table th[rowspan] {
  text-align: center;
  vertical-align: middle;
  line-height: 1.72;
}

.single-product-spec-table tbody td[rowspan]:first-child,
.single-product-spec-table tbody th[rowspan]:first-child {
  min-width: 140px;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.single-product-spec-table td[rowspan]:not(:first-child),
.single-product-spec-table th[rowspan]:not(:first-child) {
  border-left: 1px solid rgba(18, 24, 24, 0.12);
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.single-product-spec-table tbody tr > td:only-child,
.single-product-spec-table tbody tr > th:only-child {
  border-right: 1px solid rgba(18, 24, 24, 0.12);
}

.single-product-spec-table__note {
  position: relative;
  min-width: 240px;
}

.single-product-spec-note {
  border-top: 1px solid rgba(18, 24, 24, 0.1);
  background: linear-gradient(180deg, rgba(14, 124, 115, 0.04), rgba(14, 124, 115, 0.01));
  padding: 22px 24px 24px;
}

.single-product-spec-note h3 {
  margin: 0 0 10px;
  color: var(--wy-ink);
  font-size: 1.02rem;
  line-height: 1.35;
}

.single-product-spec-note__content {
  color: rgba(18, 24, 24, 0.78);
  font-size: 0.98rem;
  line-height: 1.72;
}

.single-product-spec-note__content > :first-child {
  margin-top: 0;
}

.single-product-spec-note__content > :last-child {
  margin-bottom: 0;
}

.single-product-content__figure-grid--scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 12px;
  align-items: start;
  line-height: 0;
}

.single-product-content__figure-grid--scenarios .single-product-content__media {
  display: block;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  line-height: 0;
}

.single-product-content__figure-grid--scenarios .single-product-content__image {
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: unset;
}

.single-product-content__figure-grid--scenarios br {
  display: none;
}

.single-product-content__figure-grid--scenarios .single-product-content__media--wide {
  grid-column: 1 / -1;
}

.single-product-content__figure-grid--scenarios figcaption {
  min-height: 0;
  padding: 10px 0 0;
}

.single-product-advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
}

.single-product-advantage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 252px;
  padding: 0 34px 6px;
  text-align: center;
  border-right: 0;
}

.single-product-advantage:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: 0;
  bottom: 38px;
  width: 1px;
  background: rgba(18, 24, 24, 0.105);
  content: "";
}

.single-product-advantage__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  color: #000;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.single-product-advantage__icon svg,
.single-product-advantage__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.single-product-advantage__icon--fallback svg,
.single-product-advantage__icon--fallback svg * {
  color: #000;
  fill: currentColor;
}

.single-product-advantage h3 {
  margin: 0 0 16px;
  color: var(--wy-ink);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.45;
}

.single-product-advantage p {
  max-width: 24ch;
  margin: 0;
  color: rgba(18, 24, 24, 0.6);
  font-size: 0.96rem;
  line-height: 1.72;
}

.single-product-content__media--wide {
  grid-column: 1 / -1;
}

.single-product-content__media figcaption {
  padding: 14px 16px 16px;
  color: rgba(18, 24, 24, 0.62);
  font-size: 0.94rem;
  line-height: 1.6;
}

.single-product-content > :first-child {
  margin-top: 0;
}

.single-product-content > :last-child {
  margin-bottom: 0;
}

.single-article-page {
  padding-bottom: 72px;
}

.single-article-hero {
  margin-bottom: 22px;
  padding: 116px 0 70px;
  background-image: var(--single-article-hero-image, none);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-article-hero .page-hero__inner {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 44px;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.single-article-hero .page-hero__copy {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.single-article-hero .page-hero__copy h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.75rem, 2.8vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.single-article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-article-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 32px 34px 34px;
  border: 1px solid rgba(18, 24, 24, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(18, 24, 24, 0.06);
}

.single-article-content {
  max-width: 860px;
  margin: 0 auto;
}

.single-article-content > * {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.single-article-content p,
.single-article-content li {
  color: rgba(37, 50, 56, 0.78);
  font-size: 1rem;
  line-height: 1.78;
}

.single-article-content > :first-child {
  margin-top: 0;
}

.single-article-content > :last-child {
  margin-bottom: 0;
}

.single-article-content figure,
.single-article-content .wp-caption {
  width: 100% !important;
  margin: 30px auto;
  text-align: center;
}

.single-article-content img {
  display: block;
  width: 100%;
  height: 480px;
  margin: 30px auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
}

.single-article-content figure img,
.single-article-content .wp-caption img {
  width: 100%;
  margin: 0 auto;
}

.single-article-content .wp-caption-text,
.single-article-content figcaption {
  margin: 10px 0 0;
  color: var(--wy-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.search-page__hero {
  padding-bottom: 0;
}

.search-page__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: end;
  padding: 34px 0 18px;
}

.search-page__heading h1 {
  margin: 6px 0 8px;
  color: var(--wy-ink);
  font-family: var(--wy-font-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.search-page__heading p {
  margin: 0;
  color: var(--wy-dark-soft);
  font-weight: 700;
}

.search-page__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 999px;
  background: var(--wy-white);
  box-shadow: 0 18px 40px rgba(18, 24, 24, 0.08);
}

.search-page__form input,
.search-page__form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
}

.search-page__form input {
  min-width: 0;
  padding: 0 18px;
  color: var(--wy-ink);
  background: transparent;
  outline: 0;
}

.search-page__form button {
  padding: 0 22px;
  color: var(--wy-white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--wy-green);
  cursor: pointer;
}

.search-page__results-section {
  padding-top: 36px;
}

.not-found-page__hero {
  min-height: 430px;
}

.not-found-page__section {
  padding-top: 72px;
}

.not-found-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 42px;
  align-items: start;
}

.not-found-page__copy > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--wy-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.not-found-page__copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--wy-ink);
  font-family: var(--wy-font-display);
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  line-height: 0.98;
}

.not-found-page__copy p {
  max-width: 720px;
  margin: 0;
  color: var(--wy-dark-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}

.not-found-page__search {
  max-width: 640px;
  margin-top: 28px;
}

.not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.not-found-page__panel {
  padding: 28px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 8px;
  background: var(--wy-white);
  box-shadow: 0 22px 50px rgba(18, 24, 24, 0.08);
}

.not-found-page__panel h2 {
  margin: 0 0 18px;
  color: var(--wy-ink);
  font-size: 1.08rem;
}

.not-found-page__panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.not-found-page__panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--wy-ink);
  font-weight: 800;
  background: rgba(18, 135, 125, 0.07);
}

.not-found-page__panel a::after {
  content: "→";
  color: var(--wy-green);
}

.not-found-page__panel a:hover,
.not-found-page__panel a:focus-visible {
  color: var(--wy-white);
  background: var(--wy-green);
}

.not-found-page__panel a:hover::after,
.not-found-page__panel a:focus-visible::after {
  color: currentColor;
}

.search-results-list {
  display: grid;
  gap: 18px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(18, 24, 24, 0.08);
  border-radius: 14px;
  background: var(--wy-white);
  box-shadow: 0 16px 36px rgba(18, 24, 24, 0.06);
}

.search-result-card--product {
  border-color: rgba(14, 124, 115, 0.2);
}

.search-result-card__media {
  display: grid;
  place-items: center;
  min-height: 142px;
  overflow: hidden;
  border-radius: 10px;
  color: var(--wy-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--wy-white);
}

.search-result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.search-result-card__copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.search-result-card__copy > span {
  color: var(--wy-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-result-card__copy h2 {
  margin: 0;
  color: var(--wy-ink);
  font-size: 1.26rem;
  line-height: 1.35;
}

.search-result-card__copy h2 a:hover,
.search-result-card__copy h2 a:focus-visible {
  color: var(--wy-green);
}

.search-result-card__copy p {
  display: -webkit-box;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: var(--wy-dark-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search-page__empty {
  max-width: 720px;
}

@media (max-width: 1180px) {
  .single-article-hero .page-hero__inner {
    padding: 0 28px;
  }

  .single-article-hero .page-hero__copy h1 {
    font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  }
}

@media (max-width: 767px) {
  .search-page__heading,
  .search-page__form,
  .not-found-page__grid,
  .search-result-card {
    grid-template-columns: 1fr;
  }

  .search-page__heading {
    gap: 20px;
    padding-top: 18px;
  }

  .not-found-page__section {
    padding-top: 52px;
  }

  .search-page__heading h1 {
    font-size: clamp(2.5rem, 16vw, 3.6rem);
  }

  .search-page__form {
    border-radius: 16px;
  }

  .search-page__form button {
    width: 100%;
  }

  .not-found-page__actions .button {
    width: 100%;
  }

  .search-result-card__media {
    min-height: 220px;
  }

  .single-article-hero .page-hero__inner {
    padding: 0 18px;
  }

  .single-article-hero .page-hero__copy h1 {
    max-width: 11em;
    font-size: clamp(1.35rem, 6.6vw, 1.85rem);
    white-space: normal;
    overflow-wrap: normal;
  }

  .single-article-meta {
    flex-direction: column;
    gap: 6px;
    line-height: 1.35;
  }

  .single-article-page {
    overflow-x: hidden;
  }

  .single-article-page .container,
  .single-article-page .container.page-stack {
    box-sizing: border-box;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-right: auto;
    margin-left: auto;
  }

  .single-article-page .page-section {
    padding-top: 44px;
    overflow-x: hidden;
  }

  .single-article-card {
    box-sizing: border-box;
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
    padding: 20px 18px;
    border-radius: 16px;
    overflow: hidden;
  }

  .single-article-content,
  .single-article-content > *,
  .single-article-content figure,
  .single-article-content .wp-caption {
    box-sizing: border-box;
    width: calc(100vw - 68px) !important;
    max-width: calc(100vw - 68px) !important;
    min-width: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .single-article-content p,
  .single-article-content li {
    font-size: 0.96rem;
    line-height: 1.72;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .single-article-content img {
    width: calc(100vw - 68px) !important;
    max-width: calc(100vw - 68px) !important;
    height: auto;
    max-height: none;
    border-radius: 10px;
    object-fit: contain;
  }
}

/* Default archive mobile UI refinements */
@media (max-width: 560px) {
  .fallback-page {
    overflow-x: hidden;
  }

  .fallback-page__inner {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-top: 34px;
  }

  .fallback-article-card {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-bottom: 28px;
    padding: 0;
    overflow: hidden;
  }

  .fallback-article-card__title {
    margin: 0 0 18px;
    color: var(--wy-ink);
    max-width: 10em;
    font-size: clamp(1.65rem, 7.8vw, 2.05rem);
    line-height: 1.12;
    overflow-wrap: normal;
  }

  .fallback-page .entry-content,
  .fallback-page .entry-content > *,
  .fallback-page .entry-content figure,
  .fallback-page .entry-content .wp-caption {
    box-sizing: border-box;
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    min-width: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .fallback-page .entry-content p,
  .fallback-page .entry-content li {
    color: var(--wy-dark-soft);
    font-size: 0.96rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .fallback-page .entry-content img {
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    height: auto;
    margin: 18px 0;
    border-radius: 10px;
  }
}

.product-grid--related {
  margin-top: 0;
  gap: 16px;
}

.product-grid--related .product-card {
  background: #fff;
  border-radius: 12px;
}

.product-grid--related .product-card:hover {
  transform: translateY(-2px);
}

.product-grid--related .product-card__media {
  aspect-ratio: 1.18 / 1;
  background: #fff;
}

.product-grid--related .product-card__media img {
  padding: 14px;
}

.product-grid--related .product-card__copy {
  gap: 7px;
  padding: 13px 14px 15px;
}

.product-grid--related .product-card__copy span {
  margin-bottom: 4px;
  font-size: 0.68rem;
}

.product-grid--related .product-card__copy h3 {
  margin-bottom: 4px;
  font-size: 0.94rem;
  line-height: 1.32;
}

.product-grid--related .product-card__copy p {
  display: -webkit-box;
  min-height: 1lh;
  max-height: calc(1.55em * 3);
  overflow: hidden;
  font-size: 0.86rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 1180px) {
  .product-directory-layout,
  .single-product-hero,
  .product-directory-intro {
    grid-template-columns: 1fr;
  }

  .product-directory-intro h1 {
    white-space: normal;
  }

  .single-product-gallery__stage,
  .single-product-gallery__slide {
    min-height: 480px;
  }

  .single-product-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-product-summary {
    height: auto;
    overflow: visible;
  }

  .single-product-summary h1 {
    white-space: normal;
  }
}

@media (max-width: 920px) {
  .product-directory-table__header {
    display: none;
  }

  .product-directory-empty {
    grid-template-columns: 1fr;
  }

  .product-directory-empty__content {
    min-height: 0;
  }

  .product-directory-row {
    grid-template-columns: 1fr;
  }

  .product-directory-row > div {
    min-height: auto;
    border-right: 0;
  }

  .product-directory-row__cell {
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.86);
    text-align: left;
  }

  .product-directory-row__cell::before {
    content: attr(data-label);
    color: rgba(18, 24, 24, 0.62);
    font-weight: 700;
  }

  .product-directory-row__cell--resource {
    justify-content: flex-start;
    gap: 18px;
  }

  .product-directory-download {
    min-width: 0;
    width: 100%;
  }

  .single-product-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .product-shell,
  .single-product-page {
    padding: 28px 0 56px;
  }

  .single-product-page {
    overflow-x: hidden;
  }

  .single-product-page .container {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

  .single-product-hero {
    display: block;
    gap: 18px;
    max-width: 100%;
    overflow: hidden;
  }

  .single-product-hero > *,
  .single-product-section,
  .single-product-page .product-grid--related,
  .single-product-page .product-grid--related > * {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .single-product-gallery,
  .single-product-summary,
  .single-product-content,
  .single-product-page .product-card {
    max-width: 100%;
    overflow: hidden;
    border-radius: 18px;
  }

  .single-product-gallery {
    margin-bottom: 18px;
  }

  .single-product-gallery__thumbs {
    max-width: 100%;
  }

  .single-product-gallery__stage,
  .single-product-gallery__slide {
    min-height: 330px;
  }

  .single-product-gallery__slide img {
    max-height: 300px;
  }

  .single-product-summary {
    padding: 24px 18px 18px;
  }

  .single-product-summary h1,
  .single-product-summary__lead,
  .single-product-content,
  .single-product-content p,
  .single-product-specs__row dd {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .single-product-summary h1 {
    max-width: 24ch;
    font-size: 1.35rem;
    line-height: 1.18;
  }

  .single-product-summary__lead,
  .single-product-content p,
  .single-product-specs__row dd {
    max-width: 32ch;
  }

  .single-product-detail-tabs__menu {
    gap: 20px;
    margin-bottom: 0;
    padding: 16px 14px 15px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-radius: 18px 18px 0 0;
  }

  .single-product-detail-tabs__menu::-webkit-scrollbar {
    display: none;
  }

  .single-product-detail-tabs__trigger {
    flex: 0 0 auto;
    font-size: 0.94rem;
  }

  .single-product-content--tab {
    margin-top: 0;
    padding: 24px 20px;
    border-radius: 0 0 18px 18px;
  }

  .single-product-section {
    margin-top: 40px;
  }

  .single-product-content {
    padding: 0;
  }

  .single-product-content__section {
    scroll-margin-top: 92px;
  }

  .single-product-content__section + .single-product-content__section {
    margin-top: 32px;
    padding-top: 32px;
  }

  .single-product-content__section h2 {
    margin-bottom: 16px;
    font-size: 1.42rem;
  }

  .single-product-content__section#advantages {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .single-product-content__section#advantages h2 {
    margin-bottom: 30px;
  }

  .single-product-content__section p {
    font-size: 0.98rem;
    line-height: 1.76;
  }

  .single-product-spec-table {
    min-width: 760px;
    font-size: 0.92rem;
  }

  .single-product-spec-table th,
  .single-product-spec-table td {
    padding: 12px 14px;
  }

  .single-product-spec-note {
    padding: 18px 18px 20px;
  }

  .single-product-spec-note__content {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .single-product-content__figure-grid--scenarios {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .single-product-content__figure-grid--scenarios .single-product-content__image {
    height: auto;
  }

  .single-product-advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-product-advantage {
    min-height: 0;
    padding: 0 18px 24px;
  }

  .single-product-advantage:not(:last-child)::after {
    top: 36px;
    bottom: 32px;
  }

  .single-product-advantage:nth-child(2n)::after {
    display: none;
  }

  .single-product-advantage:nth-child(n + 3) {
    border-top: 1px solid rgba(18, 24, 24, 0.08);
  }

  .single-product-advantage__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .single-product-advantage__icon svg,
  .single-product-advantage__icon img {
    width: 44px;
    height: 44px;
  }

  .single-product-advantage h3 {
    margin-bottom: 12px;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .single-product-advantage p {
    font-size: 0.92rem;
    line-height: 1.64;
  }

  .single-product-content__image {
    border-radius: 0;
  }

  .single-product-content__media {
    border-radius: 14px;
  }

  .single-product-content__media figcaption {
    padding: 12px 14px 14px;
  }

  .single-product-page .product-grid--related {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .single-product-page .product-grid--related .product-card__media img {
    object-fit: contain;
  }

  .product-directory-row__name {
    grid-template-columns: 1fr;
  }

  .product-directory-row__thumb {
    height: 220px;
  }

  .single-product-gallery__stage,
  .single-product-gallery__slide {
    min-height: 360px;
  }

  .single-product-gallery__thumbs {
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
  }

  .single-product-gallery__thumb {
    flex-basis: 33.3333%;
    max-width: none;
  }

  .single-product-specs__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .single-product-quote-button {
    width: 100%;
    min-width: 0;
  }
}

/* Product category mobile UI refinements */
@media (max-width: 680px) {
  .product-directory-page {
    overflow-x: hidden;
  }

  .product-directory-page .container {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

  .product-directory-intro,
  .product-directory-sidebar,
  .product-directory-table,
  .product-directory-row {
    max-width: 100%;
    overflow: hidden;
  }

  .product-breadcrumbs {
    gap: 7px;
    margin-bottom: 14px;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .product-directory-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 18px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .product-directory-intro h1 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: 0;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .product-directory-intro__meta {
    justify-items: stretch;
    text-align: left;
  }

  .product-directory-intro__meta p {
    max-width: 32ch;
    font-size: 0.96rem;
    line-height: 1.65;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-directory-intro__meta .product-directory-catalog-button {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
  }

  .product-directory-layout {
    gap: 18px;
  }

  .product-directory-sidebar,
  .product-directory-table {
    border-radius: 18px;
  }

  .product-directory-search {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .product-directory-search input,
  .product-directory-search button {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
  }

  .product-directory-search input {
    border-right: 1px solid rgba(14, 124, 115, 0.16);
  }

  .product-directory-panel {
    border-radius: 18px;
  }

  .product-directory-panel__header {
    padding: 18px;
  }

  .product-directory-panel__header h2 {
    font-size: 1.8rem;
  }

  .product-directory-groups {
    padding: 0 18px 12px;
  }

  .product-directory-group__toggle {
    gap: 10px;
    padding: 13px 0;
    font-size: 0.98rem;
    line-height: 1.32;
  }

  .product-directory-group__icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
  }

  .product-directory-table {
    display: grid;
    gap: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-directory-row {
    overflow: hidden;
    border: 1px solid rgba(14, 124, 115, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(18, 24, 24, 0.06);
  }

  .product-directory-empty {
    overflow: hidden;
    border: 1px solid rgba(14, 124, 115, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(18, 24, 24, 0.06);
  }

  .product-directory-empty__content {
    padding: 22px 18px;
    border-top: 0;
  }

  .product-directory-row > div {
    border-top: 1px solid rgba(14, 124, 115, 0.08);
    background: transparent;
  }

  .product-directory-row__name {
    gap: 14px;
    padding: 16px;
    border-top: 0 !important;
  }

  .product-directory-row__thumb {
    height: 190px;
    border-radius: 14px;
  }

  .product-directory-row__thumb img {
    max-height: 160px;
  }

  .product-directory-row__copy h2 {
    max-width: 28ch;
    font-size: 1.04rem;
    line-height: 1.38;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .product-directory-row__copy h2 a {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-directory-row__cell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
    justify-content: stretch;
    max-width: calc(100vw - 64px);
    padding: 14px 16px;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-directory-row__cell::before {
    color: rgba(18, 24, 24, 0.58);
    font-size: 0.9rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .product-directory-row__cell--resource {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-directory-row__cell--resource::before {
    display: none;
  }

  .product-directory-download {
    width: 100%;
    min-height: 42px;
  }
}

/* Independent mobile footer */
@media (max-width: 680px) {
  .site-footer {
    padding: 34px 0 22px;
    background: #050505;
  }

  .site-footer::before,
  .site-footer .footer-grid,
  .site-footer .footer-bottom {
    display: none;
  }

  .footer-mobile {
    display: grid;
    gap: 16px;
  }

  .footer-mobile__brand h2 {
    margin: 0 0 8px;
    color: var(--wy-white);
    font-family: var(--wy-font-display);
    font-size: clamp(1.55rem, 7.5vw, 2.1rem);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }

  .footer-mobile__brand p,
  .footer-mobile__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .footer-mobile__contact {
    display: grid;
    gap: 8px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-mobile__contact a {
    display: block;
    min-width: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .footer-mobile__copyright {
    font-size: 0.82rem;
  }
}

/* Global mobile header refinements */
@media (max-width: 560px) {
  .header-inner,
  .brand,
  .brand-copy,
  .brand-copy-link {
    min-width: 0;
  }

  .header-inner {
    position: relative;
    gap: 12px;
    min-height: 72px;
    padding-right: 54px;
  }

  .brand {
    flex: 1 1 0;
    gap: 10px;
    overflow: hidden;
  }

  .brand-logo img {
    flex: 0 0 auto;
    max-width: 44px;
    max-height: 44px;
  }

  .brand-copy-link,
  .brand-copy {
    overflow: hidden;
  }

  .brand-copy strong {
    display: block;
    max-width: min(204px, calc(100vw - 184px));
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    top: 15px;
    right: 14px;
    z-index: 120;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    margin-left: auto;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.14);
  }

  .menu-toggle::before {
    content: "";
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--wy-white);
    box-shadow: 0 -7px 0 var(--wy-white), 0 7px 0 var(--wy-white);
  }

  .menu-toggle span:not(.screen-reader-text) {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    max-width: 184px;
  }
}

/* Products page mobile UI refinements */
@media (max-width: 860px) {
  .basic-page--products {
    overflow-x: hidden;
  }

  .basic-page--products .product-category-card,
  .basic-page--products .product-category-card__body,
  .basic-page--products .product-category-card__copy,
  .basic-page--products .product-category-row,
  .basic-page--products .product-overview-grid,
  .basic-page--products .page-split-grid--next-step,
  .basic-page--products .product-overview-card,
  .basic-page--products .metric-card,
  .basic-page--products .page-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .basic-page--products .product-category-card__copy,
  .basic-page--products .product-category-card__copy p,
  .basic-page--products .product-overview-points li,
  .basic-page--products .product-catalog-note,
  .basic-page--products .page-card p,
  .basic-page--products .next-step-list li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .basic-page--products .product-category-card__copy p {
    max-width: min(100%, calc(100vw - 104px));
  }
}

@media (max-width: 560px) {
  .basic-page--products .page-hero--banner .page-hero__inner {
    min-height: 245px;
  }

  .basic-page--products .page-hero--banner .page-hero__copy h1 {
    font-size: clamp(2.25rem, 15vw, 3.3rem);
  }

  .basic-page--products .page-section {
    padding-top: 52px;
  }

  .basic-page--products .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }

  .basic-page--products .section-heading h2,
  .basic-page--products .product-overview-card h3,
  .basic-page--products .next-step-card h3 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1;
  }

  .basic-page--products .section-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    width: 100%;
  }

  .basic-page--products .product-category-row--page {
    gap: 18px;
  }

  .basic-page--products .product-category-card--page {
    overflow: hidden;
    border-radius: 16px;
  }

  .basic-page--products .product-category-card__media img {
    aspect-ratio: 1.22 / 1;
    min-height: 0;
    object-fit: cover;
  }

  .basic-page--products .product-category-card__body,
  .basic-page--products .product-overview-card,
  .basic-page--products .next-step-card {
    padding: 22px 18px;
  }

  .basic-page--products .product-category-card__body {
    width: 100%;
  }

  .basic-page--products .product-category-card__title {
    font-size: 1.12rem;
    line-height: 1.28;
  }

  .basic-page--products .product-category-card__copy p,
  .basic-page--products .product-overview-points li,
  .basic-page--products .product-catalog-note,
  .basic-page--products .page-card p,
  .basic-page--products .next-step-list li {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .basic-page--products .product-category-card .button,
  .basic-page--products .next-step-card .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .basic-page--products .product-overview-grid,
  .basic-page--products .page-split-grid--next-step {
    gap: 18px;
  }

  .basic-page--products .page-card-grid,
  .basic-page--products .page-metrics--products {
    gap: 14px;
  }

  .basic-page--products .metric-card,
  .basic-page--products .page-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .basic-page--products .metric-card strong {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .basic-page--products .next-step-card .page-hero__actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* Contact page mobile UI refinements */
@media (max-width: 560px) {
  .basic-page--contact-us {
    overflow-x: hidden;
  }

  .basic-page--contact-us .container {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

  .basic-page--contact-us .page-section,
  .basic-page--contact-us .inquiry-section {
    padding-top: 52px;
  }

  .basic-page--contact-us .page-hero--banner .page-hero__inner {
    min-height: 245px;
  }

  .basic-page--contact-us .page-hero--banner .page-hero__copy h1 {
    font-size: clamp(2.1rem, 13vw, 3rem);
  }

  .basic-page--contact-us .contact-info-card,
  .basic-page--contact-us .inquiry-shell,
  .basic-page--contact-us .inquiry-form-wrap {
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }

  .basic-page--contact-us .contact-info-card h2 {
    padding: 28px 18px 0;
    font-size: clamp(2rem, 11vw, 3rem);
    white-space: normal;
  }

  .basic-page--contact-us .contact-info-company,
  .basic-page--contact-us .contact-info-social {
    padding-right: 18px;
    padding-left: 18px;
  }

  .basic-page--contact-us .contact-info-list {
    padding: 18px;
  }

  .basic-page--contact-us .contact-info-list dd,
  .basic-page--contact-us .contact-info-list a,
  .basic-page--contact-us .contact-info-company,
  .basic-page--contact-us .inquiry-copy p,
  .basic-page--contact-us .contact-chip span,
  .basic-page--contact-us .inquiry-privacy-note {
    max-width: 32ch;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .basic-page--contact-us .inquiry-shell {
    grid-template-columns: 1fr;
  }

  .basic-page--contact-us .inquiry-copy,
  .basic-page--contact-us .inquiry-form-wrap {
    padding: 22px 18px;
  }

  .basic-page--contact-us .contact-chip-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .basic-page--contact-us .contact-chip {
    min-width: 0;
    min-height: 0;
  }

  .basic-page--contact-us .inquiry-form .button {
    width: 100%;
    min-width: 0;
  }
}

/* News page mobile UI refinements */
@media (max-width: 560px) {
  .basic-page--news {
    overflow-x: hidden;
  }

  .basic-page--news .container,
  .basic-page--news .news-page-shell {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

  .basic-page--news .page-section {
    padding-top: 52px;
  }

  .basic-page--news .news-page-shell,
  .basic-page--news .news-sidebar,
  .basic-page--news .news-page-main,
  .basic-page--news .news-page-grid {
    min-width: 0;
    max-width: 100%;
  }

  .basic-page--news .news-sidebar__block,
  .basic-page--news .news-story {
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }

  .basic-page--news .news-sidebar__block,
  .basic-page--news .news-story {
    padding: 22px 18px;
  }

  .basic-page--news .news-category-tabs {
    grid-template-columns: 1fr;
  }

  .basic-page--news .news-sidebar__block--featured {
    display: none;
  }

  .basic-page--news .news-story,
  .basic-page--news .news-story.is-featured {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .basic-page--news .news-story__media {
    width: 100%;
    aspect-ratio: 1.25 / 1;
  }

  .basic-page--news .news-story h2 {
    max-width: 26ch;
    font-size: 1.2rem;
    line-height: 1.22;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .basic-page--news .news-story__summary {
    max-width: 32ch;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* Solutions page mobile UI refinements */
@media (max-width: 560px) {
  .basic-page--solutions {
    overflow-x: hidden;
  }

  .basic-page--solutions .container,
  .basic-page--solutions .application-showcase {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

  .basic-page--solutions .page-section,
  .basic-page--solutions .application-section,
  .basic-page--solutions .application-final-section {
    padding-top: 52px;
  }

  .basic-page--solutions .application-heading,
  .basic-page--solutions .application-showcase__heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .basic-page--solutions .application-card,
  .basic-page--solutions .application-row,
  .basic-page--solutions .application-cta,
  .basic-page--solutions .application-final-cta,
  .basic-page--solutions .solutions-category-card,
  .basic-page--solutions .solutions-support-card {
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }

  .basic-page--solutions .application-card__body,
  .basic-page--solutions .application-row__content,
  .basic-page--solutions .application-cta,
  .basic-page--solutions .application-final-cta,
  .basic-page--solutions .solutions-category-card,
  .basic-page--solutions .solutions-support-card {
    padding: 22px 18px;
  }

  .basic-page--solutions .application-heading h2,
  .basic-page--solutions .application-showcase__heading h2,
  .basic-page--solutions .application-cta h2,
  .basic-page--solutions .application-final-cta h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    line-height: 1.15;
  }

  .basic-page--solutions .application-heading p,
  .basic-page--solutions .application-card__body h3,
  .basic-page--solutions .application-row__content h3,
  .basic-page--solutions .application-card__body p,
  .basic-page--solutions .application-row__content p,
  .basic-page--solutions .application-cta p,
  .basic-page--solutions .application-final-cta p,
  .basic-page--solutions .solutions-category-card p {
    max-width: 32ch;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .basic-page--solutions .application-card__body h3,
  .basic-page--solutions .application-row__content h3 {
    max-width: 26ch;
  }

  .basic-page--solutions .application-product-tags span,
  .basic-page--solutions .solutions-category-card,
  .basic-page--solutions .solutions-support-card h3 {
    white-space: normal;
  }

  .basic-page--solutions .application-card__media,
  .basic-page--solutions .application-row__media {
    height: auto;
    min-height: 0;
  }

  .basic-page--solutions .application-card__media img,
  .basic-page--solutions .application-row__media img {
    min-height: 0;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
  }

  .basic-page--solutions .application-cta .button,
  .basic-page--solutions .application-final-cta .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

/* About page mobile UI refinements */
@media (max-width: 560px) {
  .basic-page--about-us {
    overflow-x: hidden;
  }

  .basic-page--about-us .container {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

  .basic-page--about-us .page-hero--banner .page-hero__inner {
    min-height: 245px;
  }

  .basic-page--about-us .page-hero--banner .page-hero__copy h1 {
    font-size: clamp(2.1rem, 14vw, 3.1rem);
  }

  .basic-page--about-us .page-section {
    padding-top: 52px;
  }

  .basic-page--about-us .page-rich-text,
  .basic-page--about-us .metric-card,
  .basic-page--about-us .page-card,
  .basic-page--about-us .facility-card,
  .basic-page--about-us .page-cert-copy {
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }

  .basic-page--about-us .page-rich-text,
  .basic-page--about-us .metric-card,
  .basic-page--about-us .page-card,
  .basic-page--about-us .facility-card__copy,
  .basic-page--about-us .page-cert-copy {
    padding: 22px 18px;
  }

  .basic-page--about-us .page-rich-text p,
  .basic-page--about-us .page-card p,
  .basic-page--about-us .facility-card__copy p,
  .basic-page--about-us .page-cert-copy p {
    max-width: 32ch;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .basic-page--about-us .page-metrics,
  .basic-page--about-us .page-card-grid,
  .basic-page--about-us .page-facility-grid,
  .basic-page--about-us .page-cert-layout,
  .basic-page--about-us .page-cert-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .basic-page--about-us .facility-card__media img {
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
  }

  .basic-page--about-us .page-cert-copy .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .privacy-policy-grid {
    grid-template-columns: 1fr;
  }
}

/* Certificate page mobile UI refinements */
@media (max-width: 560px) {
  .certificate-page {
    overflow-x: hidden;
  }

  .certificate-page .container {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

  .certificate-page .page-hero--banner .page-hero__inner {
    min-height: 245px;
  }

  .certificate-page .page-hero--banner .page-hero__copy h1 {
    font-size: clamp(2.1rem, 13vw, 3rem);
  }

  .certificate-page .page-section {
    padding-top: 52px;
  }

  .certificate-page .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }

  .certificate-page .section-heading h2 {
    width: 100%;
    max-width: 7.2em;
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1;
    white-space: normal;
    overflow-wrap: normal;
  }

  .certificate-detail__content h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .certificate-page .section-link {
    width: 100%;
    min-height: 40px;
    overflow-wrap: anywhere;
  }

  .certificate-page .page-cert-grid,
  .certificate-page .certificate-card,
  .certificate-detail,
  .certificate-detail__media,
  .certificate-detail__content {
    max-width: 100%;
    min-width: 0;
  }

  .certificate-page .certificate-card,
  .certificate-detail__media,
  .certificate-detail__content {
    overflow: hidden;
    border-radius: 16px;
  }

  .certificate-page .certificate-card img,
  .certificate-detail__media img {
    width: 100%;
    object-fit: contain;
  }

  .certificate-detail {
    gap: 18px;
  }

  .certificate-detail__media {
    padding: 14px;
  }

  .certificate-detail__content {
    padding: 22px 18px;
  }

  .certificate-detail__content p {
    max-width: 32ch;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* Homepage mobile UI refinements */
@media (max-width: 860px) {
  body.home {
    overflow-x: hidden;
  }

  body.home .site-navigation {
    left: 0;
    right: 0;
    z-index: 120;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    border-color: rgba(255, 255, 255, 0.2) !important;
    background:
      linear-gradient(180deg, rgba(18, 34, 36, 0.98) 0%, rgba(10, 61, 58, 0.98) 100%) !important;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
  }

  body.home .nav-menu a,
  body.home .header-language,
  body.home .header-cta {
    min-height: 42px;
  }

  body.home .header-cta {
    justify-content: center;
    width: 100%;
  }

  body.home .section-block {
    padding: 64px 0;
  }

  body.home .section-heading {
    align-items: flex-start;
    margin-bottom: 22px;
  }

  body.home .section-heading h2,
  body.home .section-heading--light h2,
  body.home .about-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    line-height: 1;
  }

  body.home .hero-media__main img,
  body.home .hero-media__main[data-slide] img,
  body.home .hero-media__main[data-slide].is-active img {
    min-height: 640px;
    max-height: 640px;
  }

  body.home .hero-media__overlay {
    top: 48%;
    transform: translateY(-50%);
  }

  body.home .certificates-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  body.home .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-left: 0;
  }

  body.home .certificates-copy {
    width: 100%;
    justify-self: stretch;
  }

  body.home .certificates-copy h2 {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  body.home .container {
    width: min(100% - 28px, 1240px);
  }

  body.home .header-inner {
    gap: 12px;
    min-height: 72px;
  }

  body.home .brand {
    min-width: 0;
    gap: 10px;
  }

  body.home .brand-logo img {
    max-width: 44px;
    max-height: 44px;
  }

  body.home .brand-copy {
    min-width: 0;
  }

  body.home .brand-copy strong {
    max-width: 210px;
    overflow: hidden;
    font-size: 0.88rem;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.home .brand-copy small {
    display: none;
  }

  body.home .menu-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  body.home .site-navigation {
    top: calc(100% + 8px);
    padding: 16px;
    border-radius: 16px;
  }

  body.home .hero-section {
    padding-bottom: 0;
  }

  body.home .hero-media__main img,
  body.home .hero-media__main[data-slide] img,
  body.home .hero-media__main[data-slide].is-active img {
    min-height: 560px;
    max-height: 560px;
  }

  body.home .hero-media__overlay {
    left: 18px !important;
    top: 48% !important;
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    gap: 5px;
  }

  body.home .hero-media__title {
    font-size: clamp(2rem, 11vw, 3.05rem);
    line-height: 0.98;
  }

  body.home .hero-media__lead {
    font-size: 1rem;
  }

  body.home .hero-media__label {
    font-size: 0.78rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  body.home .hero-media__copy {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  body.home .hero-slider-arrow {
    top: auto;
    bottom: 18px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  body.home .hero-slider-arrow:hover,
  body.home .hero-slider-arrow:focus-visible {
    transform: scale(1.04);
  }

  body.home .hero-slider-arrow--prev {
    left: 10px;
  }

  body.home .hero-slider-arrow--next {
    right: 10px;
  }

  body.home .section-block {
    padding: 48px 0;
  }

  body.home .section-heading {
    flex-direction: column;
    gap: 12px;
  }

  body.home .section-link,
  body.home .button {
    width: 100%;
    justify-content: center;
  }

  body.home .product-category-row {
    gap: 16px;
  }

  body.home .product-category-card {
    border-radius: 16px;
  }

  body.home .product-category-card__media {
    min-height: 0;
  }

  body.home .product-category-card__media img {
    aspect-ratio: 1.35 / 1;
    min-height: 0;
    object-fit: cover;
  }

  body.home .product-category-card__body,
  body.home .product-card__copy {
    padding: 18px;
  }

  body.home .product-category-card__title {
    font-size: 1.08rem;
    line-height: 1.28;
  }

  body.home .about-layout {
    gap: 18px;
    padding: 0;
  }

  body.home .about-media {
    border-radius: 16px;
  }

  body.home .about-media img {
    min-height: 300px;
  }

  body.home .about-copy {
    padding: 24px 18px;
    border-radius: 18px;
  }

  body.home .about-highlight-row,
  body.home .about-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.home .about-highlight-row span,
  body.home .about-tags span {
    justify-content: center;
    width: 100%;
    min-height: 34px;
    font-size: 0.76rem;
    text-align: center;
  }

  body.home .certificate-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.home .certificate-card {
    padding: 14px;
    border-radius: 16px;
  }

  body.home .certificate-card img {
    aspect-ratio: 1 / 1.08;
  }

  body.home .certificates-copy {
    padding: 24px 18px;
    border-radius: 18px;
  }

  body.home .news-layout,
  body.home .news-list {
    gap: 16px;
  }

  body.home .news-featured,
  body.home .news-item {
    border-radius: 16px;
  }

  body.home .news-featured__body,
  body.home .news-item__copy {
    padding: 18px;
  }

  body.home .news-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  body.home .news-item__thumb img {
    height: 100%;
    min-height: 120px;
  }

  body.home .project-grid {
    gap: 14px;
  }

  body.home .project-card {
    min-height: 220px;
    border-radius: 16px;
  }

  body.home .project-card figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 1.5rem;
  }

  body.home .inquiry-shell {
    border-radius: 16px;
  }

  body.home .inquiry-copy,
  body.home .inquiry-form-wrap {
    padding: 22px 18px;
  }

  body.home .contact-chip-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.home .contact-chip {
    min-width: 0;
    min-height: 0;
  }

  body.home .inquiry-copy p,
  body.home .contact-chip span,
  body.home .inquiry-privacy-note {
    max-width: 32ch;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body.home .site-footer {
    padding-top: 48px;
  }

  body.home .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 420px) {
  body.home .brand-copy strong {
    max-width: 172px;
  }

  body.home .hero-media__main img,
  body.home .hero-media__main[data-slide] img,
  body.home .hero-media__main[data-slide].is-active img {
    min-height: 520px;
    max-height: 520px;
  }

  body.home .hero-media__title {
    font-size: clamp(1.82rem, 10.5vw, 2.45rem);
  }

  body.home .hero-media__copy {
    -webkit-line-clamp: 3;
  }

  body.home .news-item {
    grid-template-columns: 1fr;
  }

  body.home .news-item__thumb img {
    aspect-ratio: 1.35 / 1;
  }
}
