:root {
  --teal-950: #082f2e;
  --teal-900: #103e3b;
  --teal-800: #17534e;
  --teal-700: #237068;
  --mint: #58cdbf;
  --green: #72b840;
  --green-dark: #4d8f2d;
  --blue: #24527f;
  --amber: #b77713;
  --ink: #12242b;
  --muted: #5e6c73;
  --line: #d8e0dd;
  --line-dark: rgba(255, 255, 255, 0.18);
  --soft: #f3f6f3;
  --paper: #fbfcfa;
  --white: #ffffff;
  --danger: #9e352e;
  --success: #176f48;
  --shadow-sm: 0 8px 24px rgba(8, 47, 46, 0.08);
  --shadow-md: 0 22px 55px rgba(8, 47, 46, 0.14);
  --radius: 5px;
  --radius-sm: 3px;
  --max: 1240px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal-700);
}

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

button,
a,
input,
select,
textarea {
  border-radius: var(--radius-sm);
}

:focus-visible {
  outline: 3px solid rgba(88, 205, 191, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--teal-950);
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 224, 221, 0.9);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--max));
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 132px;
  text-decoration: none;
}

.brand img {
  width: 128px;
  max-height: 62px;
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -7px;
}

.nav-toggle span::after {
  position: absolute;
  top: 7px;
}

.nav-menu {
  position: absolute;
  top: calc(var(--header-h) + 0.35rem);
  right: 1rem;
  left: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  max-height: calc(100vh - var(--header-h) - 1rem);
  padding: 0.75rem;
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.nav-menu.is-open {
  display: flex;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 0.7rem;
  color: var(--teal-800);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-link[aria-current="page"] {
  color: var(--ink);
  background: var(--soft);
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown .nav-link {
  flex: 1;
}

.dropdown-toggle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--teal-800);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.dropdown-toggle span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-toggle[aria-expanded="true"] span {
  transform: translateY(2px) rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: none;
  min-width: 250px;
  padding: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.dropdown-menu.is-open {
  display: grid;
}

.dropdown-menu a {
  padding: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--teal-800);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  color: var(--white);
  background: var(--teal-950);
}

.btn-primary {
  background: var(--green-dark);
}

.btn-primary:hover {
  background: #3f7926;
}

.btn-secondary {
  color: var(--teal-900);
  background: transparent;
  border-color: rgba(23, 83, 78, 0.34);
}

.btn-secondary:hover {
  color: var(--teal-950);
  background: #eaf3ef;
}

.btn-light {
  color: var(--teal-950);
  background: var(--white);
  border-color: var(--white);
}

.btn-light:hover {
  color: var(--teal-950);
  background: #edf4ef;
}

.btn-ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost-light:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--teal-800);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  color: var(--green-dark);
}

.text-link-large {
  margin-top: 1.25rem;
  font-size: 1rem;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 2.75rem 0;
}

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

.section-soft,
.section-ivory {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background: var(--teal-950);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.split,
.statement-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.section-heading > .lead {
  max-width: 640px;
}

.eyebrow,
.kicker {
  margin: 0 0 0.65rem;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .kicker,
.cta-band .eyebrow,
.page-hero-dark .eyebrow {
  color: #98d66d;
}

h1,
h2,
.display {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark .display,
.cta-band h1,
.cta-band h2,
.cta-band h3,
.page-hero-dark h1,
.page-hero-dark h2 {
  color: var(--white);
}

h1,
.display {
  font-size: 2.85rem;
}

h2 {
  font-size: 2.1rem;
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-dark .lead,
.section-dark p,
.cta-band .lead,
.page-hero-dark .lead {
  color: #c9dfd9;
}

.muted {
  color: var(--muted);
}

.page-hero {
  padding: 3.75rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 850px;
  margin-top: 1rem;
}

.page-hero-dark {
  color: var(--white);
  background: var(--teal-950);
  border-bottom: 0;
}

.catalogue-hero h1 {
  max-width: 920px;
}

.catalogue-hero .lead {
  max-width: 920px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #f5f7f3;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100%, var(--max));
  content: "";
  border-right: 1px solid rgba(23, 83, 78, 0.06);
  border-left: 1px solid rgba(23, 83, 78, 0.06);
  transform: translateX(-50%);
}

.hero-grid::after {
  position: absolute;
  top: 56%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(23, 83, 78, 0.06);
}

.hero-brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3.5rem;
  text-align: center;
}

.hero-logo {
  width: 180px;
  max-height: 108px;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

.hero h1 {
  max-width: 1020px;
  color: var(--teal-950);
}

.hero-statement {
  max-width: 860px;
  margin-top: 1rem;
  color: var(--teal-800);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.45;
}

.hero .lead {
  max-width: 760px;
  margin-top: 0.8rem;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-actions {
  justify-content: center;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  height: 300px;
  margin-top: 1.25rem;
}

.hero-product {
  position: absolute;
  bottom: 0;
  display: grid;
  place-items: end center;
  width: 175px;
  height: 250px;
}

.hero-product picture {
  display: grid;
  place-items: end center;
  width: 100%;
  height: 100%;
}

.hero-can {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(8, 47, 46, 0.15));
}

.hero-product-left {
  left: calc(50% - 260px);
  height: 215px;
}

.hero-product-main {
  left: 50%;
  width: 210px;
  height: 290px;
  transform: translateX(-50%);
}

.hero-product-right {
  right: calc(50% - 260px);
  height: 215px;
}

.hero-credentials {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.hero-credentials span {
  padding: 0.9rem 0.75rem 0;
  color: var(--teal-800);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.4;
}

.process-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.process-step {
  position: relative;
  padding: 1.5rem 0 1.5rem 2.7rem;
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  position: absolute;
  top: 1.55rem;
  left: 0;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.94rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.capability {
  position: relative;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.capability > span {
  display: block;
  margin-bottom: 1.5rem;
  color: #98d66d;
  font-size: 0.75rem;
  font-weight: 900;
}

.capability h3 {
  margin-bottom: 0.65rem;
}

.capability p {
  color: #c9dfd9;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.purpose-panel {
  min-height: 270px;
  padding: 2rem;
  background: var(--white);
}

.purpose-panel h2 {
  font-size: 1.8rem;
  max-width: 22ch;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.value-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.value-item > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.value-item h3 {
  margin-bottom: 0.55rem;
}

.value-item p {
  color: var(--muted);
}

.card,
.product-card,
.info-panel,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card,
.info-panel {
  padding: 1.4rem;
}

.card h3,
.info-panel h3 {
  margin-bottom: 0.65rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-width: 0;
  overflow: hidden;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  height: 190px;
  overflow: hidden;
  background: #f8faf8;
  border-bottom: 1px solid var(--line);
}

.product-media picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.product-media::after {
  position: absolute;
  bottom: 13%;
  width: 42%;
  height: 9px;
  content: "";
  background: rgba(8, 47, 46, 0.12);
  border-radius: 50%;
  filter: blur(9px);
}

.product-media img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 68%;
  max-height: 158px;
  object-fit: contain;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  padding: 1rem;
}

.product-card h3 {
  min-height: 2.5rem;
  font-size: 1rem;
}

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

.product-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card .action-row {
  margin-top: auto;
  padding-top: 0.25rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0.2rem 0.45rem;
  color: var(--teal-800);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.2;
  background: #edf6f2;
  border: 1px solid rgba(23, 83, 78, 0.18);
  border-radius: 2px;
}

.tag-dyeing {
  color: var(--blue);
  background: #eef4fa;
  border-color: rgba(36, 82, 127, 0.2);
}

.tag-finishing {
  color: #7d520f;
  background: #fff6e7;
  border-color: rgba(183, 119, 19, 0.24);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.filter-btn {
  min-height: 44px;
  padding: 0.62rem 0.9rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.filter-btn[aria-pressed="true"] {
  color: var(--white);
  background: var(--teal-800);
  border-color: var(--teal-800);
}

.filter-btn[data-filter="dyeing"][aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
}

.filter-btn[data-filter="finishing"][aria-pressed="true"] {
  background: var(--amber);
  border-color: var(--amber);
}

.catalogue-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
  margin-top: 1.35rem;
}

.catalogue-tools .field > span {
  color: var(--teal-900);
  font-size: 0.82rem;
  font-weight: 850;
}

.catalogue-cta {
  padding: 0.8rem 0;
}

.catalogue-cta p {
  color: var(--muted);
  font-size: 0.84rem;
}

.search-field {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9d4d0;
}

.category-block {
  padding: 2.75rem 0;
  border-top: 1px solid var(--line);
}

.category-block:first-of-type {
  border-top: 0;
}

.category-heading {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.category-heading .lead {
  max-width: 720px;
  font-size: 1rem;
}

.category-heading .count {
  width: fit-content;
  padding: 0.35rem 0.55rem;
  color: var(--teal-800);
  font-size: 0.75rem;
  font-weight: 850;
  border: 1px solid var(--line);
}

.breadcrumb {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb li::after {
  margin-left: 0.4rem;
  color: #94a19d;
  content: "/";
}

.breadcrumb li:last-child::after {
  content: "";
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

.product-detail-media {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 310px;
  background: #f7f9f7;
  border: 1px solid var(--line);
}

.product-detail-media picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.product-detail-media img {
  width: auto;
  max-width: 64%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 18px 17px rgba(8, 47, 46, 0.13));
}

.product-detail-copy h1 {
  margin-top: 1rem;
}

.product-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.product-facts > div {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.product-facts span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-facts strong {
  color: var(--teal-900);
}

.custom-solution-panel {
  margin-top: 1.5rem;
  padding: 1.35rem;
  background: #edf5f1;
  border-left: 4px solid var(--green);
}

.custom-solution-panel h2 {
  margin-bottom: 0.75rem;
  font-size: 1.55rem;
}

.custom-solution-panel p:last-child {
  color: var(--muted);
}

.requirement-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.requirement-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.7rem;
  color: var(--teal-900);
  font-weight: 750;
  border-bottom: 1px solid var(--line);
}

.requirement-list li::before {
  position: absolute;
  top: 1.12rem;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
}

.compliance-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.compliance-preview .lead {
  max-width: 720px;
  margin-top: 1rem;
}

.compliance-marks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.compliance-marks img {
  width: 100%;
  max-width: 185px;
  max-height: 132px;
  margin: 0 auto;
  object-fit: contain;
}

.standards-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.standard-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.standard-mark {
  display: grid;
  place-items: center;
  min-height: 220px;
  background: var(--soft);
}

.standard-mark img {
  width: auto;
  max-width: 72%;
  max-height: 165px;
  object-fit: contain;
}

.standard-panel h2 {
  margin-bottom: 1rem;
}

.standard-panel p {
  max-width: 780px;
  color: var(--muted);
}

.standard-panel p + p {
  margin-top: 0.8rem;
}

.standard-facts {
  display: grid;
  gap: 0;
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.standard-facts span {
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.standard-facts strong {
  color: var(--teal-900);
}

.process-rail-3 {
  grid-template-columns: 1fr;
}

.esg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.esg-pillar {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.pillar-letter {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--mint);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.9;
}

.esg-pillar h2 {
  margin-bottom: 1rem;
  font-size: 1.65rem;
}

.esg-pillar > p:not(.eyebrow) {
  color: var(--muted);
}

.esg-pillar ul {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.esg-pillar li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--teal-800);
  font-size: 0.9rem;
  font-weight: 750;
}

.esg-pillar li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green);
}

.cta-band {
  color: var(--white);
  background: var(--teal-800);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
}

.contact-list {
  margin-top: 1.2rem;
}

.contact-item {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--teal-900);
  overflow-wrap: anywhere;
}

.form-card {
  padding: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label,
.consent label {
  color: var(--teal-900);
  font-size: 0.82rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9d4d0;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field .error-text {
  min-height: 1.15rem;
  color: var(--danger);
  font-size: 0.8rem;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.consent .error-text {
  grid-column: 2;
  min-height: 1.15rem;
  color: var(--danger);
  font-size: 0.8rem;
}

.form-note {
  max-width: 560px;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  display: none;
  padding: 0.8rem 0.9rem;
  font-weight: 700;
  border: 1px solid var(--line);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: var(--danger);
  background: #fff1ee;
  border-color: rgba(158, 53, 46, 0.3);
}

.form-status.is-success {
  color: var(--success);
  background: #edf9f1;
  border-color: rgba(23, 111, 72, 0.28);
}

.location-panel {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  min-height: 300px;
  padding: 1.75rem;
  color: var(--white);
  background: var(--teal-900);
}

.location-panel h2 {
  color: var(--white);
  font-size: 1.65rem;
}

.location-panel p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: #c9dfd9;
}

.location-panel .btn {
  margin-top: 1.25rem;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.location-pin {
  color: var(--green);
  font-size: 1.2rem;
}

.enquiry-routes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.enquiry-routes article {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.enquiry-routes h3 {
  margin-bottom: 0.35rem;
}

.enquiry-routes p {
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline li > span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline li strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--teal-900);
  font-size: 1rem;
}

.timeline li p {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  color: #c9dfd9;
  background: var(--teal-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand {
  display: block;
  width: fit-content;
  padding: 0.55rem;
  background: var(--white);
}

.footer-logo {
  width: 150px;
  max-height: 88px;
  object-fit: contain;
}

.footer-intro {
  max-width: 380px;
  margin-top: 1rem;
}

.footer-grid h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: #c9dfd9;
  text-decoration: none;
}

.footer-bottom {
  padding: 1.1rem 0;
  color: #9ab9b2;
  font-size: 0.84rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-bottom-inner span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #c9dfd9;
}

.legal-copy {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.legal-copy h2 {
  margin-top: 1.35rem;
  font-size: 1.5rem;
}

.legal-copy p {
  color: var(--muted);
}

.hide {
  display: none !important;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 330px;
}

.product-stage .hero-can-main {
  position: static;
  width: auto;
  max-width: 230px;
  max-height: 300px;
}

@media (min-width: 620px) {
  .section {
    padding: 5rem 0;
  }

  h1,
  .display {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.45rem;
  }

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

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

  .hero-logo {
    width: 205px;
    max-height: 122px;
  }

  .hero-showcase {
    height: 330px;
  }

  .hero-product {
    width: 195px;
  }

  .hero-product-left {
    left: calc(50% - 300px);
    height: 235px;
  }

  .hero-product-main {
    width: 230px;
    height: 320px;
  }

  .hero-product-right {
    right: calc(50% - 300px);
    height: 235px;
  }

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

  .hero-credentials span + span {
    border-left: 1px solid var(--line);
  }

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

  .product-card {
    grid-template-rows: 190px 1fr;
  }

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

  .product-facts > div + div {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
  }

  .compliance-marks img {
    max-width: 210px;
    max-height: 150px;
  }

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

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

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

  .enquiry-routes article:nth-child(odd) {
    padding-right: 1rem;
  }

  .enquiry-routes article:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
  }

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

  .timeline li:nth-child(odd) {
    padding-right: 1.25rem;
  }

  .timeline li:nth-child(even) {
    padding-left: 1.25rem;
    border-left: 1px solid var(--line);
  }
}

@media (min-width: 800px) {
  .hero-brand {
    padding-top: 4.25rem;
  }

  .hero h1 {
    font-size: 4.65rem;
  }

  .hero-statement {
    font-size: 1.3rem;
  }

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

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

  .process-step {
    padding: 4.2rem 1.25rem 1.4rem;
    border-right: 1px solid var(--line);
  }

  .process-step:last-child {
    border-right: 0;
  }

  .process-step > span {
    top: 1.45rem;
    left: 1.25rem;
  }

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

  .capability {
    min-height: 270px;
    padding: 1.8rem;
    border-right: 1px solid var(--line-dark);
  }

  .capability:last-child {
    border-right: 0;
  }

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

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

  .value-item:nth-child(odd) {
    padding-right: 1.5rem;
  }

  .value-item:nth-child(even) {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
  }

  .catalogue-tools {
    grid-template-columns: minmax(300px, 480px) 1fr;
  }

  .standard-panel {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 2rem;
  }

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

  .esg-pillar {
    min-height: 520px;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--line);
  }

  .esg-pillar:first-child {
    padding-left: 0;
  }

  .esg-pillar:last-child {
    padding-right: 0;
    border-right: 0;
  }

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

  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    max-height: none;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-link {
    padding: 0.55rem 0.65rem;
  }

  .nav-link[aria-current="page"] {
    background: transparent;
    box-shadow: inset 0 -2px 0 var(--green);
  }

  .dropdown-menu {
    top: calc(100% + 0.4rem);
  }

  .split,
  .statement-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 4rem;
  }

  .section-heading {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

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

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

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

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

  .category-heading {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .product-detail {
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
    gap: 4.5rem;
  }

  .product-detail-media {
    min-height: 470px;
  }

  .product-detail-media img {
    max-width: 58%;
    max-height: 360px;
  }

  .compliance-preview {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: 4rem;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 4rem;
  }

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

  .timeline li,
  .timeline li:nth-child(odd),
  .timeline li:nth-child(even) {
    min-height: 230px;
    padding: 1.5rem;
    border-right: 1px solid var(--line);
    border-left: 0;
  }

  .timeline li:first-child {
    padding-left: 0;
  }

  .timeline li:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (min-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .container,
  .nav-shell {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand img {
    width: 114px;
    max-height: 56px;
  }

  .section {
    padding: 3.5rem 0;
  }

  h1,
  .display {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-brand {
    padding-top: 2.75rem;
  }

  .hero-logo {
    width: 155px;
    max-height: 92px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-statement {
    font-size: 1.05rem;
  }

  .hero .lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 190px;
  }

  .hero-showcase {
    height: 230px;
  }

  .hero-product {
    width: 112px;
  }

  .hero-product-left {
    left: calc(50% - 145px);
    height: 150px;
  }

  .hero-product-main {
    width: 145px;
    height: 220px;
  }

  .hero-product-right {
    right: calc(50% - 145px);
    height: 150px;
  }

  .hero-credentials {
    padding: 0.65rem 0 1rem;
  }

  .hero-credentials span {
    padding-top: 0.45rem;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 190px;
  }

  .product-media {
    height: 100%;
    min-height: 190px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-media img {
    max-width: 78%;
    max-height: 150px;
  }

  .product-card-body {
    padding: 0.85rem;
  }

  .product-card h3 {
    min-height: auto;
  }

  .product-card p {
    -webkit-line-clamp: 2;
  }

  .product-detail-media {
    min-height: 290px;
  }

  .product-detail-media img {
    max-width: 58%;
    max-height: 250px;
  }

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

  .filter-btn {
    width: 100%;
    padding: 0.55rem 0.45rem;
    font-size: 0.78rem;
  }

  .standard-mark {
    min-height: 180px;
  }

  .standard-mark img {
    max-height: 135px;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 480ms ease, transform 480ms ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .product-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}
