:root {
  --ink: #192823;
  --forest: #1c312a;
  --deep: #10241e;
  --clay: #bd5b3d;
  --cream: #f1eee7;
  --paper: #f8f6f1;
  --line: #d8d5ce;
  --muted: #6e746f;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 88px;
  padding: 0 4.5vw;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header.scrolled {
  position: fixed;
  height: 70px;
  color: var(--ink);
  background: rgba(248, 246, 241, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(15px);
  animation: slide-down 0.25s ease;
}

@keyframes slide-down {
  from { transform: translateY(-100%); }
}

.brand {
  position: relative;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  height: 38px;
}

.brand img {
  width: 170px;
  height: 57px;
  object-fit: contain;
}

.symbol-trademark {
  position: absolute;
  top: -3px;
  left: 36%;
  color: currentColor;
  font: 600 8px/1 Arial, sans-serif;
  letter-spacing: 0;
}

.site-header:not(.scrolled) .brand img {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transition: transform 0.2s;
  transform: scaleX(0);
  background: currentColor;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 24px;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
}

.language-picker {
  position: relative;
}

.language-picker::after {
  position: absolute;
  top: 50%;
  right: 12px;
  content: "⌄";
  pointer-events: none;
  transform: translateY(-58%);
  font-size: 12px;
}

.language-picker select {
  min-width: 67px;
  height: 42px;
  padding: 0 27px 0 13px;
  color: inherit;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 0;
  outline: 0;
  appearance: none;
  cursor: pointer;
  background: rgba(10,28,22,.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.scrolled .language-picker select {
  border-color: var(--line);
  background: transparent;
}

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

/* Collaboration and project qualification */
.collaboration {
  background: #f3f1eb;
}

.collaboration-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 90px);
}

.collaboration-heading h2,
.project-brief h2,
.pathways-intro h2 {
  font-size: clamp(2.7rem, 5.4vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.collaboration-heading > p:last-child {
  max-width: 620px;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.65;
}

.collaboration-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(16, 41, 34, 0.26);
}

.collaboration-steps li {
  min-height: 270px;
  padding: 25px 22px 30px 0;
  border-right: 1px solid rgba(16, 41, 34, 0.18);
}

.collaboration-steps li + li {
  padding-left: 22px;
}

.collaboration-steps li:last-child {
  border-right: 0;
}

.collaboration-steps li > span,
.pathway-grid article > span,
.product-detail-label,
.product-detail-card > div > span,
.product-detail-intro > span {
  display: block;
  color: #6c7e74;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collaboration-steps strong {
  display: block;
  margin: 64px 0 13px;
  font-size: 1.15rem;
}

.collaboration-steps p {
  color: #55645e;
  font-size: 0.88rem;
  line-height: 1.6;
}

.project-pathways {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 7vw;
  color: #f4f1e8;
  background: #102922;
}

.pathways-intro p:last-child {
  max-width: 540px;
  margin-top: 30px;
  color: rgba(244, 241, 232, 0.68);
  line-height: 1.65;
}

.pathway-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.pathway-grid article {
  padding: 28px 0 34px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.pathway-grid article > span {
  color: #9bb0a5;
}

.pathway-grid h3 {
  margin: 20px 0 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.pathway-grid p {
  max-width: 590px;
  color: rgba(244, 241, 232, 0.68);
  line-height: 1.6;
}

.project-brief {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
}

.project-brief > div:last-child > p:first-child {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.project-brief ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 42px 0 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(16, 41, 34, 0.23);
}

.project-brief li {
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid rgba(16, 41, 34, 0.16);
  font-weight: 600;
}

.project-brief li:nth-child(even) {
  padding-left: 18px;
}

.brief-note {
  color: #66766e;
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Independent collection pages */
.product-page {
  background: #f3f1eb;
  color: #102922;
}

.product-page-header {
  position: relative;
  color: #102922;
  background: #f3f1eb;
  border-bottom: 1px solid rgba(16,41,34,0.16);
}

.product-page-header .site-nav a {
  color: #102922;
}

.product-header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 16px;
}

.product-language {
  display: flex;
  gap: 8px;
}

.product-language a {
  padding: 6px 3px;
  color: #6c7e74;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.product-language a[aria-current="page"] {
  color: #102922;
  border-bottom: 1px solid #102922;
}

.product-breadcrumb {
  display: flex;
  padding-top: 34px;
  padding-bottom: 0;
  align-items: center;
  gap: 10px;
  color: #6c7e74;
  font-size: 0.72rem;
}

.product-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.product-breadcrumb strong {
  color: #102922;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 8vw;
  padding-top: clamp(60px, 8vw, 105px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.product-detail-hero h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 7.7vw, 8.5rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.product-detail-intro {
  align-self: end;
}

.product-detail-intro p {
  margin: 18px 0 34px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.product-detail-gallery {
  background: #e7e5de;
}

.product-specification {
  padding-top: 0;
  padding-bottom: clamp(60px, 8vw, 105px);
}

.product-specification > p {
  margin: 0 0 20px;
  color: #6c7e74;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-specification dl {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(16,41,34,.22);
  grid-template-columns: repeat(4, 1fr);
}

.product-specification dl > div {
  padding: 21px 18px 0 0;
}

.product-specification dt {
  margin-bottom: 8px;
  font-weight: 700;
}

.product-specification dd {
  margin: 0;
  color: #6c7e74;
  font-size: 0.8rem;
  line-height: 1.5;
}

.product-detail-label {
  margin-bottom: 30px;
}

.product-detail-grid {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-detail-card {
  overflow: hidden;
  background: #f5f3ed;
}

.product-detail-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-card > div {
  padding: 20px 20px 24px;
}

.product-detail-card h2 {
  margin: 13px 0 7px;
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  line-height: 1.18;
}

.product-detail-card p {
  color: #617169;
  font-size: 0.82rem;
  line-height: 1.5;
}

.product-detail-card > div > a {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 8px;
  color: #102922;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.product-detail-card > div > a:hover {
  color: #8b4f3c;
}

.product-detail-note {
  max-width: 760px;
  margin-top: 30px;
  color: #66766e;
  font-size: 0.82rem;
  line-height: 1.6;
}

.product-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #f3f1eb;
  background: #102922;
}

.product-detail-cta p {
  max-width: 700px;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.45;
}

.product-back-link {
  display: block;
  padding: 28px 5vw;
  color: #102922;
  font-weight: 700;
  text-decoration: none;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 5vw;
  color: rgba(255,255,255,0.68);
  background: #0a1c17;
  font-size: 0.78rem;
}

.product-footer a {
  color: inherit;
}

@media (max-width: 900px) {
  .collaboration-heading,
  .project-pathways,
  .project-brief,
  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .collaboration-steps {
    grid-template-columns: 1fr;
  }

  .collaboration-steps li,
  .collaboration-steps li + li {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 41, 34, 0.18);
  }

  .collaboration-steps strong {
    margin: 18px 0 8px;
  }

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

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

  .product-page-header .site-nav,
  .product-page-header .header-cta {
    display: none;
  }

  .product-header-actions {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .project-brief ul {
    grid-template-columns: 1fr;
  }

  .project-brief li:nth-child(even) {
    padding-left: 0;
  }

  .product-detail-cta,
  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-language {
    gap: 5px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-specification dl {
    grid-template-columns: 1fr;
  }

  .product-detail-card {
    width: min(100%, 420px);
    margin: 0 auto;
  }
}

.scrolled .header-cta {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100vh;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 24, 19, 0.9) 0%, rgba(8, 24, 19, 0.62) 38%, rgba(8, 24, 19, 0.05) 74%),
    linear-gradient(0deg, rgba(6, 18, 15, 0.45), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 48%;
  height: 100%;
  padding: 155px 0 120px 8vw;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.eyebrow {
  display: flex;
  margin: 0 0 25px;
  align-items: center;
  gap: 12px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow > span:first-child {
  display: block;
  flex: 0 0 auto;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eyebrow > span[data-i18n] {
  width: auto;
  height: auto;
  background: transparent;
}

.eyebrow.light {
  color: #dca68e;
}

h1,
h2 {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(62px, 6.4vw, 104px);
}

h2 {
  font-size: clamp(44px, 5.1vw, 76px);
}

.hero-copy {
  width: min(490px, 92%);
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 22px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

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

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.text-link {
  display: inline-flex;
  padding-bottom: 5px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.light-link {
  color: var(--white);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: 4.5vw;
  bottom: 35px;
  display: flex;
  gap: 1px;
}

.hero-proof > div {
  display: flex;
  width: 185px;
  min-height: 82px;
  padding: 16px;
  align-items: center;
  gap: 14px;
  background: rgba(13, 34, 28, 0.72);
  backdrop-filter: blur(8px);
}

.hero-proof strong {
  color: #dc9a7f;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 27px;
  font-weight: 500;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: 115px 8vw;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9vw;
}

.intro-copy {
  padding-top: 50px;
}

.intro-copy p,
.quality-body > p,
.contact-intro > p {
  margin: 0 0 35px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.products {
  padding-top: 10px;
}

.filter-row {
  display: flex;
  margin-bottom: 35px;
  gap: 10px;
}

.filter {
  padding: 10px 16px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  font-size: 11px;
}

.filter.active,
.filter:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

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

.product-card {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s, transform 0.25s;
}

.product-card:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 5px;
}

.product-card.hidden {
  display: none;
}

.fabric-visual {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-color: #c9c3b6;
}

.fabric-visual::before,
.fabric-visual::after {
  position: absolute;
  content: "";
}

.cotton-weave {
  background:
    linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.32) 43% 48%, transparent 49%),
    repeating-linear-gradient(90deg, rgba(89, 79, 64, 0.14) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(89, 79, 64, 0.1) 0 1px, transparent 1px 4px),
    #c8bca7;
}

.card-downproof .fabric-visual {
  background:
    linear-gradient(135deg, rgba(255,255,255,.28), transparent 40%),
    repeating-linear-gradient(95deg, rgba(255,255,255,.15) 0 1px, transparent 1px 3px),
    #91a6b2;
}

.card-softshell .fabric-visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent 35%),
    repeating-linear-gradient(45deg, rgba(20,34,30,.16) 0 2px, transparent 2px 7px),
    #6e8078;
}

.card-recycled .fabric-visual {
  background:
    repeating-linear-gradient(25deg, rgba(255,255,255,.12) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(115deg, rgba(18,41,32,.11) 0 1px, transparent 1px 7px),
    #8ca88b;
}

.knit-performance-weave {
  background:
    radial-gradient(ellipse at center, transparent 0 4px, rgba(17,42,34,.2) 5px 7px, transparent 8px),
    linear-gradient(135deg, rgba(255,255,255,.22), transparent 48%),
    #829b91;
  background-size: 13px 17px, 100% 100%, 100% 100%;
}

.knit-performance-weave::before {
  top: -8%;
  right: -5%;
  width: 68%;
  height: 120%;
  transform: rotate(8deg);
  border-radius: 45%;
  box-shadow: -28px 18px 48px rgba(20,45,37,.25);
  background:
    radial-gradient(ellipse at center, transparent 0 4px, rgba(20,54,43,.23) 5px 7px, transparent 8px),
    #9bb1a8;
  background-size: 13px 17px;
}

.cotton-weave::before {
  width: 60%;
  height: 125%;
  top: -15%;
  left: 23%;
  transform: rotate(-11deg);
  border: 1px solid rgba(87, 72, 51, 0.18);
  border-radius: 48%;
  box-shadow: -20px 25px 38px rgba(50, 42, 30, 0.2);
  background: repeating-linear-gradient(90deg, #d9d0c0 0 2px, #c7baa4 2px 5px);
}

.performance-weave {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.18), transparent 25%),
    repeating-linear-gradient(35deg, rgba(255,255,255,.06) 0 1px, transparent 1px 6px),
    #314942;
}

.performance-weave::before {
  right: -10%;
  bottom: -42%;
  width: 90%;
  height: 120%;
  transform: rotate(12deg);
  border-radius: 50%;
  box-shadow: -35px -15px 60px rgba(5, 20, 15, .38);
  background: repeating-linear-gradient(90deg, #48655d 0 2px, #304c44 2px 5px);
}

.knit-weave {
  background:
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 6px, rgba(91, 48, 35, .13) 7px 9px),
    #b96b50;
  background-size: 14px 18px;
}

.knit-weave::before {
  top: 10%;
  left: -10%;
  width: 120%;
  height: 90%;
  transform: rotate(-5deg);
  border-radius: 50%;
  box-shadow: 0 28px 50px rgba(71, 35, 23, .28);
  background:
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 5px, rgba(83, 40, 28, .18) 6px 8px),
    #c2775c;
  background-size: 13px 17px;
}

.interior-weave {
  background:
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(0,0,0,.1) 6px 7px),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,.12) 8px 9px),
    #7a756a;
}

.interior-weave::before {
  top: -20%;
  right: 12%;
  width: 46%;
  height: 145%;
  transform: rotate(15deg);
  box-shadow: -32px 12px 48px rgba(33, 30, 26, .3);
  background:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(0,0,0,.14) 5px 6px),
    #9a9283;
}

.fabric-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(21, 34, 29, 0.7);
  font-size: 9px;
  letter-spacing: .14em;
}

.product-info {
  display: flex;
  padding: 20px 4px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.product-info h3 {
  margin: 0 0 7px;
  font: 500 22px Arial, sans-serif;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.product-info a,
.product-info .product-open {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  color: inherit;
  background: transparent;
  transition: .2s;
}

.product-info a:hover,
.product-info .product-open:hover {
  color: var(--white);
  border-color: var(--clay);
  background: var(--clay);
}

.capabilities {
  display: grid;
  margin-top: 55px;
  color: var(--white);
  background: var(--deep);
  grid-template-columns: 1fr 1fr;
}

.capability-image {
  min-height: 760px;
  background:
    linear-gradient(25deg, rgba(13, 34, 28, .1), rgba(13, 34, 28, .35)),
    url("assets/dyeing-workshop.webp") center / cover;
  box-shadow: inset -50px 0 100px rgba(9, 26, 20, .35);
}

.capability-content {
  padding: 110px 9vw 100px 7vw;
}

.capability-lead {
  margin: 32px 0 45px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.7;
}

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

.process-list li {
  display: flex;
  min-height: 75px;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.process-list li > span {
  color: #d49479;
  font-size: 10px;
}

.process-list div {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.process-list strong {
  font-size: 14px;
  font-weight: 500;
}

.process-list small {
  color: rgba(255,255,255,.45);
  font-size: 11px;
}

.equipment {
  background: #eceff0;
}

.equipment-trigger {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 0 clamp(24px, 6vw, 100px);
  overflow: hidden;
  align-items: flex-end;
  color: var(--white);
  background: url("assets/equipment/water-jet-loom-v2.webp") center 52% / cover no-repeat;
  cursor: pointer;
  list-style: none;
}

.equipment-trigger::-webkit-details-marker {
  display: none;
}

.equipment-trigger-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 27, .88) 0%, rgba(7, 27, 27, .44) 48%, rgba(7, 27, 27, .08) 100%),
    linear-gradient(0deg, rgba(7, 27, 27, .58), transparent 60%);
  transition: background .35s ease;
}

.equipment-trigger-copy {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  padding: 72px 0 66px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.equipment-trigger-label {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  color: #8fd5d5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.equipment-trigger-copy strong {
  font: 400 clamp(40px, 5.2vw, 74px)/.98 Georgia, serif;
}

.equipment-trigger-action {
  display: flex;
  min-width: 265px;
  min-height: 58px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #102f35;
  border: 1px solid var(--white);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(4, 20, 20, .22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.equipment-trigger:hover .equipment-trigger-action {
  color: var(--white);
  background: #1a5961;
  transform: translateY(-3px);
}

.equipment-trigger-cta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 14px;
}

.equipment-count {
  color: rgba(255,255,255,.74);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.equipment-count b {
  margin-right: 4px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.equipment-trigger-action i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.equipment-trigger-action i::before,
.equipment-trigger-action i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform .3s ease;
}

.equipment-trigger-action i::after {
  transform: rotate(90deg);
}

.equipment:not([open]) .equipment-trigger-action i {
  animation: equipment-prompt 1.8s ease-in-out infinite;
}

@keyframes equipment-prompt {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.equipment-close {
  display: none;
}

.equipment[open] .equipment-trigger-shade {
  background: rgba(7, 27, 27, .78);
}

.equipment[open] .equipment-trigger-action i::after {
  transform: rotate(0);
}

.equipment[open] .equipment-trigger-action {
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.equipment[open] .equipment-view {
  display: none;
}

.equipment[open] .equipment-close {
  display: inline;
}

.equipment-panel {
  animation: equipment-reveal .4s ease both;
}

@keyframes equipment-reveal {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.equipment-heading {
  display: grid;
  margin-bottom: 65px;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 10vw;
}

.equipment-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.equipment-stats {
  display: grid;
  margin-bottom: 56px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #c9ced0;
  border-bottom: 1px solid #c9ced0;
}

.equipment-current-label {
  margin: 0 0 12px;
  color: #4e6668;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.equipment-stats div {
  display: flex;
  min-height: 112px;
  padding: 22px 25px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.equipment-stats div + div {
  border-left: 1px solid #c9ced0;
}

.equipment-stats strong {
  color: #1d4a56;
  font: 500 38px Arial, sans-serif;
  letter-spacing: -.04em;
}

.equipment-stats span {
  max-width: 125px;
  color: #69736f;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.equipment-chapters {
  display: grid;
  gap: 110px;
}

.equipment-chapter {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(45px, 7vw, 110px);
}

.equipment-chapter-reverse .equipment-chapter-intro {
  grid-column: 2;
}

.equipment-chapter-reverse .equipment-pair {
  grid-row: 1;
  grid-column: 1;
}

.equipment-chapter-intro > span {
  color: #5f969d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.equipment-chapter-intro h3 {
  margin: 18px 0 22px;
  color: #153c45;
  font: 400 clamp(32px, 3vw, 47px)/1.05 Georgia, serif;
}

.equipment-chapter-intro p {
  max-width: 390px;
  margin: 0;
  color: #69736f;
  font-size: 13px;
  line-height: 1.85;
}

.equipment-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.equipment-card {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  background: #18342d;
  grid-template-rows: minmax(270px, 1fr) auto;
}

.equipment-card img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease;
}

.equipment-chapter:nth-child(1) .equipment-card:nth-child(1) img {
  object-position: 48% center;
}

.equipment-chapter:nth-child(1) .equipment-card:nth-child(2) img {
  object-position: 55% center;
}

.equipment-chapter:nth-child(2) .equipment-card:nth-child(1) img {
  object-position: 48% center;
}

.equipment-chapter:nth-child(2) .equipment-card:nth-child(2) img {
  object-position: 50% 42%;
}

.equipment-chapter:nth-child(3) .equipment-card img {
  object-position: 52% center;
}

.equipment-environment {
  position: relative;
  display: grid;
  min-height: 430px;
  margin-top: 110px;
  grid-template-columns: 1.12fr .88fr;
  color: var(--white);
  background: #123138;
}

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

.equipment-environment > div {
  display: flex;
  padding: 55px;
  flex-direction: column;
  justify-content: center;
}

.equipment-environment span {
  color: #87c9cb;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.equipment-environment h3 {
  margin: 18px 0;
  font: 400 38px/1.08 Georgia, serif;
}

.equipment-environment p {
  max-width: 480px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.75;
}

.equipment-card::after {
  display: none;
}

.equipment-card:hover img {
  transform: scale(1.025);
}

.equipment-card-copy {
  position: relative;
  z-index: 2;
  min-height: 126px;
  padding: 25px 28px 27px;
  color: var(--white);
  background: #123138;
}

.equipment-card-copy > span {
  color: #87c9cb;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.equipment-card-copy h3 {
  margin: 0 0 8px;
  overflow-wrap: anywhere;
  font: 500 clamp(19px, 1.65vw, 24px)/1.2 Arial, sans-serif;
}

.equipment-card-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.6;
}

.quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.quality-body {
  padding-top: 50px;
}

.standards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 16px;
  color: #505a55;
}

.standards-label {
  margin: 34px 0 16px;
  color: #255f68;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.standards-note {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.standards-request {
  display: inline-block;
  margin-top: 12px;
  color: #255f68;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.standards figure {
  margin: 0;
}

.standard-mark {
  display: flex;
  min-height: 150px;
  padding: 22px 18px;
  justify-content: space-between;
  flex-direction: column;
  border-top: 2px solid #255f68;
  background: rgba(255,255,255,.46);
}

.standard-mark strong {
  color: #183f47;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.standard-mark span {
  color: #69736f;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.standards sup {
  font-size: 8px;
  vertical-align: top;
}

.ocean-story {
  position: relative;
  display: flex;
  min-height: 760px;
  padding: 110px 8vw;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: #052c3d;
}

.ocean-background,
.ocean-overlay,
.ocean-light {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ocean-background {
  object-fit: cover;
  transform: scale(1.025);
  animation: ocean-camera 18s ease-in-out infinite alternate;
}

.ocean-overlay {
  background: linear-gradient(90deg, rgba(3,23,35,.94) 0%, rgba(3,26,39,.72) 46%, rgba(3,31,43,.2) 78%);
}

.ocean-light {
  opacity: .22;
  background: linear-gradient(112deg, transparent 38%, rgba(169,233,241,.45) 48%, transparent 58%);
  animation: ocean-light 9s ease-in-out infinite alternate;
}

.ocean-content {
  position: relative;
  z-index: 3;
  width: min(650px, 55%);
}

.ocean-content > p:not(.eyebrow) {
  max-width: 580px;
  margin: 30px 0 38px;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  line-height: 1.75;
}

.ocean-process {
  display: grid;
  margin-bottom: 25px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.ocean-process div {
  min-height: 115px;
  padding: 22px 18px 18px 0;
}

.ocean-process div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.ocean-process strong {
  display: block;
  margin-bottom: 12px;
  color: #79d2d3;
  font-size: 10px;
  letter-spacing: .12em;
}

.ocean-process span {
  font-size: 11px;
  line-height: 1.5;
}

.ocean-content small {
  color: rgba(255,255,255,.42);
  font-size: 9px;
}

@keyframes ocean-light {
  from { transform: translateX(-8%); opacity: .12; }
  to { transform: translateX(8%); opacity: .28; }
}

@keyframes ocean-camera {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-1.2%, -.8%, 0); }
}

.about {
  display: grid;
  min-height: 640px;
  padding: 110px 8vw;
  color: var(--white);
  background: #123329;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 8vw;
}

.about-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 35px;
  color: rgba(255,255,255,.63);
  line-height: 1.75;
}

.responsibility-points {
  display: flex;
  flex-direction: column;
}

.responsibility-points article {
  display: grid;
  min-height: 138px;
  padding: 27px 0;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.responsibility-points article:last-child {
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.responsibility-points > article > span {
  color: #da9477;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.responsibility-points h3 {
  margin: -5px 0 9px;
  font: 500 22px Arial, sans-serif;
}

.responsibility-points p {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,.53);
  font-size: 13px;
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10vw;
}

.contact-intro > p {
  margin-top: 30px;
}

.contact-intro > a,
.contact-intro > span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
}

.contact-intro > a:hover {
  color: var(--clay);
}

.inquiry-form {
  padding: 48px;
  background: #efebe3;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.inquiry-form label {
  display: block;
  margin-bottom: 27px;
  color: #4c5651;
  font-size: 11px;
  font-weight: 600;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 11px 0;
  color: var(--ink);
  outline: 0;
  border: 0;
  border-bottom: 1px solid #bdbab3;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-context {
  display: grid;
  margin: 0 0 24px;
  padding: 15px 17px;
  color: #203b33;
  border-left: 3px solid #8b4f3c;
  background: #ebe8df;
  gap: 5px;
}

.form-context strong {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-context span {
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.form-consent input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  flex: 0 0 15px;
}

.form-consent a {
  color: #255f68;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inquiry-form.is-submitting button {
  opacity: .65;
  pointer-events: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--clay);
}

.inquiry-form .invalid {
  border-color: #b4362b;
}

.form-status {
  min-height: 18px;
  margin: 15px 0 0;
  color: var(--clay);
  font-size: 12px;
}

footer {
  display: grid;
  padding: 70px 8vw 25px;
  color: var(--white);
  background: #0d211b;
  grid-template-columns: 1fr 1fr;
}

.brand-light {
  color: var(--white);
}

.brand-light img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 25px 0;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: rgba(255,255,255,.35);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.footer-links a {
  width: max-content;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  margin-top: 60px;
  padding-top: 22px;
  justify-content: space-between;
  color: rgba(255,255,255,.28);
  border-top: 1px solid rgba(255,255,255,.1);
  grid-column: 1 / -1;
  font-size: 9px;
}

.email-toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: calc(100vw - 48px);
  padding: 14px 18px;
  color: var(--white);
  background: #153c45;
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.email-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  background: #f4f2ed;
}

.legal-header {
  display: flex;
  min-height: 88px;
  padding: 0 clamp(24px, 6vw, 90px);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.legal-header > a:last-child {
  color: #255f68;
  font-size: 12px;
  font-weight: 700;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) 32px 110px;
}

.legal-content h1 {
  margin: 20px 0 18px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.legal-updated {
  display: block;
  margin-top: 56px;
  color: var(--muted);
  font-size: 11px;
}

.legal-content h2 {
  margin: 38px 0 11px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.legal-content p {
  margin: 0;
  color: #52605b;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content .legal-intro {
  margin-bottom: 52px;
  color: #30443d;
  font-size: 17px;
  line-height: 1.65;
}

.legal-content a {
  color: #255f68;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .legal-header {
    min-height: 72px;
    padding: 0 22px;
  }

  .legal-content {
    padding: 56px 24px 80px;
  }

  .legal-content h1 {
    margin-top: 16px;
    font-size: 38px;
  }

  .legal-content .legal-intro {
    margin-bottom: 42px;
    font-size: 16px;
  }

  .legal-content h2 {
    margin-top: 32px;
  }
}

.not-found {
  display: flex;
  min-height: 100vh;
  padding: 40px 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.not-found h1 {
  margin: 18px 0;
  font: 400 clamp(48px, 8vw, 82px)/1 Georgia, serif;
}

.not-found > .brand {
  margin-bottom: 46px;
}

.not-found-languages {
  display: flex;
  margin-top: 36px;
  gap: 14px;
}

.not-found-languages a {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
}

.admin-page {
  min-height: 100vh;
  color: var(--ink);
  background: #f4f2ed;
}

.admin-shell {
  padding: clamp(55px, 7vw, 90px) 5vw 100px;
}

.admin-heading {
  display: grid;
  margin-bottom: 35px;
  grid-template-columns: 1fr minmax(300px, 430px);
  align-items: end;
  gap: 7vw;
}

.admin-heading h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.admin-login {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.admin-login label {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  font-weight: 700;
}

.admin-login input {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-login .button {
  min-height: 44px;
}

.admin-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-toolbar {
  display: flex;
  margin: 22px 0;
  gap: 28px;
}

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

.admin-card {
  padding: 25px;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-card-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.admin-card-top span,
.admin-card dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-card h2 {
  margin: 8px 0 4px;
  font-size: 1.45rem;
}

.admin-card-top p,
.admin-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-card select {
  align-self: start;
  padding: 9px 30px 9px 10px;
  border: 1px solid var(--line);
  background: #f4f2ed;
}

.admin-card dl {
  display: grid;
  margin: 23px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.admin-card dt {
  margin-bottom: 5px;
}

.admin-card dd {
  overflow-wrap: anywhere;
}

.admin-card a {
  color: #255f68;
}

.admin-message {
  margin: 0 0 14px;
  color: #30443d;
  white-space: pre-wrap;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .admin-heading {
    grid-template-columns: 1fr;
  }

  .admin-card dl {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .admin-login,
  .admin-card dl {
    grid-template-columns: 1fr;
  }

  .admin-card-top,
  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

.not-found p:not(.eyebrow) {
  margin: 0 0 30px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    position: absolute;
    right: 66px;
  }

  .language-picker select {
    height: 38px;
  }

  .menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 10px 5px;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: inherit;
    border: 0;
    background: none;
  }

  .menu-toggle span {
    width: 27px;
    height: 1px;
    background: currentColor;
    transition: .2s;
  }

  .site-header.menu-open .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    display: flex;
    width: 100%;
    padding: 25px 5vw 35px;
    color: var(--ink);
    background: var(--paper);
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
  }

  .hero-content {
    width: 75%;
  }

  .hero-proof > div {
    width: 145px;
  }

  .intro,
  .quality,
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro-copy,
  .quality-body {
    padding-top: 0;
  }

  .capabilities {
    grid-template-columns: .7fr 1.3fr;
  }

  .capability-content {
    padding-right: 6vw;
    padding-left: 6vw;
  }

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

  .equipment-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 640px) {
  .site-header {
    height: 70px;
    padding: 0 22px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7,22,17,.92), rgba(7,22,17,.35)), linear-gradient(0deg, rgba(7,22,17,.72), transparent);
  }

  .hero-content {
    width: 100%;
    padding: 120px 24px 210px;
    justify-content: center;
  }

  h1 {
    font-size: 55px;
  }

  h2 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-proof {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .hero-proof > div {
    width: 33.33%;
    min-height: 95px;
    padding: 12px 8px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-proof strong {
    font-size: 21px;
  }

  .hero-proof span {
    font-size: 10px;
    line-height: 1.35;
  }

  .fabric-label,
  .standards-label,
  .standard-mark span,
  .ocean-process strong,
  .footer-links strong,
  .footer-bottom {
    font-size: 11px;
    line-height: 1.4;
  }

  .standards-note,
  .ocean-content small {
    font-size: 12px;
    line-height: 1.6;
  }

  .section {
    padding: 80px 24px;
  }

  .intro {
    gap: 25px;
  }

  .products {
    padding-top: 0;
  }

  .filter-row {
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .filter {
    flex: 0 0 auto;
  }

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

  .fabric-visual {
    height: 300px;
  }

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

  .capability-image {
    min-height: 330px;
  }

  .capability-content {
    padding: 75px 24px;
  }

  .equipment-heading {
    margin-bottom: 30px;
  }

  .equipment-trigger {
    min-height: 340px;
    background-image: url("assets/equipment/water-jet-loom-v2-640.webp");
  }

  .equipment-trigger-copy {
    padding: 42px 0 32px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .equipment-trigger-label {
    grid-column: auto;
    margin-bottom: -10px;
    font-size: 11px;
  }

  .equipment-trigger-action {
    min-width: 0;
    width: 100%;
    font-size: 12px;
  }

  .equipment-trigger-cta {
    width: 100%;
    align-items: flex-start;
  }

  .equipment-stats {
    grid-template-columns: 1fr;
  }

  .equipment-stats div {
    min-height: 72px;
    padding: 14px 0;
  }

  .equipment-stats div + div {
    border-top: 1px solid #c9ced0;
    border-left: 0;
  }

  .equipment-card {
    min-height: 0;
    grid-template-rows: 150px auto;
  }

  .equipment-card-copy {
    min-height: 0;
    padding: 18px 16px 20px;
  }

  .equipment-card-copy h3 {
    font-size: 17px;
  }

  .equipment-card-copy p {
    font-size: 12px;
    line-height: 1.45;
  }

  .equipment-chapters {
    gap: 48px;
  }

  .equipment-chapter {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .equipment-chapter-reverse .equipment-chapter-intro,
  .equipment-chapter-reverse .equipment-pair {
    grid-row: auto;
    grid-column: auto;
  }

  .equipment-pair {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .equipment-card img {
    min-height: 150px;
  }

  .equipment-chapter-intro > span,
  .equipment-current-label,
  .equipment-count,
  .equipment-environment span {
    font-size: 11px;
    line-height: 1.4;
  }

  .equipment-stats span {
    max-width: none;
    font-size: 11px;
  }

  .equipment-chapter-intro h3 {
    margin: 12px 0 14px;
    font-size: 30px;
  }

  .equipment-chapter-intro p {
    font-size: 13px;
    line-height: 1.65;
  }

  .equipment-chapter-intro p {
    max-width: 100%;
  }

  .equipment-environment {
    min-height: 0;
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .equipment-environment img {
    height: 240px;
    min-height: 240px;
  }

  .equipment-environment > div {
    padding: 30px 24px 34px;
  }

  .equipment-environment h3 {
    margin: 12px 0;
    font-size: 30px;
  }

  .equipment-environment p {
    font-size: 13px;
    line-height: 1.6;
  }

  .process-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .ocean-story {
    min-height: 780px;
    padding: 80px 24px;
    align-items: flex-start;
  }

  .ocean-content {
    width: 100%;
  }

  .ocean-content h2 {
    font-size: 40px;
  }

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

  .ocean-process div {
    min-height: auto;
    padding: 16px 0;
  }

  .ocean-process div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 0;
  }

  .about {
    padding: 80px 24px;
  }

  .responsibility-points article {
    min-height: auto;
  }

  .inquiry-form {
    padding: 35px 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer {
    padding: 60px 24px 22px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 24px;
  }

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
  }
}

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

  .ocean-light,
  .ocean-background {
    animation: none;
  }
}
