:root {
  --ink: #17232b;
  --ink-soft: #495861;
  --navy: #0d2a3a;
  --steel: #23647a;
  --steel-light: #dceaf0;
  --teal: #237d7d;
  --teal-light: #e4f0ee;
  --gold: #e5b83f;
  --paper: #f6f7f4;
  --white: #ffffff;
  --line: #d8dfe0;
  --max: 1240px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 35, 43, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.capture-mode .site-header {
  position: relative;
}

.header-inner {
  width: min(1380px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
}

.brand img {
  width: 82px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.1;
}

.brand-copy small {
  max-width: 205px;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.25;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.desktop-nav a {
  position: relative;
  color: #33434c;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.desktop-nav a.is-current,
.mobile-nav a.is-current {
  color: var(--steel);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  position: relative;
  z-index: 120;
}

.language-button,
.menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.language-button {
  display: inline-flex;
  width: auto;
  min-width: 68px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.language-button > svg:first-child {
  width: 16px;
  height: 16px;
}

.language-button .language-caret {
  width: 13px;
  height: 13px;
  transition: transform 180ms ease;
}

.language-button[aria-expanded="true"] .language-caret {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(7, 33, 45, .16);
}

.language-menu[hidden] {
  display: none;
}

.language-menu p {
  margin: 0;
  padding: 11px 14px 8px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.language-menu a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2px 12px;
  min-height: 48px;
  padding: 7px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="true"] {
  background: #f2f7f9;
}

.language-menu a span {
  font-size: 14px;
  font-weight: 800;
}

.language-menu a small {
  grid-column: 1;
  color: var(--ink-soft);
  font-size: 11px;
}

.language-menu a svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 16px;
  height: 16px;
  color: var(--steel);
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .desktop-nav,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .scope-list > div,
html[dir="rtl"] .check-list li,
html[dir="rtl"] .contact-option {
  direction: rtl;
}

html[dir="rtl"] .desktop-nav a::after {
  transform-origin: right;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
  direction: rtl;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  position: fixed;
  inset: 69px 0 auto;
  z-index: 99;
  padding: 18px 24px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
}

.button-small {
  min-height: 42px;
  padding: 0 15px;
  font-size: 13px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-primary {
  color: #10202a;
  background: var(--gold);
}

.button-primary:hover {
  background: #f1c95a;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(10, 28, 38, 0.42);
}

.button-secondary:hover {
  background: rgba(10, 28, 38, 0.72);
}

.hero {
  position: relative;
  height: min(700px, calc(100svh - 112px));
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hero-factory.jpg");
  background-position: center 43%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  background: rgba(8, 25, 35, 0.68);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 28px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f2ca60;
}

.eyebrow.teal {
  color: var(--teal);
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: 62px;
  line-height: 1.04;
  font-weight: 750;
}

.hero-copy {
  max-width: 740px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.warehouse-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.warehouse-note svg {
  width: 18px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid svg {
  width: 24px;
  height: 24px;
  color: var(--steel);
  flex: 0 0 auto;
}

.trust-grid span {
  display: grid;
  gap: 3px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 13px;
}

.section {
  padding: 104px 0;
}

.section-intro {
  padding-bottom: 80px;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.14;
}

.section-lead,
.solution-content > p,
.quality-content > p,
.rfq-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.solution-band {
  padding: 96px 0;
}

.fluid-band {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.water-band {
  background: var(--teal-light);
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: 88px;
  align-items: center;
}

.solution-layout-reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
}

.solution-content h2 {
  margin-bottom: 24px;
}

.solution-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.solution-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 30%;
}

.image-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 19px 20px;
  border-left: 4px solid var(--gold);
  color: var(--white);
  background: rgba(15, 33, 43, 0.9);
}

.image-label span,
.image-label strong {
  display: block;
}

.image-label span {
  margin-bottom: 4px;
  color: #f2ca60;
  font-size: 11px;
  font-weight: 800;
}

.image-label strong {
  font-size: 16px;
  line-height: 1.35;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.scope-list div {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.scope-list svg {
  width: 18px;
  color: var(--steel);
  flex: 0 0 auto;
}

.decision-line {
  padding: 19px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-line span {
  display: block;
  margin-bottom: 5px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.decision-line p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

.text-link.teal {
  color: var(--teal);
}

.process-list {
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(35, 125, 125, 0.18);
}

.process-list > li > span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.water-gallery {
  position: relative;
  min-height: 660px;
}

.water-main {
  width: calc(100% - 86px);
  height: 550px;
  margin-left: 86px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}

.water-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 265px;
  border: 9px solid var(--teal-light);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}

.water-caption {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 48%;
  padding: 20px 22px;
  color: var(--white);
  background: var(--teal);
}

.water-caption strong,
.water-caption span {
  display: block;
}

.water-caption strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.water-caption span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.45;
}

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

.quality-layout {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(0, 1fr);
  gap: 82px;
  align-items: center;
}

.quality-image {
  position: relative;
}

.quality-image img {
  width: 100%;
  height: 510px;
  border-radius: var(--radius);
  object-fit: cover;
}

.quality-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(13, 42, 58, 0.88);
  font-size: 11px;
  font-weight: 800;
}

.quality-content h2 {
  margin-bottom: 24px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  margin-top: 34px;
}

.evidence-grid div {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 11px;
  padding-top: 17px;
  border-top: 2px solid var(--line);
}

.evidence-grid svg {
  width: 21px;
  grid-row: span 2;
  color: var(--steel);
}

.evidence-grid strong {
  font-size: 14px;
}

.evidence-grid span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.us-strip {
  padding: 60px 0;
  color: var(--white);
  background: var(--navy);
}

.us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 58px;
  gap: 60px;
  align-items: center;
}

.us-layout h2 {
  color: var(--white);
  font-size: 31px;
}

.us-layout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.us-layout > svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

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

.rfq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 86px;
  align-items: start;
}

.rfq-copy {
  position: sticky;
  top: 116px;
}

.rfq-copy h2 {
  margin-bottom: 24px;
}

.response-note {
  display: flex;
  gap: 13px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.response-note svg {
  width: 22px;
  color: var(--steel);
  flex: 0 0 auto;
}

.response-note span {
  display: grid;
  gap: 2px;
  color: var(--ink-soft);
  font-size: 12px;
}

.response-note strong {
  color: var(--ink);
  font-size: 13px;
}

.rfq-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.rfq-switcher {
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.rfq-switcher legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.rfq-tab {
  min-height: 46px;
  border: 0;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.rfq-tab + .rfq-tab {
  border-left: 1px solid var(--line);
}

.rfq-tab.is-active {
  color: var(--white);
  background: var(--steel);
}

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

.form-panel {
  margin-top: 20px;
}

.form-grid label,
.file-field {
  display: grid;
  gap: 7px;
}

.form-grid label > span,
.file-field > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.full-width {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #cdd5d7;
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(35, 100, 122, 0.12);
}

textarea {
  min-height: 128px;
  padding-top: 12px;
  resize: vertical;
}

.message-field {
  display: grid;
  gap: 7px;
  margin-top: 20px;
}

.message-field > span {
  font-size: 12px;
  font-weight: 800;
}

.file-field {
  position: relative;
  margin-top: 22px;
  padding: 17px 18px 17px 50px;
  border: 1px dashed #aebabc;
  border-radius: 3px;
  cursor: pointer;
}

.file-field svg {
  position: absolute;
  top: 18px;
  left: 17px;
  width: 19px;
  color: var(--steel);
}

.file-field input {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  margin: 20px 0;
  align-items: start;
  color: var(--ink-soft);
  font-size: 11px;
}

.consent-field input {
  width: 17px;
  height: 17px;
  min-height: auto;
  margin: 1px 0 0;
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  padding: 66px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #17232b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 58px;
}

.footer-brand img {
  width: 118px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 13px;
}

.footer-grid a,
.footer-grid span {
  font-size: 12px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero > img,
.page-hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img {
  object-fit: cover;
}

.page-hero::after {
  background: rgba(8, 25, 35, 0.7);
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 70px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs svg {
  width: 13px;
  height: 13px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.page-hero-fluid > img {
  object-position: center 32%;
}

.page-hero-water > img {
  object-position: center;
}

.page-hero-quality > img,
.page-hero-about > img,
.page-hero-news > img,
.page-hero-contact > img {
  object-position: center 48%;
}

.page-hero-news {
  min-height: 390px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

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

.page-section.teal-wash {
  background: var(--teal-light);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: 80px;
  align-items: center;
}

.content-split.reverse {
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1fr);
}

.content-split.reverse .content-media {
  order: 1;
}

.content-split.reverse .content-copy {
  order: 2;
}

.content-copy h2 {
  margin-bottom: 22px;
}

.content-copy > p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 17px;
}

.content-media img {
  width: 100%;
  min-height: 430px;
  max-height: 560px;
  border-radius: var(--radius);
  object-fit: cover;
}

.check-list,
.plain-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.check-list svg {
  width: 18px;
  color: var(--teal);
}

.plain-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.plain-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.plain-list span {
  color: var(--ink-soft);
  font-size: 14px;
}

.capability-grid,
.topic-grid,
.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability-item,
.document-item {
  min-height: 210px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.capability-item svg,
.document-item svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--steel);
}

.capability-item h3,
.document-item h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.capability-item p,
.document-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.topic-link {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-top: 3px solid var(--steel);
  background: var(--white);
}

.topic-link:nth-child(2) {
  border-color: var(--teal);
}

.topic-link:nth-child(3) {
  border-color: var(--gold);
}

.topic-link:nth-child(4) {
  border-color: var(--ink-soft);
}

.topic-link strong {
  font-size: 18px;
}

.topic-link span {
  color: var(--ink-soft);
  font-size: 12px;
}

.requirements-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--white);
}

.requirements-table th,
.requirements-table td {
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.requirements-table th {
  width: 31%;
  color: var(--ink);
  background: #edf1f1;
  font-size: 13px;
}

.requirements-table td {
  color: var(--ink-soft);
  font-size: 14px;
}

.cta-band {
  padding: 62px 0;
  color: var(--white);
  background: var(--navy);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.cta-layout h2 {
  color: var(--white);
  font-size: 34px;
}

.cta-layout p {
  max-width: 750px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.news-home {
  background: var(--white);
}

.news-section-header {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.news-section-header .section-heading {
  margin-bottom: 0;
}

.featured-article {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.featured-article img {
  width: 100%;
  min-height: 430px;
  height: 100%;
  object-fit: cover;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-category::before {
  width: 19px;
  height: 2px;
  background: currentColor;
  content: "";
}

.featured-copy h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

.featured-copy > p,
.news-card p {
  margin: 0;
  color: var(--ink-soft);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 12px;
}

.news-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) 1fr;
  gap: 24px;
  margin-bottom: 36px;
  align-items: center;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 19px;
  color: var(--ink-soft);
}

.search-field input {
  padding-left: 44px;
}

.news-filters {
  display: flex;
  justify-content: flex-end;
  gap: 0;
}

.news-filter {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-right: 0;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.news-filter:first-child {
  border-radius: 4px 0 0 4px;
}

.news-filter:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 4px 4px 0;
}

.news-filter.is-active {
  color: var(--white);
  background: var(--steel);
}

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

.news-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.news-card[hidden] {
  display: none;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-card-body {
  padding: 24px;
}

.news-card h2,
.news-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.28;
}

.news-card p {
  font-size: 14px;
}

.news-card .text-link {
  margin-top: 22px;
}

.news-empty {
  padding: 58px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: center;
}

.editorial-note {
  margin-top: 36px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  color: var(--ink-soft);
  background: #fff9e7;
  font-size: 13px;
}

.article-header {
  padding: 62px 0 54px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.article-header .breadcrumbs {
  color: var(--ink-soft);
}

.article-header h1 {
  max-width: 900px;
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
}

.article-deck {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(250px, 1fr);
  gap: 80px;
  align-items: start;
}

.article-body > img {
  width: 100%;
  max-height: 500px;
  margin-bottom: 42px;
  border-radius: var(--radius);
  object-fit: cover;
}

.article-body h2 {
  margin: 46px 0 18px;
  font-size: 31px;
}

.article-body h3 {
  margin: 32px 0 12px;
  font-size: 21px;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.article-body ul,
.article-body ol {
  padding-left: 23px;
}

.article-callout {
  margin: 34px 0;
  padding: 24px;
  border-left: 4px solid var(--steel);
  background: var(--steel-light);
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;
}

.article-aside {
  position: sticky;
  top: 112px;
}

.aside-block {
  padding: 24px 0;
  border-top: 2px solid var(--ink);
}

.aside-block + .aside-block {
  margin-top: 24px;
}

.aside-block h2 {
  margin-bottom: 14px;
  font-size: 17px;
}

.aside-block a {
  display: block;
  padding: 9px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.aside-block a:hover {
  color: var(--steel);
}

.contact-options {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.contact-option {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  padding: 20px;
  background: var(--white);
}

.contact-option svg {
  width: 22px;
  color: var(--steel);
}

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

.contact-option span {
  color: var(--ink-soft);
  font-size: 13px;
}

.seo-architecture {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.site-map-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.site-map-list li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.site-map-list strong {
  font-size: 14px;
}

.site-map-list span {
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-actions .button-small {
    display: none;
  }

  .solution-layout,
  .solution-layout-reverse,
  .quality-layout,
  .rfq-layout {
    gap: 54px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 820px) {
  .container,
  .header-inner {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    min-height: 69px;
  }

  .brand img {
    width: 68px;
    height: 36px;
  }

  .brand-copy small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .language-button {
    width: auto;
    min-width: 62px;
    height: 38px;
    padding: 0 6px;
  }

  .language-menu {
    position: fixed;
    top: 62px;
    right: 16px;
    left: auto;
    width: min(240px, calc(100vw - 32px));
  }

  html[dir="rtl"] .language-menu {
    right: auto;
    left: 16px;
  }

  .hero {
    height: calc(100svh - 112px);
    min-height: 540px;
    max-height: 670px;
  }

  .hero-image {
    background-position: 58% center;
  }

  .hero-overlay {
    background: rgba(8, 25, 35, 0.73);
  }

  .hero h1 {
    max-width: 640px;
    font-size: 44px;
  }

  .hero-copy {
    max-width: 620px;
    font-size: 17px;
  }

  .intro-grid,
  .solution-layout,
  .solution-layout-reverse,
  .quality-layout,
  .rfq-layout,
  .us-layout,
  .footer-grid,
  .content-split,
  .content-split.reverse,
  .featured-article,
  .article-layout,
  .seo-architecture {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .solution-layout,
  .solution-layout-reverse,
  .quality-layout,
  .rfq-layout {
    gap: 44px;
  }

  .solution-content {
    order: 1;
  }

  .solution-visual,
  .water-gallery {
    order: 2;
  }

  .quality-image {
    order: 2;
  }

  .rfq-copy {
    position: static;
  }

  .us-layout {
    gap: 22px;
  }

  .us-layout > svg {
    display: none;
  }

  .footer-grid {
    gap: 36px;
  }

  .content-split.reverse .content-media,
  .content-split.reverse .content-copy {
    order: initial;
  }

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

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

  .news-filters {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .news-filter {
    white-space: nowrap;
  }

  .article-aside {
    position: static;
  }

  .cta-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .container,
  .header-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .hero {
    min-height: 555px;
  }

  .hero-content {
    padding-top: 12px;
    padding-bottom: 18px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    margin-top: 22px;
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .warehouse-note {
    margin-top: 17px;
    font-size: 11px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    min-height: 82px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section,
  .solution-band {
    padding: 72px 0;
  }

  .section-intro {
    padding-bottom: 58px;
  }

  h2 {
    font-size: 32px;
  }

  .section-lead,
  .solution-content > p,
  .quality-content > p,
  .rfq-copy > p {
    font-size: 16px;
  }

  .solution-visual {
    min-height: 470px;
  }

  .solution-visual img {
    height: 470px;
  }

  .image-label {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .scope-list,
  .evidence-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  .water-gallery {
    min-height: 530px;
  }

  .water-main {
    width: calc(100% - 34px);
    height: 410px;
    margin-left: 34px;
  }

  .water-detail {
    width: 59%;
    height: 190px;
    border-width: 7px;
  }

  .water-caption {
    bottom: 15px;
    width: 55%;
    padding: 14px 15px;
  }

  .quality-image img {
    height: 340px;
  }

  .rfq-form {
    padding: 22px 18px;
  }

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

  .page-hero {
    min-height: 380px;
  }

  .page-hero-content {
    padding-top: 70px;
    padding-bottom: 48px;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: 36px;
  }

  .page-hero p:last-child,
  .article-deck {
    font-size: 16px;
  }

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

  .content-split,
  .content-split.reverse {
    gap: 38px;
  }

  .content-media img {
    min-height: 310px;
  }

  .capability-grid,
  .document-grid,
  .topic-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    padding: 26px 22px;
  }

  .featured-copy h2 {
    font-size: 27px;
  }

  .featured-article img {
    min-height: 260px;
  }

  .news-section-header {
    display: grid;
    align-items: start;
  }

  .news-filters {
    margin-right: -14px;
    padding-right: 14px;
  }

  .requirements-table,
  .requirements-table tbody,
  .requirements-table tr,
  .requirements-table th,
  .requirements-table td {
    display: block;
    width: 100%;
  }

  .requirements-table th {
    border-bottom: 0;
  }

  .article-header {
    padding: 46px 0 40px;
  }

  .article-body h2 {
    font-size: 27px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .site-map-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
