.custom-service-page {
  --cs-dark: var(--color-green-950);
  --cs-ink: #0B2A1F;
  --cs-green: #0B2A1F;
  --cs-gold: #C49A3C;
  --cs-gold-soft: #C49A3C;
  --cs-cream: var(--color-cream-50);
  --cs-cream-deep: var(--color-cream-100);
  --cs-line: rgba(15, 35, 24, .12);
  --cs-muted: #4F625C;
  background: var(--cs-cream);
  color: var(--color-text-main);
  overflow: clip;
}

.custom-service-page img {
  width: 100%;
}

.custom-service-page a,
.custom-service-page button,
.custom-service-page article,
.custom-service-page img {
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.cs-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: var(--cs-cream);
}

.cs-section--cream {
  background: var(--cs-cream-deep);
}

.cs-label {
  display: inline-flex;
  align-items: center;
  color: var(--cs-gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cs-section-head {
  max-width: 900px;
  margin: 0 auto clamp(2.25rem, 4vw, 3.25rem);
  text-align: center;
}

.cs-section-head h2,
.cs-split__copy h2,
.cs-quality h2,
.cs-faq-main h2 {
  margin: .8rem 0 1rem;
  color: var(--cs-ink);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
}

.cs-section-head p,
.cs-split__copy p,
.cs-quality p,
.cs-faq-main > p {
  max-width: 780px;
  color: var(--cs-muted);
  font-size: 16px;
  line-height: 1.75;
}

.cs-section-head p {
  margin: 0 auto;
}

.cs-hero {
  position: relative;
  height: 600px;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: url("/assets/images/custom-service/factory-workshop-hero.webp") center / cover no-repeat;
}

.cs-hero::before,
.cs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.cs-hero::before {
  background: url("/assets/images/custom-service/factory-workshop-hero.webp") center / cover no-repeat;
  filter: blur(8px);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 8%, transparent 38%);
  mask-image: linear-gradient(to right, black 0%, black 8%, transparent 38%);
}

.cs-hero::after {
  background:
    linear-gradient(96deg, rgba(7, 23, 15, .92) 0%, rgba(7, 23, 15, .78) 28%, rgba(7, 23, 15, .18) 48%, transparent 62%),
    linear-gradient(180deg, rgba(7, 23, 15, .08), rgba(7, 23, 15, .52));
}

.cs-hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 0;
}

.cs-hero__copy {
  width: 100%;
  max-width: 640px;
  min-width: 0;
}

.cs-hero h1 {
  max-width: 620px;
  margin: .55rem 0 .8rem;
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .32);
}

.cs-hero p {
  max-width: 580px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.65;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.cs-hero .cs-label {
  color: var(--cs-gold-soft);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
  font-size: .68rem;
  letter-spacing: .18em;
}

.cs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin-top: 1.4rem;
}

.cs-hero__actions .btn {
  min-height: 48px;
  border-radius: 7px;
  font-weight: 800;
  font-size: .92rem;
  padding: 0 1.8rem;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.cs-hero__actions .btn-primary {
  background: var(--cs-gold);
  color: var(--cs-ink);
  box-shadow: 0 8px 28px rgba(196, 154, 60, .22);
}

.cs-hero__actions .btn-primary:hover {
  background: var(--cs-gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(196, 154, 60, .32);
}

.cs-hero__actions .btn-outline-dark {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .07);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cs-hero__actions .btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.cs-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.2rem;
}

.cs-hero__highlights span {
  display: inline-flex;
  align-items: center;
  padding: .38rem .95rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .02em;
}

.cs-anchor {
  position: sticky;
  top: var(--site-header-height, 66px);
  z-index: 90;
  height: 42px;
  border-top: 1px solid rgba(15, 35, 24, .08);
  border-bottom: 1px solid rgba(15, 35, 24, .1);
  background: rgba(251, 248, 241, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cs-anchor__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  height: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.cs-anchor__inner::-webkit-scrollbar {
  display: none;
}

.cs-anchor a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 30px;
  padding: 0 .75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--cs-green);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.cs-anchor a.is-active {
  border-color: rgba(196, 154, 60, .36);
  background: rgba(196, 154, 60, .12);
  color: var(--cs-ink);
}

.cs-workflow-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(196, 154, 60, .08), transparent 28%),
    linear-gradient(180deg, var(--cs-cream), #fff 48%, var(--cs-cream));
}

.cs-workflow-section .cs-section-head {
  max-width: 980px;
}

.cs-workflow-section .cs-section-head h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cs-workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.cs-step,
.cs-service-card,
.cs-sample-card,
.cs-product-card,
.cs-industry-card,
.cs-why-card,
.cs-consult-card,
.cs-workflow-benefits,
.cs-capability-benefits {
  border: 1px solid var(--cs-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.cs-step {
  position: relative;
  min-height: 250px;
  padding: clamp(1.55rem, 2.6vw, 2rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(251, 248, 241, .86)),
    #fff;
}

.cs-step__number,
.cs-sample-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, .96);
  outline: 1px solid rgba(196, 154, 60, .38);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, .14), transparent 32%),
    var(--cs-ink);
  color: var(--cs-gold-soft);
  box-shadow: 0 12px 28px rgba(15, 35, 24, .14);
  font-size: .95rem;
  font-weight: 900;
}

.cs-sample-card span {
  width: 44px;
  height: 44px;
  border: 0;
  outline: 0;
  font-size: .82rem;
}

.cs-step h3,
.cs-service-card h3,
.cs-sample-card h3,
.cs-product-card h3,
.cs-industry-card h3,
.cs-why-card h3,
.cs-qc-card h3,
.cs-consult-card h3 {
  margin: 0 0 .55rem;
  color: var(--cs-ink);
  font-size: 28px;
  font-weight: 800;
}

.cs-step h3 {
  position: relative;
  margin-bottom: .9rem;
  padding-bottom: .8rem;
}

.cs-step h3::after,
.cs-workflow-benefits h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--cs-gold);
}

.cs-step p,
.cs-service-card p,
.cs-sample-card p,
.cs-product-card p,
.cs-industry-card p,
.cs-why-card p,
.cs-qc-card p,
.cs-consult-card p {
  color: var(--cs-muted);
  font-size: 16px;
  line-height: 1.65;
}

.cs-workflow-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(1.25rem, 2.5vw, 1.9rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(251, 248, 241, .9)),
    #fff;
}

.cs-workflow-benefits article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
}

.cs-workflow-benefits article + article {
  border-left: 1px solid rgba(196, 154, 60, .24);
}

.cs-workflow-benefit-icon {
  display: block;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  padding: 13px;
  border-radius: 50%;
  background: var(--cs-ink);
  color: var(--cs-gold-soft);
  box-shadow: 0 14px 30px rgba(15, 35, 24, .16);
}

.cs-workflow-benefit-icon * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-workflow-benefits h3 {
  position: relative;
  margin: 0 0 .58rem;
  padding-bottom: .55rem;
  color: var(--cs-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.cs-workflow-benefits p {
  color: var(--cs-muted);
  font-size: 16px;
  line-height: 1.58;
}

.cs-service-grid,
.cs-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.cs-section--cream#capabilities {
  scroll-margin-top: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 154, 60, .08), transparent 34%),
    linear-gradient(180deg, var(--cs-cream-deep), var(--cs-cream) 54%, var(--cs-cream-deep));
}

#capabilities .cs-section-head {
  max-width: 940px;
}

#capabilities .cs-section-head h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 38px;
  line-height: 1.04;
}

#capabilities .cs-section-head p {
  max-width: 880px;
  font-size: 16px;
}

.cs-service-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cs-service-card {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border-color: rgba(15, 35, 24, .1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(251, 248, 241, .9)),
    #fff;
  box-shadow: 0 16px 38px rgba(15, 35, 24, .06);
}

.cs-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: .65rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--cs-gold-soft), var(--cs-gold) 58%, #a97918);
  color: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34), 0 10px 22px rgba(196, 154, 60, .2);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transform: translateZ(0);
  transform-origin: center;
  backface-visibility: hidden;
}

.cs-industry-card div,
.cs-product-card div,
.cs-qc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
  padding: 0 1rem 1rem;
}

.cs-product-card div {
  margin-top: auto;
  padding-top: .75rem;
}

.cs-service-card {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1rem 0;
}

.cs-service-card div:last-child {
  margin-top: auto;
  padding: 0 0 1rem;
}

.cs-service-card h3 {
  margin-bottom: .45rem;
  font-size: 28px;
  line-height: 1.22;
}

.cs-service-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.58;
}

.cs-service-card span,
.cs-industry-card span,
.cs-product-card span,
.cs-qc-tags span {
  padding: .32rem .7rem;
  border-radius: 999px;
  background: rgba(244, 239, 228, .9);
  color: var(--cs-green);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
}

.cs-capability-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(1.25rem, 2.4vw, 1.8rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(251, 248, 241, .96)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 35, 24, .055);
}

.cs-capability-benefits article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  padding: clamp(1.15rem, 2.2vw, 1.55rem) clamp(1.25rem, 2.7vw, 2.1rem);
}

.cs-capability-benefits article + article {
  border-left: 1px solid rgba(196, 154, 60, .22);
}

.cs-capability-benefit-icon {
  width: 60px;
  height: 60px;
  padding: 13px;
  border: 1px solid rgba(196, 154, 60, .24);
  border-radius: 50%;
  background: rgba(196, 154, 60, .06);
  color: var(--cs-gold);
}

.cs-capability-benefit-icon * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-capability-benefits h3 {
  margin: 0 0 .25rem;
  color: var(--cs-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.cs-capability-benefits p {
  color: var(--cs-muted);
  font-size: 16px;
  line-height: 1.5;
}

.cs-split {
  background: linear-gradient(180deg, var(--cs-cream), #fff);
}

.cs-split__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.cs-split__grid--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.cs-split__media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 35, 24, .13);
}

.cs-split__media img {
  object-fit: contain;
}

.cs-check-list {
  display: grid;
  gap: .8rem;
  margin: 1.4rem 0;
}

.cs-check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--cs-muted);
  font-size: 16px;
  line-height: 1.6;
}

.cs-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cs-gold);
  box-shadow: 0 0 0 4px rgba(196, 154, 60, .12);
}

.cs-mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(196, 154, 60, .3);
  border-radius: 8px;
  background: rgba(196, 154, 60, .08);
}

.cs-mini-cta span {
  color: var(--cs-ink);
  font-weight: 800;
  font-size: 14px;
}

.cs-mini-cta .btn {
  flex-shrink: 0;
  text-align: center;
  white-space: normal;
  padding: .72rem 1.5rem;
  font-size: 14px;
  line-height: 1.35;
}

.cs-shipping {
  background: linear-gradient(180deg, var(--cs-cream), #fff);
}

.cs-shipping__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.cs-shipping__copy h2 {
  max-width: 760px;
  margin: .85rem 0 1.05rem;
  color: var(--cs-ink);
  font-size: clamp(42px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.cs-shipping__copy > p {
  max-width: 720px;
  color: var(--cs-muted);
  font-size: 16px;
  line-height: 1.75;
}

.cs-shipping-features {
  display: grid;
  gap: .95rem;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.cs-shipping-feature {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(15, 35, 24, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 42px rgba(15, 35, 24, .07);
}

.cs-shipping-feature__icon,
.cs-shipping-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-shipping-feature__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(196, 154, 60, .28);
  border-radius: 50%;
  background: rgba(196, 154, 60, .08);
  color: var(--cs-gold);
}

.cs-shipping-feature__icon svg {
  width: 28px;
  height: 28px;
}

.cs-shipping-feature__icon svg *,
.cs-shipping-cta__icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-shipping-feature h3 {
  margin: 0 0 .35rem;
  color: var(--cs-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.cs-shipping-feature p {
  color: var(--cs-muted);
  font-size: 14px;
  line-height: 1.62;
}

.cs-shipping__visual {
  display: grid;
  gap: 1rem;
}

.cs-shipping-main,
.cs-shipping-gallery figure {
  overflow: hidden;
  border: 1px solid rgba(15, 35, 24, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 35, 24, .09);
}

.cs-shipping-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  color: transparent;
  font-size: 0;
}

.cs-shipping-banner {
  overflow: hidden;
  height: 280px;
  margin-top: 1.25rem;
  border: 1px solid rgba(15, 35, 24, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 35, 24, .09);
}

.cs-shipping-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-shipping-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.cs-shipping-gallery figure {
  position: relative;
  min-height: 0;
}

.cs-shipping-gallery img {
  aspect-ratio: 1.25 / .86;
  object-fit: cover;
}

.cs-shipping-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .65rem;
  background: rgba(15, 35, 24, .94);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.cs-shipping-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.35rem;
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(196, 154, 60, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 56px rgba(15, 35, 24, .08);
}

.cs-shipping-cta__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--cs-ink);
  color: var(--cs-gold-soft);
  box-shadow: 0 18px 34px rgba(15, 35, 24, .16);
}

.cs-shipping-cta__icon svg {
  width: 40px;
  height: 40px;
}

.cs-shipping-cta h3 {
  margin: 0 0 .35rem;
  color: var(--cs-ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.cs-shipping-cta p {
  max-width: 760px;
  color: var(--cs-muted);
  font-size: 14px;
  line-height: 1.65;
}

.cs-shipping-cta__button {
  min-height: 54px;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  white-space: normal;
  text-align: center;
}

.cs-shipping-cta__button svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Materials (corrugated board) ── */
.cs-materials {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .64) 0%, rgba(255, 255, 255, .16) 42%, transparent 100%),
    var(--cs-cream);
}

.cs-materials .cs-section-head {
  text-align: center;
}

.cs-materials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(.95rem, 1.8vw, 1.3rem);
  align-items: stretch;
}

.cs-materials-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 35, 24, .1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 35, 24, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cs-materials-card > img {
  width: 100%;
  height: clamp(160px, 12.5vw, 188px);
  object-fit: cover;
  background: #f2eee7;
  flex: 0 0 auto;
}

.cs-materials-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.2rem clamp(1rem, 1.4vw, 1.35rem) 1.25rem;
}

.cs-materials-card h3 {
  margin: 0;
  color: var(--cs-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.cs-materials-card strong {
  display: block;
  margin: .55rem 0 0;
  color: var(--cs-green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.cs-materials-card p {
  margin: .55rem 0 1.1rem;
  color: var(--cs-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.cs-materials-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
}

.cs-materials-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(26, 58, 46, .16);
  border-radius: 999px;
  padding: .34rem .68rem;
  background: rgba(251, 248, 243, .76);
  color: var(--cs-green);
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
}

.cs-materials-cta {
  margin-top: 2.8rem;
  padding: 1.8rem 2.2rem;
  border: 1px solid rgba(196, 154, 60, .2);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(196, 154, 60, .06), rgba(15, 35, 24, .02));
  text-align: center;
}

.cs-materials-cta p {
  margin: 0 0 .3rem;
  font-size: 16px;
  font-weight: 700;
  color: var(--cs-ink);
}

.cs-materials-cta span {
  display: block;
  margin-bottom: 1.15rem;
  font-size: 16px;
  color: var(--cs-muted);
  line-height: 1.5;
}

.cs-materials-cta .btn {
  display: inline-flex;
}

/* ── Printing & Finishing ── */
.cs-printing {
  --pf-bg: #fbf8f1;
  --pf-card: #fffdf8;
  --pf-primary: var(--color-green-950);
  --pf-text: #263b34;
  --pf-muted: #667267;
  --pf-gold: #b8862d;
  --pf-border: rgba(15, 35, 24, .1);
  --pf-border-strong: rgba(15, 35, 24, .14);
  --pf-shadow: 0 22px 58px rgba(15, 35, 24, .08);
  background:
    radial-gradient(circle at 50% 0, rgba(196, 154, 60, .1), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, var(--pf-bg) 64%, #f7f2e7 100%);
  padding: clamp(5rem, 7vw, 6.5rem) 0;
}

.printing-finishing-head {
  max-width: 980px;
  margin-bottom: clamp(2.4rem, 4vw, 3.4rem);
}

.printing-finishing-eyebrow {
  margin-bottom: .85rem;
  color: var(--pf-gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .36em;
}

.printing-finishing-head h2 {
  margin: 0;
  color: var(--pf-primary);
  font-size: 3rem;
  white-space: normal !important;
  text-wrap: balance;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.printing-finishing-head .section-intro {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--pf-muted);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.printing-finishing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  align-items: stretch;
}

.printing-options-card,
.surface-finishing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--pf-border);
  border-radius: 28px;
  padding: clamp(2.5rem, 3.5vw, 3.5rem);
  background:
    radial-gradient(circle at 96% 0, rgba(196, 154, 60, .08), transparent 30%),
    rgba(255, 253, 248, .9);
  box-shadow: var(--pf-shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.printing-card-rule {
  width: 44px;
  height: 2px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--pf-gold), rgba(184, 134, 45, 0));
}

.printing-options-card h3,
.surface-finishing-card h3 {
  margin: 0;
  color: var(--pf-primary);
  font-size: clamp(1.6rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
}

.printing-process-list {
  display: grid;
  margin: 1.55rem 0 0;
}

.printing-option-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  gap: 1rem;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid rgba(15, 35, 24, .09);
  border-radius: 12px;
  padding: .72rem .45rem .72rem 0;
  color: var(--pf-primary);
  transition: transform .28s ease, background-color .28s ease;
}

.printing-option-item:last-child {
  border-bottom-color: transparent;
}

.printing-process-list__icon,
.printing-process-list__arrow {
  color: var(--pf-gold);
  transition: color .28s ease, transform .28s ease;
}

.printing-process-list__icon {
  display: grid;
  place-items: center;
}

.printing-process-list svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.printing-option-copy { display: block; min-width: 0; }

.printing-option-copy h4 {
  margin: 0 0 .2rem;
  color: var(--pf-primary);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.25;
}

.printing-option-copy p {
  margin: 0;
  color: var(--pf-text);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.45;
}

.printing-process-list__arrow {
  justify-self: end;
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.printing-finishing-media {
  overflow: hidden;
  height: clamp(238px, 20vw, 306px);
  margin-top: auto;
  border: 1px solid rgba(15, 35, 24, .08);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(246, 239, 224, .78)),
    #efe7d8;
}

.printing-finishing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: transparent;
  font-size: 0;
  transition: transform .34s ease, filter .34s ease;
}

.printing-finishing-media--printed img { object-position: 50% 54%; }
.printing-finishing-media--finish img { object-position: 50% 50%; }

.finish-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem 1rem;
  margin: 1.8rem 0 2rem;
}

.finish-option-item {
  display: grid;
  justify-items: center;
  gap: .65rem;
  min-width: 0;
  color: var(--pf-primary);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .28s ease;
}

.finish-swatch {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(82px, 6.4vw, 98px);
  aspect-ratio: 1;
  border: 1px solid rgba(15, 35, 24, .08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .92), transparent 28%),
    #fffefa;
  box-shadow: 0 12px 32px rgba(15, 35, 24, .1);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.finish-swatch::after {
  content: "";
  width: clamp(58px, 4.3vw, 66px);
  aspect-ratio: 1;
  border: 1px solid rgba(15, 35, 24, .1);
  border-radius: 50%;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, .25);
}

.finish-swatch svg {
  position: absolute;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #315b78;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  z-index: 1;
}

.finish-swatch--matte::after {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .18), transparent 23%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 5px),
    linear-gradient(145deg, #65786c, #2f4438 58%, #15281f);
}

.finish-swatch--gloss::after {
  background:
    linear-gradient(122deg, rgba(255, 255, 255, .8) 0 14%, rgba(255, 255, 255, .08) 15% 30%, transparent 31%),
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, .4), transparent 20%),
    linear-gradient(145deg, #1f3a2b, #06130d 58%, #0b2f1c);
}

.finish-swatch--water::after {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .72), transparent 26%),
    linear-gradient(145deg, #f7f5ee, #ddd9cd);
}

.finish-swatch--spot-uv::after {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .36), transparent 20%),
    radial-gradient(circle at 72% 72%, rgba(255, 255, 255, .12), transparent 22%),
    linear-gradient(135deg, #262827 0%, #050706 56%, #313634 100%);
}

.finish-swatch--spot-uv::before {
  content: "UV";
  position: absolute;
  color: rgba(255, 255, 255, .78);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: 0 2px 7px rgba(0, 0, 0, .45);
  z-index: 1;
}

.finish-swatch--foil::after {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .7), transparent 26%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #f4dd92 0%, #bd8528 50%, #80601d 100%);
}

.finish-swatch--emboss::after {
  background:
    radial-gradient(circle at 46% 42%, rgba(255, 255, 255, .78), transparent 35%),
    repeating-radial-gradient(circle at 50% 50%, rgba(15, 35, 24, .08) 0 2px, transparent 2px 8px),
    linear-gradient(145deg, #f5f2eb, #dad5c9);
}

.finish-swatch--emboss::before {
  content: "";
  position: absolute;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .78);
  box-shadow: 0 3px 7px rgba(15, 35, 24, .12), inset 0 2px 4px rgba(15, 35, 24, .08);
  z-index: 1;
}

.finish-swatch--deboss::after {
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, .25), transparent 24%),
    linear-gradient(145deg, #d0a36a, #aa7130 62%, #7c4b20);
}

.finish-swatch--deboss svg {
  stroke: rgba(74, 42, 16, .55);
}

.finish-name { max-width: 112px; }

.finish-desc {
  display: block;
  max-width: 100%;
  margin-top: .35rem;
  color: var(--pf-muted);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.5;
}

.finish-swatch--soft-touch::after {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .7), transparent 26%),
    linear-gradient(145deg, #d5cfc2, #a89c8a 58%, #6e6050);
}

.printing-advice-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-width: 0;
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
  border: 1px solid rgba(15, 35, 24, .12);
  border-radius: 18px;
  padding: 1.1rem 4.25rem 1.1rem 1.2rem;
  background:
    radial-gradient(circle at 100% 0, rgba(196, 154, 60, .11), transparent 40%),
    rgba(255, 253, 248, .76);
  box-shadow: 0 14px 38px rgba(15, 35, 24, .08);
}

.printing-advice-cta__icon {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pf-primary);
  color: #fffdf8;
  flex: 0 0 auto;
}

.printing-advice-cta__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.printing-advice-cta__copy p {
  margin: 0 0 .24rem;
  color: var(--pf-primary);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.28;
}

.printing-advice-cta__copy span {
  color: var(--pf-text);
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.45;
}

.printing-advice-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 42px;
  border-radius: 999px;
  padding: .65rem 1rem;
  background: var(--pf-primary);
  color: #fffdf8;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background-color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.printing-advice-cta__button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.printing-applications-inline {
  margin-top: clamp(1.7rem, 3vw, 2.3rem);
}

.printing-applications-label {
  display: block;
  margin: 0 0 .95rem;
  color: var(--pf-gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1;
}

.printing-application-list {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem;
}

.printing-application-list span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 38px;
  border: 1px solid rgba(15, 35, 24, .16);
  border-radius: 999px;
  padding: .42rem .9rem;
  background: rgba(255, 255, 255, .58);
  color: var(--pf-primary);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.printing-application-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #2e5a42;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  flex: 0 0 auto;
}

/* ── Old two-column (deprecated) ── */

.cs-sampling-service {
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 154, 60, .09), transparent 34%),
    linear-gradient(180deg, var(--cs-cream-deep), var(--cs-cream) 52%, var(--cs-cream-deep));
}

.cs-sampling-service .cs-section-head {
  max-width: 1080px;
}

.cs-sampling-service .cs-section-head h2 {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.35rem, 4.8vw, 4.05rem);
  line-height: 1.04;
}

.cs-sampling-service .cs-section-head p {
  max-width: 900px;
  font-size: 1.08rem;
}

.cs-sampling-layout {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.4vw, 1.8rem);
  align-items: stretch;
}

.cs-sampling-media {
  overflow: hidden;
  border: 1px solid rgba(15, 35, 24, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(15, 35, 24, .11);
}

.cs-sampling-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.cs-sampling-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.25rem);
}

.cs-sample-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.2rem, 2vw, 1.45rem);
  border-color: rgba(15, 35, 24, .1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(251, 248, 241, .9)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 35, 24, .07);
}

.cs-sample-card span {
  width: 46px;
  height: 46px;
  margin: 0 0 1rem;
  border-radius: 50%;
  background: var(--cs-ink);
  color: var(--cs-gold-soft);
  box-shadow: 0 14px 28px rgba(15, 35, 24, .16);
  font-size: .9rem;
}

.cs-sample-card h3 {
  margin-bottom: .65rem;
  font-size: clamp(1.15rem, 1.65vw, 1.35rem);
  line-height: 1.2;
}

.cs-sample-card p {
  font-size: .98rem;
  line-height: 1.62;
}

.cs-sample-card div {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1rem;
}

.cs-sample-card b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .32rem .7rem;
  border-radius: 999px;
  background: rgba(244, 239, 228, .92);
  color: var(--cs-green);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.15;
}

.cs-sampling-cta {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(1rem, 2.2vw, 1.75rem);
  align-items: center;
  margin-top: clamp(1.15rem, 2vw, 1.45rem);
  padding: clamp(1.15rem, 2.3vw, 1.65rem);
  border: 1px solid rgba(15, 35, 24, .11);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(251, 248, 241, .88)),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 35, 24, .07);
}

.cs-sampling-cta__icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(196, 154, 60, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  color: var(--cs-gold);
  box-shadow: 0 14px 32px rgba(15, 35, 24, .08);
}

.cs-sampling-cta__icon svg {
  width: 40px;
  height: 40px;
}

.cs-sampling-cta__icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-sampling-cta__copy {
  min-width: 0;
}

.cs-sampling-cta h3 {
  margin: 0 0 .35rem;
  color: var(--cs-ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
}

.cs-sampling-cta p {
  max-width: 720px;
  color: var(--cs-muted);
  font-size: .98rem;
  line-height: 1.6;
}

.cs-sampling-cta__button {
  min-height: 56px;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  white-space: normal;
  text-align: center;
}

.cs-quality {
  background:
    radial-gradient(circle at 50% 0, rgba(196, 154, 60, .1), transparent 34%),
    linear-gradient(180deg, #fffaf1 0%, #fbf7ee 58%, #f7f1e6 100%);
}

.cs-quality .cs-label {
  color: var(--cs-gold);
}

.cs-quality h2,
.cs-quality h3 {
  color: var(--cs-ink);
}

.cs-quality p {
  color: var(--cs-muted);
}

.cs-quality__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4.6vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.cs-quality__copy {
  min-width: 0;
}

.cs-quality__copy h2 {
  max-width: 740px;
  margin: .78rem 0 1.15rem;
  font-size: clamp(2.35rem, 4.25vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.cs-quality__copy p {
  max-width: 720px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.72;
}

.cs-quality__image {
  overflow: hidden;
  border: 1px solid rgba(15, 35, 24, .08);
  border-radius: clamp(18px, 1.6vw, 24px);
  background: #fff;
  box-shadow: 0 22px 58px rgba(15, 35, 24, .12);
}

.cs-quality__image img {
  display: block;
  height: clamp(340px, 29vw, 475px);
  object-fit: cover;
}

.cs-qc-tags {
  gap: .58rem;
  margin-top: clamp(1.35rem, 2vw, 1.8rem);
}

.cs-qc-tags span {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  min-height: 36px;
  border: 1px solid rgba(196, 154, 60, .22);
  padding: .45rem .8rem;
  background: rgba(255, 253, 248, .82);
  color: var(--cs-ink);
  box-shadow: 0 8px 22px rgba(15, 35, 24, .04);
}

.cs-qc-tags svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--cs-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.cs-qc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.5vw, 1.4rem);
}

.cs-qc-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, .8fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(15, 35, 24, .08);
  border-radius: 18px;
  padding: clamp(.9rem, 1.15vw, 1.08rem);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(15, 35, 24, .08);
}

.cs-qc-card > img {
  height: 100%;
  min-height: 168px;
  border-radius: 12px;
  object-fit: cover;
  background: #f2eee7;
}

.cs-qc-card__body {
  position: relative;
  min-width: 0;
  padding: .2rem 2.4rem 2.15rem 0;
}

.cs-qc-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: .72rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--cs-ink);
  color: #FFFFFF;
  box-shadow: 0 8px 18px rgba(15, 35, 24, .16);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

.cs-qc-card h3 {
  margin: 0 0 .48rem;
  color: var(--cs-ink);
  font-size: clamp(1.15rem, 1.3vw, 1.35rem);
  line-height: 1.22;
}

.cs-qc-card p {
  margin: 0;
  color: #4F625C;
  font-size: .96rem;
  line-height: 1.62;
}

.cs-qc-card__icon {
  position: absolute;
  right: .2rem;
  bottom: .05rem;
  color: var(--cs-gold);
}

.cs-qc-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.cs-qc-trust {
  display: grid;
  grid-template-columns: auto minmax(280px, 1.35fr) minmax(420px, 1.55fr) auto;
  gap: clamp(1rem, 2vw, 1.55rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid rgba(196, 154, 60, .2);
  border-radius: 16px;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 250, 239, .82)),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 35, 24, .07);
}

.cs-qc-trust__main-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--cs-ink);
  color: #FFFFFF;
  box-shadow: 0 16px 32px rgba(15, 35, 24, .16);
}

.cs-qc-trust__main-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.cs-qc-trust__copy h3 {
  margin: 0 0 .45rem;
  color: var(--cs-ink);
  font-size: clamp(1.1rem, 1.3vw, 1.35rem);
  line-height: 1.25;
}

.cs-qc-trust__copy p {
  margin: 0;
  max-width: 620px;
  color: #4F625C;
  font-size: .95rem;
  line-height: 1.58;
}

.cs-qc-trust__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border-left: 1px solid rgba(15, 35, 24, .1);
  border-right: 1px solid rgba(15, 35, 24, .1);
}

.cs-qc-trust__items article {
  display: grid;
  justify-items: center;
  gap: .3rem;
  min-width: 0;
  padding: .1rem clamp(.75rem, 1.25vw, 1.1rem);
  text-align: center;
}

.cs-qc-trust__items article + article {
  border-left: 1px solid rgba(15, 35, 24, .1);
}

.cs-qc-trust__items svg {
  width: 36px;
  height: 36px;
  margin-bottom: .2rem;
  fill: none;
  stroke: var(--cs-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.cs-qc-trust__items strong {
  color: var(--cs-ink);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.25;
}

.cs-qc-trust__items span {
  color: #4F625C;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

.cs-qc-trust__button {
  min-height: 54px;
  justify-content: center;
  border-radius: 8px;
  padding-inline: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 800;
  white-space: nowrap;
}

.cs-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cs-product-card img {
  aspect-ratio: 1.25 / .78;
  object-fit: cover;
}

.cs-product-card h3,
.cs-product-card p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.cs-product-card h3 {
  margin-top: 1rem;
}

.cs-product-card p {
  padding-bottom: 0;
}

@media (hover: hover) {
  .cs-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
  }
}

.cs-industry-grid,
.cs-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.cs-industry-card,
.cs-why-card {
  padding: 0;
}

.cs-why-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cs-why-card > img {
  width: calc(100% + 2px);
  height: 220px;
  margin: -1px -1px 0;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}

.cs-why-card h3 {
  margin: 1rem 1.25rem .45rem;
  font-size: 22px;
  line-height: 1.18;
}

.cs-why-card p {
  margin: 0;
  padding: 0 1.25rem 1.35rem;
  font-size: 15px;
  line-height: 1.62;
}

.cs-industry-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cs-industry-card div {
  margin-top: auto;
  padding: .35rem 0 1.45rem 0;
}

.cs-industry-card > img {
  width: calc(100% + 2.9rem);
  height: 240px;
  margin: 0 -1.45rem 1rem;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}

.cs-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.cs-faq-main > p {
  margin-bottom: 1.6rem;
}

.cs-faq-list {
  display: grid;
  gap: .75rem;
}

.cs-faq-item {
  border: 1px solid var(--cs-line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.cs-faq-item button {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--cs-ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
}

.cs-faq-item b {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(15, 35, 24, .18);
}

.cs-faq-item b::before,
.cs-faq-item b::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  background: var(--cs-green);
  transform: translate(-50%, -50%);
}

.cs-faq-item b::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .2s ease;
}

.cs-faq-item.is-open b::after {
  opacity: 0;
}

.cs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.cs-faq-answer p {
  padding: 0 1.2rem 1.1rem;
  color: var(--cs-muted);
  font-size: 16px;
  line-height: 1.65;
}

.cs-consult-card {
  position: sticky;
  top: calc(var(--site-header-height, 66px) + 76px);
  padding: 1.5rem;
  background: var(--cs-ink);
}

.cs-consult-card h3 {
  color: #FFFFFF;
}

.cs-consult-card p,
.cs-consult-card li {
  color: rgba(255, 255, 255, .68);
}

.cs-consult-card ul {
  display: grid;
  gap: .5rem;
  margin: 1.1rem 0 1.35rem;
}

.cs-consult-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 16px;
}

.cs-consult-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cs-gold-soft);
}

.cs-inquiry {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--cs-dark);
}

.gift-inquiry-bg {
  background-image: url('/assets/images/custom-service/final-cta-bg.webp');
  background-size: cover;
  background-position: center;
}

#inquiry .inquiry-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2rem 32px;
}

#inquiry .inquiry-head {
  margin-bottom: 1.2rem;
}

#inquiry .inquiry-head .section-intro {
  max-width: 860px;
  font-size: .95rem;
  line-height: 1.6;
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-2 {
  transition-delay: .08s;
}

@media (max-width: 1180px) {
  .cs-split__grid,
  .cs-split__grid--reverse {
    grid-template-columns: 1fr;
  }

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

  .cs-workflow,
  .cs-sampling-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cs-materials-card > img {
    height: 178px;
  }

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

  .cs-qc-trust {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cs-qc-trust__items,
  .cs-qc-trust__button {
    grid-column: 1 / -1;
  }

  .cs-qc-trust__button {
    justify-self: start;
  }

  .cs-workflow-benefits {
    grid-template-columns: 1fr;
  }

  .cs-workflow-benefits article + article {
    border-left: 0;
    border-top: 1px solid rgba(196, 154, 60, .24);
  }

  .printing-options-card,
  .surface-finishing-card {
    padding: 2.35rem;
  }
}

@media (max-width: 980px) {
  .printing-finishing-grid { gap: 1.35rem; }

  .printing-options-card,
  .surface-finishing-card { padding: 2rem; }

  .finish-option-grid { gap: 1.1rem .7rem; }

  .finish-swatch { width: 78px; }
}

@media (max-width: 820px) {
  .printing-finishing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .cs-printing {
    padding: 4.35rem 0;
  }

  .printing-finishing-head h2 {
    white-space: normal;
    font-size: clamp(2.125rem, 9vw, 2.625rem);
  }

  .printing-finishing-head .section-intro {
    font-size: 1rem;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .printing-options-card,
  .surface-finishing-card {
    border-radius: 24px;
    padding: 1.5rem;
  }

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

  .printing-finishing-media { height: 220px; }

  .printing-advice-cta {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 1.1rem 1.2rem;
  }

  .printing-advice-cta__button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .printing-finishing-eyebrow { letter-spacing: .24em; }

  .printing-option-item {
    grid-template-columns: 30px minmax(0, 1fr) 18px;
    gap: .7rem;
    min-height: 78px;
    padding: .68rem .3rem .68rem 0;
  }

  .printing-process-list svg { width: 23px; height: 23px; }

  .printing-option-copy h4 { font-size: .92rem; }
  .printing-option-copy p { font-size: .82rem; }

  .finish-swatch { width: 78px; }
  .finish-name { max-width: 120px; font-size: .84rem; }

  .printing-finishing-media { height: 190px; }

  .printing-application-list span { min-height: 36px; font-size: .75rem; }
}

@media (max-width: 900px) {
  .cs-hero {
    height: auto;
    min-height: 560px;
    padding: 4rem 0 3.25rem;
  }

  .cs-hero::after {
    background:
      linear-gradient(96deg, rgba(7, 23, 15, .92) 0%, rgba(7, 23, 15, .78) 58%, rgba(7, 23, 15, .48) 100%),
      linear-gradient(180deg, rgba(7, 23, 15, .06), rgba(7, 23, 15, .52));
  }

  .cs-hero__grid {
    height: auto;
  }

  .cs-hero__copy,
  .cs-hero h1,
  .cs-hero p,
  .cs-hero__actions,
  .cs-hero__highlights {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .cs-quality__hero,
  .cs-industry-grid,
  .cs-why-grid,
  .cs-faq-layout,
  .cs-capability-benefits,
  .cs-materials-grid,
  .cs-sampling-layout,
  .cs-sampling-cta,
  .cs-shipping__layout,
  .cs-qc-trust {
    grid-template-columns: 1fr;
  }

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

  .cs-shipping-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cs-shipping-cta__button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .cs-quality__hero {
    gap: 1.8rem;
  }

  .cs-qc-trust__items {
    border: 0;
  }

  .cs-qc-trust__button {
    width: 100%;
  }

  .cs-sampling-media img {
    min-height: 360px;
  }

  .cs-sampling-cta__button {
    width: 100%;
  }

  .cs-capability-benefits article + article {
    border-left: 0;
    border-top: 1px solid rgba(196, 154, 60, .22);
  }

  .cs-consult-card {
    position: static;
  }
}

@media (max-width: 1024px) {
  .cs-anchor {
    display: none;
  }
}

@media (max-width: 640px) {
  .custom-service-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .custom-service-page .cs-hero .container {
    width: 100vw;
    max-width: 100vw;
  }

  .cs-hero {
    min-height: auto;
    padding: 4.5rem 0 2.5rem;
  }

  .cs-section {
    padding: 3.6rem 0;
  }

  .cs-hero h1 {
    max-width: calc(100vw - 36px);
    font-size: 26px;
    line-height: 1.12;
    margin: .5rem 0 .7rem;
  }

  .cs-hero p {
    max-width: calc(100vw - 36px);
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .cs-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
    margin-top: 1rem;
  }

  .cs-hero__actions .btn {
    width: 100%;
    max-width: none;
    min-height: 44px;
    padding: .6rem 1rem;
    font-size: .85rem;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .cs-hero__highlights {
    justify-content: flex-start;
    gap: .4rem;
    margin-top: .9rem;
  }

  .cs-service-grid,
  .cs-product-grid,
  .cs-workflow,
  .cs-sampling-cards {
    grid-template-columns: 1fr;
  }

  .cs-step {
    min-height: 0;
  }

  .cs-service-card {
    min-height: 0;
  }

  .cs-sample-card {
    min-height: 0;
  }

  .cs-sampling-service .cs-section-head h2 {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
  }

  .cs-sampling-media img {
    min-height: 280px;
  }

  .cs-quality__copy h2 {
    font-size: clamp(2rem, 8.5vw, 3.05rem);
  }

  .cs-quality__image img {
    height: auto;
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .cs-qc-grid {
    grid-template-columns: 1fr;
  }

  .cs-qc-card {
    grid-template-columns: 1fr;
    gap: .95rem;
    min-height: 0;
  }

  .cs-qc-card > img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .cs-qc-card__body {
    padding-right: 2.3rem;
  }

  .cs-qc-trust {
    justify-items: stretch;
    text-align: left;
  }

  .cs-qc-trust__main-icon {
    width: 66px;
    height: 66px;
  }

  .cs-qc-trust__items {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .cs-qc-trust__items article {
    grid-template-columns: 42px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    padding: .9rem;
    border: 1px solid rgba(15, 35, 24, .08);
    border-radius: 12px;
    background: rgba(251, 248, 243, .72);
    text-align: left;
  }

  .cs-qc-trust__items article + article {
    border-left: 1px solid rgba(15, 35, 24, .08);
  }

  .cs-qc-trust__items svg {
    grid-row: span 2;
    margin: 0;
  }

  .cs-sampling-cta {
    gap: .9rem;
    padding: 1.15rem;
  }

  .cs-sampling-cta__icon {
    width: 58px;
    height: 58px;
  }

  .cs-sampling-cta__icon svg {
    width: 34px;
    height: 34px;
  }

  .cs-materials-card {
    min-height: 0;
    border-radius: 6px;
  }

  .cs-materials-card > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .cs-materials-card__body {
    padding: 1.15rem;
  }

  .cs-materials-cta {
    padding: 1.4rem;
  }

  .cs-step__number,
  .cs-workflow-benefit-icon {
    width: 52px;
    height: 52px;
  }

  .cs-capability-benefits article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: .85rem;
    padding: 1.1rem;
  }

  .cs-capability-benefit-icon {
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .cs-workflow-benefits article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: .85rem;
    padding: 1.15rem;
  }

  .cs-hero__highlights span {
    padding: .3rem .7rem;
    font-size: .68rem;
  }

  .cs-mini-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .cs-mini-cta .btn {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .cs-shipping__copy h2 {
    font-size: clamp(30px, 8.5vw, 36px);
  }

  .cs-shipping-feature {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: .85rem;
    padding: .95rem;
  }

  .cs-shipping-feature__icon {
    width: 48px;
    height: 48px;
  }

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

  .cs-shipping-gallery figcaption {
    min-height: 40px;
    font-size: 12px;
  }

  .cs-shipping-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1rem;
  }

  .cs-shipping-cta__button {
    grid-column: auto;
  }

  .cs-industry-card > img,
  .cs-why-card > img {
    height: 180px;
  }

  .cs-inquiry {
    height: auto;
    min-height: 360px;
  }

  #inquiry .inquiry-container {
    padding: 1.5rem 18px;
  }

  .cs-shipping-main img {
    height: 240px;
  }

  .cs-shipping-banner {
    height: 200px;
  }
}

#industry-solutions {
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 154, 60, .08), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, var(--cs-cream) 54%, #fffdf8 100%);
}

#industry-solutions .cs-section-head {
  max-width: 760px;
  margin-bottom: 2.65rem;
}

#industry-solutions .cs-section-head h2 {
  max-width: 700px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 38px;
  line-height: 1.08;
}

#industry-solutions .cs-section-head p {
  max-width: 680px;
  font-size: 15px;
  line-height: 1.65;
}

#industry-solutions .cs-industry-grid {
  gap: 1.25rem;
  align-items: stretch;
}

#industry-solutions .cs-industry-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 253, 248, .94)),
    #fff;
  box-shadow: 0 16px 38px rgba(15, 35, 24, .07);
}

#industry-solutions .cs-industry-card > img {
  width: 100%;
  height: 220px;
  margin: 0;
  border-radius: 22px 22px 0 0;
  object-fit: cover;
}

#industry-solutions .cs-industry-card h3 {
  margin: 0;
  padding: 1.15rem 1.25rem .45rem;
  font-size: 22px;
  line-height: 1.18;
}

#industry-solutions .cs-industry-card p {
  margin: 0;
  padding: 0 1.25rem 1.35rem;
  font-size: 15px;
  line-height: 1.62;
}

#industry-solutions .cs-industry-card div {
  margin-top: auto;
  padding: 0 1.25rem 1.35rem;
}

@media (max-width: 1080px) {
  #industry-solutions .cs-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #industry-solutions .cs-section-head {
    margin-bottom: 1.75rem;
    text-align: left;
  }

  #industry-solutions .cs-section-head h2 {
    font-size: 30px;
  }

  #industry-solutions .cs-section-head p {
    font-size: 14px;
  }

  #industry-solutions .cs-industry-grid {
    grid-template-columns: 1fr;
    gap: .95rem;
  }

  #industry-solutions .cs-industry-card > img {
    height: 178px;
  }

  #industry-solutions .cs-industry-card h3 {
    padding: 1rem 1rem .4rem;
    font-size: 20px;
  }

  #industry-solutions .cs-industry-card div {
    padding: 0 1rem 1.25rem;
  }

  #industry-solutions .cs-industry-card p {
    padding: 0 1rem 1.15rem;
    font-size: 14px;
  }

  .cs-why-card h3 {
    margin: .85rem 1rem .35rem;
    font-size: 20px;
  }

  .cs-why-card p {
    padding: 0 1rem 1.15rem;
    font-size: 14px;
  }
}

/* Custom Service motion layer: subtle, B2B-friendly feedback. */
.cs-hero__highlights span,
.cs-anchor a,
.cs-step,
.cs-service-card,
.cs-sample-card,
.cs-product-card,
.cs-industry-card,
.cs-why-card,
.cs-split__media,
.cs-sampling-media,
.cs-sampling-cta,
.cs-mini-cta,
.cs-qc-card,
.cs-qc-trust,
.cs-faq-item,
.cs-consult-card,
.cs-workflow-benefits article,
.cs-capability-benefits article,
.cs-materials-card,
.cs-shipping-feature,
.cs-shipping-main,
.cs-shipping-gallery figure,
.cs-shipping-cta {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease;
}

.cs-split__media img,
.cs-sampling-media img,
.cs-product-card img,
.cs-quality__image img,
.cs-qc-card > img,
.cs-materials-card > img,
.cs-industry-card > img,
.cs-why-card > img,
.cs-shipping-main img,
.cs-shipping-gallery img,
.cs-shipping-banner img {
  transition: transform .55s ease, filter .35s ease;
}

.cs-icon,
.cs-step__number,
.cs-workflow-benefit-icon,
.cs-capability-benefit-icon,
.cs-shipping-feature__icon,
.cs-shipping-cta__icon,
.cs-sample-card span,
.cs-faq-item b,
.cs-service-card span,
.cs-sample-card b,
.cs-industry-card span,
.cs-product-card span,
.cs-qc-tags span,
.cs-qc-number,
.cs-qc-card__icon,
.cs-qc-trust__main-icon,
.cs-materials-tags span {
  transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

@media (hover: hover) {
  .cs-split__media:hover img,
  .cs-sampling-media:hover img,
  .cs-product-card:hover img,
  .cs-quality__image:hover img,
  .cs-qc-card:hover > img,
  .cs-materials-card:hover img,
  .cs-industry-card:hover img,
  .cs-why-card:hover img,
  .cs-shipping-main:hover img,
  .cs-shipping-gallery figure:hover img,
  .cs-shipping-banner:hover img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.035);
  }

  .cs-hero__highlights span:hover,
  .cs-anchor a:hover {
    border-color: rgba(196, 154, 60, .34);
    background: rgba(196, 154, 60, .1);
    transform: translateY(-2px);
  }

  .cs-step:hover,
  .cs-service-card:hover,
  .cs-sample-card:hover,
  .cs-industry-card:hover,
  .cs-why-card:hover,
  .cs-shipping-feature:hover {
    border-color: rgba(196, 154, 60, .36);
    box-shadow: 0 28px 64px rgba(15, 35, 24, .15);
    transform: translateY(-5px);
  }

  .cs-shipping-feature:hover .cs-shipping-feature__icon {
    background: var(--cs-gold);
    color: var(--cs-dark);
    transform: scale(1.06) rotate(-2deg);
  }

  .cs-service-card:hover .cs-icon {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34), 0 14px 28px rgba(196, 154, 60, .28);
    transform: translateY(-2px) translateZ(0);
  }

  .cs-service-card:hover span,
  .cs-sample-card:hover b,
  .cs-industry-card:hover span,
  .cs-product-card:hover span,
  .cs-qc-tags span:hover,
  .cs-materials-tags span:hover {
    background: rgba(196, 154, 60, .16);
    color: var(--cs-ink);
    transform: translateY(-1px);
  }

  .cs-split__media:hover,
  .cs-sampling-media:hover,
  .cs-product-card:hover,
  .cs-shipping-main:hover,
  .cs-shipping-gallery figure:hover {
    border-color: rgba(196, 154, 60, .32);
    box-shadow: 0 28px 68px rgba(15, 35, 24, .15);
    transform: translateY(-4px);
  }

  .cs-materials-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 154, 60, .36);
    box-shadow: 0 22px 54px rgba(15, 35, 24, .1);
  }

  .printing-options-card:hover,
  .surface-finishing-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 134, 45, .22);
    box-shadow: 0 28px 66px rgba(15, 35, 24, .12);
  }

  .printing-options-card:hover .printing-finishing-media img,
  .surface-finishing-card:hover .printing-finishing-media img {
    transform: scale(1.025);
    filter: saturate(1.04) contrast(1.02);
  }

  .printing-option-item:hover {
    transform: translateX(3px);
    background: rgba(184, 134, 45, .06);
  }

  .printing-option-item:hover .printing-process-list__icon,
  .printing-option-item:hover .printing-process-list__arrow {
    color: #C49A3C;
  }

  .printing-option-item:hover .printing-process-list__arrow {
    transform: translateX(3px);
  }

  .finish-option-item:hover {
    transform: translateY(-4px);
  }

  .finish-option-item:hover .finish-swatch {
    border-color: rgba(184, 134, 45, .42);
    box-shadow: 0 18px 42px rgba(15, 35, 24, .15);
  }

  .printing-advice-cta__button:hover {
    background: #173323;
    box-shadow: 0 12px 28px rgba(15, 35, 24, .18);
    transform: translateY(-1px);
  }

  .cs-mini-cta:hover,
  .cs-sampling-cta:hover {
    border-color: rgba(196, 154, 60, .48);
    background: rgba(196, 154, 60, .12);
    transform: translateY(-2px);
  }

  .cs-qc-card:hover {
    border-color: rgba(196, 154, 60, .34);
    background: #fff;
    box-shadow: 0 26px 64px rgba(15, 35, 24, .13);
    transform: translateY(-5px);
  }


  .cs-qc-card:hover .cs-qc-card__icon {
    transform: translateY(-2px);
  }

  .cs-faq-item:hover {
    border-color: rgba(196, 154, 60, .32);
    box-shadow: 0 14px 34px rgba(15, 35, 24, .08);
  }

  .cs-faq-item button:hover b {
    border-color: rgba(196, 154, 60, .45);
    background: rgba(196, 154, 60, .1);
  }

  .cs-consult-card:hover {
    border-color: rgba(216, 180, 90, .28);
    box-shadow: 0 26px 64px rgba(15, 35, 24, .16);
    transform: translateY(-3px);
  }

  .cs-workflow-benefits article:hover {
    background: rgba(196, 154, 60, .08);
  }

  .cs-workflow-benefits article:hover .cs-workflow-benefit-icon {
    box-shadow: 0 16px 34px rgba(15, 35, 24, .18);
    transform: translateY(-2px);
  }

  .cs-capability-benefits article:hover {
    background: rgba(196, 154, 60, .07);
  }

  .cs-capability-benefits article:hover .cs-capability-benefit-icon {
    background: rgba(196, 154, 60, .13);
    transform: translateY(-2px);
  }

  .cs-shipping-cta:hover {
    border-color: rgba(196, 154, 60, .42);
    box-shadow: 0 28px 70px rgba(15, 35, 24, .12);
    transform: translateY(-3px);
  }
}

.cs-anchor a:focus-visible,
.cs-faq-item button:focus-visible,
.cs-product-card:focus-visible,
.cs-hero__actions .btn:focus-visible,
.cs-shipping-cta__button:focus-visible {
  outline: 3px solid rgba(196, 154, 60, .42);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .custom-service-page *,
  .custom-service-page *::before,
  .custom-service-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
