:root {
  --ink: #111b23;
  --muted: #62707c;
  --paper: #ffffff;
  --soft: #f5f3ee;
  --line: #ded8cc;
  --deep: #10272b;
  --green: #087d78;
  --green-dark: #075b59;
  --teal: #0a9690;
  --copper: #c8a06f;
  --charcoal: #101415;
  --shadow: 0 22px 52px rgba(17, 27, 35, 0.14);
  --radius: 6px;
}

@media (max-width: 640px) {
  .news-pagination {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    margin-top: 30px;
  }

  .news-pagination a {
    width: 36px;
    height: 36px;
  }

  .news-pagination .pagination-direction {
    min-width: 0;
    padding: 0 10px;
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
p,
a,
span,
button,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
}

p {
  margin-bottom: 0;
}

.site-header {
  --header-side: clamp(34px, 7vw, 138px);
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  gap: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header > .brand,
.site-header > .menu-toggle,
.site-header > .main-nav {
  margin-right: var(--header-side);
  margin-left: var(--header-side);
}

.site-header > .brand {
  margin-top: 20px;
  margin-bottom: 18px;
}

.site-header > .menu-toggle {
  position: absolute;
  top: 22px;
  right: 0;
}

.site-header > .main-nav {
  justify-self: stretch;
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: var(--header-side);
  padding-left: var(--header-side);
  color: #fff;
  background: var(--green);
}

.header-brand-row,
.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: var(--header-side);
  padding-left: var(--header-side);
}

.header-brand-row {
  min-height: 112px;
  gap: 28px;
}

.header-nav-row {
  min-height: 58px;
  background: var(--green);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  min-width: 0;
  text-decoration: none;
}

.site-header > .brand::after,
.header-brand-row > .brand::after {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-left: clamp(28px, 8vw, 150px);
  padding-left: 24px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  content: "Since 2005  |  OEM/ODM  |  Private Label";
  border-left: 2px solid rgba(8, 125, 120, 0.34);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(194px, 14vw, 236px);
  height: clamp(64px, 5vw, 82px);
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark img,
.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: var(--ink);
  font-size: clamp(31px, 2.5vw, 42px);
  line-height: 1.1;
}

.brand-text small {
  margin-top: 8px;
  color: var(--muted);
  font-size: clamp(15px, 1.18vw, 18px);
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.main-nav a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  color: inherit;
  font: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.main-nav a:hover,
.dropdown-toggle:hover,
.main-nav a.active,
.dropdown-toggle.active {
  color: #fff;
  background: rgba(7, 91, 89, 0.62);
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 230px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(8px);
  transition: 0.16s ease;
}

.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  min-height: 0;
  padding: 10px 12px;
  color: var(--ink);
}

.nav-cta {
  display: inline-flex !important;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 44px;
  padding: 0 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  background: var(--green);
  border-radius: 3px;
}

.header-contact:hover {
  background: var(--green-dark);
}

.lang-switcher {
  position: relative;
  z-index: 2;
  margin-left: auto;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  cursor: pointer;
}

.lang-switcher .lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 176px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(8px);
  transition: 0.16s ease;
}

.lang-switcher.open .lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.lang-switcher .lang-menu a {
  min-height: 0;
  padding: 9px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}

.lang-switcher .lang-menu a:hover,
.lang-switcher .lang-menu a.active {
  color: #fff;
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 43, 48, 0.92) 0%, rgba(18, 43, 48, 0.68) 52%, rgba(18, 43, 48, 0.28) 100%);
}

.hero {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 980px);
  align-items: center;
  min-height: 720px;
  padding: 94px clamp(18px, 5vw, 72px) 92px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(50vw, 620px);
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at top right, rgba(10, 150, 144, 0.26), transparent 52%);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 24, 27, 0.82) 0%, rgba(8, 24, 27, 0.55) 55%, rgba(8, 24, 27, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.36));
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--deep);
  pointer-events: none;
}

.hero-masthead {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, 960px);
  margin-bottom: 54px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 54px;
  padding: 5px 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(6, 42, 46, 0.24);
}

.hero-brand-copy {
  display: grid;
  gap: 2px;
}

.hero-brand-name {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-brand-meta {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #d8fffb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(8, 125, 120, 0.26);
  border: 1px solid rgba(167, 221, 214, 0.22);
  border-radius: 999px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  min-height: 430px;
  padding: 118px clamp(18px, 5vw, 72px) 76px;
  background-position: center;
  background-size: cover;
}

.page-hero.products {
  background-image:
    linear-gradient(90deg, rgba(18, 43, 48, 0.9), rgba(18, 43, 48, 0.42)),
    url("assets/generated/hero-products-overview-ai.webp");
}

.page-hero.custom {
  background-image:
    linear-gradient(90deg, rgba(18, 43, 48, 0.9), rgba(18, 43, 48, 0.42)),
    url("assets/generated/hero-custom-needs-ai.webp");
}

.page-hero.custom-towels {
  background-image:
    linear-gradient(90deg, rgba(18, 43, 48, 0.9), rgba(18, 43, 48, 0.42)),
    url("assets/generated/hero-custom-towels-ai-v3-flat.webp");
  background-position: 66% 54%;
}

.page-hero.custom-bedding {
  background-image:
    linear-gradient(90deg, rgba(18, 43, 48, 0.9), rgba(18, 43, 48, 0.42)),
    url("assets/generated/hero-custom-bedding-ai.webp");
}

.page-hero.custom-blankets {
  background-image:
    linear-gradient(90deg, rgba(18, 43, 48, 0.9), rgba(18, 43, 48, 0.42)),
    url("assets/generated/hero-custom-blankets-ai.webp");
}

.page-hero.about {
  background-image:
    linear-gradient(90deg, rgba(18, 43, 48, 0.9), rgba(18, 43, 48, 0.42)),
    url("assets/generated/hero-about-factory-ai-v2.webp");
  background-position: 68% 58%;
}

.page-hero.news {
  background-image:
    linear-gradient(90deg, rgba(18, 43, 48, 0.9), rgba(18, 43, 48, 0.42)),
    url("assets/generated/hero-news-resources-ai.webp");
}

.page-hero.contact {
  background-image:
    linear-gradient(90deg, rgba(18, 43, 48, 0.9), rgba(18, 43, 48, 0.42)),
    url("assets/generated/hero-contact-ai.webp");
}

.page-hero.about-warm-hero {
  display: grid;
  min-height: 670px;
  place-items: center;
  padding: 118px clamp(18px, 5vw, 72px) 96px;
  text-align: center;
  background-image:
    linear-gradient(90deg, rgba(255, 249, 238, 0.94) 0%, rgba(255, 249, 238, 0.7) 46%, rgba(255, 249, 238, 0.38) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 244, 226, 0.56)),
    url("assets/generated/about-aida-warm-studio.webp");
  background-position: center;
}

.about-hero-card {
  max-width: 760px;
  margin: 0 auto;
}

.about-hero-mark {
  display: inline-flex;
  width: min(260px, 64vw);
  height: 92px;
  margin-bottom: 20px;
}

.about-hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-warm-hero .eyebrow {
  color: var(--green-dark);
}

.about-hero-card h1 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--deep);
  font-size: clamp(44px, 5.2vw, 72px);
}

.about-hero-card p:not(.eyebrow) {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  color: #40515b;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.72;
}

.hero-copy,
.page-hero-copy {
  max-width: 940px;
}

.page-hero-copy {
  max-width: 820px;
}

.page-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.process-section .eyebrow,
.visual-band .eyebrow {
  color: #a7ddd6;
}

.hero-copy p:not(.eyebrow),
.page-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

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

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
}

.button.outline-dark {
  color: var(--green-dark);
  background: transparent;
  border-color: rgba(7, 91, 89, 0.34);
}

.button.outline-dark:hover {
  color: #fff;
  background: var(--green-dark);
}

.hero-panel {
  display: none;
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

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

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 600px) minmax(280px, 560px);
  gap: clamp(72px, 10vw, 160px);
  align-items: center;
  color: #fff;
  background: var(--deep);
}

.intro-band p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.78;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 700px) minmax(260px, 560px);
  gap: clamp(56px, 9vw, 140px);
  align-items: center;
  margin-bottom: 46px;
}

.section-heading p:last-child {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.section-heading.centered {
  position: relative;
  display: block;
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 58px;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p:last-child {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: #3e505b;
  font-size: 23px;
  line-height: 1.72;
}

.category-intro-card {
  max-width: 960px;
  padding: 42px clamp(22px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 245, 239, 0.76)),
    linear-gradient(90deg, rgba(8, 125, 120, 0.08), transparent 34%, rgba(200, 160, 111, 0.1));
  border: 1px solid rgba(222, 216, 204, 0.72);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(17, 27, 35, 0.06);
}

.category-intro-card::before {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 92px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--green), var(--copper), transparent);
  transform: translateX(-50%);
}

.category-intro-card::after {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  content: "";
  border: 1px solid rgba(8, 125, 120, 0.16);
  transform: rotate(45deg);
}

.category-intro-card .eyebrow {
  margin-top: 10px;
}

.product-strip,
.product-grid,
.custom-grid,
.news-grid,
.option-grid {
  display: grid;
  gap: 18px;
}

.product-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #0b191c;
}

.category-card,
.product-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
  border-radius: 0;
}

.category-card {
  min-height: 580px;
}

.category-card + .category-card {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.category-card img,
.product-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.category-card::after,
.product-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 24, 27, 0.02) 0%, rgba(8, 24, 27, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 24, 27, 0.38), rgba(8, 24, 27, 0.05));
}

.category-card div,
.product-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 42px;
}

.category-card span,
.product-card span,
.news-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #e7c8a8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card h2,
.product-card h2 {
  max-width: 420px;
  font-size: clamp(27px, 3.5vw, 43px);
}

.category-card p,
.product-card p {
  max-width: 440px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.category-card a,
.product-card a {
  display: inline-flex;
  margin-top: 22px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

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

.product-card {
  min-height: 460px;
  border-radius: var(--radius);
}

.product-intro {
  padding-right: 0;
  padding-left: 0;
}

.product-intro > .section-heading,
.product-intro > .product-category-stack {
  margin-right: clamp(18px, 5vw, 72px);
  margin-left: clamp(18px, 5vw, 72px);
}

.product-intro > .section-heading.centered {
  margin-right: auto;
  margin-left: auto;
}

.product-category-stack {
  display: grid;
  gap: 74px;
}

.product-category-block {
  display: grid;
  gap: 28px;
}

.product-category-hero {
  position: relative;
  display: grid;
  min-height: 420px;
  margin-right: calc(-1 * clamp(18px, 5vw, 72px));
  margin-left: calc(-1 * clamp(18px, 5vw, 72px));
  padding: 72px clamp(18px, 5vw, 72px);
  overflow: hidden;
  place-items: center;
  color: #fff;
  text-align: center;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.product-category-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 24, 27, 0.34), rgba(8, 24, 27, 0.72)),
    linear-gradient(90deg, rgba(8, 24, 27, 0.42), rgba(8, 24, 27, 0.18), rgba(8, 24, 27, 0.42));
}

.product-category-hero.towels {
  background-image: url("assets/generated/products-category-towels-bg-flat.webp");
}

.product-category-hero.blankets {
  background-image: url("assets/generated/products-category-blankets-bg.webp");
}

.product-category-hero.bedding {
  background-image: url("assets/generated/products-category-bedding-bg.webp");
}

.product-category-hero div {
  max-width: 760px;
}

.product-category-hero span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #e7c8a8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-category-hero h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
}

.product-category-hero p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.product-category-hero a {
  display: inline-flex;
  margin-top: 24px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

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

.reference-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 27, 35, 0.08);
}

.reference-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reference-gallery figcaption {
  min-height: 56px;
  padding: 15px 16px 17px;
  color: var(--deep);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  border-top: 1px solid rgba(222, 216, 204, 0.72);
}

.product-proof {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f7f5ef 100%);
}

.product-proof > .section-heading,
.product-proof > .gallery-grid {
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
}

.product-proof::before {
  position: absolute;
  top: 42px;
  right: clamp(18px, 5vw, 72px);
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(8, 125, 120, 0.22);
  transform: rotate(45deg);
}

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

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(222, 216, 204, 0.88);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(17, 27, 35, 0.07);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 18px 17px;
  color: var(--deep);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  border-top: 1px solid rgba(222, 216, 204, 0.72);
}

.split-section,
.process-section,
.news-section {
  display: grid;
  grid-template-columns: 150px minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.section-label {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.split-copy h2,
.process-heading h2,
.news-heading h2 {
  max-width: 660px;
}

.split-body p,
.body-copy,
.about-copy p:not(.eyebrow),
.quality-block p,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.split-body p,
.body-copy,
.about-copy p:not(.eyebrow),
.quality-block p,
.contact-copy p:not(.eyebrow) {
  font-size: 17px;
}

.need-grid,
.fact-grid,
.quality-points,
.service-grid,
.timeline-grid {
  display: grid;
  gap: 12px;
}

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

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

.need-grid span,
.quality-points span,
.service-grid article,
.timeline-grid article,
.news-card,
.inquiry-form,
.fact-grid div,
.option-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.need-grid span,
.quality-points span {
  padding: 16px;
  color: var(--deep);
  font-weight: 800;
}

.fact-grid div,
.service-grid article,
.timeline-grid article,
.option-card,
.news-card {
  padding: 24px;
}

.fact-grid strong {
  display: block;
  color: var(--deep);
  font-size: 28px;
  line-height: 1.1;
}

.factory-highlight {
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  display: grid;
  grid-template-columns: minmax(300px, 640px) 1fr;
  align-items: center;
  min-height: 620px;
  color: #fff;
  padding-left: clamp(42px, 8vw, 132px);
  background:
    linear-gradient(90deg, rgba(8, 24, 27, 0.95) 0%, rgba(8, 24, 27, 0.78) 44%, rgba(8, 24, 27, 0.18) 100%),
    url("assets/stock/towel-lifestyle-bg-wide.webp") center / cover;
}

.factory-highlight::after {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.45;
  transform: rotate(45deg);
}

.factory-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 10px 0 10px 30px;
  border-left: 3px solid rgba(200, 160, 111, 0.88);
}

.factory-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

.factory-copy p + p {
  margin-top: 24px;
}

.factory-copy .button {
  margin-top: 30px;
}

.factory-media {
  display: none;
}

.fact-grid span,
.service-grid p,
.timeline-grid p,
.option-card p,
.news-card p {
  color: var(--muted);
}

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

.service-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8f7f2 100%);
}

.service-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 242, 0.98));
  border-color: rgba(222, 216, 204, 0.82);
  box-shadow: 0 18px 44px rgba(17, 27, 35, 0.07);
}

.service-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 86px;
  height: 86px;
  content: "";
  border: 1px solid rgba(8, 125, 120, 0.18);
  transform: rotate(45deg);
}

.service-grid article span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

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

.custom-section {
  background:
    linear-gradient(180deg, #f5f3ee 0%, #ede8dd 100%);
}

.custom-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(222, 216, 204, 0.85);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(17, 27, 35, 0.1);
}

.custom-card img {
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.custom-card div {
  padding: 30px;
}

.custom-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.custom-card p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
}

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

.application-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 24, 27, 0.94) 0%, rgba(8, 24, 27, 0.82) 48%, rgba(8, 24, 27, 0.42) 100%),
    url("assets/generated/aida-b2b-textile-background.webp") center / cover;
}

.application-section .section-heading {
  position: relative;
  z-index: 1;
  align-items: end;
}

.application-section .section-heading h2,
.application-section .section-heading p,
.application-section .eyebrow {
  color: #fff;
}

.application-section .section-heading > p {
  color: rgba(255, 255, 255, 0.76);
}

.option-card {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.option-card h3 {
  color: var(--deep);
  font-size: 24px;
}

.option-card p {
  font-size: 17px;
  line-height: 1.7;
}

.catalog-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8f7f2 100%);
}

.catalog-section > *,
.custom-step > *,
.custom-faq > * {
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.catalog-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 56px;
  text-align: center;
}

.catalog-header h2 {
  max-width: 1120px;
  font-size: clamp(34px, 4.7vw, 56px);
  line-height: 1.08;
}

.catalog-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  color: var(--green);
  font-size: clamp(15px, 1.55vw, 22px);
  font-weight: 800;
}

.catalog-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catalog-badges span::before {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 14px;
  content: "✓";
  background: var(--green);
  border-radius: 4px;
}

.catalog-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(340px, 0.86fr);
  gap: clamp(34px, 4.8vw, 62px);
  align-items: center;
  justify-content: center;
}

.catalog-preview {
  display: grid;
  gap: 18px;
  margin: 0;
}

.catalog-preview img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f8f7f2;
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(17, 27, 35, 0.1);
}

.catalog-preview figcaption {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.catalog-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

.catalog-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.48;
  list-style: none;
}

.catalog-points li {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(222, 216, 204, 0.72);
}

.catalog-points li:last-child {
  border-bottom: 1px solid rgba(222, 216, 204, 0.72);
}

.catalog-points strong {
  color: var(--deep);
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}

.catalog-points span {
  display: block;
}

.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.catalog-button {
  min-width: min(100%, 280px);
  min-height: 58px;
  border-radius: 999px;
  text-transform: uppercase;
}

.custom-step {
  padding-top: 86px;
  padding-bottom: 96px;
}

.custom-step.soft {
  background: #f0f1f3;
}

.custom-step-heading {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 38px;
}

.custom-step-heading .eyebrow {
  margin-bottom: 6px;
}

.custom-step-heading h2 {
  max-width: 1120px;
  font-size: clamp(32px, 4.2vw, 48px);
}

.step-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: clamp(54px, 6vw, 82px);
  height: clamp(54px, 6vw, 82px);
  background: var(--green);
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}

.step-lead {
  max-width: 1440px;
  margin-bottom: 52px;
  color: #666b70;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
}

.fabric-grid,
.technique-grid,
.sewing-grid,
.logo-grid,
.packaging-grid,
.faq-list {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.fabric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 4.2vw, 54px) clamp(28px, 5vw, 64px);
  max-width: 1120px;
}

.technique-grid,
.packaging-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
}

.sewing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1100px;
}

.logo-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1160px;
}

.choice-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  margin: 0;
}

.custom-visual {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #f7f5ef;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(222, 216, 204, 0.72);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 27, 35, 0.055);
}

.choice-card figcaption {
  color: #686d72;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
  text-align: center;
}

.private-label-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.private-label-card,
.case-card {
  min-width: 0;
  padding: clamp(22px, 2.4vw, 30px);
  background: #fff;
  border: 1px solid rgba(222, 216, 204, 0.88);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(17, 27, 35, 0.06);
}

.private-label-card h3,
.case-card h3 {
  margin-bottom: 12px;
  color: var(--deep);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.2;
}

.private-label-card p,
.case-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

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

.case-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.case-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.case-card dl div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(222, 216, 204, 0.72);
}

.case-card dt {
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card dd {
  margin: 0;
  color: #4f606a;
  font-size: 15px;
  line-height: 1.45;
}

.fabric-card figcaption {
  text-align: left;
}

.fabric-card h3 {
  margin-bottom: 10px;
  color: #5e6266;
  font-size: clamp(17px, 1.22vw, 21px);
}

.fabric-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 22px;
  color: #686d72;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.58;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4.8vw, 62px) clamp(34px, 5vw, 70px);
  max-width: 1120px;
}

.detail-card {
  gap: 18px;
}

.detail-card .custom-visual {
  aspect-ratio: 16 / 8.5;
}

.detail-card figcaption {
  display: grid;
  gap: 10px;
  max-width: 92%;
  margin: 0 auto;
  text-align: left;
}

.detail-card h3 {
  color: var(--deep);
  font-size: clamp(18px, 1.35vw, 23px);
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.custom-info-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 5.5vw, 76px);
  align-items: center;
}

.custom-copy-list {
  display: grid;
  gap: 22px;
}

.custom-copy-list article {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(222, 216, 204, 0.86);
}

.custom-copy-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.custom-copy-list h3 {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: clamp(18px, 1.35vw, 23px);
}

.custom-copy-list p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.7;
}

.info-figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.info-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f7f6f2;
  border: 1px solid rgba(222, 216, 204, 0.84);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(17, 27, 35, 0.08);
}

.info-figure figcaption {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.size-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.size-table-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(222, 216, 204, 0.82);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 27, 35, 0.06);
}

.size-table-card h3 {
  margin: 0;
  padding: 22px 26px;
  color: var(--deep);
  font-size: clamp(21px, 1.7vw, 28px);
  background: #f8f7f2;
  border-bottom: 1px solid rgba(222, 216, 204, 0.82);
}

.size-table-card table {
  width: 100%;
  border-collapse: collapse;
  color: #5e6469;
  font-size: clamp(16px, 1.15vw, 18px);
}

.size-table-card th,
.size-table-card td {
  padding: 16px 26px;
  border-bottom: 1px solid rgba(222, 216, 204, 0.58);
}

.size-table-card th {
  color: var(--deep);
  text-align: left;
}

.size-table-card td:last-child,
.size-table-card th:last-child {
  text-align: right;
}

.size-table-card p {
  margin: 0;
  padding: 20px 26px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.fabric-zero { background-image: url("assets/generated/custom-towels/fabric-zero-twist-cotton.webp"); }
.fabric-cotton { background-image: url("assets/generated/custom-towels/fabric-cotton-terry.webp"); }
.fabric-bamboo { background-image: url("assets/generated/custom-towels/fabric-bamboo-cotton.webp"); }
.fabric-muslin { background-image: url("assets/generated/custom-towels/fabric-muslin-cotton.webp"); }
.fabric-waffle { background-image: url("assets/generated/custom-towels/fabric-cotton-waffle.webp"); }
.fabric-coral { background-image: url("assets/generated/custom-towels/fabric-coral-fleece.webp"); }
.print-reactive { background-image: url("assets/generated/custom-towels/tech-reactive-printing.webp"); }
.print-digital { background-image: url("assets/generated/custom-towels/tech-digital-printing.webp"); }
.print-emboss { background-image: url("assets/generated/custom-towels/tech-embossed-pattern.webp"); }
.print-embroidery { background-image: url("assets/generated/custom-towels/tech-embroidery.webp"); }
.print-transfer { background-image: url("assets/generated/custom-towels/tech-heat-transfer.webp"); }
.print-screen { background-image: url("assets/generated/custom-towels/tech-screen-printing.webp"); }
.sew-hemming { background-image: url("assets/generated/custom-towels/sew-hemming.webp"); }
.sew-laser { background-image: url("assets/generated/custom-towels/sew-laser-cutting.webp"); }
.sew-binding { background-image: url("assets/generated/custom-towels/sew-binding-edge.webp"); }
.sew-overlock { background-image: url("assets/generated/custom-towels/sew-overlocking.webp"); }
.logo-label { background-image: url("assets/generated/custom-towels/logo-cotton-label.webp"); }
.logo-embroidery { background-image: url("assets/generated/custom-towels/logo-embroidery.webp"); }
.logo-loop { background-image: url("assets/generated/custom-towels/logo-hang-loop.webp"); }
.logo-tag { background-image: url("assets/generated/custom-towels/logo-hang-tag.webp"); }
.logo-wash { background-image: url("assets/generated/custom-towels/logo-wash-label.webp"); }
.pack-gift { background-image: url("assets/generated/custom-towels/pack-gift-box.webp"); }
.pack-paper { background-image: url("assets/generated/custom-towels/pack-paper-wrap.webp"); }
.pack-pvc { background-image: url("assets/generated/custom-towels/pack-pvc-bag.webp"); }
.pack-mesh { background-image: url("assets/generated/custom-towels/pack-mesh-bag.webp"); }
.pack-silicone { background-image: url("assets/generated/custom-towels/pack-silicone-bag.webp"); }
.pack-drawstring { background-image: url("assets/generated/custom-towels/pack-drawstring-bag.webp"); }

.bedding-hotel { background-image: url("assets/generated/custom-bedding/bedding-jacquard-yarndyed.webp"); }
.bedding-retail { background-image: url("assets/generated/custom-bedding/bedding-retail-packaging.webp"); }
.bedding-cotton { background-image: url("assets/generated/custom-bedding/bedding-pure-cotton.webp"); }
.bedding-linen { background-image: url("assets/generated/custom-bedding/bedding-linen-blend.webp"); }
.bedding-printed { background-image: url("assets/generated/custom-bedding/bedding-printed-retail.webp"); }
.bedding-embroidered { background-image: url("assets/generated/custom-bedding/bedding-embroidery-detail.webp"); }
.bedding-microfiber { background-image: url("assets/generated/custom-bedding/bedding-microfiber.webp"); }
.bedding-dorm { background-image: url("assets/generated/custom-bedding/bedding-youth-dorm.webp"); }
.bedding-jacquard { background-image: url("assets/generated/custom-bedding/bedding-jacquard-yarndyed.webp"); }
.bedding-raised-jacquard { background-image: url("assets/generated/custom-bedding/bedding-tech-raised-jacquard.webp"); }
.bedding-print-tech { background-image: url("assets/generated/custom-bedding/bedding-tech-custom-print-v2.webp"); }
.bedding-yarndyed { background-image: url("assets/generated/custom-bedding/bedding-tech-yarndyed-v2.webp"); }
.bedding-piping { background-image: url("assets/generated/custom-bedding/bedding-piping-border.webp"); }
.bedding-woven-label,
.bedding-washlabel { background-image: url("assets/generated/custom-bedding/bedding-woven-label.webp"); }
.bedding-hangtag { background-image: url("assets/generated/custom-bedding/bedding-hangtag-washlabel.webp"); }
.bedding-label-cotton { background-image: url("assets/generated/custom-bedding/bedding-label-cotton.webp"); }
.bedding-label-hangtag { background-image: url("assets/generated/custom-bedding/bedding-label-hangtag.webp"); }
.bedding-pack-zipper { background-image: url("assets/generated/custom-bedding/bedding-pack-zipper-bag-clear.webp"); }
.bedding-pack-carton { background-image: url("assets/generated/custom-bedding/bedding-pack-shipping-carton.webp"); }
.bedding-pack-paper { background-image: url("assets/generated/custom-bedding/bedding-pack-paper-band.webp"); }
.bedding-pack-pvc-wrap { background-image: url("assets/generated/custom-bedding/bedding-pack-pvc-wrap-flat.webp"); }
.bedding-pack-paper-band { background-image: url("assets/generated/custom-bedding/bedding-pack-paper-band.webp"); }
.bedding-pack-pvc-bag { background-image: url("assets/generated/custom-bedding/bedding-pack-pvc-bag-flat.webp"); }
.bedding-pack-gift-box { background-image: url("assets/generated/custom-bedding/bedding-pack-gift-box-open.webp"); }
.bedding-pack-vacuum { background-image: url("assets/generated/custom-bedding/bedding-pack-vacuum-compressed.webp"); }

.blanket-cotton { background-image: url("assets/generated/custom-blankets/blanket-cotton.webp"); }
.blanket-cooling { background-image: url("assets/generated/custom-blankets/blanket-cooling.webp"); }
.blanket-sofa { background-image: url("assets/generated/custom-blankets/blanket-sofa-throw.webp"); }
.blanket-plush { background-image: url("assets/generated/custom-blankets/blanket-plush-flannel.webp"); }
.blanket-private,
.blanket-private-tag { background-image: url("assets/generated/custom-blankets/blanket-private-label.webp"); }
.blanket-travel,
.blanket-pack-pouch { background-image: url("assets/generated/custom-blankets/blanket-travel-aviation.webp"); }
.blanket-kids { background-image: url("assets/generated/custom-blankets/blanket-kids.webp"); }
.blanket-aviation { background-image: url("assets/generated/custom-blankets/blanket-aviation.webp"); }
.blanket-print { background-image: url("assets/generated/custom-blankets/blanket-custom-print.webp"); }
.blanket-bound { background-image: url("assets/generated/custom-blankets/blanket-bound-edge.webp"); }
.blanket-edge-fringe { background-image: url("assets/generated/custom-blankets/blanket-edge-short-fringe.webp"); }
.blanket-edge-folded { background-image: url("assets/generated/custom-blankets/blanket-edge-folded-hem.webp"); }
.blanket-edge-binding { background-image: url("assets/generated/custom-blankets/blanket-edge-contrast-binding.webp"); }
.blanket-edge-quilted { background-image: url("assets/generated/custom-blankets/blanket-edge-quilted-border.webp"); }
.blanket-pack-paper,
.blanket-pack-poly { background-image: url("assets/generated/custom-blankets/blanket-retail-packaging.webp"); }
.blanket-pack-pvc-bag { background-image: url("assets/generated/custom-blankets/blanket-pack-pvc-bag-flat.webp"); }
.blanket-pack-paper-band { background-image: url("assets/generated/custom-blankets/blanket-pack-paper-band.webp"); }
.blanket-pack-carton { background-image: url("assets/generated/custom-blankets/blanket-pack-graphic-gift-box.webp"); }
.blanket-pack-kraft { background-image: url("assets/generated/custom-blankets/blanket-pack-shipping-carton-distinct.webp"); }
.blanket-pack-vacuum { background-image: url("assets/generated/custom-blankets/blanket-pack-vacuum-flat.webp"); }

.size-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.size-copy ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
  color: #62676c;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.6;
}

.size-copy strong {
  color: var(--deep);
}

.size-chart {
  display: grid;
  gap: 16px;
  margin: 0;
}

.size-chart img {
  aspect-ratio: 1200 / 760;
  object-fit: contain;
  background: #f7f6f2;
  border: 1px solid rgba(222, 216, 204, 0.84);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(17, 27, 35, 0.08);
}

.size-chart figcaption {
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.custom-faq {
  background:
    linear-gradient(180deg, #fff 0%, #f6f4ee 100%);
}

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

.faq-list article {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(222, 216, 204, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 27, 35, 0.07);
}

.faq-list h3 {
  color: var(--deep);
  font-size: clamp(20px, 1.65vw, 27px);
}

.faq-list p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 42px;
}

.catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.catalog-modal.open {
  display: block;
}

.catalog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 28, 0.48);
}

.catalog-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  overflow: auto;
  width: min(calc(100% - 36px), 620px);
  max-height: min(92vh, 860px);
  padding: 34px 34px 30px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.catalog-modal-panel h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(28px, 4vw, 38px);
  text-align: center;
}

.catalog-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.24);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.catalog-modal-close::before,
.catalog-modal-close::after {
  position: absolute;
  top: 21px;
  left: 11px;
  width: 22px;
  height: 2px;
  content: "";
  background: #fff;
}

.catalog-modal-close::before {
  transform: rotate(45deg);
}

.catalog-modal-close::after {
  transform: rotate(-45deg);
}

.catalog-form {
  display: grid;
  gap: 13px;
}

.catalog-form label {
  display: grid;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.catalog-form label span {
  color: #ff1f1f;
}

.catalog-form input,
.catalog-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  background: #fff;
  border: 0;
  border-radius: 4px;
}

.catalog-form input[readonly] {
  color: #767d83;
}

.catalog-form textarea {
  resize: vertical;
}

.file-drop {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 20px;
  color: #60666b !important;
  font-size: 17px !important;
  text-align: center;
  background: #fff;
  border: 1px dashed #b7c3c2;
  border-radius: 4px;
}

.file-drop::before {
  width: 34px;
  height: 27px;
  margin-bottom: 10px;
  content: "";
  border: 4px solid #c9ccce;
  border-top-width: 8px;
  border-radius: 8px;
}

.file-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-drop span {
  color: #60666b !important;
}

.catalog-submit {
  min-height: 48px;
  margin-top: 8px;
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  background: var(--teal);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.source-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.15fr);
  gap: clamp(46px, 7vw, 108px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(8, 125, 120, 0.08), transparent 38%),
    #fff;
  border-top: 1px solid rgba(222, 216, 204, 0.62);
}

.source-copy {
  max-width: 720px;
}

.source-copy h2 {
  max-width: 700px;
}

.source-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.78;
}

.source-list {
  display: grid;
  gap: 14px;
}

.source-list article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  background: #faf8f2;
  border: 1px solid rgba(222, 216, 204, 0.88);
  border-radius: 8px;
}

.source-list span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
  grid-row: 1 / 3;
}

.source-list h3 {
  grid-column: 2;
  margin-bottom: 8px;
}

.source-list p {
  grid-column: 2;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
}

.source-story {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 22, 25, 0.94) 0%, rgba(9, 36, 39, 0.91) 56%, rgba(247, 244, 238, 0.98) 56%, rgba(247, 244, 238, 1) 100%),
    url("assets/generated/aida-b2b-textile-background.webp") center top / cover no-repeat;
}

.source-story::before {
  position: absolute;
  top: 58px;
  right: clamp(18px, 6vw, 98px);
  width: 128px;
  height: 128px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(45deg);
}

.source-story-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto 52px;
}

.source-story-header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 18px;
}

.source-story-header h2 {
  grid-column: 1;
  max-width: 430px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 850;
  line-height: 1.12;
}

.story-lead {
  grid-column: 2;
  grid-row: 2;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.68;
}

.story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
  margin-bottom: 34px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(5, 18, 21, 0.24);
}

.story-kicker {
  padding: 32px 30px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(8, 125, 120, 0.96), rgba(16, 39, 43, 0.98));
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(17, 27, 35, 0.16);
}

.story-kicker span {
  display: block;
  margin-bottom: 22px;
  color: #d8fffb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-kicker strong {
  display: block;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.14;
}

.story-kicker p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.76;
}

.story-content {
  padding: 4px 4px 0;
  color: var(--ink);
}

.story-content h3 {
  margin-bottom: 22px;
  font-size: clamp(26px, 3vw, 38px);
}

.story-lines {
  display: grid;
  gap: 14px;
  background: transparent;
  border-top: 0;
}

.story-lines article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(247, 244, 238, 0.78);
  border: 1px solid rgba(222, 216, 204, 0.86);
  border-radius: 8px;
}

.story-lines article > span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.story-lines h4 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 24px;
  line-height: 1.18;
}

.story-lines p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.story-service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.story-service-grid article {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 27, 35, 0.08);
}

.story-service-grid h3 {
  max-width: 280px;
  margin-bottom: 18px;
  font-size: 23px;
}

.story-service-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.story-advantages {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  margin-top: 26px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(222, 216, 204, 0.86);
  border-radius: 8px;
}

.story-advantages > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-advantages article {
  padding-top: 18px;
  border-top: 2px solid var(--green);
}

.story-advantages strong {
  display: block;
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 18px;
}

.story-advantages p {
  color: var(--muted);
  line-height: 1.66;
}

.aida-story-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(88px, 10vw, 138px);
  padding-bottom: clamp(88px, 10vw, 138px);
  background:
    linear-gradient(180deg, #fff 0%, #fbf8f0 100%);
}

.aida-story-section::before {
  position: absolute;
  top: 70px;
  left: 50%;
  width: min(760px, 76vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 160, 111, 0.72), transparent);
  transform: translateX(-50%);
}

.aida-story-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.aida-story-copy h2 {
  max-width: 820px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: var(--deep);
  font-size: clamp(30px, 4vw, 50px);
}

.aida-story-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: #4f606a;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.86;
}

.aida-story-copy p + p {
  margin-top: 22px;
}

.aida-values-section {
  padding-right: clamp(28px, 8vw, 120px);
  padding-left: clamp(28px, 8vw, 120px);
}

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

.aida-values-grid article {
  min-height: 270px;
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(222, 216, 204, 0.88);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 27, 35, 0.06);
}

.aida-values-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.aida-values-grid h3 {
  max-width: 240px;
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 23px;
}

.aida-values-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.sourcing-brief-section {
  display: grid;
  grid-template-columns: minmax(280px, 760px) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(72px, 8vw, 104px) clamp(28px, 8vw, 120px);
  color: var(--deep);
  background:
    linear-gradient(135deg, rgba(8, 125, 120, 0.08), transparent 42%),
    linear-gradient(180deg, #fff 0%, #f6f1e8 100%);
}

.contact-section + .sourcing-brief-section {
  background:
    linear-gradient(135deg, rgba(8, 125, 120, 0.07), transparent 42%),
    #f8f5ee;
}

.sourcing-brief-section h2 {
  max-width: 760px;
}

.sourcing-brief-section p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.sourcing-brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.newsletter-section {
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  display: grid;
  justify-items: center;
  gap: 32px;
  padding: 86px clamp(18px, 5vw, 72px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(180deg, #0b9690 0%, #087d78 100%);
}

.newsletter-section::before,
.newsletter-section::after {
  position: absolute;
  content: "";
  border: 26px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.newsletter-section::before {
  top: -190px;
  left: -70px;
  width: 360px;
  height: 360px;
}

.newsletter-section::after {
  right: -100px;
  bottom: -210px;
  width: 420px;
  height: 420px;
}

.newsletter-section > div,
.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-section h2 {
  max-width: 780px;
  font-size: clamp(34px, 4.6vw, 54px);
}

.newsletter-section p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.newsletter-form {
  display: flex;
  width: min(100%, 690px);
  gap: 12px;
  justify-content: center;
}

.newsletter-form label {
  flex: 1;
}

.newsletter-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.newsletter-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  background: #fff;
  border: 0;
  border-radius: 6px;
}

.newsletter-form button {
  min-width: 130px;
  min-height: 56px;
  padding: 0 24px;
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  background: #0b1214;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(280px, 760px) auto;
  gap: 32px;
  align-items: center;
  padding: 78px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--green-dark);
}

.home-cta h2 {
  max-width: 780px;
}

.home-cta .eyebrow {
  color: #a7ddd6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.button.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
}

.visual-band {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.visual-band img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.visual-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 39, 43, 0.9), rgba(15, 39, 43, 0.42));
}

.visual-band div {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 86px clamp(18px, 5vw, 72px);
}

.about-section,
.quality-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: 58px;
  align-items: start;
}

.about-copy p + p {
  margin-top: 18px;
}

.process-section {
  grid-template-columns: 140px minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: 34px 48px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 125, 120, 0.18), transparent 42%),
    var(--deep);
}

.process-intro {
  align-self: end;
  max-width: 560px;
  padding: 24px 26px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--copper);
}

.process-list {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 44px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 160, 111, 0.86), transparent);
}

.process-list li {
  position: relative;
  min-height: 270px;
  padding: 28px 26px 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.12);
}

.process-list span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  color: var(--deep);
  font-size: 15px;
  font-weight: 900;
  background: #fff;
  border: 5px solid rgba(200, 160, 111, 0.86);
  border-radius: 50%;
}

.process-list strong {
  display: block;
  max-width: 210px;
  font-size: 24px;
  line-height: 1.18;
  overflow-wrap: normal;
  word-break: normal;
}

.process-list p {
  max-width: 280px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.58;
  overflow-wrap: normal;
  word-break: normal;
}

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

.news-card span {
  color: var(--green);
}

.news-hero-refined {
  min-height: 500px;
  background-position: 62% center;
}

.news-intro {
  padding-bottom: 64px;
}

.news-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 10px auto 0;
}

.news-topic-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  background: #f7f5ef;
  border: 1px solid rgba(222, 216, 204, 0.92);
  border-radius: 999px;
}

.news-pagination {
  display: grid;
  grid-template-columns: minmax(96px, 1fr) auto minmax(96px, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.news-pagination > span {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.news-pagination a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(35, 48, 45, 0.18);
  border-radius: 6px;
}

.news-pagination a[aria-current="page"] {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.news-pagination .pagination-direction {
  width: auto;
  min-width: 96px;
  padding: 0 14px;
}

.news-pagination .pagination-direction:last-child {
  justify-self: end;
}

.news-library {
  position: relative;
  overflow: hidden;
}

.article-grid {
  max-width: 1220px;
  margin: 0 auto;
  gap: 22px;
}

.article-card {
  display: grid;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border-color: rgba(222, 216, 204, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 27, 35, 0.08);
}

.article-card img {
  width: 100%;
  aspect-ratio: 4 / 2.9;
  object-fit: cover;
}

.article-card div {
  display: grid;
  align-content: start;
  min-height: 248px;
  padding: 25px 26px 28px;
}

.article-card span {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 13px;
  color: var(--deep);
  font-size: 23px;
}

.article-card p {
  font-size: 16px;
  line-height: 1.72;
}

.article-card a {
  align-self: end;
  margin-top: 20px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  width: fit-content;
}

.buyer-guide-section {
  background:
    linear-gradient(180deg, #fff 0%, #f9f6ee 100%);
}

.buyer-guide-layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  max-width: 1180px;
  margin: 0 auto;
}

.buyer-guide-aside {
  align-self: start;
  position: sticky;
  top: 138px;
  padding: 34px 32px;
  background: #fff;
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 27, 35, 0.06);
}

.buyer-guide-aside h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.buyer-guide-aside p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.buyer-guide-list {
  display: grid;
  gap: 16px;
}

.buyer-guide-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: 8px;
}

.buyer-guide-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
}

.buyer-guide-list h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 24px;
}

.buyer-guide-list p,
.news-faq .faq-list p {
  color: var(--muted);
  line-height: 1.72;
}

.article-page {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #fff 0%, #f8f6ef 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green-dark);
  text-decoration: none;
}

.breadcrumb strong {
  color: var(--deep);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.article-main {
  min-width: 0;
}

.article-main h1 {
  max-width: 840px;
  color: var(--deep);
  font-size: clamp(38px, 4.8vw, 62px);
}

.article-meta {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.article-hero-image {
  width: 100%;
  margin: 0 0 36px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(222, 216, 204, 0.88);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(17, 27, 35, 0.1);
}

.article-chart-image {
  object-fit: contain;
  padding: 22px;
}

.article-image-caption {
  max-width: 840px;
  margin: -18px 0 34px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.article-visual-section {
  max-width: 840px;
  margin: 0 0 34px;
}

.article-summary-box,
.article-decision-table,
.article-checklist-box,
.article-warning-box,
.article-workflow-box {
  max-width: 840px;
  margin: 26px 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(222, 216, 204, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 27, 35, 0.06);
}

.article-summary-box {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-left: 4px solid var(--green);
}

.article-summary-box strong,
.article-checklist-box strong,
.article-warning-box strong {
  color: var(--deep);
  font-size: 18px;
}

.article-summary-box p,
.article-checklist-box p,
.article-warning-box p {
  margin: 0;
}

.article-decision-table {
  overflow: hidden;
}

.article-decision-table table {
  width: 100%;
  border-collapse: collapse;
}

.article-decision-table caption {
  padding: 18px 20px;
  color: var(--deep);
  font-size: 19px;
  font-weight: 900;
  text-align: left;
  background: #f8f6ef;
}

.article-decision-table th,
.article-decision-table td {
  padding: 16px 18px;
  color: #4f606a;
  font-size: 16px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid rgba(222, 216, 204, 0.86);
}

.article-decision-table th {
  color: var(--deep);
  font-weight: 900;
  background: rgba(8, 125, 120, 0.06);
}

.article-checklist-box,
.article-warning-box,
.article-workflow-box {
  padding: 24px;
}

.article-checklist-box ul,
.article-warning-box ul,
.article-workflow-box ol,
.article-workflow-box ul {
  margin-bottom: 0;
}

.article-workflow-box {
  border-left: 4px solid rgba(8, 125, 120, 0.5);
}

.article-workflow-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 18px;
}

.article-functional-image {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 30px 0;
}

.article-functional-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(17, 27, 35, 0.08);
}

.article-functional-image figcaption {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.article-visual-section h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.5vw, 32px);
}

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

.article-visual-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(222, 216, 204, 0.88);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(17, 27, 35, 0.06);
}

.article-visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-visual-card figcaption {
  min-height: 58px;
  padding: 13px 14px 15px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.28;
}

.article-main p:not(.eyebrow):not(.article-meta),
.article-main li {
  max-width: 840px;
  color: #4f606a;
  font-size: 18px;
  line-height: 1.82;
}

.article-main h2 {
  max-width: 840px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--deep);
  font-size: clamp(27px, 3vw, 38px);
}

.article-main h3 {
  max-width: 840px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: clamp(21px, 2.2vw, 27px);
}

.article-main ul {
  max-width: 840px;
  margin: 12px 0 24px;
  padding-left: 24px;
}

.article-callout {
  display: grid;
  gap: 8px;
  max-width: 840px;
  margin-top: 34px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(8, 125, 120, 0.2);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 27, 35, 0.06);
}

.article-callout strong {
  color: var(--deep);
  font-size: 18px;
}

.article-callout span {
  color: var(--muted);
  line-height: 1.7;
}

.article-sidebar {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(17, 27, 35, 0.08);
}

.article-sidebar h3 {
  margin-top: 12px;
  margin-bottom: 4px;
  color: var(--deep);
}

.article-sidebar a {
  color: var(--green-dark);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.article-sidebar a:not(.article-cta) {
  padding-top: 12px;
  border-top: 1px solid rgba(222, 216, 204, 0.9);
}

.article-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  color: #fff !important;
  background: var(--green);
  border-radius: 6px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.contact-methods a,
.contact-methods span {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-section {
  position: relative;
  overflow: hidden;
  align-items: center;
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 42%, rgba(255, 255, 255, 0.62) 100%),
    url("assets/generated/contact-warm-textile-desk.webp") center / cover no-repeat;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.14), rgba(247, 245, 239, 0.62)),
    radial-gradient(circle at 18% 18%, rgba(200, 160, 111, 0.16), transparent 38%);
  pointer-events: none;
}

.contact-copy,
.inquiry-form {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 620px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(222, 216, 204, 0.64);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.contact-copy h2 {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.06;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.68;
}

address {
  color: var(--muted);
  font-style: normal;
}

.inquiry-form {
  display: grid;
  gap: 15px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(222, 216, 204, 0.82);
  box-shadow: 0 28px 70px rgba(17, 27, 35, 0.12);
  backdrop-filter: blur(12px);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #33414d;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #c9d1d6;
  border-radius: var(--radius);
  background: #fff;
}

.phone-label {
  position: relative;
}

.phone-field {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 48px;
  background: #fff;
  border: 1px solid #c9d1d6;
  border-radius: var(--radius);
}

.phone-field:focus-within {
  border-color: rgba(8, 125, 120, 0.62);
  box-shadow: 0 0 0 3px rgba(8, 125, 120, 0.12);
}

.phone-country-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  color: var(--deep);
  font: inherit;
  font-weight: 900;
  background: #f7f5ef;
  border: 0;
  border-right: 1px solid #d9dedf;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
}

.phone-country-button span {
  font-size: 18px;
  line-height: 1;
}

.phone-country-button strong {
  font-size: 14px;
  line-height: 1;
}

.phone-country-button i {
  width: 0;
  height: 0;
  border-top: 5px solid var(--muted);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.phone-field > input[name="phone"] {
  min-width: 0;
  padding: 13px 14px;
  border: 0;
  border-radius: 0 5px 5px 0;
}

.phone-field > input[name="phone"]:focus {
  outline: 0;
}

.phone-country-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 30;
  display: none;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(201, 209, 214, 0.96);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(17, 27, 35, 0.18);
}

.phone-field[data-open="true"] .phone-country-menu {
  display: block;
}

.phone-country-search {
  width: 100%;
  min-height: 42px;
  margin-bottom: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #c9d1d6;
  border-radius: 6px;
}

.phone-country-list {
  max-height: 238px;
  overflow-y: auto;
}

.phone-country-option {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--deep);
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.phone-country-option:hover,
.phone-country-option:focus {
  background: #f2efe7;
  outline: 0;
}

.phone-country-option span {
  font-size: 18px;
}

.phone-country-option strong {
  font-size: 14px;
}

.phone-country-option em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.legal-page {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  color: var(--ink);
}

.legal-page h2 {
  margin-top: 18px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.legal-page p {
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-page a {
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  overflow-x: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.footer-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(170px, 0.5fr) minmax(250px, 0.88fr);
  gap: clamp(24px, 3.4vw, 46px);
  padding: 64px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(8, 125, 120, 0.16), transparent 38%),
    var(--charcoal);
}

.footer-brand,
.footer-links,
.footer-details {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  color: #fff;
  text-decoration: none;
}

.footer-logo .brand-mark {
  width: clamp(160px, 12vw, 196px);
  height: clamp(56px, 4.2vw, 68px);
  padding: 8px 12px;
  background: #fff;
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.footer-logo strong {
  font-size: clamp(32px, 2.7vw, 42px);
  line-height: 1;
  white-space: nowrap;
}

.footer-logo small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 800;
  white-space: nowrap;
}

.footer-brand p {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.66;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.footer-links,
.footer-details {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links h3,
.footer-details h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
}

.footer-links a,
.footer-details a,
.footer-details span,
.footer-details address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.footer-details address {
  max-width: 500px;
  font-style: normal;
  line-height: 1.62;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: flex-end;
}

.footer-legal a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header > .brand::after,
  .header-brand-row > .brand::after {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .product-strip,
  .product-grid,
  .custom-grid,
  .news-grid,
  .buyer-guide-layout,
  .article-layout,
  .option-grid,
  .aida-values-grid,
  .custom-info-layout,
  .size-table-grid,
  .catalog-showcase,
  .size-layout {
    grid-template-columns: 1fr;
  }

  .fabric-grid,
  .technique-grid,
  .detail-grid,
  .packaging-grid,
  .private-label-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .category-card {
    min-height: 430px;
  }

  .category-card + .category-card {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .split-section,
  .process-section,
  .news-section {
    grid-template-columns: 110px 1fr;
  }

  .split-body,
  .news-grid {
    grid-column: 2;
  }

  .process-heading,
  .process-intro,
  .process-list {
    grid-column: 2;
  }

  .process-list,
  .fact-grid,
  .timeline-grid,
  .service-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyer-guide-aside {
    position: static;
  }

  .article-sidebar {
    position: static;
  }

}

@media (max-width: 940px) {
  .header-brand-row {
    min-height: 90px;
    padding: 14px 22px;
  }

  .header-nav-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 52px;
    padding: 0 16px 10px;
    background: var(--green);
  }

  .brand {
    gap: 14px;
  }

  .brand-mark {
    width: 170px;
    height: 52px;
  }

  .brand-text strong {
    font-size: 24px;
  }

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

  .header-contact {
    display: none;
  }

  .lang-switcher {
    flex: 0 0 auto;
  }

  .lang-switcher {
    margin-left: 0;
  }

  .lang-toggle {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .lang-switcher .lang-menu {
    right: auto;
    left: 0;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 120px);
    overflow: auto;
    padding: 10px;
    color: var(--ink);
    font-size: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header > .main-nav {
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    color: var(--ink);
    background: #fff;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .dropdown-toggle {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 12px 14px;
    text-align: left;
    border-radius: 4px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    visibility: visible;
    opacity: 1;
    padding: 4px 0 8px 12px;
    background: #f7f5ef;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-item.open .dropdown-menu {
    display: grid;
  }

  .nav-cta {
    display: inline-flex !important;
    color: var(--ink) !important;
    background: transparent;
  }

  .section-heading,
  .intro-band,
  .factory-highlight,
  .factory-media,
  .source-section,
  .source-story-header,
  .story-layout,
  .story-advantages,
  .sourcing-brief-section,
  .home-cta,
  .footer-contact,
  .about-section,
  .quality-section,
  .contact-section,
  .catalog-showcase,
  .size-layout {
    grid-template-columns: 1fr;
  }

  .section-heading > *,
  .intro-band > *,
  .source-section > *,
  .source-story-header > *,
  .story-layout > *,
  .story-advantages > *,
  .custom-card,
  .gallery-card,
  .option-card {
    min-width: 0;
  }

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

  .factory-media img {
    height: 260px;
  }

  .factory-highlight {
    min-height: 540px;
    background-position: 62% center;
  }

  .source-copy p:not(.eyebrow) {
    max-width: 680px;
  }

  .story-kicker {
    position: static;
  }

  .story-service-grid,
  .story-advantages > div {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .sourcing-brief-actions {
    justify-content: flex-start;
  }

  .catalog-modal-panel {
    width: min(calc(100% - 28px), 620px);
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero,
  .section,
  .intro-band,
  .section-heading,
  .product-strip,
  .category-card,
  .factory-highlight,
  .application-section,
  .source-story,
  .newsletter-section,
  .footer-contact {
    width: 100%;
    max-width: 100%;
    inline-size: 100%;
  }

  .hero-copy,
  .hero-copy p,
  .intro-band h2,
  .intro-band p,
  .section-heading h2,
  .section-heading p,
  .category-card div,
  .category-card h2,
  .category-card p {
    max-width: 100%;
    inline-size: 100%;
    min-width: 0;
  }

  .site-header {
    padding: 0;
  }

  .header-brand-row {
    min-height: 76px;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 118px;
    height: 38px;
    border-radius: 0;
  }

  .brand-text strong {
    font-size: 20px;
    line-height: 1.05;
  }

  .brand-text small {
    display: none;
  }

  .main-nav {
    top: calc(100% + 6px);
    right: 12px;
    left: 12px;
    max-height: calc(100vh - 94px);
  }

  .hero {
    min-height: 650px;
    grid-template-columns: minmax(0, 1fr);
    padding: 54px 18px 56px;
    background:
      linear-gradient(180deg, rgba(18, 43, 48, 0.9) 0%, rgba(18, 43, 48, 0.74) 58%, rgba(18, 43, 48, 0.46) 100%),
      url("assets/videos/homepage-hero-video-poster.webp") center / cover;
  }

  .hero::before {
    width: 100%;
    opacity: 0.32;
  }

  .hero-masthead {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    margin-bottom: 42px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero-badges {
    justify-content: flex-start;
  }

  .hero-badges span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero-brand-name {
    font-size: 16px;
  }

  .hero-brand-meta {
    font-size: 11px;
  }

  .hero-mark {
    width: 144px;
    height: 46px;
  }

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

  .page-hero {
    min-height: 360px;
    padding: 86px 18px 56px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .need-grid,
  .quality-points,
  .service-grid,
  .service-grid.wide,
  .process-list,
  .fact-grid,
  .timeline-grid,
    .fabric-grid,
    .technique-grid,
    .detail-grid,
    .sewing-grid,
    .logo-grid,
    .packaging-grid,
    .private-label-grid,
    .case-grid,
    .custom-info-layout,
    .size-table-grid,
    .faq-list {
      grid-template-columns: 1fr;
    }

    .case-card dl div {
      grid-template-columns: 1fr;
      gap: 4px;
    }

  .catalog-header {
    margin-bottom: 40px;
    text-align: left;
    justify-items: start;
  }

  .catalog-badges {
    justify-content: flex-start;
  }

  .catalog-points li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .catalog-actions,
  .faq-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .custom-step-heading {
    align-items: flex-start;
    gap: 16px;
  }

  .custom-step-heading h2 {
    font-size: 32px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    margin-top: 3px;
  }

  .step-lead {
    margin-bottom: 34px;
    font-size: 17px;
  }

  .choice-card figcaption,
  .detail-card figcaption,
  .fabric-card figcaption {
    text-align: left;
  }

  .detail-card figcaption {
    max-width: 100%;
  }

  .size-table-card th,
  .size-table-card td {
    padding: 13px 16px;
  }

  .catalog-modal-panel {
    width: min(calc(100% - 24px), 560px);
    max-height: calc(100vh - 24px);
    padding: 34px 18px 24px;
  }

  .catalog-modal-panel h2 {
    text-align: left;
  }

  .category-card {
    min-height: 380px;
  }

  .category-card div,
  .product-card div {
    padding: 26px 18px;
  }

  .section {
    padding: 66px 18px;
  }

  .intro-band {
    gap: 30px;
  }

  .intro-band p:last-child,
  .section-heading p:last-child {
    max-width: 100%;
  }

  .product-proof::before,
  .factory-highlight::after,
  .newsletter-section::before,
  .newsletter-section::after,
  .source-story::before {
    display: none;
  }

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

  .news-topic-strip {
    gap: 8px;
  }

  .news-topic-strip a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .article-card div,
  .buyer-guide-aside,
  .buyer-guide-list article {
    padding: 22px;
  }

  .article-card div {
    min-height: auto;
  }

  .article-card h3 {
    font-size: 21px;
  }

  .buyer-guide-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-page {
    padding: 42px 18px 66px;
  }

  .breadcrumb {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .article-main h1 {
    font-size: 36px;
  }

  .article-hero-image {
    margin-bottom: 28px;
    aspect-ratio: 4 / 3;
  }

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

  .article-main p:not(.eyebrow):not(.article-meta),
  .article-main li {
    font-size: 16px;
    line-height: 1.72;
  }

  .article-sidebar {
    padding: 22px;
  }

  .product-category-stack {
    gap: 54px;
  }

  .product-category-hero {
    min-height: 360px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .product-category-hero h2 {
    font-size: 38px;
  }

  .product-category-hero p,
  .section-heading.centered p:last-child {
    font-size: 18px;
  }

  .reference-gallery {
    grid-template-columns: 1fr;
  }

  .factory-highlight {
    overflow: hidden;
    min-height: 560px;
    background-position: 82% center;
  }

  .factory-copy {
    padding-left: 18px;
  }

  .gallery-card img {
    aspect-ratio: 4 / 3;
  }

  .product-proof > .section-heading,
  .product-proof > .gallery-grid {
    max-width: 100%;
  }

  .gallery-card figcaption {
    min-height: 56px;
    font-size: 15px;
  }

  .split-section,
  .process-section,
  .news-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-body,
  .process-heading,
  .process-intro,
  .process-list,
  .news-grid {
    grid-column: auto;
  }

  .process-intro {
    padding: 20px;
  }

  .process-list::before {
    top: 0;
    bottom: 0;
    left: 29px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(200, 160, 111, 0.78), transparent);
  }

  .process-list li {
    min-height: auto;
    padding: 22px 20px 24px 82px;
  }

  .process-list span {
    position: absolute;
    top: 22px;
    left: 20px;
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    border-width: 4px;
  }

  .process-list strong,
  .process-list p {
    max-width: none;
  }

  .source-section {
    gap: 30px;
  }

  .source-story-header {
    gap: 24px;
    margin-bottom: 36px;
  }

  .source-story-header .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .source-story-header h2 {
    grid-column: auto;
    font-size: clamp(28px, 7.2vw, 36px);
  }

  .story-lead {
    grid-column: auto;
    grid-row: auto;
    font-size: 16px;
    line-height: 1.7;
  }

  .story-layout {
    padding: 18px;
  }

  .story-kicker {
    padding: 24px 22px;
  }

  .story-lines article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .story-service-grid article {
    min-height: auto;
    padding: 24px 22px;
  }

  .story-advantages {
    gap: 12px;
  }

  .source-copy p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.7;
  }

  .source-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .source-list span,
  .source-list h3,
  .source-list p {
    grid-column: auto;
    grid-row: auto;
  }

  .newsletter-section {
    overflow: hidden;
    padding: 70px 18px;
  }

  .about-warm-hero {
    min-height: 560px;
  }

  .about-hero-mark {
    height: 70px;
  }

  .aida-values-section,
  .sourcing-brief-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .aida-values-grid article {
    min-height: auto;
    padding: 24px 22px;
  }

  .sourcing-brief-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-section {
    min-height: auto;
    background-position: 42% center;
  }

  .contact-copy {
    padding: 24px 20px;
  }

  .phone-field {
    grid-template-columns: 104px 1fr;
  }

  .phone-country-button {
    padding: 0 9px;
  }

  .phone-country-menu {
    position: fixed;
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-height: 68vh;
  }

  .phone-country-list {
    max-height: calc(68vh - 68px);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-contact,
  .footer-brand,
  .footer-links,
  .footer-details,
  .footer-logo,
  .footer-brand p,
  .footer-socials {
    min-width: 0;
    max-width: 100%;
  }

  .footer-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-logo .brand-mark {
    width: 150px;
    height: 52px;
  }

  .footer-logo strong {
    font-size: 28px;
    white-space: normal;
  }

  .footer-logo small {
    margin-top: 8px;
    font-size: 14px;
    white-space: normal;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}
