:root {
  --ink: #171918;
  --muted: #626763;
  --paper: #f6f7f4;
  --surface: #ffffff;
  --line: #d9dcd7;
  --line-dark: #9da39e;
  --red: #d83b3f;
  --red-dark: #ad292e;
  --green: #2e6758;
  --blue: #416675;
  --yellow: #d5a832;
  --max-width: 1180px;
  --shadow: 0 16px 40px rgba(23, 25, 24, 0.09);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(65, 102, 117, 0.4);
  outline-offset: 3px;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  margin-bottom: 22px;
  font-size: 52px;
}

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

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button--compact {
  min-height: 48px;
  padding: 8px 13px;
  font-size: 14px;
}

.button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: #fff;
  background: var(--red);
}

.button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: #fff;
  background: var(--red-dark);
}

.button--secondary {
  color: var(--ink);
  border-color: var(--line-dark);
  background: transparent;
}

.button--secondary:hover {
  border-color: var(--ink);
  background: var(--paper);
}

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

.button--light:hover {
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

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

.service-strip {
  color: #fff;
  background: var(--ink);
}

.service-strip__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
}

.service-strip__inner span + span {
  position: relative;
}

.service-strip__inner span + span::before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #7d837f;
  content: "";
  transform: translateY(-50%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: grid;
  min-height: 72px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-size: 16px;
}

.brand__name {
  padding-left: 10px;
  font-size: 17px;
}

.primary-navigation {
  justify-self: center;
}

.primary-menu,
.language-switcher {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu {
  gap: 20px;
}

.primary-menu a {
  display: block;
  padding: 10px 0;
  color: #373b38;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
  color: var(--red-dark);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  gap: 8px;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.language-switcher a {
  text-decoration: none;
}

.language-switcher li:not(.current-lang) {
  color: #7a7f7b;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 22px;
}

.intro-band {
  padding: 68px 0 56px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.intro-band__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.85fr);
  gap: 72px;
}

.intro-band__copy {
  align-self: center;
  max-width: 700px;
}

.intro-band__summary {
  max-width: 650px;
  margin: 0 0 30px;
  color: #4d524e;
  font-size: 20px;
  line-height: 1.55;
}

.intro-band__identity {
  max-width: 680px;
  padding-left: 16px;
  margin: -12px 0 28px;
  border-left: 2px solid var(--red);
  color: var(--muted);
  font-size: 14px;
}

.intro-band__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.spec-board {
  align-self: stretch;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.spec-board__media {
  width: calc(100% + 48px);
  aspect-ratio: 4 / 3;
  margin: -24px -24px 22px;
  overflow: hidden;
  background: var(--paper);
}

.spec-board__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-board__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
}

.spec-board__header span {
  color: var(--muted);
}

.spec-board dl {
  margin: 0;
}

.spec-board dl > div {
  display: grid;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px 1fr;
  gap: 12px;
}

.spec-board dt {
  color: var(--muted);
  font-size: 13px;
}

.spec-board dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.spec-board > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.catalog-section,
.application-section {
  padding: 80px 0;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

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

.fabric-grid--featured {
  gap: 22px;
}

.fabric-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fabric-card:hover {
  border-color: var(--line-dark);
  box-shadow: 0 10px 24px rgba(23, 25, 24, 0.08);
  transform: translateY(-2px);
}

.fabric-card__art {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #c4c7c2;
}

.fabric-card__art::before,
.fabric-card__art::after,
.fabric-card__art i {
  position: absolute;
  display: block;
  content: "";
}

.fabric-card__art::before {
  inset: 0;
  opacity: 0.5;
}

.fabric-card__art::after {
  inset: 18% 12%;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.fabric-card__art i {
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 8px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.fabric-card__art--image::before,
.fabric-card__art--image::after {
  display: none;
}

.fabric-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.fabric-card:hover .fabric-card__image {
  transform: scale(1.025);
}

.fabric-card__art--jersey {
  background-color: #819da5;
}

.fabric-card__art--jersey::before {
  background: repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,.26) 7px 8px);
}

.fabric-card__art--rib {
  background-color: #b65356;
}

.fabric-card__art--rib::before {
  background: repeating-linear-gradient(90deg, rgba(80,15,18,.2) 0 5px, rgba(255,255,255,.2) 5px 9px);
}

.fabric-card__art--double {
  background-color: #4f7568;
}

.fabric-card__art--double::before {
  background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(255,255,255,.18) 10px 12px);
}

.fabric-card__art--ponte {
  background-color: #6e627e;
}

.fabric-card__art--ponte::before {
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.12) 0 2px, transparent 2px 8px);
}

.fabric-card__art--terry {
  background-color: #a07a3c;
}

.fabric-card__art--terry::before {
  background: radial-gradient(circle, rgba(255,255,255,.35) 1px, transparent 2px);
  background-size: 10px 10px;
}

.fabric-card__art--smooth {
  background-color: #607489;
}

.fabric-card__art--smooth::before {
  background: repeating-linear-gradient(160deg, rgba(255,255,255,.16) 0 12px, transparent 12px 25px);
}

.fabric-card__art--fleece {
  background-color: #9a5b72;
}

.fabric-card__art--fleece::before {
  background: radial-gradient(circle, rgba(255,255,255,.24) 0 3px, transparent 4px);
  background-size: 16px 16px;
}

.fabric-card__body {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  padding: 20px;
}

.fabric-card__body strong {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.fabric-card__body h4 {
  margin-bottom: 10px;
}

.fabric-card__body > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.fabric-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--red-dark) !important;
  font-size: 12px !important;
  font-weight: 750;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.manufacturing-band {
  padding: 76px 0;
  color: #fff;
  background: var(--ink);
}

.manufacturing-band .eyebrow {
  color: #ff8f92;
}

.manufacturing-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

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

.process-list li {
  display: grid;
  padding: 19px 0;
  border-top: 1px solid #444844;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.process-list li:last-child {
  border-bottom: 1px solid #444844;
}

.process-list > li > span {
  color: #ff8f92;
  font-size: 13px;
  font-weight: 800;
}

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

.process-list p {
  margin: 0;
  color: #bbc0bc;
  font-size: 14px;
}

.application-section {
  border-bottom: 1px solid var(--line);
}

.application-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.application-section__grid > div:first-child p:last-child {
  max-width: 430px;
  color: var(--muted);
}

.application-links {
  border-top: 2px solid var(--ink);
}

.application-links a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.application-links a:hover {
  color: var(--red-dark);
}

.commercial-section {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.commercial-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
}

.commercial-section__grid > div > p:last-child {
  max-width: 440px;
  color: var(--muted);
}

.commercial-list {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.commercial-list > div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px minmax(170px, 0.65fr) 1fr;
  gap: 20px;
}

.commercial-list dt {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.commercial-list dd {
  margin: 0;
  font-weight: 750;
}

.commercial-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quote-band {
  padding: 52px 0;
  color: #fff;
  background: var(--red-dark);
}

.quote-band .eyebrow {
  color: #ffd2d3;
}

.quote-band h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.quote-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-main,
.commerce-main {
  min-height: 60vh;
}

.czf-breadcrumbs {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.czf-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.czf-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.czf-breadcrumbs__item + .czf-breadcrumbs__item::before {
  padding: 0 10px;
  color: var(--line-dark);
  content: "/";
}

.czf-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.czf-breadcrumbs a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.page-header {
  padding: 58px 0 42px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-header h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: 44px;
}

.content-layout {
	padding-top: 54px;
	padding-bottom: 80px;
}

.content-hub-links {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.content-hub-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-hub-links__grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.content-hub-links__grid h3 {
  margin-top: 0;
}

.public-page-media {
  padding: 34px 0 0;
  background: var(--paper);
}

.public-page-media figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.public-page-media__image {
  overflow: hidden;
  background: #dfe5df;
}

.public-page-media__feature > .public-page-media__image {
  aspect-ratio: 1920 / 824;
}

.public-page-media__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.public-page-media__grid .public-page-media__image {
  aspect-ratio: 4 / 3;
}

.public-page-media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-page-media figcaption {
  display: grid;
  gap: 5px;
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.public-page-media figcaption strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.resource-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
}

.resource-link-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  background: #f7f8f5;
}

.resource-link-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.resource-link-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.public-fabric-visuals {
  padding: 0 0 72px;
  background: var(--paper);
}

.public-fabric-visuals__header {
  max-width: 760px;
  padding: 48px 0 24px;
}

.public-fabric-visuals__header h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.public-fabric-visuals__header p:last-child {
  margin: 0;
  color: var(--muted);
}

.public-fabric-visuals__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.public-fabric-visuals__item {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.public-fabric-visuals__item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.public-fabric-visuals__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e6e9e5;
}

.public-fabric-visuals__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.public-fabric-visuals__item a:hover img,
.public-fabric-visuals__item a:focus-visible img {
  transform: scale(1.03);
}

.public-fabric-visuals__body {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
}

.public-fabric-visuals__body h3,
.public-fabric-visuals__body p {
  margin: 0;
}

.public-fabric-visuals__body h3 {
  font-size: 20px;
}

.public-fabric-visuals__body p {
  color: var(--muted);
  font-size: 14px;
}

.public-fabric-visuals__body .text-link {
  margin-top: 6px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 680px) {
  .content-hub-links__grid {
    grid-template-columns: 1fr;
  }

  .public-page-media__grid,
  .resource-link-grid,
  .public-fabric-visuals__grid {
    grid-template-columns: 1fr;
  }

  .public-page-media__feature > .public-page-media__image {
    aspect-ratio: 4 / 3;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
  }

  .entry-content th,
  .entry-content td {
    min-width: 140px;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .public-fabric-visuals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.entry-content {
  max-width: 820px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin-top: 44px;
  font-size: 28px;
}

.entry-content h3 {
  margin-top: 32px;
}

.entry-content p,
.entry-content li {
  color: #414642;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.post-list {
  padding-top: 54px;
  padding-bottom: 80px;
}

.post-list__item {
  max-width: 820px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.post-list__item h2 {
  margin-bottom: 10px;
  font-size: 27px;
}

.post-list__item h2 a {
  text-decoration: none;
}

.article-archive__header {
  padding: 70px 0 58px;
  color: #f3fbf7;
  background: var(--mint-900);
}

.article-archive__header .eyebrow {
  color: var(--mint-300);
}

.article-archive__header h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 52px;
}

.article-archive__intro {
  max-width: 760px;
  margin: 0;
  color: #d9eee3;
  font-size: 18px;
  line-height: 1.6;
}

.article-archive__body {
  padding-top: 58px;
  padding-bottom: 84px;
}

.article-archive__section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.article-archive__section-heading h2 {
  margin-bottom: 0;
  font-size: 32px;
}

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

.article-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(12, 48, 38, 0.06);
}

.article-card__meta,
.article-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 13px;
}

.article-card h3 {
  margin: 14px 0 12px;
  font-size: 23px;
}

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

.article-card__excerpt {
  flex: 1;
  color: var(--muted);
}

.article-card .text-link {
  margin-top: 18px;
  color: var(--mint-700);
  font-size: 14px;
}

.article-archive__empty {
  max-width: 720px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-archive__empty p {
  margin: 0 0 12px;
  color: var(--muted);
}

.article-archive__empty p:first-child {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.article-archive__empty .button {
  margin-top: 10px;
}

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

.article-detail__header h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 50px;
}

.article-detail__summary {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.article-detail__body {
  padding-top: 58px;
  padding-bottom: 46px;
}

.article-detail__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 76px;
  border-top: 1px solid var(--line);
}

.article-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.not-found-page__body {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 48px;
  padding-bottom: 100px;
}

@media (max-width: 980px) {
  .article-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .article-archive__header {
    padding: 50px 0 42px;
  }

  .article-archive__header h1,
  .article-detail__header h1 {
    font-size: 38px;
  }

  .article-archive__intro,
  .article-detail__summary {
    font-size: 17px;
  }

  .article-archive__body {
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .article-archive__grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: 0;
  }

  .article-detail__header {
    padding: 50px 0 40px;
  }

  .article-detail__body {
    padding-top: 42px;
  }

  .article-detail__footer {
    align-items: flex-start;
    padding-bottom: 60px;
  }

  .article-detail__actions,
  .article-detail__actions .button {
    width: 100%;
  }
}

.commerce-main {
  padding: 48px 0 80px;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  font-size: 40px;
}

.woocommerce-products-header__description,
.woocommerce .term-description {
  max-width: 980px;
  margin-bottom: 30px;
  color: #414642;
}

.woocommerce-products-header__description a,
.woocommerce .term-description a {
  display: inline-flex;
  margin-left: 4px;
  color: var(--red-dark);
  font-weight: 750;
  text-decoration: none;
}

.woocommerce-products-header__description a::after,
.woocommerce .term-description a::after {
  margin-left: 7px;
  content: "\2192";
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  min-width: 0;
  padding: 0 0 18px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  margin: 0 0 16px;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 18px;
  font-size: 17px;
}

.woocommerce .product_cat-single-jersey {
  --catalog-swatch-color: #819da5;
  --catalog-swatch-pattern: repeating-linear-gradient(90deg, transparent 0 7px, rgba(255, 255, 255, 0.26) 7px 8px);
}

.woocommerce .product_cat-rib-knit {
  --catalog-swatch-color: #b65356;
  --catalog-swatch-pattern: repeating-linear-gradient(90deg, rgba(80, 15, 18, 0.2) 0 5px, rgba(255, 255, 255, 0.2) 5px 9px);
}

.woocommerce .product_cat-double-knit-scuba {
  --catalog-swatch-color: #4f7568;
  --catalog-swatch-pattern: repeating-linear-gradient(135deg, transparent 0 10px, rgba(255, 255, 255, 0.18) 10px 12px);
}

.woocommerce .product_cat-ponte-roma {
  --catalog-swatch-color: #6e627e;
  --catalog-swatch-pattern: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 8px);
}

.woocommerce .product_cat-french-terry {
  --catalog-swatch-color: #a07a3c;
  --catalog-swatch-pattern: radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 2px);
  --catalog-swatch-size: 10px 10px;
}

.woocommerce .product_cat-smooth-polyester-spandex {
  --catalog-swatch-color: #607489;
  --catalog-swatch-pattern: repeating-linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0 12px, transparent 12px 25px);
}

.woocommerce .product_cat-polar-fleece {
  --catalog-swatch-color: #9a5b72;
  --catalog-swatch-pattern: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 3px, transparent 4px);
  --catalog-swatch-size: 16px 16px;
}

.woocommerce ul.products li.product.czf-no-image .woocommerce-loop-product__link::before {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--catalog-swatch-color, #819da5);
  background-image: var(--catalog-swatch-pattern, none);
  background-size: var(--catalog-swatch-size, auto);
  content: "";
}

.woocommerce ul.products li.product.czf-no-image .woocommerce-loop-product__link img {
  display: none;
}

.woocommerce div.product.czf-no-image .woocommerce-product-gallery {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.woocommerce div.product.czf-no-image .woocommerce-product-gallery__wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--catalog-swatch-color, #819da5);
  background-image: var(--catalog-swatch-pattern, none);
  background-size: var(--catalog-swatch-size, auto);
}

.woocommerce div.product.czf-no-image .woocommerce-product-gallery__image--placeholder {
  display: none;
}

.woocommerce div.product {
  display: flow-root;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fabric-specifications {
  margin: 12px 0 0;
  border-top: 2px solid var(--ink);
}

.product-specifications {
  margin-top: 30px;
}

.product-specifications h2 {
  margin: 0;
  font-size: 18px;
}

.fabric-specifications > div {
  display: grid;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 140px 1fr;
  gap: 20px;
}

.fabric-specifications dt {
  color: var(--muted);
}

.fabric-specifications dd {
  margin: 0;
  font-weight: 650;
}

.czf-related-products {
  clear: both;
  padding-top: 36px;
}

.catalog-hubs {
  margin: 30px 0 54px;
}

.catalog-hubs__group + .catalog-hubs__group {
  margin-top: 42px;
}

.catalog-hubs__group > h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.catalog-topic-links {
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
}

.catalog-topic-links h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

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

.catalog-topic-links__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.catalog-topic-links__item:hover {
  color: var(--red-dark);
}

.category-buying-guide {
  padding: 58px 0 20px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.category-buying-guide > h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: 30px;
}

.category-buying-guide__intro {
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
}

.category-buying-guide > h3,
.category-buying-guide__grid h3,
.category-buying-guide__faq h3 {
  margin-top: 38px;
  font-size: 21px;
}

.category-buying-guide__table-wrap {
  width: 100%;
  overflow-x: auto;
  border-top: 2px solid var(--ink);
}

.category-buying-guide table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.category-buying-guide th,
.category-buying-guide td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.category-buying-guide thead th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.category-buying-guide tbody th {
  min-width: 220px;
}

.category-buying-guide__note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.category-buying-guide__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 64px;
}

.category-buying-guide__grid dl {
  margin: 0;
}

.category-buying-guide__grid dl > div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  gap: 20px;
}

.category-buying-guide__grid dt {
  font-weight: 750;
}

.category-buying-guide__grid dd {
  margin: 0;
  color: var(--muted);
}

.category-buying-guide__faq {
  max-width: 900px;
}

.category-buying-guide__faq details {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.category-buying-guide__faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.category-buying-guide__faq summary {
  cursor: pointer;
  font-weight: 750;
}

.category-buying-guide__faq details p {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--muted);
}

.category-buying-guide__action {
  margin-top: 26px;
}

.rfq-form {
  max-width: 920px;
}

.rfq-form__notice {
  padding: 14px 16px;
  margin-bottom: 24px;
  border-left: 4px solid var(--green);
  background: #edf5f1;
}

.rfq-form__notice--error {
  border-left-color: var(--red-dark);
  background: #fff0f0;
}

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

.rfq-form__field {
  min-width: 0;
}

.rfq-form__field--full {
  grid-column: 1 / -1;
}

.rfq-form label {
  display: block;
  margin-bottom: 6px;
  color: #343834;
  font-size: 14px;
  font-weight: 700;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
}

.rfq-form textarea {
  min-height: 130px;
  resize: vertical;
}

.rfq-form input[type="file"] {
  padding: 8px;
}

.rfq-form small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.rfq-form__terms {
  padding: 16px;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  font-size: 14px;
}

.rfq-form__terms p {
  margin: 0;
}

.rfq-form__terms p + p {
  margin-top: 5px;
}

.rfq-form__consent {
  display: flex;
  max-width: 760px;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 20px;
  color: #414642;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.rfq-form__consent input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
}

.rfq-form__consent a {
  color: var(--red-dark);
}

.contact-dock {
  position: fixed;
  right: 24px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.contact-dock__panel {
  width: min(360px, calc(100vw - 40px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(23, 25, 24, 0.16);
}

.contact-dock__list {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-dock__link {
  display: grid;
  min-height: 64px;
  align-items: center;
  grid-template-columns: 40px minmax(0, 1fr) 18px;
  gap: 11px;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-dock__link:hover {
  border-color: var(--line);
  background: var(--paper);
  transform: translateX(-2px);
}

.contact-dock__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
}

.contact-dock__icon img {
  display: block;
  width: 22px;
  height: 22px;
}

.contact-dock__icon--email {
  background: #fff0f0;
}

.contact-dock__icon--phone {
  background: #eaf4ee;
}

.contact-dock__icon--zalo {
  background: #e9f2ff;
}

.contact-dock__icon--facebook {
  background: #edf4ff;
}

.contact-dock__icon--tiktok {
  background: #f0f1f1;
}

.contact-dock__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.contact-dock__copy strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.25;
}

.contact-dock__value {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.3;
}

.contact-dock__arrow {
  color: var(--line-dark);
  font-size: 20px;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.contact-dock__link:hover .contact-dock__arrow {
  color: var(--red-dark);
  transform: translateX(2px);
}

.contact-dock__toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(23, 25, 24, 0.2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-dock__toggle:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.contact-dock__toggle-mark {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

/* Product and RFQ pages already expose their primary action in the content.
 * Keep the secondary contact dock in document flow on small screens so it
 * cannot cover a specification, form field, or product title. */
@media (max-width: 780px) {
  .contact-dock--rfq,
  .contact-dock--product {
    position: static;
    width: min(calc(100% - 24px), var(--max-width));
    margin: 24px auto 0;
    justify-items: end;
  }

  .contact-dock--rfq .contact-dock__panel,
  .contact-dock--product .contact-dock__panel {
    width: 100%;
  }

  .contact-dock--rfq .contact-dock__toggle,
  .contact-dock--product .contact-dock__toggle {
    position: relative;
  }
}


/* Client-facing homepage: fewer labels, clearer hierarchy, and one visible
 * promise before the catalog details. */
.client-home {
  background: #f6f7f3;
}

.client-home-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 82px));
  color: #fff;
  overflow: hidden;
  background: #173b32;
}

.client-home-hero__media,
.client-home-hero__media::after {
  position: absolute;
  inset: 0;
}

.client-home-hero__media::after {
  background: rgba(17, 45, 38, 0.68);
  content: "";
}

.client-home-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(760px, calc(100vh - 82px));
  align-items: center;
}

.client-home-hero__copy {
  max-width: 760px;
  padding: 84px 0;
}

.client-home-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 650;
  line-height: 1.04;
}

.client-home-hero__copy > p {
  max-width: 650px;
  margin: 0;
  color: #e4ebe7;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.client-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.client-home-hero__actions .button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.client-home-hero__actions .button--secondary:hover {
  color: #173b32;
  border-color: #fff;
  background: #fff;
}

.client-solution-section,
.client-route-section,
.client-catalog-section,
.client-applications-section {
  padding: 96px 0;
}

.client-solution-section,
.client-catalog-section {
  background: #fff;
}

.client-route-section,
.client-applications-section {
  background: #eef2ee;
}

.client-section-heading {
  display: grid;
  max-width: 860px;
  gap: 16px;
  margin-bottom: 42px;
}

.client-section-heading--compact {
  max-width: 720px;
  margin-bottom: 30px;
}

.client-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 650;
  line-height: 1.08;
}

.client-section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.client-section-heading__label {
  margin: 0;
  color: var(--green);
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.client-solution-card {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  border-top: 3px solid var(--green);
  background: #f5f7f3;
}

.client-solution-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.client-solution-card > div {
  padding: 24px 24px 28px;
}

.client-solution-card h3,
.client-route-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.client-solution-card p,
.client-route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.client-route-card {
  display: grid;
  min-height: 280px;
  align-content: start;
  padding: 30px 32px 32px;
  border-top: 4px solid var(--blue);
  background: #fff;
}

.client-route-card--sourcing {
  border-top-color: var(--yellow);
}

.client-route-card__number {
  display: block;
  margin-bottom: 48px;
  color: var(--line-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.client-route-card .text-link {
  align-self: end;
  margin-top: 28px;
}

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

.client-category-card {
  display: grid;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
  background: #f4f6f2;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.client-category-card:hover {
  box-shadow: 0 14px 30px rgba(29, 42, 53, 0.12);
  transform: translateY(-2px);
}

.client-category-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dfe5df;
}

.client-category-card__media img,
.client-category-card__media .fabric-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-category-card__body {
  display: grid;
  min-height: 78px;
  align-content: center;
  padding: 16px 17px 17px;
}

.client-category-card__body strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.client-catalog-section__button {
  margin-top: 32px;
}

.client-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.client-application-grid a {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-right: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.client-application-grid a:last-child {
  border-right: 0;
}

.client-application-grid a:hover {
  color: #fff;
  background: var(--ink);
}

.client-application-grid a span:last-child {
  color: var(--red-dark);
  font-size: 23px;
}

.client-application-grid a:hover span:last-child {
  color: #e5bd72;
}

.client-quote-section {
  padding: 72px 0;
  color: #fff;
  background: var(--red-dark);
}

.client-quote-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.client-quote-section h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.client-quote-section p {
  margin: 0;
  color: #f5dcd4;
  font-size: 16px;
}

.client-quote-section .button--light {
  flex: 0 0 auto;
}

/* Keep the homepage promise and navigation visually focused. */
.home .service-strip,
.front-page .service-strip {
  display: none;
}

@media (max-width: 1080px) and (min-width: 781px) {
  .client-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .client-application-grid a:nth-child(2) {
    border-right: 0;
  }

  .client-application-grid a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 780px) {
  .client-home-hero,
  .client-home-hero__inner {
    min-height: 660px;
  }

  .client-home-hero__copy {
    padding: 64px 0;
  }

  .client-home-hero h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .client-home-hero__copy > p {
    font-size: 17px;
  }

  .client-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .client-home-hero__actions .button {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .client-solution-section,
  .client-route-section,
  .client-catalog-section,
  .client-applications-section {
    padding: 68px 0;
  }

  .client-section-heading h2 {
    font-size: 36px;
  }

  .client-solution-grid,
  .client-route-grid,
  .client-category-grid {
    grid-template-columns: 1fr;
  }

  .client-route-card {
    min-height: 0;
  }

  .client-route-card__number {
    margin-bottom: 26px;
  }

  .client-category-card__media {
    aspect-ratio: 16 / 9;
  }

  .client-application-grid {
    grid-template-columns: 1fr;
  }

  .client-application-grid a,
  .client-application-grid a:nth-child(2) {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .client-application-grid a:last-child {
    border-bottom: 0;
  }

  .client-quote-section {
    padding: 56px 0;
  }

  .client-quote-section__inner {
    display: grid;
    gap: 26px;
  }

  .client-quote-section h2 {
    font-size: 36px;
  }
}

.site-footer {
  padding: 58px 0 22px;
  color: #dfe3df;
  background: #202321;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
}

.brand--footer {
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 15px;
}

.site-footer p,
.site-footer li {
  color: #b8bdb9;
  font-size: 14px;
}

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

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  margin-top: 46px;
  border-top: 1px solid #444844;
}

.site-footer__legal p {
  margin: 0;
  font-size: 12px;
}

.site-footer__legal-links {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__legal-links li {
  font-size: 12px;
}

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

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .primary-navigation {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 72px);
    width: 100%;
    padding: 28px 24px;
    background: #fff;
    justify-self: stretch;
    overflow-y: auto;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-menu {
    display: block;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .primary-menu a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .header-tools {
    justify-self: end;
  }

  .intro-band__grid {
    gap: 36px;
  }

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

@media (max-width: 780px) {
  .site-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .czf-breadcrumbs {
    width: min(calc(100% - 32px), var(--max-width));
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 29px;
  }

  .service-strip__inner {
    display: grid;
    min-height: 48px;
    padding-block: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 16px;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
  }

  .service-strip__inner span + span::before {
    display: none;
  }

  .site-header__inner {
    min-height: 66px;
    gap: 10px;
  }

  .primary-navigation {
    height: calc(100vh - 66px);
  }

  .header-tools .button {
    display: inline-flex;
    min-height: 48px;
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .woocommerce .header-tools .button {
    display: inline-flex;
  }

  .intro-band {
    padding: 46px 0 38px;
  }

  .intro-band__grid,
  .manufacturing-band__grid,
  .application-section__grid,
  .commercial-section__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .intro-band__grid,
  .manufacturing-band__grid,
  .application-section__grid,
  .commercial-section__grid {
    gap: 34px;
  }

  .intro-band__summary {
    font-size: 18px;
  }

  .intro-band__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .section-heading,
  .quote-band__inner,
  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-section,
  .application-section {
    padding: 58px 0;
  }

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

  .catalog-topic-links__list {
    grid-template-columns: 1fr;
  }

  .category-buying-guide__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .category-buying-guide__grid dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .manufacturing-band {
    padding: 58px 0;
  }

  .commercial-section {
    padding: 58px 0;
  }

  .commercial-list > div {
    grid-template-columns: 90px 1fr;
  }

  .commercial-list p {
    grid-column: 2;
  }

  .site-footer__grid {
    gap: 32px;
  }

  .rfq-form__grid {
    grid-template-columns: 1fr;
  }

  .rfq-form__field--full {
    grid-column: auto;
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__image a {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--paper);
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .contact-dock {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: auto;
    max-width: calc(100vw - 24px);
    margin: 0;
    justify-items: end;
    z-index: 80;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .czf-breadcrumbs {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .czf-breadcrumbs__list {
    row-gap: 4px;
  }

  .czf-breadcrumbs__item {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .czf-breadcrumbs__item + .czf-breadcrumbs__item::before {
    padding-inline: 6px;
  }

  h1 {
    font-size: 34px;
  }

  .brand__mark {
    width: 38px;
    height: 32px;
  }

  .brand__name {
    font-size: 15px;
  }

  .header-tools {
    gap: 0;
  }

  .header-tools .language-switcher {
    display: none;
  }

  .fabric-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .fabric-grid--featured {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    width: 100%;
  }

  .fabric-card {
    display: grid;
    grid-template-columns: 40% 60%;
  }

  .fabric-card__art {
    height: 100%;
    aspect-ratio: auto;
  }

  .fabric-card__body {
    min-height: 150px;
  }

  .fabric-card__art--image .fabric-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .intro-band__actions .button {
    box-sizing: border-box;
  }

  .page-header h1,
  .woocommerce-products-header__title,
  .woocommerce div.product .product_title {
    font-size: 34px;
  }

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

  .commercial-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .commercial-list p {
    grid-column: auto;
  }

  .contact-dock__panel {
    width: min(340px, calc(100vw - 24px));
  }

  .contact-dock__link {
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    gap: 9px;
  }

  .contact-dock__icon {
    width: 36px;
    height: 36px;
  }
}

/* Late component pass: the legacy stylesheet keeps its original responsive
 * rules above, so these selectors intentionally come last. */
:root {
  --ink: #1d2a35;
  --muted: #647078;
  --paper: #f3f1eb;
  --surface: #fffefa;
  --line: #d8d9d3;
  --line-dark: #9da7a6;
  --red: #b95745;
  --red-dark: #8f3b31;
  --green: #32665b;
  --blue: #32677a;
  --yellow: #b98a3a;
  --max-width: 1220px;
  --shadow: 0 18px 46px rgba(29, 42, 53, 0.12);
}

.site-shell,
.commerce-main > .site-shell {
  width: min(calc(100% - 56px), var(--max-width));
}

.site-header {
  background: rgba(255, 254, 250, 0.96);
  border-bottom-color: rgba(29, 42, 53, 0.16);
}

.site-header__inner {
  min-height: 82px;
}

.brand__mark {
  width: 44px;
  height: 36px;
  background: var(--red);
  overflow: hidden;
}

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

.brand__lockup {
  display: grid;
  gap: 4px;
  padding-left: 12px;
}

.brand__name {
  padding-left: 0;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.16em;
}

.brand__descriptor {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-band--sagotex {
  position: relative;
  padding: 92px 0 76px;
  border-bottom: 0;
  color: #f6f5ef;
  background: var(--ink);
  overflow: hidden;
}

.intro-band--sagotex::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(42vw, 560px);
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  content: "";
  pointer-events: none;
}

.intro-band--sagotex .intro-band__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 88px;
}

.intro-band--sagotex .eyebrow {
  color: #d9ad67;
}

.intro-band--sagotex h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: #fffdf8;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.03;
}

.intro-band--sagotex .intro-band__summary {
  color: #d7deda;
  font-size: 20px;
}

.intro-band--sagotex .intro-band__identity {
  border-left-color: #d9ad67;
  color: #aebbb9;
}

.intro-band--sagotex .button--secondary {
  color: #f5f3ec;
  border-color: #76868a;
}

.intro-band--sagotex .button--secondary:hover {
  color: #fff;
  border-color: #d9ad67;
  background: rgba(255, 255, 255, 0.07);
}

.intro-band--sagotex .spec-board {
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: #f5f1e8;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.intro-band--sagotex .spec-board__media {
  width: calc(100% + 52px);
  margin: -26px -26px 24px;
}

.intro-band--sagotex .spec-board__header {
  border-bottom-color: var(--ink);
}

.intro-band--sagotex .spec-board__header strong,
.intro-band--sagotex .spec-board dd {
  color: var(--ink);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 690px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof span {
  display: grid;
  min-width: 145px;
  padding-right: 22px;
  margin-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: #aebbb9;
  font-size: 12px;
  line-height: 1.3;
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof strong {
  margin-bottom: 4px;
  color: #fffdf8;
  font-size: 22px;
  font-weight: 650;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
}

.application-card {
  position: relative;
  display: grid;
  min-height: 238px;
  align-content: space-between;
  gap: 22px;
  padding: 24px 22px 22px;
  color: var(--ink);
  background: #f4f5f1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.application-card:hover {
  color: #fff;
  background: var(--ink);
}

.application-card > span:nth-child(2) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.application-card:hover > span:nth-child(2) {
  color: #c7d2d1;
}

.application-card__label {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.application-card__arrow {
  justify-self: end;
  color: var(--red-dark);
  font-size: 24px;
  line-height: 1;
}

.application-card:hover .application-card__arrow {
  color: #e1b56d;
}

.manufacturing-band {
  padding: 92px 0;
  background: var(--ink);
}

.manufacturing-band__intro {
  max-width: 390px;
  color: #b8c3c1;
  font-size: 17px;
}

.quote-band {
  padding: 64px 0;
  background: var(--red-dark);
}

.page-header {
  padding: 78px 0 58px;
  background: var(--paper);
}

.page-header h1 {
  max-width: 880px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 650;
}

.page-header__summary {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.commerce-main {
  padding: 58px 0 100px;
  background: var(--paper);
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 650;
}

.category-route-context {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 780px;
  padding: 13px 16px;
  margin: 18px 0 26px;
  border-left: 3px solid var(--blue);
  background: rgba(255, 254, 250, 0.84);
}

.category-route-context__dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.category-route-context strong,
.category-route-context > span:last-child > span {
  display: block;
}

.category-route-context > span:last-child > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  background: var(--surface);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.woocommerce div.product .summary {
  padding-left: 28px;
}

.woocommerce div.product .woocommerce-product-gallery {
  opacity: 1 !important;
}

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

.woocommerce div.product .woocommerce-product-gallery__image {
  display: block;
  width: auto;
  margin: 0;
  overflow: hidden;
}

.woocommerce div.product .woocommerce-product-gallery__image:first-child {
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-product-gallery__image:not(:first-child) {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: var(--paper);
}

.woocommerce div.product .woocommerce-product-gallery__image a,
.woocommerce div.product .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  object-fit: cover;
}

.product-route-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-route-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.product-specifications {
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid var(--line-dark);
}

.rfq-form {
  max-width: 980px;
  padding: 34px;
  border-top: 3px solid var(--ink);
  background: var(--surface);
}

.site-footer {
  padding-top: 76px;
  background: #17232c;
}

@media (max-width: 1080px) {
  .site-shell,
  .commerce-main > .site-shell {
    width: min(calc(100% - 44px), var(--max-width));
  }

  .intro-band--sagotex .intro-band__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 48px;
  }

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

@media (max-width: 780px) {
  .site-shell,
  .commerce-main > .site-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .intro-band--sagotex {
    padding: 64px 0 54px;
  }

  .intro-band--sagotex::before {
    display: none;
  }

  .intro-band--sagotex .intro-band__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .intro-band--sagotex h1 {
    font-size: 46px;
  }

  .hero-proof span {
    min-width: 0;
    flex: 1 1 30%;
    padding-right: 12px;
    margin-right: 12px;
  }

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

  .application-card {
    min-height: 190px;
  }

  .woocommerce div.product .summary {
    padding-left: 0;
    margin-top: 36px;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    width: 100%;
    float: none;
  }

  .rfq-form {
    padding: 24px 20px;
  }
}

@media (max-width: 520px) {
  .site-shell,
  .commerce-main > .site-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand__descriptor {
    display: none;
  }

  .intro-band--sagotex h1 {
    font-size: 38px;
  }

  .intro-band--sagotex .intro-band__summary {
    font-size: 17px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 18px;
    margin-top: 16px;
  }

  .hero-proof span {
    display: block;
    min-width: 0;
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
  }

  .page-header h1,
  .woocommerce-products-header__title,
  .woocommerce div.product .product_title {
    font-size: 36px;
  }

  .rfq-form {
    padding: 20px 14px;
  }
}

@media (max-width: 360px) {
  .contact-dock {
    right: 8px;
    bottom: 0;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 34px;
    height: 30px;
    flex: 0 0 34px;
  }

  .brand__lockup {
    min-width: 0;
    padding-left: 7px;
  }

  .brand__name {
    overflow: hidden;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-overflow: clip;
    white-space: nowrap;
  }

  .header-tools,
  .header-tools .button {
    min-width: 0;
  }

  .header-tools .button {
    width: 104px;
    max-width: 104px;
    min-height: 48px;
    height: 48px;
    padding: 8px;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }

  .woocommerce .header-tools .button {
    width: 128px;
    max-width: 128px;
    min-height: 48px;
    height: 48px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .intro-band--sagotex h1 {
    font-size: 34px;
  }

  .intro-band--sagotex {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .intro-band--sagotex .intro-band__summary {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.45;
  }

  .intro-band--sagotex .intro-band__identity {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.45;
  }

  .intro-band__actions {
    gap: 10px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 14px;
    margin-top: 12px;
  }

  .hero-proof span {
    display: block;
    width: auto;
    box-sizing: border-box;
    padding-right: 8px;
    margin-right: 8px;
  }
}

/* Final gallery and mobile contact overrides sit after the legacy WooCommerce
 * responsive rules so the shared product template remains predictable. */
.woocommerce div.product .woocommerce-product-gallery__image:not(:first-child) {
  width: 100% !important;
  min-width: 0;
  float: none !important;
}

@media (max-width: 780px) {
  .contact-dock--rfq,
  .contact-dock--product {
    position: static;
    width: min(calc(100% - 24px), var(--max-width));
    margin: 24px auto 0;
    justify-items: end;
  }

  .contact-dock--rfq .contact-dock__panel,
  .contact-dock--product .contact-dock__panel {
    width: 100%;
  }
}

/* Homepage refresh must come after the late component pass above. */
.site-header {
  background: rgba(252, 251, 247, 0.98);
  box-shadow: 0 1px 0 rgba(29, 42, 53, 0.08);
}

.site-header__inner {
  min-height: 74px;
}

.intro-band--sagotex {
  padding: clamp(58px, 7vw, 82px) 0 clamp(52px, 6vw, 70px);
  color: var(--ink);
  background: #f1efe8;
}

.intro-band--sagotex::before {
  display: none;
}

.intro-band--sagotex .intro-band__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 5.5vw, 78px);
}

.intro-band--sagotex .intro-band__copy {
  max-width: 650px;
}

.intro-band--sagotex .eyebrow {
  margin-bottom: 14px;
  color: var(--red-dark);
  letter-spacing: 0.08em;
}

.intro-band--sagotex h1 {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.04;
}

.intro-band--sagotex .intro-band__summary {
  max-width: 590px;
  margin-bottom: 26px;
  color: #46545a;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
}

.intro-band--sagotex .intro-band__identity {
  max-width: 570px;
  padding-left: 18px;
  margin-bottom: 26px;
  border-left-width: 3px;
  border-left-color: var(--red);
  color: #68736f;
  line-height: 1.5;
}

.intro-band--sagotex .intro-band__actions {
  gap: 14px;
}

.intro-band--sagotex .button--secondary {
  color: var(--ink);
  border-color: #899493;
}

.intro-band--sagotex .button--secondary:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.intro-band--sagotex .spec-board {
  padding: 0;
  border: 1px solid #c9c8bf;
  border-radius: 2px;
  background: #f7f3ea;
  box-shadow: 0 20px 42px rgba(29, 42, 53, 0.14);
  overflow: hidden;
}

.intro-band--sagotex .spec-board__media {
  width: 100%;
  aspect-ratio: 5 / 4;
  margin: 0;
  background: #d5d1bd;
}

.intro-band--sagotex .spec-board__header {
  position: relative;
  margin: 0;
  padding: 18px 22px 16px;
  border-bottom: 1px solid #b8b8ae;
  background: #f7f3ea;
  font-size: 13px;
}

.intro-band--sagotex .spec-board dl {
  padding: 0 22px;
  background: #f7f3ea;
}

.intro-band--sagotex .spec-board dl > div {
  padding: 10px 0;
  border-bottom-color: #d9d7cf;
}

.intro-band--sagotex .spec-board dt {
  color: #6d7471;
}

.intro-band--sagotex .spec-board__header strong,
.intro-band--sagotex .spec-board dd {
  color: var(--ink);
}

.intro-band--sagotex .spec-board > a {
  padding: 18px 22px 20px;
  color: var(--red-dark);
  background: #f7f3ea;
}

.intro-band--sagotex .hero-proof {
  max-width: 620px;
  padding-top: 20px;
  margin-top: 28px;
  border-top-color: rgba(29, 42, 53, 0.2);
}

.intro-band--sagotex .hero-proof span {
  color: #67736f;
  border-right-color: rgba(29, 42, 53, 0.2);
}

.intro-band--sagotex .hero-proof strong {
  color: var(--ink);
}

@media (max-width: 780px) {
  .site-header__inner {
    min-height: 66px;
  }

  .intro-band--sagotex {
    padding: 52px 0 48px;
  }

  .intro-band--sagotex .intro-band__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-band--sagotex h1 {
    font-size: 44px;
  }

  .intro-band--sagotex .spec-board__media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .intro-band--sagotex {
    padding: 42px 0 40px;
  }

  .intro-band--sagotex h1 {
    font-size: 38px;
  }

  .intro-band--sagotex .intro-band__summary {
    font-size: 17px;
  }

  .intro-band--sagotex .spec-board__header,
  .intro-band--sagotex .spec-board dl,
  .intro-band--sagotex .spec-board > a {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Corporate logo asset used by the header, footer, and fallback favicon. */
.brand__logo-frame {
	display: inline-flex;
	width: 96px;
	height: 76px;
	flex: 0 0 96px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fafaf7;
}

.brand__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__logo-frame--footer {
  width: 140px;
  height: 112px;
  flex-basis: 140px;
  padding: 4px;
}

.brand--footer {
  align-items: flex-start;
}

@media (max-width: 780px) {
  .brand__logo-frame {
    width: 94px;
    height: 74px;
    flex-basis: 94px;
  }
}

@media (max-width: 520px) {
  .brand__logo-frame {
    width: 80px;
    height: 64px;
    flex-basis: 80px;
  }
}

@media (max-width: 360px) {
  .brand__logo-frame {
    width: 70px;
    height: 56px;
    flex-basis: 70px;
  }
}

/* Media-led homepage hero: borrow the reference site's pace, not its assets. */
.intro-band--sagotex {
  min-height: min(760px, calc(100svh - 127px));
  padding: 0;
  border-bottom: 0;
  color: #f8f6ef;
  background: #0e1a23;
  box-sizing: border-box;
}

.intro-band--sagotex .intro-band__grid {
  position: relative;
  display: block;
  min-height: min(760px, calc(100svh - 127px));
  box-sizing: border-box;
}

.intro-band--sagotex .intro-band__copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: min(760px, calc(100svh - 127px));
  max-width: 720px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 88px 0 72px;
  box-sizing: border-box;
}

.intro-band--sagotex .eyebrow {
  color: #e3bc75;
}

.intro-band--sagotex h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #fffdf8;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.03;
}

.intro-band--sagotex .intro-band__summary {
  max-width: 650px;
  margin-bottom: 24px;
  color: #d9e0de;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.5;
}

.intro-band--sagotex .intro-band__identity {
  max-width: 620px;
  margin-bottom: 28px;
  border-left-color: #e3bc75;
  color: #b8c4c1;
}

.intro-band--sagotex .button--primary {
  color: #14222a;
  background: #e3bc75;
}

.intro-band--sagotex .button--primary:hover {
  color: #14222a;
  background: #f0ce91;
}

.intro-band--sagotex .button--secondary {
  color: #f8f6ef;
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
}

.intro-band--sagotex .button--secondary:hover {
  color: #fff;
  border-color: #e3bc75;
  background: rgba(255, 255, 255, 0.08);
}

.intro-band--sagotex .spec-board {
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.intro-band--sagotex .spec-board__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  margin: 0;
  background: #21343d;
}

.intro-band--sagotex .spec-board__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(9, 20, 27, 0.7);
  content: "";
}

.intro-band--sagotex .spec-board__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-band--sagotex .spec-board__header,
.intro-band--sagotex .spec-board dl,
.intro-band--sagotex .spec-board > a {
  position: absolute;
  z-index: 2;
  right: 46px;
  width: min(360px, 36vw);
  box-sizing: border-box;
  margin: 0;
  background: #f7f3ea;
}

.intro-band--sagotex .spec-board__header {
  bottom: 240px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #b8b8ae;
}

.intro-band--sagotex .spec-board dl {
  bottom: 68px;
  padding: 0 20px;
}

.intro-band--sagotex .spec-board dl > div {
  padding: 9px 0;
  border-bottom-color: #d9d7cf;
}

.intro-band--sagotex .spec-board > a {
  bottom: 18px;
  padding: 14px 20px 16px;
  color: var(--red-dark);
}

.intro-band--sagotex .spec-board__header strong,
.intro-band--sagotex .spec-board dd {
  color: var(--ink);
}

.intro-band--sagotex .hero-proof {
  max-width: 650px;
  padding-top: 22px;
  margin-top: 30px;
  border-top-color: rgba(255, 255, 255, 0.25);
}

.intro-band--sagotex .hero-proof span {
  color: #b8c4c1;
  border-right-color: rgba(255, 255, 255, 0.2);
}

.intro-band--sagotex .hero-proof strong {
  color: #fffdf8;
}

@media (max-width: 1080px) {
  .intro-band--sagotex .intro-band__copy {
    max-width: calc(100% - 370px);
  }

  .intro-band--sagotex .spec-board__header,
  .intro-band--sagotex .spec-board dl,
  .intro-band--sagotex .spec-board > a {
    right: 28px;
    width: min(330px, 38vw);
  }
}

@media (max-width: 780px) {
  .home .contact-dock {
    display: none;
  }

  .intro-band--sagotex,
  .intro-band--sagotex .intro-band__grid,
  .intro-band--sagotex .intro-band__copy {
    min-height: 0;
  }

  .intro-band--sagotex {
    padding: 0 0 44px;
  }

  .intro-band--sagotex .intro-band__copy {
    display: block;
    max-width: none;
    padding: 54px 0 0;
  }

  .intro-band--sagotex .spec-board {
    position: relative;
    inset: auto;
    min-height: 0;
    margin-top: 34px;
    overflow: visible;
  }

  .intro-band--sagotex .spec-board__media {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 3;
  }

  .intro-band--sagotex .spec-board__header,
  .intro-band--sagotex .spec-board dl,
  .intro-band--sagotex .spec-board > a {
    position: static;
    width: auto;
  }

  .intro-band--sagotex .spec-board__header {
    padding: 16px 18px 14px;
  }

  .intro-band--sagotex .spec-board dl {
    padding: 0 18px;
  }

  .intro-band--sagotex .spec-board > a {
    padding: 15px 18px 17px;
  }

  .intro-band--sagotex .hero-proof {
    margin-top: 30px;
  }
}

@media (min-width: 781px) and (max-width: 1080px) {
  .intro-band--sagotex .hero-proof span {
    min-width: 0;
    flex: 1 1 0;
    padding-right: 12px;
    margin-right: 12px;
  }

  .home .contact-dock__toggle {
    width: 48px;
    padding-right: 0;
    padding-left: 0;
    gap: 0;
  }

  .home .contact-dock__toggle > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (min-width: 1081px) {
  .home .contact-dock {
    right: auto;
    left: 24px;
  }
}

/* Reference-led composition: full-bleed hero, benefit row, and supplier story. */
.intro-band--sagotex {
  min-height: min(700px, calc(100svh - 127px));
  height: min(700px, calc(100svh - 127px));
  padding: 0;
  background: #0f1d24;
}

.intro-band--sagotex .intro-band__grid {
  width: 100%;
  max-width: none;
  min-height: 100%;
  height: 100%;
  margin: 0;
}

.intro-band--sagotex .spec-board {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro-band--sagotex .spec-board__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  background: #23343a;
}

.intro-band--sagotex .spec-board__media::after {
  background: rgba(9, 18, 23, 0.58);
}

.intro-band--sagotex .spec-board__header,
.intro-band--sagotex .spec-board dl,
.intro-band--sagotex .spec-board > a {
  display: none;
}

.intro-band--sagotex .intro-band__copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(960px, calc(100% - 32px));
  max-width: 960px;
  min-height: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  margin: 0 auto;
  text-align: center;
}

.intro-band--sagotex .eyebrow {
  margin-bottom: 18px;
  color: #e5bd72;
  letter-spacing: 0.12em;
}

.intro-band--sagotex h1 {
  max-width: 900px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 750;
  line-height: 1.06;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.intro-band--sagotex .intro-band__summary {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}

.intro-band--sagotex .intro-band__identity,
.intro-band--sagotex .hero-proof {
  display: none;
}

.intro-band--sagotex .intro-band__actions {
  justify-content: center;
  gap: 14px;
}

.intro-band--sagotex .button--primary {
  color: #17232c;
  background: #e5bd72;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.intro-band--sagotex .button--primary:hover {
  color: #17232c;
  background: #f0d18f;
}

.intro-band--sagotex .button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.intro-band--sagotex .button--secondary:hover {
  color: #17232c;
  border-color: #fff;
  background: #fff;
}

@media (max-width: 780px) {
  .intro-band--sagotex {
    min-height: min(660px, calc(100svh - 127px));
    height: min(660px, calc(100svh - 127px));
  }

  .intro-band--sagotex .intro-band__copy {
    width: min(calc(100% - 24px), 620px);
    min-height: 100%;
    height: 100%;
    padding: 42px 0;
  }

  .intro-band--sagotex h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .intro-band--sagotex .intro-band__summary {
    font-size: 17px;
  }

  .intro-band--sagotex .intro-band__actions {
    width: 100%;
    flex-direction: column;
  }

  .intro-band--sagotex .intro-band__actions .button {
    width: min(100%, 300px);
  }

}

/* Navigation, search, carousel, and compact contact controls. */
.site-header__inner {
  position: relative;
  min-height: 76px;
}

.primary-menu {
  align-items: stretch;
  gap: 18px;
}

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

.primary-menu__trigger {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  border: 0;
  color: #373b38;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.primary-menu__trigger:hover,
.primary-menu__trigger[aria-expanded="true"] {
  color: var(--red-dark);
}

.primary-menu__chevron {
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}

.mega-menu {
	box-sizing: border-box;
	position: absolute;
	z-index: 120;
	top: calc(100% + 1px);
	left: 50%;
	width: min(980px, calc(100vw - 32px));
	padding: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 45px rgba(23, 25, 24, 0.16);
	transform: translateX(-42%);
}

.mega-menu__columns {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.2fr) 190px;
	gap: 22px;
}

.mega-menu__group h2 {
  padding-bottom: 11px;
  margin: 0 0 8px;
  border-bottom: 2px solid var(--ink);
	font-size: 14px;
	line-height: 1.3;
}

.mega-menu__group-intro {
	min-height: 38px;
	margin: 0 0 8px;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.45;
}

.mega-menu__group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-menu__group a {
	display: block;
	padding: 6px 0;
	color: var(--ink);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
}

.mega-menu__group--manufacturing ul {
  grid-template-columns: 1fr;
}

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

.mega-menu__group a:hover {
  color: var(--red-dark);
}

.mega-menu__feature {
  display: flex;
  min-width: 0;
  flex-direction: column;
	padding-left: 16px;
  border-left: 1px solid var(--line);
}

.mega-menu__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mega-menu__feature p {
	margin: 10px 0 8px;
	color: var(--muted);
	font-size: 12px;
  line-height: 1.45;
}

.fabric-search {
  display: flex;
  min-width: 0;
  align-items: center;
  border: 1px solid var(--line-dark);
  background: var(--surface);
}

.fabric-search input {
	width: 190px;
  min-height: 40px;
  padding: 8px 10px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
}

.fabric-search input:focus {
  outline: 0;
}

.fabric-search button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.fabric-search button:hover {
  color: var(--red-dark);
}

.primary-navigation__search {
  display: none;
}

.primary-navigation {
  box-sizing: border-box;
}

.contact-dock {
	position: fixed;
	z-index: 90;
	top: 50%;
	left: auto;
	right: max(16px, env(safe-area-inset-right));
  display: grid;
  justify-items: end;
  gap: 8px;
  transform: translateY(-50%);
}

.home .contact-dock {
	left: auto;
	right: max(16px, env(safe-area-inset-right));
}

.contact-dock__panel {
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-dock__panel[hidden] {
  display: block;
}

.contact-dock__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-dock__link {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(29, 42, 53, 0.17);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(29, 42, 53, 0.13);
  text-decoration: none;
}

.contact-dock__link:hover {
  border-color: var(--red);
  background: #fff;
}

.contact-dock__icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.contact-dock__icon img {
  width: 22px;
  height: 22px;
}

.contact-dock__copy {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 160ms ease;
}

.contact-dock__link:hover .contact-dock__copy,
.contact-dock__link:focus-visible .contact-dock__copy {
  opacity: 1;
}

.contact-dock__copy strong,
.contact-dock__value {
  display: block;
}

.contact-dock__copy strong {
  font-size: 12px;
  line-height: 1.25;
}

.contact-dock__value {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.contact-dock__arrow {
  display: none;
}

.contact-dock__toggle {
  display: none;
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
  }

  .header-tools {
    gap: 9px;
  }

  .fabric-search--header {
    display: none;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: auto;
    left: calc(50% - 50vw);
    width: 100vw;
    padding: 20px 24px 36px;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation__search {
    display: block;
    max-width: 480px;
    margin: 24px auto 0;
  }

  .primary-navigation__search .fabric-search input {
    flex: 1;
    width: auto;
  }

  .primary-menu {
    max-width: 680px;
  }

  .primary-menu > li {
    border-bottom: 1px solid var(--line);
  }

  .primary-menu > li > a,
  .primary-menu__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 18px;
    text-align: left;
  }

  .mega-menu {
    position: static;
    width: auto;
    padding: 0 0 10px;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .mega-menu__columns {
    display: block;
  }

  .mega-menu__group {
    padding: 12px 0 4px;
  }

  .mega-menu__group h2 {
    border-bottom-width: 1px;
    font-size: 14px;
  }

  .mega-menu__group-intro {
    min-height: 0;
    margin-bottom: 5px;
    font-size: 12px;
  }

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

  .mega-menu__feature {
    display: none;
  }

  .contact-dock {
    display: grid;
    top: auto;
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    transform: none;
  }

  .home .contact-dock {
    display: grid;
  }

  .contact-dock__panel[hidden] {
    display: none;
  }

  .contact-dock__panel:not([hidden]) {
    display: block;
  }

  .contact-dock__list {
    flex-direction: row;
    max-width: calc(100vw - 24px);
    padding: 8px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .contact-dock__link {
    width: 42px;
    height: 42px;
  }

  .contact-dock__copy {
    display: none;
  }

  .contact-dock__toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 50%;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 10px 24px rgba(23, 25, 24, 0.2);
    cursor: pointer;
  }

  .contact-dock__toggle-mark {
    position: absolute;
    right: -2px;
    top: -2px;
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border: 1px solid var(--surface);
    border-radius: 50%;
    color: var(--ink);
    background: var(--surface);
    font-size: 15px;
    line-height: 1;
  }

  .contact-dock__toggle[aria-expanded="true"] .contact-dock__toggle-mark {
    transform: rotate(45deg);
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    gap: 7px;
  }

  .header-tools .button {
    padding-inline: 8px;
  }

  .primary-navigation {
    padding-inline: 12px;
  }

  .mega-menu__group ul {
    grid-template-columns: 1fr;
  }

  .contact-dock--rfq,
  .contact-dock--product {
    position: static;
    width: min(calc(100% - 24px), var(--max-width));
    margin: 24px auto 0;
    justify-items: end;
    right: auto;
  }

  .contact-dock--rfq .contact-dock__panel,
  .contact-dock--product .contact-dock__panel {
    width: 100%;
  }
}

.solution-section {
  padding: 88px 0;
  background: #f4f6f2;
}

.solution-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.solution-section__heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.solution-section__intro {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-item {
  min-height: 240px;
  padding: 28px 24px 30px 0;
  border-right: 1px solid var(--line);
}

.solution-item + .solution-item {
  padding-left: 24px;
}

.solution-item:last-child {
  border-right: 0;
}

.solution-item__index {
  display: block;
  margin-bottom: 28px;
  color: #32665b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-item h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.solution-item p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.solution-section__action {
  margin: 34px 0 0;
}

@media (max-width: 1080px) and (min-width: 781px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-item:nth-child(odd) {
    padding-left: 0;
  }

  .solution-item:nth-child(even) {
    padding-left: 24px;
    border-right: 0;
  }

  .solution-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 780px) {
  .solution-section {
    padding: 64px 0;
  }

  .solution-section__heading,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-section__heading {
    gap: 20px;
    margin-bottom: 28px;
  }

  .solution-item,
  .solution-item + .solution-item {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-item:last-child {
    border-bottom: 0;
  }

  .solution-item__index {
    margin-bottom: 14px;
  }
}

@media (max-width: 360px) {
  .fabric-search input {
    font-size: 12px;
  }
}

/* Final visual theme: brand green leads, with restrained route and inquiry accents. */
:root {
  --mint-050: #f3fbf7;
  --mint-100: #e2f5ec;
  --mint-200: #c4ead8;
  --mint-300: #9cddbf;
  --mint-500: #3cac7c;
  --mint-700: #176148;
  --mint-900: #0c3026;
  --ink: var(--mint-900);
  --muted: #4c6c60;
  --paper: var(--mint-050);
  --surface: #fbfffd;
  --line: #c6e2d4;
  --line-dark: #70a38b;
  --red: #b14d4d;
  --red-dark: #7f3539;
  --green: #21845f;
  --blue: #416675;
  --yellow: #946117;
  --danger: #a63f4d;
  --danger-soft: #fff1f2;
  --shadow: 0 18px 46px rgba(12, 48, 38, 0.14);
}

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

body {
  color: var(--ink);
  background: var(--surface);
}

button,
input,
select,
textarea {
  box-sizing: border-box;
}

:focus-visible {
  outline-color: var(--mint-700);
}

.intro-band--sagotex :focus-visible,
.manufacturing-band :focus-visible,
.quote-band :focus-visible,
.application-card:hover :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--mint-200);
}

.eyebrow,
.text-link,
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.woocommerce-products-header__description a,
.woocommerce .term-description a,
.catalog-topic-links__item:hover,
.application-links a:hover,
.czf-breadcrumbs a:hover {
  color: var(--mint-700);
}

.service-strip {
  color: #eafff3;
  background: var(--mint-900);
}

.service-strip__inner span + span::before {
  background: var(--mint-300);
}

.site-header {
  border-bottom-color: var(--line);
  background: rgba(251, 255, 253, 0.97);
  box-shadow: 0 1px 0 rgba(12, 48, 38, 0.08);
}

.brand,
.brand__name,
.primary-menu a,
.primary-menu__trigger,
.language-switcher a,
.menu-toggle {
  color: var(--ink);
}

.brand__logo-frame {
  background: var(--mint-050);
}

.menu-toggle {
  border-color: var(--line);
  background: var(--surface);
}

.language-switcher li:not(.current-lang) {
  color: var(--muted);
}

.button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: #f7fff9;
  background: var(--mint-700);
  box-shadow: 0 8px 18px rgba(23, 97, 72, 0.16);
}

.button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: #fff;
  background: var(--red-dark);
}

.button--secondary {
  color: var(--mint-700);
  border-color: var(--line-dark);
  background: transparent;
}

.button--secondary:hover {
  color: var(--mint-900);
  border-color: var(--mint-700);
  background: var(--mint-100);
}

.button--light {
  color: var(--mint-900);
  background: var(--mint-100);
}

.button--light:hover {
  color: var(--mint-900);
  background: var(--mint-200);
}

.primary-menu__trigger:hover,
.primary-menu__trigger[aria-expanded="true"] {
  color: var(--mint-700);
}

.mega-menu {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: 0 20px 45px rgba(12, 48, 38, 0.18);
}

.mega-menu__group h2 {
  border-bottom-color: var(--mint-700);
}

.mega-menu__group a {
  color: var(--ink);
}

.mega-menu__group a:hover,
.fabric-search button:hover {
  color: var(--mint-700);
}

.mega-menu__feature {
  border-left-color: var(--line);
}

.fabric-search {
  border-color: var(--line-dark);
  background: var(--surface);
}

.fabric-search input,
.fabric-search button {
  color: var(--ink);
}

.intro-band--sagotex {
  color: #effff5;
  background: var(--mint-900);
}

.intro-band--sagotex .spec-board__media {
  background: #174c3c;
}

.intro-band--sagotex .spec-board__media::after {
  background: rgba(6, 29, 23, 0.66);
}

.intro-band--sagotex .eyebrow,
.manufacturing-band .eyebrow,
.quote-band .eyebrow {
  color: var(--mint-300);
}

.intro-band--sagotex h1,
.intro-band--sagotex .intro-band__summary,
.intro-band--sagotex .intro-band__identity,
.intro-band--sagotex .hero-proof strong {
  color: #f2fff7;
}

.intro-band--sagotex .intro-band__summary {
  color: #d5eee1;
}

.intro-band--sagotex .intro-band__identity,
.intro-band--sagotex .hero-proof span {
  color: #acd3c0;
}

.intro-band--sagotex .intro-band__identity {
  border-left-color: var(--mint-300);
}

.intro-band--sagotex .button--primary {
  color: var(--mint-900);
  background: var(--mint-300);
}

.intro-band--sagotex .button--primary:hover {
  color: var(--mint-900);
  background: var(--mint-200);
}

.intro-band--sagotex .button--secondary {
  color: #effff5;
  border-color: rgba(196, 234, 216, 0.8);
}

.intro-band--sagotex .button--secondary:hover {
  color: var(--mint-900);
  border-color: var(--mint-100);
  background: var(--mint-100);
}

.intro-band--sagotex .hero-proof,
.intro-band--sagotex .hero-proof span {
  border-color: rgba(196, 234, 216, 0.28);
}

.spec-board,
.intro-band--sagotex .spec-board__header,
.intro-band--sagotex .spec-board dl,
.intro-band--sagotex .spec-board > a {
  background: var(--surface);
}

.intro-band--sagotex .spec-board__header {
  border-bottom-color: var(--line-dark);
}

.intro-band--sagotex .spec-board dl > div {
  border-bottom-color: var(--line);
}

.intro-band--sagotex .spec-board__header strong,
.intro-band--sagotex .spec-board dd,
.intro-band--sagotex .spec-board > a {
  color: var(--mint-700);
}

.page-header,
.commerce-main {
  background: var(--paper);
}
.application-grid {
  border-color: var(--line);
}

.application-card__arrow {
  color: var(--mint-700);
}

.application-card > span:nth-child(2) {
  color: var(--muted);
}

.fabric-card,
.content-hub-links__grid article,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border-color: var(--line);
  background: var(--surface);
}

.fabric-card:hover {
  border-color: var(--line-dark);
}

.fabric-card__cta {
  border-top-color: var(--line);
  color: var(--mint-700) !important;
}

.application-card {
  color: var(--ink);
  background: var(--surface);
}

.application-card:hover {
  color: #effff5;
  background: var(--mint-700);
}

.application-card:hover > span:nth-child(2) {
  color: #d4eee1;
}

.application-card:hover .application-card__arrow {
  color: var(--mint-200);
}

.manufacturing-band {
  color: #effff5;
  background: var(--mint-900);
}

.manufacturing-band__intro,
.process-list p {
  color: #b8d8c8;
}

.process-list li,
.process-list li:last-child {
  border-color: rgba(196, 234, 216, 0.25);
}

.process-list > li > span {
  color: var(--mint-300);
}

.quote-band {
  color: #effff5;
  background: var(--mint-700);
}

.quote-band .eyebrow {
  color: var(--mint-200);
}

.quote-band .button--light {
  color: var(--mint-900);
  background: var(--mint-100);
}

.quote-band .button--light:hover {
  background: var(--mint-200);
}

.czf-breadcrumbs,
.woocommerce .woocommerce-breadcrumb {
  color: var(--muted);
}

.page-header {
  border-bottom-color: var(--line);
}

.page-header__summary,
.woocommerce-products-header__description,
.woocommerce .term-description,
.entry-content p,
.entry-content li {
  color: var(--muted);
}

.entry-content th,
.entry-content td,
.fabric-specifications > div,
.category-buying-guide th,
.category-buying-guide td,
.category-buying-guide__faq details,
.catalog-topic-links,
.content-hub-links,
.post-list__item {
  border-color: var(--line);
}

.category-route-context {
  border-left-color: var(--mint-700);
  background: rgba(226, 245, 236, 0.74);
}

.category-route-context__dot,
.product-route-label span {
  background: var(--mint-500);
}

.product-route-label,
.commercial-list dt {
  color: var(--mint-700);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border-top-color: var(--line-dark);
}

.woocommerce .product_cat-single-jersey,
.woocommerce .product_cat-rib-knit,
.woocommerce .product_cat-double-knit-scuba,
.woocommerce .product_cat-ponte-roma,
.woocommerce .product_cat-french-terry,
.woocommerce .product_cat-smooth-polyester-spandex,
.woocommerce .product_cat-polar-fleece {
  --catalog-swatch-color: var(--mint-500);
  --catalog-swatch-pattern: repeating-linear-gradient(135deg, rgba(243, 251, 247, 0.2) 0 10px, transparent 10px 20px);
}

.woocommerce .product_cat-single-jersey {
  --catalog-swatch-color: #3cac7c;
}

.woocommerce .product_cat-rib-knit {
  --catalog-swatch-color: #247456;
}

.woocommerce .product_cat-double-knit-scuba {
  --catalog-swatch-color: #2d8276;
}

.woocommerce .product_cat-ponte-roma {
  --catalog-swatch-color: #459f7b;
}

.woocommerce .product_cat-french-terry {
  --catalog-swatch-color: #69b98f;
}

.woocommerce .product_cat-smooth-polyester-spandex {
  --catalog-swatch-color: #3a8f72;
}

.woocommerce .product_cat-polar-fleece {
  --catalog-swatch-color: #86caa5;
}

.woocommerce div.product .woocommerce-product-gallery__image:not(:first-child),
.woocommerce div.product.czf-no-image .woocommerce-product-gallery {
  border-color: var(--line);
  background: var(--mint-050);
}

.fabric-specifications,
.category-buying-guide__table-wrap,
.application-links,
.commercial-list {
  border-top-color: var(--mint-700);
}

.rfq-form {
  border-top-color: var(--mint-700);
  background: var(--surface);
}

.rfq-form__notice {
  border-left-color: var(--mint-700);
  background: var(--mint-100);
}

.rfq-form__notice--error {
  border-left-color: var(--danger);
  background: var(--danger-soft);
}

.rfq-form label,
.rfq-form__consent {
  color: var(--ink);
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  border-color: var(--line-dark);
  color: var(--ink);
  background: var(--surface);
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus,
.fabric-search:focus-within {
  border-color: var(--mint-700);
  box-shadow: 0 0 0 3px rgba(33, 132, 95, 0.16);
}

.rfq-form__terms {
  border-color: var(--line);
  background: var(--paper);
}

.rfq-form__consent a {
  color: var(--mint-700);
}

.contact-dock__panel,
.contact-dock__list {
  border-color: var(--line);
  background: var(--mint-100);
  box-shadow: 0 18px 44px rgba(12, 48, 38, 0.16);
}

.contact-dock__link {
  color: var(--ink);
}

.contact-dock__link:hover {
  border-color: var(--line);
  background: var(--mint-050);
}

.contact-dock__icon--email,
.contact-dock__icon--phone,
.contact-dock__icon--zalo,
.contact-dock__icon--facebook,
.contact-dock__icon--tiktok {
  background: var(--mint-100);
}

.contact-dock__arrow,
.contact-dock__value {
  color: var(--muted);
}

.contact-dock__link:hover .contact-dock__arrow {
  color: var(--mint-700);
}

.contact-dock__toggle {
  border-color: var(--mint-700);
  color: #effff5;
  background: var(--mint-700);
  box-shadow: 0 10px 24px rgba(12, 48, 38, 0.2);
}

.contact-dock__toggle:hover {
  background: var(--red-dark);
}

.contact-dock__toggle-mark {
  border-color: rgba(226, 245, 236, 0.62);
}

.site-footer {
  color: #d6efe1;
  background: var(--mint-900);
}

.site-footer h2,
.site-footer a:hover {
  color: #effff5;
}

.site-footer p,
.site-footer li {
  color: #a9d0bd;
}

.site-footer__legal {
  border-top-color: rgba(196, 234, 216, 0.25);
}

/* Keep desktop contact actions as independent circles at the viewport edge. */
@media (min-width: 1081px) {
  .contact-dock {
    right: max(16px, env(safe-area-inset-right));
    left: auto;
    bottom: auto;
    height: auto;
    min-height: 0;
    align-items: start;
    align-content: start;
  }

  .contact-dock__panel,
  .contact-dock__list {
    height: auto;
    min-height: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-dock__list {
    gap: 10px;
  }

  .contact-dock__link {
    width: 52px;
    height: 52px;
    min-height: 52px;
  }
}

@media (max-width: 1080px) {
  .contact-dock__link {
    min-height: 42px;
  }
}

@media (max-width: 1080px) {
  .primary-navigation {
    border-top: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 18px 30px rgba(12, 48, 38, 0.1);
    isolation: isolate;
  }

  .primary-menu > li {
    border-bottom-color: var(--line);
  }

  .mega-menu__group h2 {
    border-bottom-color: var(--line-dark);
  }

  .contact-dock__list {
    border-color: var(--line);
  }
}

@media (max-width: 780px) {
  .intro-band--sagotex,
  .intro-band--sagotex .intro-band__grid,
  .intro-band--sagotex .intro-band__copy {
    height: auto;
    min-height: min(660px, calc(100svh - 127px));
  }

  .home .contact-dock {
    position: static;
    width: min(calc(100% - 24px), var(--max-width));
    margin: 16px auto 20px;
    justify-items: end;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .home .contact-dock__panel {
    width: 100%;
  }

  .contact-dock__toggle {
    background: var(--mint-700);
  }

  .contact-dock__toggle-mark {
    right: 0;
    top: 0;
  }

  .contact-dock--rfq .contact-dock__panel,
  .contact-dock--product .contact-dock__panel {
    background: transparent;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Buyer-facing scope module: make the one-stop promise concrete before the
 * homepage returns to the fabric catalog. */
.program-brief-section {
  padding: 78px 0 82px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.program-brief__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 34px;
}

.program-brief__heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.program-brief__intro {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.program-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.program-brief__column {
  padding: 32px 34px 34px;
}

.program-brief__column--output {
  background: var(--mint-050);
}

.program-brief__label {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.program-brief__column h3 {
  margin: 0 0 16px;
  font-size: 25px;
}

.program-brief__column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.program-brief__column li {
  position: relative;
  padding: 12px 0 12px 19px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}

.program-brief__column li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.program-brief__connector {
  display: grid;
  min-width: 0;
  align-content: center;
  justify-items: center;
  gap: 8px;
  border-right: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  color: var(--green);
  text-align: center;
}

.program-brief__connector span {
  font-size: 38px;
  line-height: 1;
}

.program-brief__connector small {
  max-width: 82px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.program-brief__note {
  max-width: 900px;
  padding-left: 18px;
  margin: 22px 0 0;
  border-left: 3px solid var(--yellow);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.intro-band--sagotex .intro-band__positioning {
  max-width: 680px;
  padding: 0;
  margin: -12px auto 26px;
  color: #e5bd72;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.catalog-section__scope {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Sagotex-inspired catalog rhythm: tall textile imagery, concise specs, and
 * a clear inquiry action without retail pricing or checkout language. */
.catalog-hubs .fabric-grid,
.commerce-main ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.catalog-hubs .fabric-card,
.commerce-main ul.products li.product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(12, 48, 38, 0.08);
  overflow: hidden;
}

.catalog-hubs .fabric-card:hover,
.commerce-main ul.products li.product:hover {
  border-color: var(--line-dark);
  box-shadow: 0 16px 34px rgba(12, 48, 38, 0.14);
  transform: translateY(-2px);
}

.catalog-hubs .fabric-card__art,
.commerce-main ul.products li.product a img,
.commerce-main ul.products li.product.czf-no-image .woocommerce-loop-product__link::before {
  aspect-ratio: 4 / 5;
}

.catalog-hubs .fabric-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-hubs .fabric-card__body {
  display: flex;
  min-height: 164px;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 18px;
}

.catalog-hubs .fabric-card__body h4 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.catalog-hubs .fabric-card__body > span:not(.fabric-card__cta) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.catalog-hubs .fabric-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  color: var(--mint-700) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.commerce-main ul.products li.product {
  padding: 0;
}

.commerce-main ul.products li.product .woocommerce-loop-product__link {
  display: block;
}

.commerce-main ul.products li.product a img {
  width: 100%;
  margin: 0;
  object-fit: cover;
}

.commerce-main ul.products li.product .woocommerce-loop-product__title {
  min-height: 58px;
  padding: 18px 20px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.28;
}

.product-card__specs {
  display: grid;
  gap: 5px;
  padding: 12px 20px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-card__specs strong {
  color: var(--ink);
  font-weight: 700;
}

.product-card__actions {
  padding: 18px 20px 22px;
  margin-top: auto;
}

.product-card__actions .button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 6px;
  text-decoration: none;
}

@media (max-width: 1080px) and (min-width: 781px) {
  .catalog-hubs .fabric-grid,
  .commerce-main ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) and (min-width: 781px) {
  .program-brief__heading {
    gap: 32px;
  }

  .program-brief {
    grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
  }

  .program-brief__column {
    padding: 28px 24px 30px;
  }

}

@media (max-width: 780px) {
  .program-brief-section {
    padding: 62px 0 64px;
  }

  .program-brief__heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 26px;
  }

  .program-brief__intro {
    font-size: 16px;
  }

  .program-brief {
    grid-template-columns: 1fr;
  }

  .program-brief__column {
    padding: 24px 20px 26px;
  }

  .program-brief__connector {
    min-height: 72px;
    border-top: 1px solid var(--line-dark);
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .program-brief__connector span {
    transform: rotate(90deg);
  }

  .program-brief__note {
    margin-top: 18px;
  }

  .intro-band--sagotex .intro-band__positioning {
    margin: -4px 0 22px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .catalog-section__scope {
    margin-top: 12px;
    font-size: 13px;
  }

  .catalog-hubs .fabric-grid,
  .commerce-main ul.products {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-hubs .fabric-card__art,
  .commerce-main ul.products li.product a img,
  .commerce-main ul.products li.product.czf-no-image .woocommerce-loop-product__link::before {
    aspect-ratio: 4 / 5;
  }
}

/* Buyer-focused footer: clear routes, useful contact links, and a lighter logo lockup. */
.site-footer__grid {
  grid-template-columns: minmax(220px, 1.35fr) repeat(2, minmax(160px, 0.9fr)) minmax(240px, 1.2fr);
  gap: 52px;
}

.site-footer__brand {
  max-width: 290px;
}

.brand__logo-frame--footer {
  width: 122px;
  height: 96px;
  flex-basis: 122px;
  padding: 0;
  background: transparent;
}

.brand__logo-frame--footer .brand__logo {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer__brand p {
  max-width: 285px;
  margin: 18px 0 16px;
}

.site-footer__brand-link,
.site-footer__quote-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #effff5;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__brand-link:hover,
.site-footer__quote-link:hover {
  color: #fff;
}

.site-footer nav h2,
.site-footer__contact h2 {
  margin-bottom: 16px;
}

.site-footer__link-list a {
  display: inline-flex;
  line-height: 1.45;
}

.site-footer__address {
  margin: 0 0 16px;
  line-height: 1.55;
}

.site-footer__contact-list {
  padding-top: 8px;
  border-top: 1px solid rgba(196, 234, 216, 0.2);
}

.site-footer__contact-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(196, 234, 216, 0.14);
}

.site-footer__contact-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
}

.site-footer__contact-value {
  color: #a9d0bd;
  font-size: 12px;
  text-align: right;
}

@media (max-width: 960px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 42px;
  }
}

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand__logo-frame--footer {
    width: 108px;
    height: 84px;
    flex-basis: 108px;
  }

  .site-footer__contact-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .site-footer__contact-value {
    text-align: left;
  }
}

/* Keep the buyer-facing homepage type stable while exposing the next section
 * on wide screens and giving the resource hub a direct, useful entry point. */
.client-home-hero,
.client-home-hero__inner {
  min-height: min(680px, calc(100svh - 180px));
}

.client-home-hero h1 {
  font-size: 64px;
}

.client-home-hero__copy > p {
  font-size: 20px;
}

.client-section-heading h2 {
  font-size: 48px;
}

.client-quote-section h2 {
  font-size: 44px;
}

.client-resources-section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.client-resources-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.client-resources-section h2 {
  max-width: 620px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.1;
}

.client-resources-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.client-resources-section .button {
  flex: 0 0 auto;
}

@media (max-width: 780px) {
  .client-home-hero,
  .client-home-hero__inner {
    min-height: 660px;
  }

  .client-home-hero h1 {
    font-size: 42px;
  }

  .client-home-hero__copy > p {
    font-size: 17px;
  }

  .client-section-heading h2 {
    font-size: 36px;
  }

  .client-quote-section h2 {
    font-size: 32px;
  }

  .client-resources-section {
    padding: 56px 0;
  }

  .client-resources-section__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .client-resources-section h2 {
    font-size: 32px;
  }

  .client-resources-section .button {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Make the editorial route a visible part of the buyer journey. */
.menu-item--updates > a {
  position: relative;
}

.menu-item--updates > a::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 6px 2px 0;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.client-updates-section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f1f5f6;
}

.client-updates-section .client-section-heading {
  max-width: 780px;
}

.client-updates-section .client-section-heading h2 {
  max-width: 720px;
}

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

.client-update-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  min-height: 250px;
  padding: 24px 24px 22px;
  border-top: 3px solid var(--blue);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(23, 48, 56, 0.07);
}

.client-update-card__meta {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.client-update-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

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

.client-update-card > p:not(.client-update-card__meta) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.client-update-card .text-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
}

.client-updates-empty {
  padding: 24px;
  border: 1px dashed var(--line-dark);
  background: rgba(255, 255, 255, 0.6);
}

.client-updates-empty p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.client-updates-section__button {
  margin-top: 24px;
}

@media (max-width: 1080px) and (min-width: 781px) {
  .client-updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .client-updates-section {
    padding: 68px 0;
  }

  .client-updates-grid {
    grid-template-columns: 1fr;
  }

  .client-update-card {
    min-height: 0;
  }

  .client-updates-section__button {
    width: 100%;
    box-sizing: border-box;
  }
}
