: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,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  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;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 46px;
  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: 38px;
  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: 26px;
}

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

.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: 42px;
  height: 42px;
  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__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-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 > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.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;
}

.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;
}

.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;
}

.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: 34px 0;
  border-top: 2px solid var(--ink);
}

.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;
}

.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: 46px;
  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);
}

.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));
  }

  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: none;
  }

  .woocommerce .header-tools .button {
    display: none;
  }

  .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));
  }

  .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;
  }
}

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

  h1 {
    font-size: 34px;
  }

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

  .brand__name {
    font-size: 15px;
  }

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

  .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;
  }

  .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;
  }
}
