:root {
  --color-green: #2aa6a1;
  --color-green-dark: #1f817d;
  --color-navy: #071724;
  --color-white: #ffffff;
  --color-muted: #d7dde2;
  --header-height: 104px;
  --container-width: 1180px;
  --page-gutter: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-navy);
  background: var(--color-white);
}

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

.container {
  width: min(100% - var(--page-gutter) * 2, var(--container-width));
  margin-inline: auto;
}

.js main > section:not(:first-child) {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js main > section:not(:first-child).is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js main > section:not(:first-child) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .services-train-track {
    animation: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid rgba(7, 23, 36, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-logo {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong,
.brand-text small {
  font-size: 17px;
  font-weight: 800;
}

.brand-text small {
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  font-weight: 700;
}

.site-nav a {
  padding-block: 30px;
  position: relative;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 2px;
  background: var(--color-green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
}

@media (hover: hover) {
  .button-primary:hover {
    background: var(--color-green-dark);
    border-color: var(--color-green-dark);
  }
}

.button-primary:active {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

.button-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.82);
}

.button-outline:hover {
  color: var(--color-navy);
  background: var(--color-white);
}

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

.button-light:hover {
  color: var(--color-white);
  background: transparent;
  border-color: var(--color-white);
}

.button-outline-dark {
  color: var(--color-navy);
  border-color: rgba(7, 23, 36, 0.28);
}

@media (hover: hover) {
  .button-outline-dark:hover {
    color: var(--color-white);
    background: var(--color-green);
    border-color: var(--color-green);
  }
}

.button-outline-dark:active {
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  background: var(--color-navy);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 560px;
  padding-block: 96px;
  margin-left: clamp(32px, 6vw, 96px);
  margin-right: 32px;
  align-self: center;
}

.hero-media {
  min-height: calc(100vh - var(--header-height));
  background:
    linear-gradient(rgba(7, 23, 36, 0.08), rgba(7, 23, 36, 0.08)),
    url("../assets/images/home-hero-showroom.png") center / cover no-repeat;
}

.hero h1 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero .hero-tagline {
  color: #cfd6dc;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.2;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.page-hero {
  min-height: 300px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  text-align: center;
  background:
    linear-gradient(rgba(7, 23, 36, 0.78), rgba(7, 23, 36, 0.72)),
    url("../assets/images/hero-garment-floor.svg") center / cover no-repeat;
}

.page-hero-fabrics {
  background:
    linear-gradient(rgba(7, 23, 36, 0.72), rgba(7, 23, 36, 0.68)),
    url("../assets/images/fabrics-hero-flow.png") center / cover no-repeat;
}

.page-hero-services {
  background:
    linear-gradient(rgba(7, 23, 36, 0.72), rgba(7, 23, 36, 0.68)),
    url("../assets/images/about-hero-collage.png") center / cover no-repeat;
}

.page-hero-about {
  background:
    linear-gradient(rgba(7, 23, 36, 0.72), rgba(7, 23, 36, 0.68)),
    url("../assets/images/about-hero-bangladesh-apparel.png") center / cover no-repeat;
}

.page-hero-products {
  background:
    linear-gradient(rgba(7, 23, 36, 0.72), rgba(7, 23, 36, 0.68)),
    url("../assets/images/products-hero-showroom.png") center / cover no-repeat;
}

.page-hero-contact {
  background:
    linear-gradient(rgba(7, 23, 36, 0.72), rgba(7, 23, 36, 0.68)),
    url("../assets/images/contact-hero-inquiry-desk.png") center / cover no-repeat;
}

.page-hero-content h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 800;
}

.page-hero-content p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 76px 0;
}

.why-work {
  background: var(--color-white);
}

.section-title {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.section-title p {
  margin: 0;
  color: rgba(7, 23, 36, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.services-overview {
  background: var(--color-white);
}

.service-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 22px;
  background: #f5f7f8;
  border-radius: 8px;
}

.service-row + .service-row {
  margin-top: 28px;
}

.service-row-content {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px;
}

.service-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 50%;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-row-content h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
}

.service-row-content p {
  margin: 10px 0 0;
  color: rgba(7, 23, 36, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.service-row-media {
  overflow: hidden;
  border-radius: 6px;
}

.service-row-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.process-flow {
  margin: 0 0 56px;
  padding: 42px;
  background: #f5f7f8;
  border: 1px solid rgba(7, 23, 36, 0.08);
  border-radius: 8px;
}

.process-flow .section-title {
  margin-bottom: 34px;
}

.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process-step;
}

.process-flow-grid li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 22px 18px;
  background: var(--color-white);
  border: 1px solid rgba(7, 23, 36, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 23, 36, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-flow-grid li:hover {
  border-color: rgba(42, 166, 161, 0.58);
  box-shadow: 0 16px 34px rgba(7, 23, 36, 0.12);
  transform: translateY(-4px);
}

.process-flow-grid li:not(:nth-child(5n))::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -17px;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--color-green);
  border-right: 3px solid var(--color-green);
  transform: rotate(45deg);
}

.process-flow-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 999px;
  font-weight: 800;
  transition: background-color 220ms ease;
}

.process-flow-grid li:hover span {
  background: var(--color-green-dark);
}

.process-flow-grid h3 {
  margin: 2px 0 0;
  color: var(--color-navy);
  font-size: 16px;
  line-height: 1.3;
}

.process-flow-grid p {
  margin: 0;
  color: rgba(7, 23, 36, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.services-image-train {
  overflow: hidden;
  padding: 42px 0 4px;
}

.services-train-heading {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.services-train-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}

.services-train-heading p {
  margin: 12px 0 0;
  color: rgba(7, 23, 36, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.services-train-window {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.services-train-window::before,
.services-train-window::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 42px;
  height: 100%;
  pointer-events: none;
}

.services-train-window::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.services-train-window::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.services-train-track {
  --services-train-distance: -50%;
  display: flex;
  width: max-content;
  gap: 22px;
  animation: services-train-scroll 48s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}


.services-train-card {
  flex: 0 0 clamp(300px, 34vw, 460px);
  height: clamp(220px, 25vw, 320px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(7, 23, 36, 0.12);
  box-shadow: 0 16px 34px rgba(7, 23, 36, 0.13);
}

.services-train-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes services-train-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translate3d(var(--services-train-distance), 0, 0);
  }
}

@media (max-width: 640px) {
  .services-image-train {
    padding-top: 34px;
  }

  .services-train-window {
    min-height: 240px;
  }

  .services-train-window::before,
  .services-train-window::after {
    width: 18px;
  }

  .services-train-track {
    gap: 16px;
    animation-duration: 34s;
  }

  .services-train-card {
    flex-basis: 82vw;
    height: 230px;
  }
}
.cta-band {
  padding: 56px 0;
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
}

.cta-band-inner {
  display: grid;
  justify-items: center;
}

.cta-band h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
}

.cta-band p {
  margin: 10px 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.6;
}

.products-overview {
  background: var(--color-white);
}

.products-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  height: 360px;
}

.products-intro-copy {
  display: grid;
  align-items: center;
  min-height: 0;
  padding-block: 32px;
  padding-left: max(var(--page-gutter), calc((100vw - var(--container-width)) / 2 - 90px));
  padding-right: 56px;
  color: var(--color-navy);
  background: #f5f7f8;
}

.products-intro-inner {
  max-width: 640px;
}

.products-intro p {
  margin: 0;
  color: rgba(7, 23, 36, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.products-intro-media {
  overflow: hidden;
  min-height: 0;
}

.products-intro-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-showcase-container {
  padding-block: 42px;
}

.product-capabilities {
  margin-bottom: 36px;
  padding: 30px;
  background: #f5f7f8;
  border: 1px solid rgba(7, 23, 36, 0.08);
  border-radius: 8px;
}

.product-capabilities h2 {
  margin: 0 0 20px;
  color: var(--color-navy);
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
}

.product-capability-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-capability-list li {
  padding: 10px 14px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid rgba(7, 23, 36, 0.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-capability-list li:hover {
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
  box-shadow: 0 10px 22px rgba(42, 166, 161, 0.24);
  transform: translateY(-3px);
}

.product-showcase {
  display: grid;
  gap: 22px;
}

.product-tabs {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 8px;
  background: #f5f7f8;
  border: 1px solid rgba(7, 23, 36, 0.08);
  border-radius: 8px;
}

.product-tab {
  min-height: 48px;
  border: 0;
  border-radius: 5px;
  color: var(--color-navy);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.product-tab:hover,
.product-tab:focus-visible {
  color: var(--color-green);
  background: rgba(20, 115, 52, 0.08);
  outline: none;
}

.product-tab.is-active {
  color: var(--color-white);
  background: var(--color-green);
}

.product-slider {
  max-width: 1220px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 18px;
}

.product-slider-button {
  position: relative;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(7, 23, 36, 0.42);
  border-radius: 50%;
  color: var(--color-navy);
  background: var(--color-white);
  font-size: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 23, 36, 0.12);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-slider-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-color: currentColor;
  border-width: 0 3px 3px 0;
}

.product-slider-button[data-slide-direction="previous"]::before {
  transform: translate(-40%, -50%) rotate(135deg);
}

.product-slider-button[data-slide-direction="next"]::before {
  transform: translate(-60%, -50%) rotate(-45deg);
}

@media (hover: hover) {
  .product-slider-button:hover {
    color: var(--color-white);
    background: var(--color-green);
    border-color: var(--color-green);
    box-shadow: 0 14px 30px rgba(7, 23, 36, 0.18);
  }
}

.product-slider-button:active {
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
  box-shadow: 0 14px 30px rgba(7, 23, 36, 0.18);
}

.product-slider-button:focus-visible {
  outline: 3px solid rgba(42, 166, 161, 0.28);
  outline-offset: 4px;
}

.product-slide {
  position: relative;
  overflow: hidden;
  height: clamp(420px, 58vh, 560px);
  min-height: 0;
  background: var(--color-white);
  border-radius: 8px;
}

.product-slide-inner,
.product-slide-ghost {
  display: grid;
  grid-template-columns: auto minmax(320px, 420px);
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: var(--color-white);
  transition: transform 420ms ease;
}

.product-slide-ghost {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.product-slide img {
  display: block;
  width: auto;
  max-width: min(680px, 52vw);
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: var(--color-white);
}

.product-slide-content {
  display: grid;
  align-content: center;
  padding: 30px;
  background: var(--color-navy);
}

.product-slide-content p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.product-slide-content h2 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  font-weight: 800;
}

.product-slide-content span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.serve-section {
  background: #f5f7f8;
}

.fabrics-section {
  background: #f5f7f8;
}

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

.fabric-card {
  margin: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(7, 23, 36, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(7, 23, 36, 0.07);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fabric-card:hover,
.fabric-card:focus-visible {
  border-color: rgba(42, 166, 161, 0.58);
  box-shadow: 0 18px 42px rgba(7, 23, 36, 0.14);
  outline: none;
  transform: translateY(-4px);
}

.fabric-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f7f8;
}

.fabric-card figcaption {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px;
  color: var(--color-navy);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.fabric-feature-composite {
  margin-top: 46px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(7, 23, 36, 0.14);
  border-radius: 8px;
  box-shadow:
    0 0 0 8px var(--color-white),
    0 24px 58px rgba(7, 23, 36, 0.18);
}

.fabric-feature-composite img {
  display: block;
  width: 100%;
  height: auto;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 36, 0.78);
  backdrop-filter: blur(4px);
}

.image-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(86vh, 820px);
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.image-modal-img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #f5f7f8;
  border-radius: 6px;
}

.image-modal-title {
  margin: 0;
  color: var(--color-navy);
  font-size: 20px;
  text-align: center;
}

.image-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 23, 36, 0.16);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(7, 23, 36, 0.16);
}

.image-modal-close:hover,
.image-modal-close:focus-visible {
  border-color: var(--color-green);
  color: var(--color-green-dark);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.serve-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 28px 18px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid rgba(7, 23, 36, 0.08);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.serve-card:hover {
  border-color: rgba(42, 166, 161, 0.58);
  box-shadow: 0 16px 34px rgba(7, 23, 36, 0.12);
  transform: translateY(-4px);
}

.serve-card:hover .serve-icon {
  color: var(--color-green-dark);
}

.serve-icon {
  width: 46px;
  height: 46px;
  color: var(--color-green);
}

.serve-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.serve-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.production-band {
  background: var(--color-navy);
}

.production-band img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

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

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

.contact-info-panel h2,
.contact-action-panel h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
}

.contact-info-panel > p {
  margin: 16px 0 34px;
  color: rgba(7, 23, 36, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--color-green);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.contact-item p {
  margin: 6px 0 0;
  color: rgba(7, 23, 36, 0.72);
  font-size: 14px;
  line-height: 1.5;
}


.contact-copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.contact-copy-row p {
  margin: 0;
}

.copy-button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  color: var(--color-green);
  background: rgba(42, 166, 161, 0.1);
  border: 1px solid rgba(42, 166, 161, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.copy-button svg {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-icon-copy {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.copy-icon-check {
  opacity: 0;
  transform: scale(0.72) rotate(-12deg);
}

.copy-button.is-copied .copy-icon-copy {
  opacity: 0;
  transform: scale(0.72) rotate(12deg);
}

.copy-button.is-copied .copy-icon-check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@media (hover: hover) {
  .copy-button:hover {
    color: var(--color-white);
    background: var(--color-green);
    border-color: var(--color-green);
    transform: translateY(-2px);
  }
}

.copy-button:active,
.copy-button.is-copied {
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
  transform: translateY(-2px);
}

.copy-button:focus-visible {
  outline: 3px solid rgba(42, 166, 161, 0.3);
  outline-offset: 3px;
}

.contact-action-panel {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(7, 23, 36, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(7, 23, 36, 0.08);
}

.contact-action-panel > p {
  margin: 0;
  color: rgba(7, 23, 36, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.contact-action {
  width: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--color-green);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.feature-card p {
  margin: 12px 0 0;
  color: rgba(7, 23, 36, 0.76);
  font-size: 14px;
  line-height: 1.65;
}

.what-we-do {
  background: #f5f7f8;
}

.what-we-do-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.what-we-do-content {
  display: grid;
  align-items: center;
  padding-block: 76px;
  padding-left: max(var(--page-gutter), calc((100vw - var(--container-width)) / 2));
  padding-right: 72px;
  color: var(--color-white);
  background: var(--color-navy);
}

.what-we-do-content .split-content p {
  color: rgba(255, 255, 255, 0.78);
}

.what-we-do-media {
  min-height: 520px;
  overflow: hidden;
}

.what-we-do-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.capability-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
}

.capability-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(20, 115, 52, 0.12);
}

.about-intro {
  background: var(--color-white);
}

.mission-vision {
  background: #f5f7f8;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.mission-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--color-white);
  border: 1px solid rgba(7, 23, 36, 0.08);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mission-card:hover {
  border-color: rgba(42, 166, 161, 0.58);
  box-shadow: 0 16px 34px rgba(7, 23, 36, 0.12);
  transform: translateY(-4px);
}

.mission-card:hover .mission-icon {
  color: var(--color-green-dark);
}

.mission-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--color-green);
}

.mission-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.mission-card p {
  margin: 10px 0 0;
  color: rgba(7, 23, 36, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.why-choose {
  background: var(--color-white);
  padding-block: 58px;
}

.why-choose .split-section {
  max-width: 1040px;
  gap: 48px;
}

.why-choose .split-content {
  max-width: 420px;
}

.why-choose .split-media {
  justify-self: end;
  width: min(100%, 520px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(7, 23, 36, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--color-green);
  border-bottom: 2px solid var(--color-green);
  transform: rotate(-45deg);
}

.mission-card .check-list {
  gap: 8px;
  margin-top: 12px;
}

.mission-card .check-list li {
  padding-left: 24px;
  font-size: 14px;
}

.values-section {
  background: #f5f7f8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.value-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 26px 18px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid rgba(7, 23, 36, 0.08);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-card:hover {
  border-color: rgba(42, 166, 161, 0.58);
  box-shadow: 0 16px 34px rgba(7, 23, 36, 0.12);
  transform: translateY(-4px);
}

.value-card:hover .value-icon {
  color: var(--color-green-dark);
}

.value-icon {
  width: 44px;
  height: 44px;
  color: var(--color-green);
}

.value-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.split-content {
  max-width: 500px;
}

.split-content h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.split-content p {
  margin: 18px 0 28px;
  color: rgba(7, 23, 36, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(7, 23, 36, 0.14);
}

.split-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-slider {
  position: relative;
}

.about-slider-viewport {
  overflow: hidden;
}

.about-slider-track {
  display: flex;
  transform: translateX(0);
  transition: transform 520ms ease;
}

.about-slider-slide {
  flex: 0 0 100%;
}

.about-slider-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(7, 23, 36, 0.68);
  cursor: pointer;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .about-slider-button:hover {
    background: var(--color-green);
  }
}

.about-slider-button:active {
  background: var(--color-green);
}

.about-slider-button:focus-visible {
  outline: 3px solid rgba(42, 166, 161, 0.28);
  outline-offset: 4px;
}

.about-slider-button span {
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--color-white);
  border-left: 3px solid var(--color-white);
}

.about-slider-button-prev {
  left: 16px;
}

.about-slider-button-prev span {
  transform: translateX(2px) rotate(-45deg);
}

.about-slider-button-next {
  right: 16px;
}

.about-slider-button-next span {
  transform: translateX(-2px) rotate(135deg);
}

.about-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.about-slider-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  padding: 0;
}

.about-slider-dot.is-active {
  background: var(--color-green);
  border-color: var(--color-white);
}

.strengths {
  background: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(7, 23, 36, 0.1);
  border-bottom: 1px solid rgba(7, 23, 36, 0.1);
}

.stat-card {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(7, 23, 36, 0.1);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--color-green);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(7, 23, 36, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.collection-cta {
  background: #f5f7f8;
}

.collection-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  align-items: stretch;
}

.collection-cta-media {
  min-height: 520px;
  overflow: hidden;
}

.collection-cta-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-cta-content {
  display: grid;
  align-items: center;
  padding-block: 76px;
  padding-left: 72px;
  padding-right: max(var(--page-gutter), calc((100vw - var(--container-width)) / 2));
}

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

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

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #071724;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 54px;
  padding: 56px 0 44px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-right: 0;
}

.footer-logo .brand-logo {
  width: 78px;
  height: 78px;
  filter: brightness(0) invert(1);
}

.footer-logo .brand-text strong,
.footer-logo .brand-text small {
  color: var(--color-white);
}

.footer-brand p {
  max-width: 280px;
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column h2 {
  margin: 0 0 20px;
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.footer-column nav,
.footer-service-list,
.footer-column address {
  display: grid;
  gap: 12px;
}

.footer-column a,
.footer-service-list span,
.footer-column address span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.footer-column a:hover {
  color: var(--color-white);
}

.footer-column address {
  font-style: normal;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 23, 36, 0.14);
  border-radius: 4px;
  background: var(--color-white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-navy);
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

@media (max-width: 820px) {
  :root {
    --header-height: 82px;
    --page-gutter: 18px;
  }

  .header-inner {
    gap: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: var(--page-gutter);
    right: var(--page-gutter);
    top: calc(var(--header-height) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--color-white);
    border: 1px solid rgba(7, 23, 36, 0.1);
    box-shadow: 0 18px 45px rgba(7, 23, 36, 0.16);
  }

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

  .site-nav a {
    padding: 14px 12px;
    border-radius: 4px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--color-green);
    background: rgba(20, 115, 52, 0.08);
    outline: none;
  }

  .site-nav a[aria-current="page"] {
    color: var(--color-green);
    background: rgba(20, 115, 52, 0.1);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 620px;
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: min(100% - var(--page-gutter) * 2, 620px);
    max-width: none;
    margin-inline: auto;
    padding-block: 76px;
  }

  .hero-media {
    min-height: 360px;
    background-position: 58% center;
  }

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

  .production-band img {
    height: 230px;
  }

  .section {
    padding: 60px 0;
  }

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

  .products-intro {
    grid-template-columns: 1fr;
    height: auto;
  }

  .products-intro-copy {
    min-height: 0;
    padding: 44px var(--page-gutter);
    text-align: center;
  }

  .products-intro-inner {
    max-width: 680px;
    margin-inline: auto;
  }

  .products-intro-media {
    min-height: 260px;
  }

  .product-capabilities {
    padding: 24px 18px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .process-flow {
    padding: 32px 24px;
  }

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

  .process-flow-grid li:not(:nth-child(5n))::after {
    display: none;
  }

  .product-slide-inner,
  .product-slide-ghost {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .product-slide {
    height: auto;
    min-height: 0;
  }

  .product-slide img {
    width: 100%;
    max-width: 100%;
    min-height: 260px;
    height: min(52vh, 420px);
  }

  .product-slide-content {
    padding: 26px;
  }

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

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

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

  .what-we-do-layout {
    grid-template-columns: 1fr;
  }

  .what-we-do-content {
    padding: 60px var(--page-gutter);
  }

  .what-we-do-media {
    min-height: 360px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split-content {
    max-width: none;
  }

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

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

  .collection-cta-media {
    min-height: 360px;
  }

  .collection-cta-content {
    padding: 60px var(--page-gutter);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 23, 36, 0.1);
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .brand-text strong,
  .brand-text small {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

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

  .section-title h2 {
    font-size: 26px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mission-card {
    flex-direction: column;
  }

  .why-choose {
    padding-block: 48px;
  }

  .why-choose .split-section {
    width: min(100% - 56px, var(--container-width));
    gap: 28px;
  }

  .why-choose .split-content {
    max-width: none;
    text-align: center;
  }

  .why-choose .check-list {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .service-row-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .process-flow {
    padding: 26px 16px;
  }

  .process-flow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-flow-grid li {
    min-height: 0;
  }

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

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

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

  .fabric-feature-composite {
    margin-top: 32px;
  }

  .product-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-slide {
    order: 1;
    flex: 0 0 100%;
  }

  .product-slider-button {
    order: 2;
    width: 46px;
    height: 46px;
  }

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

  .split-content h2 {
    font-size: 26px;
  }

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

  .stat-card,
  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card:not(:last-child) {
    border-bottom: 1px solid rgba(7, 23, 36, 0.1);
  }

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