/* Stitch inner-page layouts — aligned to homepage-v3/stitch_global_premium_web_redesign */

:root {
  --stitch-primary-fixed: #dae2fd;
  --stitch-on-primary-fixed: #131b2e;
  --stitch-secondary-fixed: #d5e3fd;
  --stitch-surface-high: #e6e8ea;
  --stitch-section: clamp(64px, 10vw, 120px);
}

/* —— Products —— */
.stitch-products-hero {
  position: relative;
  min-height: min(calc(100dvh - var(--head-h)), 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid rgb(198 198 205 / 28%);
}
.stitch-products-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.stitch-products-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(247 249 251 / 98%) 0%,
    rgb(247 249 251 / 92%) 32%,
    rgb(247 249 251 / 62%) 58%,
    rgb(247 249 251 / 18%) 100%
  );
}
.stitch-products-hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(48px, 8vh, 88px);
}
.stitch-products-hero-copy {
  max-width: 36rem;
}
.stitch-products-hero-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-products-hero h1 {
  font-size: var(--text-display);
  line-height: 1.15;
  letter-spacing: var(--tracking-title, -0.03em);
  margin: 0 0 10px;
  max-width: 16ch;
  color: var(--ink);
}
.stitch-products-hero-lead {
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  color: var(--muted);
  max-width: 40ch;
  margin: 0 0 20px;
}
.stitch-products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stitch-products-signal {
  border-bottom: 1px solid rgb(198 198 205 / 28%);
  background: var(--surface);
  padding-block: clamp(28px, 4vw, 40px);
}
.stitch-products-signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.stitch-products-signal-list li {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(198 198 205 / 28%);
}
.stitch-products-signal-list li:last-child {
  border-bottom: 0;
}
.stitch-products-signal-list strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.stitch-products-signal-list span {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 36ch;
}
@media (min-width: 768px) {
  .stitch-products-signal-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .stitch-products-signal-list li {
    padding: 12px 32px;
    border-bottom: 0;
    border-right: 1px solid rgb(198 198 205 / 28%);
  }
  .stitch-products-signal-list li:first-child {
    padding-left: 4px;
  }
  .stitch-products-signal-list li:last-child {
    border-right: 0;
    padding-right: 4px;
  }
}

/* Shared inner-page signal strip */
.stitch-page-signal {
  border-bottom: 1px solid rgb(198 198 205 / 28%);
  background: var(--surface);
  padding-block: clamp(28px, 4vw, 40px);
}
.stitch-page-signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.stitch-page-signal-list li {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(198 198 205 / 28%);
}
.stitch-page-signal-list li:last-child {
  border-bottom: 0;
}
.stitch-page-signal-list strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.stitch-page-signal-list span {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38ch;
}
.stitch-page-signal-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (min-width: 768px) {
  .stitch-page-signal-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stitch-page-signal-list li {
    padding: 12px 32px;
    border-bottom: 0;
    border-right: 1px solid rgb(198 198 205 / 28%);
  }
  .stitch-page-signal-list li:first-child {
    padding-left: 4px;
  }
  .stitch-page-signal-list li:last-child {
    border-right: 0;
    padding-right: 4px;
  }
}

.stitch-catalog-section {
  padding-top: clamp(48px, 7vw, 72px);
  padding-bottom: var(--stitch-section);
  background: var(--bg);
}
.stitch-catalog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 28px;
  margin-bottom: 18px;
  padding-bottom: 0;
}
.stitch-catalog-title {
  margin: 0;
  font-size: var(--text-title);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.stitch-catalog-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}
.stitch-catalog-count {
  margin: 0;
  font-size: inherit;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stitch-catalog-note {
  margin: 0;
  max-width: none;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-align: left;
}
.stitch-catalog-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(32px, 4.5vw, 48px);
  padding: 10px;
  border-bottom: 0;
  border-radius: 5px;
  background: var(--surface-low);
}
.stitch-catalog-nav-item {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 48px;
  margin: 0;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.stitch-catalog-nav-item:hover {
  color: var(--ink);
  background: var(--surface);
  border-color: rgb(17 26 36 / 10%);
}
.stitch-catalog-nav-item.is-active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.stitch-catalog-nav-item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
/* Card + grid styles: css/catalog-cards.css (shared with homepage) */

/* —— Product detail —— */
.stitch-product-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--head-h);
  padding-block: 24px 0;
  font-size: 16px;
  color: var(--muted);
}
.stitch-product-crumb a:hover {
  color: var(--ink);
}
.stitch-product-hero {
  position: relative;
  padding: clamp(28px, 4vw, 48px) 0 clamp(56px, 8vw, 88px);
  background:
    radial-gradient(ellipse 70% 55% at 18% 42%, rgb(218 226 253 / 28%), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid rgb(198 198 205 / 28%);
  overflow: visible;
}
.stitch-product-hero-grid {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.stitch-product-gallery {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.stitch-product-media {
  position: relative;
  margin: 0;
  display: grid;
  min-height: 0;
  padding: 0;
  background: var(--surface-low);
  border: 1px solid rgb(198 198 205 / 22%);
  border-radius: var(--radius);
  overflow: hidden;
}
.stitch-product-media-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: crosshair;
  touch-action: pan-y;
  background: var(--surface-low);
}
.stitch-product-media-stage.is-zooming {
  cursor: none;
}
.stitch-product-media-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.stitch-product-media-stage.is-switching img {
  opacity: 0.35;
}
.stitch-product-lens {
  position: absolute;
  z-index: 3;
  width: min(56%, 260px);
  height: min(56%, 260px);
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-color: var(--surface);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgb(15 23 42 / 18%);
}
.stitch-product-media .stitch-catalog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  border-radius: var(--radius);
  background: var(--primary);
  letter-spacing: 0.1em;
}
.stitch-product-pager {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(198 198 205 / 35%);
  border-radius: var(--radius);
}
.stitch-product-pager-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(198 198 205 / 40%);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}
.stitch-product-pager-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stitch-product-pager-btn:hover,
.stitch-product-pager-btn:focus-visible {
  border-color: rgb(15 23 42 / 35%);
  outline: none;
}
.stitch-product-pager-count {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stitch-product-thumbs-rail {
  display: none;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.stitch-product-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 4);
  justify-content: start;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.stitch-product-thumbs::-webkit-scrollbar {
  display: none;
}
.stitch-product-thumbs-rail:not(.is-overflow) .stitch-product-thumbs {
  overflow: hidden;
}
.stitch-product-thumbs-btn {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgb(198 198 205 / 40%);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.stitch-product-thumbs-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stitch-product-thumbs-btn:hover,
.stitch-product-thumbs-btn:focus-visible {
  border-color: rgb(15 23 42 / 40%);
  outline: none;
}
.stitch-product-thumbs-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.stitch-product-thumb {
  display: block;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgb(198 198 205 / 35%);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.2s ease;
}
.stitch-product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.stitch-product-thumb:hover,
.stitch-product-thumb:focus-visible {
  border-color: rgb(15 23 42 / 40%);
  outline: none;
}
.stitch-product-thumb.is-active {
  border-color: var(--primary);
  border-width: 2px;
}
@media (min-width: 768px) {
  .stitch-product-gallery {
    position: sticky;
    top: calc(var(--head-h) + 16px);
    z-index: 2;
    align-self: start;
  }
  .stitch-product-media-stage {
    width: min(100%, calc(100dvh - var(--head-h) - 140px));
    max-height: calc(100dvh - var(--head-h) - 140px);
    margin-inline: auto;
  }
  .stitch-product-thumbs-rail:not([hidden]) {
    display: flex;
  }
  .stitch-product-pager {
    display: none !important;
  }
  .stitch-product-related-grid {
    grid-auto-columns: calc((100% - 48px) / 3);
  }
}
@media (max-width: 767.98px) {
  .stitch-product-thumbs-rail {
    display: none !important;
  }
  .stitch-product-lens {
    display: none !important;
  }
  .stitch-product-media-stage {
    cursor: default;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stitch-product-media-stage img {
    transition: none;
  }
}
.stitch-product-intro {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 36rem;
}
.stitch-product-category {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-product-hero h1 {
  margin-bottom: 14px;
  font-size: var(--text-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.stitch-product-tagline {
  margin-bottom: 28px;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--muted);
  max-width: 38ch;
}
.stitch-product-specs-block {
  margin-bottom: 20px;
}
.stitch-product-specs-label {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(15 23 42 / 45%);
}
.stitch-product-specs {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgb(198 198 205 / 40%);
}
.stitch-product-spec {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgb(198 198 205 / 28%);
  font-size: 16px;
  transition: background 0.2s ease;
}
.stitch-product-spec:hover {
  background: rgb(15 23 42 / 2%);
}
.stitch-product-spec:nth-child(-n + 3) dd {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.stitch-product-spec dt {
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}
.stitch-product-spec dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}
.stitch-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.stitch-product-meta[hidden] {
  display: none !important;
}
.stitch-product-meta li {
  padding: 6px 10px;
  border: 1px solid rgb(198 198 205 / 40%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 72%);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.stitch-product-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 4px;
}
.stitch-product-actions .btn-dark {
  min-width: 11rem;
}
.stitch-product-qty {
  display: grid;
  gap: 8px;
}
.stitch-product-qty label {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-product-qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(17 26 36 / 18%);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.stitch-product-qty-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
}
.stitch-product-qty-btn:hover {
  background: var(--surface-low);
}
#product-qty {
  width: 56px;
  height: 40px;
  border: 0;
  border-inline: 1px solid rgb(17 26 36 / 12%);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  -moz-appearance: textfield;
}
#product-qty::-webkit-outer-spin-button,
#product-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.stitch-product-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.stitch-product-back {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.stitch-product-back:hover {
  color: var(--brand-bronze);
}
.stitch-product-hero.is-error .stitch-product-gallery {
  display: none;
}
.stitch-product-hero.is-error .stitch-product-specs-block,
.stitch-product-hero.is-error .stitch-product-meta {
  display: none;
}
.stitch-product-section-title {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  margin: 0;
}
.stitch-product-related {
  padding: clamp(56px, 8vw, 80px) 0;
  background: var(--bg);
  border-bottom: 1px solid rgb(198 198 205 / 28%);
}
.stitch-product-related-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 28px;
}
.stitch-product-related-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.stitch-product-related-note {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}
.stitch-product-related-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.stitch-product-related-more {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid rgb(15 23 42 / 25%);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.stitch-product-related-more:hover {
  color: var(--brand-bronze);
  border-bottom-color: rgb(154 104 71 / 55%);
}
.stitch-product-related-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stitch-product-related-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgb(198 198 205 / 45%);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.stitch-product-related-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stitch-product-related-btn:hover,
.stitch-product-related-btn:focus-visible {
  border-color: rgb(15 23 42 / 40%);
  outline: none;
}
.stitch-product-related-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.stitch-product-related-rail {
  min-width: 0;
}
.stitch-product-related-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, calc((100% - 24px) / 2));
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  padding-bottom: 4px;
}
.stitch-product-related-grid::-webkit-scrollbar {
  display: none;
}
.stitch-product-related-card {
  display: grid;
  gap: 16px;
  padding: 0 0 16px;
  background: var(--surface);
  border: 0;
  border-radius: var(--radius);
  scroll-snap-align: start;
  min-width: 0;
  overflow: hidden;
}
.stitch-product-related-card:hover {
  border-color: transparent;
}
.stitch-product-related-media {
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 0;
  background: var(--surface-low);
  border-radius: 0;
  overflow: hidden;
}
.stitch-product-related-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stitch-product-related-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 0 16px 4px;
}
.stitch-product-related-body h3 {
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}
.stitch-product-related-body h3 a:hover {
  color: var(--brand-bronze);
}
.stitch-product-related-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stitch-product-wholesale {
  position: relative;
  padding: var(--section-gap) 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 40%, var(--surface) 100%);
  border-bottom: 1px solid rgb(198 198 205 / 28%);
  overflow: hidden;
}
.stitch-product-wholesale-head {
  position: relative;
  max-width: 40rem;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.stitch-product-wholesale-watermark {
  position: absolute;
  top: -0.2em;
  left: -0.04em;
  margin: 0;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgb(15 23 42 / 5%);
  pointer-events: none;
  user-select: none;
}
.stitch-product-wholesale-head .eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}
.stitch-product-wholesale-head h2 {
  position: relative;
  margin: 0 0 16px;
  font-size: var(--text-display);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.stitch-product-wholesale-lead {
  position: relative;
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--muted);
  max-width: 44ch;
}
.stitch-product-tier-list {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.stitch-product-tier-row {
  position: relative;
  display: grid;
  gap: 0;
  align-items: start;
  padding: clamp(28px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 28%);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.stitch-product-tier-row:hover {
  border-color: rgb(15 23 42 / 22%);
}
.stitch-product-tier-body {
  min-width: 0;
}
.stitch-product-tier-label {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-product-tier-row h3 {
  margin: 0 0 12px;
  font-size: var(--text-title);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stitch-product-tier-row p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 36ch;
}
.stitch-product-tier-row.is-featured {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.stitch-product-tier-row.is-featured:hover {
  border-color: var(--primary);
}
.stitch-product-tier-row.is-featured .stitch-product-tier-label {
  color: rgb(255 255 255 / 62%);
}
.stitch-product-tier-row.is-featured h3 {
  color: #fff;
}
.stitch-product-tier-row.is-featured p:last-child {
  color: rgb(255 255 255 / 78%);
}
.stitch-product-wholesale-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
  border-top: 1px solid rgb(198 198 205 / 35%);
}
.stitch-product-wholesale-cta > p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.stitch-product-wholesale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stitch-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 96px;
}
.stitch-showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--surface);
  border: 1px solid rgb(224 227 229 / 80%);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgb(0 0 0 / 2%);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.stitch-showcase-card:hover {
  box-shadow: 0 20px 40px rgb(0 0 0 / 6%);
}
.stitch-stock-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface-muted);
  border: 1px solid rgb(198 198 205 / 30%);
  border-radius: var(--radius);
}
.stitch-stock-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.stitch-gallery-main {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-low);
  margin-bottom: 12px;
}
.stitch-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.stitch-showcase-card:hover .stitch-gallery-main img {
  transform: scale(1.05);
}
.stitch-gallery-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.stitch-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.stitch-gallery-thumbs img,
.stitch-gallery-more {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--surface-low);
}
.stitch-gallery-more {
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-high);
}
.stitch-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.stitch-showcase-head h2 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 600;
}
.stitch-showcase-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
}
.stitch-showcase-callout {
  padding: 16px;
  margin-bottom: 24px;
  background: var(--surface-low);
  border: 1px solid rgb(198 198 205 / 28%);
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.6;
}
.stitch-showcase-callout .stitch-callout-note {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}
.stitch-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  padding-top: 24px;
  margin-bottom: 32px;
  border-top: 1px solid rgb(198 198 205 / 22%);
}
.stitch-spec-grid dt {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.stitch-spec-grid dd {
  font-size: 16px;
  font-weight: 600;
}
.stitch-btn-block {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.25s ease;
}
.stitch-btn-block:hover {
  background: #2d3133;
}
.stitch-btn-block svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.stitch-procure-band {
  padding: clamp(48px, 7vw, 72px) 0;
  background: var(--surface-low);
  border-top: 1px solid rgb(198 198 205 / 28%);
}
.stitch-procure-head {
  max-width: 36rem;
  margin-bottom: clamp(24px, 4vw, 36px);
}
.stitch-procure-head h2 {
  font-size: var(--text-title);
  line-height: 1.15;
  margin-bottom: 12px;
}
.stitch-procure-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}
.stitch-procure-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: procure;
  max-width: 40rem;
  border-top: 1px solid rgb(198 198 205 / 35%);
}
.stitch-procure-list li {
  counter-increment: procure;
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgb(198 198 205 / 35%);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}
.stitch-procure-list li::before {
  content: counter(procure);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
  line-height: 1.55;
}

.stitch-cta-dark {
  position: relative;
  padding: clamp(40px, 6vw, 72px) var(--page-gutter);
  background: transparent;
  background-image: none;
  color: inherit;
  text-align: center;
  border-bottom: 0;
  overflow: visible;
}
.stitch-cta-dark::before {
  display: none;
}
.stitch-cta-dark > .wrap {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 88px);
  padding-inline: clamp(24px, 4vw, 56px);
  border-radius: var(--radius);
  background-color: var(--primary);
  background-image: url("../images/cta-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.stitch-cta-dark > .wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgb(11 18 25 / 78%) 0%, rgb(11 18 25 / 70%) 100%),
    rgb(11 18 25 / 45%);
  pointer-events: none;
}
.stitch-cta-dark > .wrap > * {
  position: relative;
  z-index: 1;
}
.stitch-cta-dark h2 {
  font-size: var(--text-title);
  margin: 0 auto 16px;
  color: #fff;
  text-align: center;
}
.stitch-cta-dark p {
  max-width: 40rem;
  margin: 0 auto 28px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 84%);
  text-align: center;
}
.stitch-cta-dark .btn-light {
  background: var(--surface);
  color: var(--primary);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border-color: rgb(198 198 205 / 42%);
}
.stitch-cta-dark .btn-light:hover {
  background: var(--surface-muted);
  border-color: rgb(154 104 71 / 45%);
}

/* —— About —— */
.stitch-about-hero {
  position: relative;
  min-height: min(calc(100dvh - var(--head-h)), 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid rgb(198 198 205 / 28%);
}
.stitch-about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.stitch-about-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(7 10 13 / 55%) 0%,
    rgb(7 10 13 / 32%) 34%,
    rgb(7 10 13 / 10%) 58%,
    transparent 82%
  );
}
.stitch-about-hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(48px, 8vh, 88px);
}
.stitch-about-hero-inner {
  max-width: 40rem;
}
.stitch-about-hero-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-about-hero h1 {
  font-size: var(--text-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  max-width: 16ch;
  color: var(--ink);
  text-transform: none;
}
.stitch-about-hero-lead {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 28px;
}
.stitch-about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}
.stitch-about-panel--secondary {
  margin-top: clamp(48px, 7vw, 72px);
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid rgb(198 198 205 / 35%);
}
.stitch-about-panel--secondary .stitch-about-work-head {
  margin-bottom: 16px;
}
.stitch-about-secondary-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}
.stitch-about-secondary-cta a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.stitch-about-secondary-cta span {
  color: var(--muted);
  font-weight: 400;
}

.stitch-about-coverage {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--surface);
  border-bottom: 1px solid rgb(198 198 205 / 28%);
}
.stitch-about-coverage-head {
  max-width: 40rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.stitch-about-coverage-head h2 {
  margin: 0 0 10px;
  font-size: var(--text-title);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.stitch-about-coverage-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
}
.stitch-about-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(17 26 36 / 12%);
  counter-reset: none;
}
.stitch-about-coverage-grid li {
  margin: 0;
  border-bottom: 1px solid rgb(17 26 36 / 12%);
  border-right: 1px solid rgb(17 26 36 / 12%);
}
.stitch-about-coverage-grid li:nth-child(3n) {
  border-right: 0;
}
.stitch-about-coverage-grid a {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 28px) clamp(16px, 2vw, 24px);
  color: inherit;
  text-decoration: none;
  transition: background 0.18s ease;
}
.stitch-about-coverage-grid a:hover,
.stitch-about-coverage-grid a:focus-visible {
  background: var(--surface-low);
}
.stitch-about-coverage-grid a:focus-visible {
  outline: 2px solid var(--brand-bronze, #8f5f42);
  outline-offset: -2px;
}
.stitch-about-coverage-index {
  display: none !important;
}
.stitch-about-coverage-grid h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.stitch-about-coverage-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 36ch;
}

.stitch-about-story {
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid rgb(198 198 205 / 28%);
  background: var(--surface);
}
.stitch-about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.stitch-about-story-copy h2 {
  margin: 0 0 16px;
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.stitch-about-story-copy p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 54ch;
}
.stitch-about-story-copy p:last-child {
  margin-bottom: 0;
}
.stitch-about-pillars {
  display: grid;
  gap: 0;
  border-top: 1px solid rgb(17 26 36 / 12%);
}
.stitch-about-pillars article {
  padding: 22px 0;
  border-bottom: 1px solid rgb(17 26 36 / 12%);
}
.stitch-about-pillars article::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 0 14px;
  background: var(--brand-bronze);
}
.stitch-about-pillars h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stitch-about-pillars p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 42ch;
}

.stitch-about-signals {
  border-top: 1px solid rgb(17 26 36 / 10%);
}

.stitch-about-offer {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface-low);
}
.stitch-about-offer-head {
  max-width: 42rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.stitch-about-offer-head h2 {
  margin: 0 0 12px;
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.stitch-about-offer-head p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.6;
}
.stitch-about-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stitch-about-offer-grid article {
  padding: 24px 22px;
  border: 1px solid rgb(17 26 36 / 12%);
  border-radius: var(--radius);
  background: var(--surface);
}
.stitch-about-offer-label {
  display: none !important;
}
.stitch-about-offer-grid h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--primary);
}
.stitch-about-offer-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.stitch-about-why {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface);
  border-top: 1px solid rgb(198 198 205 / 28%);
}
.stitch-about-why-head {
  max-width: 36rem;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.stitch-about-why-head h2 {
  margin: 0 0 12px;
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 18ch;
}
.stitch-about-why-head p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.6;
  font-size: 16px;
}
.stitch-about-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.5vw, 36px) clamp(28px, 4vw, 56px);
  border: 0;
}
@media (min-width: 720px) {
  .stitch-about-why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.stitch-about-why-index,
.stitch-about-coverage-index,
.stitch-about-offer-label {
  display: none !important;
}
.stitch-about-why-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  min-width: 0;
  padding: 0;
  border: 0;
}
.stitch-about-why-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-top: 1px;
  border-radius: var(--radius, 4px);
  background: rgb(17 26 36 / 4%);
  color: var(--brand-bronze);
}
.stitch-about-why-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stitch-about-why-list h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.stitch-about-why-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 34ch;
}

.stitch-about-trust {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface-low);
  border-top: 1px solid rgb(198 198 205 / 28%);
}
.stitch-about-trust-head {
  max-width: 42rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.stitch-about-trust-head h2 {
  margin: 0;
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.stitch-about-trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 32px) clamp(28px, 4vw, 48px);
  border: 0;
}
.stitch-about-trust-grid li {
  padding: 0;
  border: 0;
  min-width: 0;
}
.stitch-about-trust-grid li::before {
  content: none;
  display: none;
}
.stitch-about-trust-grid strong {
  display: block;
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.stitch-about-trust-grid span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 42ch;
}

@media (max-width: 899px) {
  .stitch-about-story-grid,
  .stitch-about-offer-grid,
  .stitch-about-trust-grid,
  .stitch-about-coverage-grid {
    grid-template-columns: 1fr;
  }
  .stitch-about-coverage-grid li {
    border-right: 0;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .stitch-about-coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stitch-about-coverage-grid li,
  .stitch-about-coverage-grid li:nth-child(3n) {
    border-right: 1px solid rgb(17 26 36 / 12%);
  }
  .stitch-about-coverage-grid li:nth-child(2n) {
    border-right: 0;
  }
}

.stitch-about-work {
  padding: clamp(64px, 10vw, 96px) 0;
  background: var(--surface-low);
  border-top: 1px solid rgb(198 198 205 / 28%);
}
.stitch-about-work-head {
  max-width: 36rem;
  margin-bottom: clamp(40px, 6vw, 56px);
}
.stitch-about-work-head h2 {
  font-size: var(--text-title);
  line-height: 1.15;
  margin: 0 0 12px;
}
.stitch-about-work-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}
.stitch-about-work-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0;
}
.stitch-about-work-step {
  padding: 20px 4px;
  border: 0;
  min-width: 0;
}
.stitch-about-work-mark {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--primary);
  opacity: 0.35;
  border-radius: 1px;
}
.stitch-about-work-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.stitch-about-work-step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 28ch;
}

.stitch-map-section {
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid rgb(198 198 205 / 28%);
}
.stitch-map-layout {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.stitch-map-copy {
  display: grid;
  gap: 20px;
}
.stitch-map-eyebrow {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-map-copy h2 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  line-height: 1.2;
}
.stitch-map-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 36rem;
}
.stitch-map-markets {
  display: grid;
  gap: clamp(18px, 2.5vw, 24px);
  margin-top: 4px;
}
.stitch-map-markets li {
  display: grid;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.stitch-map-markets li:last-child {
  border-bottom: 0;
}
.stitch-map-markets strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.stitch-map-markets span {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}
.stitch-map-note {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 42ch;
}
.stitch-map-frame {
  position: relative;
  margin: 0;
  padding: 16px;
  border: 0;
  border-radius: var(--radius);
  overflow: visible;
  background: var(--surface);
}
.stitch-map-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
  object-position: center;
}
.stitch-map-caption {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--muted);
}

/* —— Wholesale (oem) —— */
.stitch-oem-page main {
  padding-top: 0;
}
.stitch-oem-hero {
  position: relative;
  min-height: min(calc(100dvh - var(--head-h)), 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid rgb(198 198 205 / 28%);
  color: var(--ink);
  text-align: left;
}
.stitch-oem-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stitch-oem-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(247 249 251 / 98%) 0%,
    rgb(247 249 251 / 92%) 32%,
    rgb(247 249 251 / 62%) 58%,
    rgb(247 249 251 / 18%) 100%
  );
}
.stitch-oem-hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(48px, 8vh, 88px);
}
.stitch-oem-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: 0;
}
.stitch-oem-hero-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-oem-hero h1 {
  font-size: var(--text-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  max-width: 16ch;
  color: var(--ink);
}
.stitch-oem-hero-lead {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 28px;
}
.stitch-oem-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
.stitch-oem-capabilities {
  position: relative;
  padding-block: clamp(64px, 10vw, 96px);
  background: var(--bg);
  border-top: 1px solid rgb(198 198 205 / 28%);
  overflow: hidden;
}
.stitch-oem-capabilities-head {
  position: relative;
  max-width: 40rem;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.stitch-oem-capabilities-head h2 {
  position: relative;
  margin: 0 0 12px;
  font-size: var(--text-title);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.stitch-oem-capabilities-head p {
  position: relative;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 48ch;
}
.stitch-oem-cap-bento {
  display: grid;
  gap: 16px;
}
.stitch-oem-cap-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 28%);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.stitch-oem-cap-card:hover {
  border-color: rgb(15 23 42 / 22%);
}
.stitch-oem-cap-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-low);
}
.stitch-oem-cap-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stitch-oem-cap-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(22px, 3vw, 28px);
}
.stitch-oem-cap-label {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-oem-cap-body h3 {
  margin: 0 0 12px;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stitch-oem-cap-body p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
}
.stitch-oem-cap-card.is-featured {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.stitch-oem-cap-card.is-featured:hover {
  border-color: var(--primary);
}
.stitch-oem-cap-card.is-featured .stitch-oem-cap-media {
  position: relative;
}
.stitch-oem-cap-card.is-featured .stitch-oem-cap-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgb(11 18 32 / 55%) 100%);
  pointer-events: none;
}
.stitch-oem-cap-card.is-featured .stitch-oem-cap-label {
  color: rgb(210 168 132);
}
.stitch-oem-cap-card.is-featured .stitch-oem-cap-body p:last-child {
  color: rgb(255 255 255 / 72%);
}
.stitch-oem-tier {
  padding-block: clamp(64px, 10vw, 96px);
  border-top: 1px solid rgb(198 198 205 / 28%);
  background: var(--surface-low);
}
.stitch-oem-tier-head {
  text-align: left;
  max-width: 36rem;
  margin: 0 0 clamp(40px, 6vw, 56px);
}
.stitch-oem-tier-head h2 {
  font-size: var(--text-title);
  line-height: 1.15;
  margin: 0 0 12px;
}
.stitch-oem-tier-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}
.stitch-oem-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(198 198 205 / 35%);
}
.stitch-oem-rail-step {
  padding: 20px 4px;
  border-bottom: 1px solid rgb(198 198 205 / 35%);
  min-width: 0;
}
.stitch-oem-rail-mark {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--primary);
  opacity: 0.35;
  border-radius: 1px;
}
.stitch-oem-rail-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.stitch-oem-rail-step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 28ch;
}

.stitch-oem-scope {
  padding: var(--stitch-section) 0;
  background: var(--bg);
  border-top: 1px solid rgb(198 198 205 / 28%);
}
.stitch-oem-scope-grid {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.stitch-oem-scope-copy h2 {
  font-size: var(--text-title);
  line-height: 1.15;
  margin: 0 0 12px;
}
.stitch-oem-scope-copy > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 48ch;
}
.stitch-oem-scope-list {
  list-style: none;
  margin: 28px 0;
  padding: 0 0 0 16px;
  border-left: 1px solid rgb(198 198 205 / 35%);
}
.stitch-oem-scope-list li + li {
  margin-top: 18px;
}
.stitch-oem-scope-list strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.stitch-oem-scope-list span {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.stitch-oem-scope-aside {
  display: grid;
  gap: 12px;
}
.stitch-oem-scope-tier {
  padding: 24px;
  border: 1px solid rgb(198 198 205 / 35%);
  border-radius: var(--radius);
  background: var(--surface);
}
.stitch-oem-scope-tier h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
}
.stitch-oem-scope-tier p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* Wholesale page — Di Pacci IA mapped to industrial editorial */
.stitch-oem-signals {
  padding: 0;
  border-bottom: 1px solid rgb(17 26 36 / 10%);
  background: var(--surface);
}
.stitch-oem-signal-list {
  list-style: none;
  margin: 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.stitch-oem-signal-list li {
  min-width: 0;
  padding: 0 18px;
  border-left: 1px solid rgb(17 26 36 / 10%);
}
.stitch-oem-signal-list li:first-child {
  border-left: 0;
  padding-left: 0;
}
.stitch-oem-signal-list li::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 0 12px;
  background: var(--brand-bronze);
}
.stitch-oem-signal-list strong {
  display: block;
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.stitch-oem-signal-list span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.stitch-oem-offer {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface-low);
}
.stitch-oem-offer-head {
  max-width: 42rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.stitch-oem-offer-head h2 {
  margin: 0 0 12px;
  font-size: var(--text-display);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.stitch-oem-offer-head p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.6;
}
.stitch-oem-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stitch-oem-offer-card {
  padding: 24px 22px;
  border: 1px solid rgb(17 26 36 / 12%);
  border-radius: var(--radius);
  background: var(--surface);
}
.stitch-oem-offer-card.is-featured {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
}
.stitch-oem-offer-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-bronze);
}
.stitch-oem-offer-card.is-featured .stitch-oem-offer-label {
  color: rgb(255 255 255 / 62%);
}
.stitch-oem-offer-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: inherit;
}
.stitch-oem-offer-card.is-featured h3 {
  color: #fff;
}
.stitch-oem-offer-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.stitch-oem-offer-card.is-featured p {
  color: rgb(255 255 255 / 70%);
}

.stitch-oem-resources {
  padding: clamp(56px, 8vw, 96px) 0;
}
.stitch-oem-resources-head {
  max-width: 44rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.stitch-oem-resources-head h2 {
  margin: 0 0 12px;
  font-size: var(--text-display);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.stitch-oem-resources-head p {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.6;
}
.stitch-oem-resource-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgb(17 26 36 / 12%);
}
.stitch-oem-resource-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 20px;
  min-width: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgb(17 26 36 / 12%);
}
.stitch-oem-resource-body {
  min-width: 0;
  flex: 1 1 auto;
}
.stitch-oem-resource-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--primary);
}
.stitch-oem-resource-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 48ch;
}
.stitch-oem-resource-type {
  display: inline;
  margin-right: 0.45em;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-bronze);
  text-transform: none;
}
.stitch-oem-resource-list .btn {
  flex: 0 0 auto;
  align-self: center;
  min-width: 5.5rem;
  justify-content: center;
  white-space: nowrap;
}
.stitch-oem-resources-note {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.stitch-oem-resources-note a {
  color: var(--primary);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 900px) {
  .stitch-oem-resource-list {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(32px, 4vw, 56px);
  }
}

.stitch-oem-why {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface-low);
}
.stitch-oem-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.stitch-oem-why-head h2 {
  margin: 0 0 12px;
  font-size: var(--text-display);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.stitch-oem-why-head p {
  margin: 0;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.6;
}
.stitch-oem-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(17 26 36 / 12%);
}
.stitch-oem-why-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgb(17 26 36 / 12%);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--primary);
}
.stitch-oem-why-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--brand-bronze);
}

.stitch-oem-faq {
  padding: clamp(56px, 8vw, 96px) 0;
}
.stitch-oem-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.stitch-oem-faq-head h2 {
  margin: 0;
  font-size: var(--text-display);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.stitch-oem-faq .faq-acc {
  max-width: none;
  margin: 0;
}
.stitch-oem-faq .faq-item summary {
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 15px;
}

@media (max-width: 899px) {
  .stitch-oem-signal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }
  .stitch-oem-signal-list li:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
  .stitch-oem-signal-list li:nth-child(even) {
    border-left: 1px solid rgb(17 26 36 / 10%);
  }
  .stitch-oem-offer-grid {
    grid-template-columns: 1fr;
  }
  .stitch-oem-why-grid,
  .stitch-oem-faq-grid {
    grid-template-columns: 1fr;
  }
}

.stitch-split {
  display: grid;
  gap: var(--gutter);
  align-items: center;
  margin-bottom: var(--stitch-section);
}
.stitch-split-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: rgb(198 198 205 / 55%);
  margin-bottom: 8px;
}
.stitch-split h2 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}
.stitch-split p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.stitch-split img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgb(198 198 205 / 28%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 6%);
}

.stitch-tier-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gutter);
  margin-bottom: var(--gutter);
}
.stitch-tier-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 28%);
  border-radius: var(--radius);
}
.stitch-tier-card:hover {
  background: var(--surface-low);
}
.stitch-tier-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.stitch-tier-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--muted);
}
.stitch-tier-icon svg {
  width: 22px;
  height: 22px;
}
.stitch-tier-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.stitch-pipeline {
  display: grid;
  gap: 28px;
  padding: 40px;
  background: var(--surface-low);
  border: 1px solid rgb(198 198 205 / 28%);
  border-radius: var(--radius);
  text-align: center;
}
.stitch-pipeline-step h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 12px 0 6px;
}
.stitch-pipeline-step p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 14rem;
  margin-inline: auto;
}
.stitch-pipeline-mark {
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 auto 16px;
  background: var(--primary);
  opacity: 0.4;
  border-radius: 1px;
}
.stitch-pipeline-arrow {
  display: none;
  color: rgb(198 198 205 / 55%);
  line-height: 0;
}
.stitch-pipeline-arrow svg {
  width: 48px;
  height: 48px;
}

/* —— Quality (buyer QC / quote path) —— */
.stitch-qc-hero {
  position: relative;
  min-height: min(calc(100dvh - var(--head-h)), 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid rgb(198 198 205 / 28%);
}
.stitch-qc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stitch-qc-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(247 249 251 / 98%) 0%,
    rgb(247 249 251 / 92%) 32%,
    rgb(247 249 251 / 62%) 58%,
    rgb(247 249 251 / 18%) 100%
  );
}
.stitch-qc-hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(48px, 8vh, 88px);
}
.stitch-qc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}
.stitch-qc-hero-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-qc-hero h1 {
  font-size: var(--text-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  max-width: 16ch;
  color: var(--ink);
}
.stitch-qc-hero-lead {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 28px;
}
.stitch-qc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stitch-qc-signal {
  border-bottom: 1px solid rgb(198 198 205 / 28%);
  background: var(--surface);
  padding-block: clamp(28px, 4vw, 40px);
}
.stitch-qc-signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.stitch-qc-signal-list li {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(198 198 205 / 28%);
}
.stitch-qc-signal-list li:last-child {
  border-bottom: 0;
}
.stitch-qc-signal-list strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.stitch-qc-signal-list span {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38ch;
}
@media (min-width: 768px) {
  .stitch-qc-signal-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .stitch-qc-signal-list li {
    padding: 12px 32px;
    border-bottom: 0;
    border-right: 1px solid rgb(198 198 205 / 28%);
  }
  .stitch-qc-signal-list li:first-child {
    padding-left: 4px;
  }
  .stitch-qc-signal-list li:last-child {
    border-right: 0;
    padding-right: 4px;
  }
}

.stitch-qc-flow-section {
  padding: clamp(64px, 10vw, 96px) 0;
  background: var(--surface-low);
  border-top: 1px solid rgb(198 198 205 / 28%);
}
.stitch-qc-flow-head {
  max-width: 36rem;
  margin-bottom: clamp(40px, 6vw, 56px);
  text-align: left;
}
.stitch-qc-flow-head h2 {
  font-size: var(--text-title);
  line-height: 1.15;
  margin-bottom: 12px;
}
.stitch-qc-flow-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
}
.stitch-qc-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0;
}
.stitch-qc-flow-step {
  padding: 20px 4px;
  border: 0;
  text-align: left;
  min-width: 0;
}
.stitch-qc-flow-mark {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--primary);
  opacity: 0.35;
  border-radius: 1px;
}
.stitch-qc-flow-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.stitch-qc-flow-step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 28ch;
}

.stitch-qc-report {
  padding: var(--stitch-section) 0;
  background: var(--bg);
}
.stitch-qc-report-grid {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: stretch;
}
.stitch-qc-report-copy h2 {
  font-size: var(--text-title);
  line-height: 1.15;
  margin: 0 0 12px;
}
.stitch-qc-report-copy > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 48ch;
}
.stitch-qc-report-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  border-left: 0;
}
.stitch-qc-report-list li + li {
  margin-top: 18px;
}
.stitch-qc-report-list strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.stitch-qc-report-list span {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.stitch-qc-report-media {
  position: relative;
  margin: 0;
  border: 1px solid rgb(198 198 205 / 28%);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  height: 100%;
  background: var(--surface);
}
.stitch-qc-report-media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stitch-qc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.stitch-cta-dark .btn-ghost-light {
  color: #fff;
  border-color: rgb(255 255 255 / 42%);
  background: transparent;
}
.stitch-cta-dark .btn-ghost-light:hover {
  background: rgb(255 255 255 / 12%);
  border-color: rgb(255 255 255 / 62%);
}

/* —— Logistics (ddp) —— */
.stitch-logistics-page main {
  padding-top: 0;
  padding-bottom: var(--stitch-section);
}
.stitch-ddp-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: min(calc(100dvh - var(--head-h)), 560px);
  margin-bottom: 0;
  overflow: hidden;
  background: var(--surface);
}
.stitch-ddp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stitch-ddp-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(247 249 251 / 98%) 0%,
    rgb(247 249 251 / 90%) 32%,
    rgb(247 249 251 / 50%) 58%,
    transparent 100%
  );
}
.stitch-ddp-hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(48px, 8vh, 88px);
}
.stitch-ddp-hero-inner {
  max-width: 36rem;
}
.stitch-ddp-eyebrow {
  display: block;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-ddp-hero h1 {
  font-size: var(--text-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  max-width: 16ch;
}
.stitch-ddp-hero-lead {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 28px;
}
.stitch-ddp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.stitch-glass {
  background: rgb(255 255 255 / 70%);
  backdrop-filter: blur(12px);
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: var(--radius);
}
.stitch-glass-panel {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  max-width: 36rem;
  margin-top: 16px;
}
.stitch-glass-panel svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.75;
}
.stitch-glass-panel h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.stitch-glass-panel p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.stitch-freight-section {
  padding: var(--stitch-section) 0;
  background: var(--surface);
  border-bottom: 1px solid rgb(224 227 229 / 80%);
}
.stitch-freight-layout {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.stitch-freight-media {
  margin: 0;
}
.stitch-freight-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid rgb(198 198 205 / 28%);
}
.stitch-freight-copy h2 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  line-height: 1.15;
  margin-bottom: 10px;
}
.stitch-freight-copy > p {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
}
.stitch-freight-routes {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  border-top: 1px solid rgb(198 198 205 / 35%);
}
.stitch-freight-route {
  padding: 20px 4px;
  border-bottom: 1px solid rgb(198 198 205 / 35%);
  min-width: 0;
}
.stitch-freight-route dt {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.stitch-freight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stitch-freight-meta span {
  position: relative;
}
.stitch-freight-meta span + span::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgb(198 198 205 / 55%);
  transform: translateY(-50%);
}
.stitch-freight-note {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.stitch-network-section {
  padding: var(--stitch-section) 0;
  background: var(--surface);
}
.stitch-network-layout {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.stitch-network-copy h2 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  line-height: 1.15;
  margin-bottom: 10px;
}
.stitch-network-copy > p {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
}
.stitch-network-blocks {
  border-top: 1px solid rgb(198 198 205 / 35%);
}
.stitch-network-block {
  padding: 24px 0;
  border-bottom: 1px solid rgb(198 198 205 / 35%);
}
.stitch-network-block h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.stitch-network-block > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}
.stitch-network-meta {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.stitch-network-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.stitch-network-media {
  margin: 0;
}
.stitch-network-media img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgb(198 198 205 / 28%);
}

/* —— Contact (_2) —— */
.stitch-contact-page main {
  padding-top: 0;
  padding-bottom: var(--stitch-section);
}
.stitch-contact-hero {
  position: relative;
  min-height: min(calc(100dvh - var(--head-h)), 480px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid rgb(198 198 205 / 28%);
  text-align: left;
}
.stitch-contact-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stitch-contact-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(247 249 251 / 98%) 0%,
    rgb(247 249 251 / 92%) 32%,
    rgb(247 249 251 / 62%) 58%,
    rgb(247 249 251 / 18%) 100%
  );
}
.stitch-contact-hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(48px, 8vh, 88px);
}
.stitch-contact-head {
  max-width: 36rem;
  margin-right: auto;
}
.stitch-contact-hero-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-contact-head h1 {
  font-size: var(--text-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  max-width: 12ch;
  color: var(--ink);
}
.stitch-contact-hero-lead {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
}
.stitch-contact-body {
  padding-top: clamp(48px, 8vw, 96px);
}
.stitch-contact-grid {
  display: grid;
  gap: var(--gutter);
  align-items: stretch;
}
.stitch-form-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(24px, 4vw, 48px);
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 35%);
  border-radius: var(--radius);
}
.stitch-contact-channels {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgb(198 198 205 / 35%);
  position: relative;
  z-index: 1;
}
.stitch-contact-channels ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stitch-contact-channels li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgb(198 198 205 / 28%);
}
.stitch-contact-channels li:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.stitch-contact-channel-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  color: var(--muted);
}
.stitch-contact-channel-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stitch-contact-channel-icon.is-fill svg {
  fill: currentColor;
  stroke: none;
}
.stitch-contact-channels a,
.stitch-contact-channels p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}
.stitch-contact-channels a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.stitch-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--gutter);
}
.stitch-form > div:last-child {
  margin-top: auto;
}
.stitch-form-grid {
  display: grid;
  gap: var(--gutter);
}
.stitch-field {
  display: grid;
  gap: 8px;
}
.stitch-field label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.stitch-input {
  border: none;
  border-bottom: 1px solid var(--muted);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  font-size: 16px;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.stitch-input:focus {
  outline: none;
  border-bottom-color: var(--primary);
  box-shadow: 0 1px 0 0 var(--primary);
}
.stitch-input::placeholder {
  color: rgb(118 119 125 / 70%);
}
.stitch-form-note {
  margin-top: 16px;
  font-size: 16px;
  color: var(--muted);
}
.stitch-contact-aside {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--gutter);
}
.stitch-why-card {
  flex: 1;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 35%);
  border-radius: var(--radius);
}
.stitch-why-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.stitch-why-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}
.stitch-why-list li {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgb(198 198 205 / 28%);
}
.stitch-why-list li:first-child {
  padding-top: 0;
  border-top: 0;
}
.stitch-why-list h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 4px;
  color: var(--ink);
}
.stitch-why-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

/* Contact aside: industrial process panel */
.stitch-contact-aside .stitch-why-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(28px, 3.2vw, 40px);
  background:
    linear-gradient(165deg, rgb(255 255 255 / 6%) 0%, transparent 42%),
    var(--primary) !important;
  color: #fff;
  border: 0 !important;
  box-shadow: none !important;
  isolation: isolate;
}
.stitch-contact-aside .stitch-why-card::before {
  content: "QUOTE";
  position: absolute;
  right: -0.08em;
  top: -0.18em;
  z-index: 0;
  font-size: clamp(4.5rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgb(255 255 255 / 6%);
  pointer-events: none;
  user-select: none;
}
.stitch-contact-aside .stitch-why-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 55%);
}
.stitch-contact-aside .stitch-why-card h3 {
  margin: 0 0 28px;
  max-width: 14ch;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
}
.stitch-contact-aside .stitch-why-list {
  gap: 0;
}
.stitch-contact-aside .stitch-why-list li {
  display: block;
  padding: 18px 0;
  border-top: 1px solid rgb(255 255 255 / 14%) !important;
}
.stitch-contact-aside .stitch-why-list li:first-child {
  padding-top: 0;
  border-top: 0 !important;
}
.stitch-contact-aside .stitch-why-list li::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 0 12px;
  background: var(--brand-bronze);
}
.stitch-contact-aside .stitch-why-index {
  display: none !important;
}
.stitch-contact-aside .stitch-why-list h4 {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.stitch-contact-aside .stitch-why-list p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgb(255 255 255 / 68%);
}
.stitch-contact-aside .stitch-contact-channels {
  margin-top: auto;
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
  border-radius: 0;
  background: transparent;
}
.stitch-contact-aside .stitch-contact-channels li {
  border-top-color: rgb(255 255 255 / 12%);
  grid-template-columns: 28px minmax(0, 1fr);
}
.stitch-contact-aside .stitch-contact-channel-icon {
  color: rgb(255 255 255 / 62%);
}
.stitch-contact-aside .stitch-contact-channels a,
.stitch-contact-aside .stitch-contact-channels p {
  color: #fff;
  font-weight: 600;
}
.stitch-contact-aside .stitch-contact-channels a:hover {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 55%);
}

.stitch-phone-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 35%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.stitch-phone-card p:first-child {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.stitch-phone-card strong,
.stitch-phone-card strong a {
  font-size: 1.25rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}
.stitch-phone-card strong a:hover {
  text-decoration: underline;
}

.stitch-contact-map-section {
  padding-top: clamp(48px, 8vw, 96px);
}
.stitch-contact-map-head {
  max-width: 40rem;
  margin: 0 auto 24px;
  text-align: center;
}
.stitch-contact-map-head h2 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  margin-bottom: 8px;
}
.stitch-contact-map-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.stitch-contact-map {
  border: 1px solid rgb(198 198 205 / 28%);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-high);
}
.stitch-contact-map-canvas {
  width: 100%;
  height: min(56vh, 520px);
  z-index: 0;
}
.stitch-contact-map .leaflet-container {
  font-family: inherit;
  background: var(--surface-high);
}
.stitch-contact-map .leaflet-control-attribution {
  font-size: 12.5px;
  background: rgb(255 255 255 / 88%);
  border-radius: var(--radius) 0 0 0;
}
.stitch-contact-map-popup .leaflet-popup-content-wrapper {
  padding: 0;
  border: 1px solid rgb(198 198 205 / 35%);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}
.stitch-contact-map-popup .leaflet-popup-content {
  margin: 0;
  width: min(280px, 72vw) !important;
}
.stitch-contact-map-popup .leaflet-popup-tip {
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 35%);
  box-shadow: none;
}
.stitch-contact-map-popup .leaflet-popup-close-button {
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  font-size: 20px;
  color: var(--muted);
}
.stitch-contact-map-pin-icon {
  background: none !important;
  border: 0;
}
.stitch-map-pin {
  position: relative;
  width: 56px;
  height: 64px;
}
.stitch-map-pin-wave {
  position: absolute;
  left: 28px;
  top: 54px;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border: 2px solid rgb(15 23 42 / 22%);
  border-radius: 50%;
  animation: stitch-map-pin-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
.stitch-map-pin-wave.is-delay {
  animation-delay: 1.3s;
}
.stitch-map-pin-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: start center;
  transform-origin: 28px 58px;
  animation: stitch-map-pin-drop 0.7s cubic-bezier(0.34, 1.35, 0.64, 1) both;
  transition: transform 0.25s ease;
}
.stitch-map-pin-art {
  display: block;
  width: 56px !important;
  height: 56px !important;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.leaflet-marker-icon.stitch-contact-map-pin-icon:hover .stitch-map-pin-core {
  transform: translateY(-2px) scale(1.05);
}
@keyframes stitch-map-pin-drop {
  0% {
    transform: translateY(-16px) scale(0.45);
    opacity: 0;
  }
  70% {
    transform: translateY(2px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes stitch-map-pin-pulse {
  0% {
    transform: scale(0.55);
    opacity: 0.5;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stitch-map-pin-wave,
  .stitch-map-pin-core {
    animation: none;
  }
  .leaflet-marker-icon.stitch-contact-map-pin-icon:hover .stitch-map-pin-core {
    transform: none;
  }
}
.stitch-contact-map-card {
  width: 100%;
  background: var(--surface);
  overflow: hidden;
}
.stitch-contact-map-card-photo {
  margin: 0;
}
.stitch-contact-map-card-photo img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
}
.stitch-contact-map-card-body {
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.stitch-contact-map-card-body p + p {
  margin-top: 8px;
}
.stitch-contact-map-card-body strong {
  font-weight: 700;
}
.stitch-contact-map-card-body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .stitch-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .stitch-product-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(40px, 5vw, 72px);
  }
  .stitch-product-tier-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stitch-product-wholesale-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .stitch-about-work-rail,
  .stitch-oem-rail { grid-template-columns: repeat(2, 1fr); }
  .stitch-about-work-step {
    padding: 28px 24px;
    border: 0;
  }
  .stitch-oem-rail-step {
    padding: 28px 24px;
    border-bottom: 1px solid rgb(198 198 205 / 35%);
    border-right: 1px solid rgb(198 198 205 / 35%);
  }
  .stitch-oem-rail-step:nth-child(2n) { border-right: 0; }
  .stitch-about-work-step:nth-child(odd),
  .stitch-oem-rail-step:nth-child(odd) { padding-left: 4px; }
  .stitch-about-work-step:nth-child(even),
  .stitch-oem-rail-step:nth-child(even) { padding-right: 4px; }
  .stitch-oem-scope-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
  .stitch-bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .stitch-bento-card.is-wide { grid-column: span 2; }
  .stitch-bento-card.is-row {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
  }
  .stitch-bento-card.is-row .stitch-bento-card-body { flex: 1; }
  .stitch-bento-card.is-row .stitch-bento-media {
    flex: 0 0 42%;
    max-width: 42%;
  }
  .stitch-split { grid-template-columns: 1fr 1fr; }
  .stitch-freight-layout { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
  .stitch-network-layout { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
  .stitch-split.is-reverse .stitch-split-media { order: -1; }
  .stitch-tier-cards { grid-template-columns: 1fr 1fr; }
  .stitch-pipeline {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
  }
  .stitch-pipeline-arrow {
    display: grid;
    place-items: center;
    align-self: center;
  }
  .stitch-qc-flow { grid-template-columns: repeat(2, 1fr); }
  .stitch-qc-flow-step {
    padding: 28px 24px;
    border: 0;
  }
  .stitch-qc-flow-step:nth-child(odd) { padding-left: 4px; }
  .stitch-qc-flow-step:nth-child(even) { padding-right: 4px; }
  .stitch-qc-report-grid { grid-template-columns: 1fr 1fr; }
  .stitch-map-layout { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
  .stitch-form-grid.is-2 { grid-template-columns: 1fr 1fr; }
  .stitch-contact-grid { grid-template-columns: 7fr 5fr; }
}
@media (min-width: 1024px) {
  .stitch-product-related-grid {
    grid-auto-columns: calc((100% - 72px) / 4);
  }
  .stitch-about-work-rail,
  .stitch-oem-rail { grid-template-columns: repeat(4, 1fr); }
  .stitch-about-work-step {
    padding: 36px 28px;
    border: 0;
  }
  .stitch-oem-rail-step {
    padding: 36px 28px;
    border-bottom: 0;
    border-right: 1px solid rgb(198 198 205 / 35%);
  }
  .stitch-oem-rail-step:nth-child(2n) { border-right: 1px solid rgb(198 198 205 / 35%); }
  .stitch-about-work-step:first-child,
  .stitch-oem-rail-step:first-child { padding-left: 4px; }
  .stitch-about-work-step:last-child,
  .stitch-oem-rail-step:last-child {
    padding-right: 4px;
  }
  .stitch-oem-rail-step:last-child {
    border-right: 0;
  }
  .stitch-qc-flow { grid-template-columns: repeat(4, 1fr); }
  .stitch-qc-flow-step {
    padding: 36px 28px;
    border: 0;
  }
  .stitch-qc-flow-step:first-child {
    padding-left: 4px;
  }
  .stitch-qc-flow-step:last-child {
    padding-right: 4px;
  }
  .stitch-split.is-offset .stitch-split-copy { grid-column: 2 / span 4; }
  .stitch-split.is-offset .stitch-split-media { grid-column: 7 / span 6; }
  .stitch-split.is-offset-left .stitch-split-media { grid-column: 2 / span 6; }
  .stitch-split.is-offset-left .stitch-split-copy { grid-column: 9 / span 4; }
  .stitch-oem-cap-bento {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    min-height: min(72vh, 720px);
  }
  .stitch-oem-cap-card.is-featured {
    grid-row: 1 / -1;
    display: grid;
    grid-template-rows: 1.15fr auto;
  }
  .stitch-oem-cap-card.is-featured .stitch-oem-cap-media {
    aspect-ratio: auto;
    min-height: 280px;
    height: 100%;
  }
  .stitch-oem-cap-card:not(.is-featured) {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-rows: 1fr;
    align-items: stretch;
  }
  .stitch-oem-cap-card:not(.is-featured) .stitch-oem-cap-media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 160px;
  }
  .stitch-oem-cap-card:not(.is-featured) .stitch-oem-cap-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .stitch-catalog-nav {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: clamp(24px, 6vw, 36px);
  }
  .stitch-catalog-nav::-webkit-scrollbar {
    display: none;
  }
  .stitch-catalog-nav-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 13px;
  }
  .stitch-oem-rail,
  .stitch-about-work-rail,
  .stitch-qc-flow {
    gap: 4px 12px;
  }
  .stitch-oem-rail-step,
  .stitch-about-work-step,
  .stitch-qc-flow-step {
    padding: 16px 6px;
  }
  .stitch-oem-rail-step h3,
  .stitch-about-work-step h3,
  .stitch-qc-flow-step h3 {
    font-size: 1rem;
  }
  .stitch-oem-rail-step p,
  .stitch-about-work-step p,
  .stitch-qc-flow-step p {
    font-size: 14px;
    line-height: 1.5;
    max-width: none;
  }
  .stitch-showcase-card {
    padding: 16px;
  }
  .stitch-tier-card {
    padding: 20px 16px;
  }
  .stitch-tier-cards {
    gap: 12px;
  }
  .stitch-contact-hero-img {
    background-position: 72% center;
  }
  .stitch-contact-hero-fade {
    background:
      linear-gradient(90deg, rgb(43 51 64 / 60%) 0%, rgb(49 57 70 / 34%) 100%),
      linear-gradient(180deg, rgb(255 255 255 / 3%) 0%, rgb(35 42 54 / 16%) 100%);
  }
  .stitch-contact-head p {
    font-size: 1rem;
  }
}

/* Clean inner-page rhythm */
:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero,
  .stitch-res-hero
) {
  background-color: #fff;
}

:is(
  .stitch-products-hero-fade,
  .stitch-about-hero-fade,
  .stitch-qc-hero-fade,
  .stitch-ddp-hero-fade,
  .stitch-contact-hero-fade,
  .stitch-res-hero-fade
),
.stitch-oem-hero-fade {
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 86%) 0%,
    rgb(255 255 255 / 66%) 36%,
    rgb(255 255 255 / 26%) 58%,
    rgb(255 255 255 / 4%) 76%,
    transparent 100%
  );
}

.stitch-pipeline-mark {
  background: var(--brand-bronze);
  opacity: 0.55;
}

:is(
  .stitch-form-card,
  .stitch-why-card,
  .stitch-phone-card,
  .stitch-showcase-card,
  .stitch-tier-card,
  .stitch-pipeline,
  .stitch-contact-map
) {
  border-color: rgb(17 26 36 / 15%);
}

.stitch-procure-band,
.stitch-oem-tier,
.stitch-about-work,
.stitch-qc-flow-section,
.stitch-network-section,
.stitch-contact-map-section {
  background: var(--accent-panel);
  color: var(--ink);
}

.stitch-procure-band {
  border-top-color: rgb(17 26 36 / 12%);
}

.stitch-procure-head p,
.stitch-procure-list li,
.stitch-oem-tier-head p,
.stitch-oem-rail-step p,
.stitch-about-work-head p,
.stitch-about-work-step p,
.stitch-tier-card p,
.stitch-pipeline-step p,
.stitch-qc-flow-head p,
.stitch-qc-flow-step p,
.stitch-network-copy > p,
.stitch-network-block > p,
.stitch-contact-map-head p {
  color: var(--muted);
}

.stitch-procure-list,
.stitch-procure-list li,
.stitch-oem-rail,
.stitch-oem-rail-step,
.stitch-about-work-rail,
.stitch-about-work-step,
.stitch-qc-flow,
.stitch-qc-flow-step,
.stitch-network-blocks,
.stitch-network-block {
  border-color: rgb(17 26 36 / 14%);
}

.stitch-oem-tier {
  border-top-color: rgb(17 26 36 / 12%);
}

.stitch-tier-card {
  background: var(--accent-card);
  border-color: rgb(17 26 36 / 14%);
}

.stitch-tier-card:hover {
  background: #e2dbd0;
}

.stitch-tier-icon,
.stitch-network-meta {
  color: var(--brand-bronze);
}

.stitch-pipeline {
  background: rgb(247 244 238 / 38%);
  border-color: rgb(17 26 36 / 14%);
}

.stitch-pipeline-arrow {
  color: rgb(17 26 36 / 38%);
}

.stitch-qc-flow-section {
  padding-bottom: clamp(64px, 10vw, 96px);
}

.stitch-qc-flow-mark {
  background: var(--brand-bronze);
  opacity: 0.55;
}

.stitch-oem-rail-mark,
.stitch-about-work-mark {
  background: var(--brand-bronze);
  opacity: 0.55;
}

.stitch-network-meta {
  font-weight: 700;
}

.stitch-network-media img {
  border-color: rgb(17 26 36 / 14%);
  background: #f4f1eb;
}

.stitch-contact-map-section {
  padding-bottom: clamp(48px, 8vw, 96px);
}

.stitch-contact-map {
  border-color: rgb(17 26 36 / 14%);
}

@media (max-width: 767px) {
  :is(
    .stitch-products-hero-fade,
    .stitch-about-hero-fade,
    .stitch-qc-hero-fade,
    .stitch-ddp-hero-fade,
    .stitch-contact-hero-fade
  ),
  .stitch-oem-hero-fade {
    background: linear-gradient(
      90deg,
      rgb(255 255 255 / 84%) 0%,
      rgb(255 255 255 / 58%) 100%
    );
  }
}

/* Unified inner-page hero photography — warm documentary daylight */
:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero,
  .stitch-res-hero
) {
  margin-top: var(--head-h);
  background-color: #f3f1ec;
  text-align: left;
}

:is(
  .stitch-products-hero-img,
  .stitch-about-hero-img,
  .stitch-qc-hero-img,
  .stitch-ddp-hero-img
) {
  opacity: 1;
  object-position: center;
}
.stitch-products-hero-img {
  object-position: 72% center;
}

:is(
  .stitch-products-hero-fade,
  .stitch-about-hero-fade,
  .stitch-qc-hero-fade,
  .stitch-ddp-hero-fade,
  .stitch-contact-hero-fade,
  .stitch-res-hero-fade
),
.stitch-oem-hero-fade {
  background: linear-gradient(
    90deg,
    rgb(247 246 242 / 94%) 0%,
    rgb(247 246 242 / 82%) 36%,
    rgb(247 246 242 / 42%) 58%,
    rgb(247 246 242 / 8%) 76%,
    transparent 100%
  );
}

:is(
  .stitch-about-hero-inner,
  .stitch-oem-hero,
  .stitch-oem-hero-inner,
  .stitch-contact-head
) {
  color: var(--ink);
}

.stitch-oem-hero-inner {
  max-width: 42rem;
  margin-inline: 0;
}

:is(
  .stitch-about-hero-lead,
  .stitch-oem-hero-lead,
  .stitch-contact-hero-lead
) {
  color: var(--muted);
}

.stitch-oem-hero-actions {
  justify-content: flex-start;
}

.stitch-contact-head h1 {
  color: var(--ink);
}

@media (max-width: 767px) {
  :is(
    .stitch-products-hero-img,
    .stitch-about-hero-img,
    .stitch-qc-hero-img,
    .stitch-ddp-hero-img
  ) {
    object-position: 74% center;
  }

  .stitch-oem-hero,
  .stitch-contact-hero-img {
    background-position: 74% center;
  }

  :is(
    .stitch-products-hero-fade,
    .stitch-about-hero-fade,
    .stitch-qc-hero-fade,
    .stitch-ddp-hero-fade,
    .stitch-contact-hero-fade
  ),
  .stitch-oem-hero-fade {
    background: linear-gradient(
      90deg,
      rgb(247 246 242 / 91%) 0%,
      rgb(247 246 242 / 74%) 100%
    );
  }
}

/* Keep the documentary image present after the shared hero compatibility rules. */
:is(
  .stitch-products-hero-fade,
  .stitch-about-hero-fade,
  .stitch-qc-hero-fade,
  .stitch-ddp-hero-fade,
  .stitch-contact-hero-fade
),
.stitch-oem-hero-fade {
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 86%) 0%,
    rgb(255 255 255 / 66%) 36%,
    rgb(255 255 255 / 26%) 58%,
    rgb(255 255 255 / 4%) 76%,
    transparent 100%
  );
}

@media (max-width: 767px) {
  :is(
    .stitch-products-hero-fade,
    .stitch-about-hero-fade,
    .stitch-qc-hero-fade,
    .stitch-ddp-hero-fade,
    .stitch-contact-hero-fade
  ),
  .stitch-oem-hero-fade {
    background: linear-gradient(
      90deg,
      rgb(255 255 255 / 84%) 0%,
      rgb(255 255 255 / 58%) 100%
    );
  }
}

/* Dark bottom CTA — inset card, not full-bleed */
.stitch-cta-dark {
  background: transparent;
  background-image: none;
  color: inherit;
  border-bottom: 0;
}

.stitch-cta-dark > .wrap {
  background-color: var(--primary);
  background-image: url("../images/cta-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.stitch-cta-dark h2 {
  color: inherit;
}

.stitch-cta-dark p {
  color: rgb(255 255 255 / 84%);
}

.stitch-cta-dark .btn-light {
  background: var(--surface);
  color: var(--primary);
  border-color: rgb(198 198 205 / 42%);
}

.stitch-cta-dark .btn-light:hover {
  background: var(--surface-muted);
  border-color: rgb(154 104 71 / 45%);
}

/* —— Impeccable visual weight pass: less box, more mass —— */
:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero,
  .stitch-res-hero
) {
  border-bottom: 0;
}

:is(
  .stitch-products-hero-fade,
  .stitch-about-hero-fade,
  .stitch-oem-hero-fade,
  .stitch-qc-hero-fade,
  .stitch-ddp-hero-fade,
  .stitch-contact-hero-fade,
  .stitch-res-hero-fade
) {
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 97%) 0%,
    rgb(255 255 255 / 90%) 28%,
    rgb(255 255 255 / 55%) 52%,
    rgb(255 255 255 / 12%) 74%,
    transparent 100%
  );
}

:is(
  .stitch-products-hero h1,
  .stitch-about-hero h1,
  .stitch-oem-hero h1,
  .stitch-qc-hero h1,
  .stitch-ddp-hero h1,
  .stitch-contact-head h1,
  .stitch-res-hero h1,
  .stitch-article-hero h1,
  .stitch-product-hero h1
) {
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

:is(
  .stitch-products-signal,
  .stitch-qc-signal,
  .stitch-page-signal
) {
  background: var(--surface);
  border-bottom: 0;
  padding-block: clamp(36px, 5vw, 52px);
}

:is(
  .stitch-products-signal-list li,
  .stitch-qc-signal-list li,
  .stitch-page-signal-list li
) {
  border: 0 !important;
  padding-block: 8px;
}

:is(
  .stitch-products-signal-list strong,
  .stitch-qc-signal-list strong,
  .stitch-page-signal-list strong
) {
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 768px) {
  :is(
    .stitch-products-signal-list li,
    .stitch-qc-signal-list li,
    .stitch-page-signal-list li
  ) {
    padding-inline: 28px;
  }
  :is(
    .stitch-products-signal-list li:first-child,
    .stitch-qc-signal-list li:first-child,
    .stitch-page-signal-list li:first-child
  ) {
    padding-left: 0;
  }
  :is(
    .stitch-products-signal-list li:last-child,
    .stitch-qc-signal-list li:last-child,
    .stitch-page-signal-list li:last-child
  ) {
    padding-right: 0;
  }
}

:is(
  .stitch-procure-band,
  .stitch-oem-tier,
  .stitch-about-work,
  .stitch-qc-flow-section,
  .stitch-network-section,
  .stitch-map-section,
  .stitch-oem-capabilities,
  .stitch-oem-scope,
  .stitch-qc-report,
  .stitch-freight-section,
  .stitch-contact-map-section,
  .stitch-catalog-section
) {
  border-top: 0;
  border-bottom: 0;
}

:is(
  .stitch-qc-flow,
  .stitch-oem-rail,
  .stitch-about-work-rail,
  .stitch-freight-routes,
  .stitch-network-blocks
) {
  border-top: 0;
}

:is(
  .stitch-qc-flow-step,
  .stitch-oem-rail-step,
  .stitch-about-work-step,
  .stitch-freight-route,
  .stitch-network-block
) {
  border: 0 !important;
  padding-block: clamp(20px, 3vw, 28px);
}

@media (min-width: 768px) {
  :is(
    .stitch-qc-flow-step,
    .stitch-oem-rail-step,
    .stitch-about-work-step
  ) {
    border-right: 0 !important;
    padding-inline: 20px;
  }
  :is(
    .stitch-qc-flow-step:first-child,
    .stitch-oem-rail-step:first-child,
    .stitch-about-work-step:first-child
  ) {
    padding-left: 0;
  }
  :is(
    .stitch-qc-flow-step:last-child,
    .stitch-oem-rail-step:last-child,
    .stitch-about-work-step:last-child
  ) {
    padding-right: 0;
  }
}

:is(
  .stitch-qc-flow-mark,
  .stitch-oem-rail-mark,
  .stitch-about-work-mark,
  .stitch-pipeline-mark
) {
  width: 36px;
  height: 3px;
  opacity: 0.9;
  background: var(--primary);
  border-radius: 0;
}

:is(
  .stitch-catalog-head,
  .stitch-map-markets li,
  .stitch-why-list li
) {
  border: 0 !important;
}

.stitch-catalog-head {
  padding-bottom: 0;
  margin-bottom: 18px;
}

:is(
  .stitch-form-card,
  .stitch-why-card,
  .stitch-phone-card,
  .stitch-oem-scope-tier,
  .stitch-oem-cap-card,
  .stitch-tier-card,
  .stitch-pipeline,
  .stitch-qc-report-media,
  .stitch-freight-media img,
  .stitch-network-media img,
  .stitch-map-frame,
  .stitch-contact-map
) {
  border: 0 !important;
  box-shadow: none !important;
}

:is(
  .stitch-form-card,
  .stitch-why-card,
  .stitch-phone-card,
  .stitch-oem-scope-tier,
  .stitch-oem-cap-card:not(.is-featured),
  .stitch-tier-card
) {
  background: var(--surface);
}

.stitch-oem-cap-card.is-featured {
  background: var(--primary);
}

.stitch-qc-report-list,
.stitch-oem-scope-list {
  border-left-color: var(--line-strong);
  border-left-width: 2px;
}

.stitch-map-frame {
  padding: 0;
  background: transparent;
}
.stitch-map-frame img {
  background: var(--surface);
}

.stitch-contact-body {
  padding-top: clamp(40px, 6vw, 72px);
}

.stitch-freight-copy h2,
.stitch-network-copy h2,
.stitch-qc-report-copy h2,
.stitch-oem-scope-copy h2,
.stitch-oem-capabilities-head h2,
.stitch-oem-tier-head h2,
.stitch-about-work-head h2,
.stitch-qc-flow-head h2,
.stitch-procure-head h2,
.stitch-map-copy h2,
.stitch-contact-map-head h2,
.stitch-catalog-title {
  font-weight: 700;
  letter-spacing: -0.035em;
}

/* Product detail: drop chrome frames */
.stitch-product-media,
.stitch-product-thumb,
.stitch-product-related-card,
.stitch-product-wholesale-cta {
  border: 0 !important;
  box-shadow: none !important;
}
.stitch-product-media {
  background: var(--surface);
}
.stitch-product-thumb {
  background: var(--surface-low);
}
.stitch-product-thumb.is-active {
  outline: 2px solid var(--primary);
  outline-offset: 0;
}

/* Keep hero fades cool-neutral (not warm paper) */
@media (max-width: 767px) {
  :is(
    .stitch-products-hero-fade,
    .stitch-about-hero-fade,
    .stitch-qc-hero-fade,
    .stitch-ddp-hero-fade,
    .stitch-contact-hero-fade
  ),
  .stitch-oem-hero-fade {
    background: linear-gradient(
      90deg,
      rgb(255 255 255 / 96%) 0%,
      rgb(255 255 255 / 72%) 100%
    );
  }
}

/* —— Editorial continuity: one canvas, not stacked bands —— */
main {
  background: var(--bg);
}

:is(
  .stitch-products-signal,
  .stitch-qc-signal,
  .stitch-page-signal,
  .stitch-catalog-section,
  .stitch-procure-band,
  .stitch-oem-tier,
  .stitch-about-work,
  .stitch-qc-flow-section,
  .stitch-qc-report,
  .stitch-map-section,
  .stitch-oem-capabilities,
  .stitch-oem-scope,
  .stitch-freight-section,
  .stitch-network-section,
  .stitch-contact-map-section,
  .stitch-contact-body,
  .stitch-product-related,
  .faq
) {
  background: transparent !important;
  border: 0 !important;
}

:is(
  .stitch-form-card,
  .stitch-why-card,
  .stitch-phone-card,
  .stitch-oem-scope-tier,
  .stitch-oem-cap-card:not(.is-featured),
  .stitch-tier-card,
  .stitch-product-related-card,
  .stitch-pipeline
) {
  background: transparent !important;
}

.stitch-oem-cap-card.is-featured {
  background: var(--primary) !important;
}

/* Media wells only — the quiet contrast that premium layouts keep */
:is(
  .stitch-product-media,
  .stitch-product-media-stage,
  .stitch-product-related-media,
  .stitch-oem-cap-media,
  .stitch-qc-report-media,
  .stitch-freight-media img,
  .stitch-network-media img,
  .stitch-map-frame img,
  .stitch-product-thumb
) {
  background: var(--surface-low);
}

.stitch-oem-cap-body,
.stitch-product-related-body {
  background: transparent;
}

.stitch-catalog-nav-item.is-active {
  font-weight: 700;
}

/* Section rhythm from air, not bands */
:is(
  .stitch-procure-band,
  .stitch-oem-tier,
  .stitch-about-work,
  .stitch-qc-flow-section,
  .stitch-oem-capabilities,
  .stitch-oem-scope,
  .stitch-qc-report,
  .stitch-map-section,
  .stitch-freight-section,
  .stitch-network-section,
  .stitch-contact-map-section
) {
  padding-block: var(--section-gap);
}

:is(
  .stitch-products-signal,
  .stitch-qc-signal,
  .stitch-page-signal
) {
  padding-block: clamp(40px, 6vw, 64px);
}

/* Hero fades stay white → photo, matching the continuous canvas */
:is(
  .stitch-products-hero-fade,
  .stitch-about-hero-fade,
  .stitch-oem-hero-fade,
  .stitch-qc-hero-fade,
  .stitch-ddp-hero-fade,
  .stitch-contact-hero-fade
) {
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 97%) 0%,
    rgb(255 255 255 / 90%) 28%,
    rgb(255 255 255 / 52%) 54%,
    rgb(255 255 255 / 10%) 76%,
    transparent 100%
  );
}

.stitch-cta-dark {
  background: transparent;
  background-image: none;
}

.stitch-cta-dark > .wrap {
  background-color: var(--primary);
  background-image: url("../images/cta-bg.png");
  background-size: cover;
  background-position: center;
}

/* —— Hero meta / stats (replaces templated signal strips) —— */
.stitch-hero-meta {
  margin: 22px 0 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.stitch-hero-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.stitch-hero-meta a:hover {
  color: var(--ink);
}
.stitch-hero-meta span[aria-hidden="true"] {
  margin: 0 0.45em;
  opacity: 0.45;
}

.stitch-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin: 28px 0 0;
  padding: 0;
}
.stitch-hero-stat {
  margin: 0;
  padding: 0;
  min-width: 7rem;
}
.stitch-hero-stat dt {
  margin: 0 0 6px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stitch-hero-stat dd {
  margin: 0;
  max-width: 14ch;
  font-size: 16px;
  line-height: 1.45;
  color: var(--muted);
}

/* —— Industrial rail / signal icons (gpt-image-2, transparent) —— */
.stitch-rail-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 0 14px;
  padding: 0;
  background: transparent;
  border: 0;
}
.stitch-rail-icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.stitch-rail-icon.is-compact {
  width: 36px;
  height: 36px;
  margin: 0;
  flex-shrink: 0;
}
.stitch-rail-icon.is-compact img {
  width: 32px;
  height: 32px;
}

.stitch-signal-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0 0 10px;
}
.stitch-signal-icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

:is(
  .stitch-products-signal-list li,
  .stitch-qc-signal-list li,
  .stitch-page-signal-list li
) {
  align-content: start;
}

.stitch-why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border-top: 0 !important;
  padding-top: 0 !important;
}

:is(
  .stitch-qc-flow-mark,
  .stitch-oem-rail-mark,
  .stitch-about-work-mark
) {
  display: none !important;
}

/* —— Resources newsletter strip (short band + photo, not 520px heroes) —— */
.stitch-res-hero {
  position: relative;
  isolation: isolate;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin-top: var(--head-h);
  display: block;
  overflow: hidden;
  background: #1a1d21 !important;
  color: #fff !important;
  text-align: left !important;
  border-bottom: 0;
}
.stitch-res-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}
.stitch-res-hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block !important;
  background: linear-gradient(
    90deg,
    rgb(7 10 13 / 52%) 0%,
    rgb(7 10 13 / 28%) 40%,
    rgb(7 10 13 / 10%) 68%,
    transparent 88%
  );
  pointer-events: none;
}
.stitch-res-hero-wrap {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto !important;
  align-self: auto !important;
  flex: none !important;
  padding-block: 28px !important;
}
.stitch-res-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 22rem);
  align-items: center;
  gap: 16px 36px;
  max-width: none !important;
  width: 100%;
  margin: 0 !important;
}
.stitch-res-hero-copy {
  min-width: 0;
}
.stitch-res-kicker,
.stitch-res-hero-kicker {
  display: none;
}
.stitch-breadcrumb {
  margin: 0 0 14px;
}
.stitch-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stitch-breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--breadcrumb-muted, rgb(17 26 36 / 48%));
}
.stitch-breadcrumb li + li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 10px;
  border-radius: 50%;
  background: var(--brand-bronze, #8f5f42);
  opacity: 0.9;
}
.stitch-breadcrumb a {
  color: var(--breadcrumb-link, rgb(17 26 36 / 62%));
  text-decoration: none;
  transition: color 0.18s ease;
}
.stitch-breadcrumb a:hover {
  color: var(--breadcrumb-hover, var(--brand-bronze, #8f5f42));
}
.stitch-breadcrumb [aria-current="page"] {
  color: var(--breadcrumb-current, var(--primary, #0b1219));
  font-weight: 700;
}

/* Shared tokens: all dark documentary heroes inherit one breadcrumb theme */
:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero,
  .stitch-res-hero
) {
  --breadcrumb-muted: #fff;
  --breadcrumb-link: #fff;
  --breadcrumb-hover: #fff;
  --breadcrumb-current: #fff;
}
:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero,
  .stitch-res-hero
) .stitch-breadcrumb li,
:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero,
  .stitch-res-hero
) .stitch-breadcrumb a,
:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero,
  .stitch-res-hero
) .stitch-breadcrumb [aria-current="page"] {
  color: #fff !important;
}
.stitch-res-hero h1 {
  margin: 0 0 4px !important;
  max-width: none !important;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em;
  color: #fff !important;
  font-weight: 700;
  text-shadow: none !important;
}
.stitch-res-hero-sub {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: rgb(255 255 255 / 88%);
}
.stitch-res-lead,
.stitch-res-hero-lead {
  margin: 0 !important;
  max-width: 42ch !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.45;
  color: rgb(255 255 255 / 62%) !important;
}
.stitch-res-hero-form {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.stitch-res-hero-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: var(--radius, 4px);
  background: #fff;
  color: var(--primary, #0b1219);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.stitch-res-hero-form input[type="email"]::placeholder {
  color: rgb(17 26 36 / 42%);
}
.stitch-res-hero-form input[type="email"]:focus {
  border-color: rgb(255 255 255 / 70%);
  background: #fff;
  box-shadow: 0 0 0 2px rgb(255 255 255 / 22%);
}
.stitch-res-hero-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  background: var(--brand-bronze, #8f5f42);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s ease;
}
.stitch-res-hero-submit:hover {
  background: #7a5038;
}
.stitch-res-hero-submit:active {
  transform: scale(0.98);
}
.stitch-res-hero-submit svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stitch-res-hero-actions {
  display: none;
}
@media (max-width: 899px) {
  .stitch-res-hero-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stitch-res-hero-wrap {
    padding-block: 24px !important;
  }
  .stitch-res-hero-form {
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  .stitch-res-hero-form {
    flex-direction: column;
    align-items: stretch;
  }
  .stitch-res-hero-submit {
    width: 100%;
  }
}

.stitch-article-hero {
  margin-top: var(--head-h);
  padding: clamp(36px, 6vw, 64px) 0 clamp(24px, 3.5vw, 36px);
  border-bottom: 1px solid rgb(12 17 23 / 8%);
  background: #fff;
}
.stitch-article-hero-inner {
  max-width: 40rem;
}
.stitch-article-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--primary, #0b1219);
}
.stitch-article-hero .stitch-hero-meta {
  margin-top: 4px;
  color: var(--muted, #5c6770);
  font-size: 16px;
}

.stitch-res-section-head {
  margin: 0 0 clamp(20px, 3vw, 28px);
  max-width: 36rem;
}
.stitch-res-section-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.stitch-res-section-head p {
  margin: 8px 0 0;
  color: var(--muted, #5c6770);
  line-height: 1.5;
}

.stitch-res-list-section,
.stitch-video-section {
  padding: clamp(40px, 6vw, 72px) 0;
}
.stitch-res-list-section {
  background: var(--surface-low, #f4f5f7);
}

.stitch-meta-sep {
  display: inline-block;
  width: 1px;
  height: 0.85em;
  margin: 0 0.55em;
  vertical-align: -0.05em;
  background: rgb(12 17 23 / 22%);
}

.stitch-article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 5px;
  background: var(--surface-muted, #eceef1);
  color: var(--ink, #0c1117);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.stitch-article-tag.is-on-media {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--brand-bronze, #8f5f42);
  color: #fff;
}

.stitch-article-featured {
  display: none !important;
}

.stitch-res-section-head p {
  margin: 12px 0 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted, #5c6770);
}

.stitch-article-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.stitch-article-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: transform 0.2s ease;
}
.stitch-article-card:hover {
  transform: translateY(-3px);
}
.stitch-article-card:hover h3 {
  color: var(--brand-bronze, #8f5f42);
}
.stitch-article-card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius, 4px);
  background: var(--primary, #0b1219);
  aspect-ratio: 16 / 10;
}
.stitch-article-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stitch-article-card-body {
  display: grid;
  gap: 8px;
  padding: 0 2px;
}
.stitch-article-card-body h3 {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--primary, #0b1219);
  transition: color 0.18s ease;
}
.stitch-article-card-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted, #5c6770);
}

/* Legacy list (kept for any remaining pages) */
.stitch-article-index {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(12 17 23 / 8%);
}
.stitch-article-index li {
  border-bottom: 1px solid rgb(12 17 23 / 8%);
}
.stitch-article-index-link {
  display: grid;
  grid-template-columns: minmax(112px, 168px) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
  padding: clamp(20px, 2.8vw, 28px) 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.stitch-article-index-link:hover {
  opacity: 0.88;
}
.stitch-article-index-link:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.stitch-article-thumb {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius, 4px);
  background: var(--primary, #0b1219);
  aspect-ratio: 8 / 5;
}
.stitch-article-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stitch-article-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.stitch-article-index-link strong {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--primary, #0b1219);
}
.stitch-article-copy > span:last-child {
  color: var(--muted, #5c6770);
  line-height: 1.5;
  max-width: 58ch;
  font-size: 0.98rem;
}
.stitch-article-index-meta {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #5c6770);
  font-weight: 600;
}

.stitch-res-list-layout {
  display: block;
  width: 100%;
}
.stitch-res-list-main {
  min-width: 0;
  max-width: none;
}
.stitch-res-aside {
  position: sticky;
  top: calc(var(--head-h) + 20px);
  display: grid;
  gap: 28px;
  padding-top: 0;
}
.stitch-res-aside-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 24px 22px;
  border-radius: var(--radius, 4px);
  background:
    linear-gradient(165deg, rgb(255 255 255 / 6%) 0%, transparent 42%),
    var(--primary, #0b1219);
  color: #fff;
}
.stitch-res-aside-panel::before {
  content: "QUOTE";
  position: absolute;
  right: -0.08em;
  top: -0.2em;
  z-index: 0;
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgb(255 255 255 / 6%);
  pointer-events: none;
  user-select: none;
}
.stitch-res-aside-kicker,
.stitch-res-aside-lead,
.stitch-res-aside-panel .btn {
  position: relative;
  z-index: 1;
}
.stitch-res-aside-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 58%);
}
.stitch-res-aside-lead {
  margin: 0 0 18px;
  max-width: 18ch;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: #fff;
}
.stitch-res-aside-panel .btn-light {
  background: #fff;
  color: var(--primary, #0b1219);
  border-color: #fff;
}
.stitch-res-aside-nav {
  min-width: 0;
}
.stitch-res-aside-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-bronze, #8f5f42);
}
.stitch-res-aside-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(12 17 23 / 12%);
}
.stitch-res-aside-nav li {
  border-bottom: 1px solid rgb(12 17 23 / 12%);
}
.stitch-res-aside-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  color: var(--primary, #0b1219);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.stitch-res-aside-nav a span:last-child {
  color: var(--muted, #5c6770);
  font-weight: 500;
  transition: transform 0.2s ease;
}
.stitch-res-aside-nav a:hover {
  color: var(--brand-bronze, #8f5f42);
}
.stitch-res-aside-nav a:hover span:last-child {
  transform: translateX(3px);
  color: var(--brand-bronze, #8f5f42);
}

.stitch-res-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: 22px;
  border-top: 1px solid rgb(12 17 23 / 10%);
}
.stitch-res-pager-btn {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgb(17 26 36 / 14%);
  border-radius: var(--radius, 4px);
  background: var(--surface, #fff);
  color: var(--primary, #0b1219);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.stitch-res-pager-btn:hover {
  border-color: var(--primary, #0b1219);
}
.stitch-res-pager-btn.is-disabled,
.stitch-res-pager-btn[aria-disabled="true"] {
  opacity: 0.38;
  pointer-events: none;
}
.stitch-res-pager-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.stitch-res-pager-pages a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: var(--radius, 4px);
  color: var(--primary, #0b1219);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.stitch-res-pager-pages a:hover {
  border-color: rgb(17 26 36 / 14%);
}
.stitch-res-pager-pages a.is-current {
  background: var(--primary, #0b1219);
  border-color: var(--primary, #0b1219);
  color: #fff;
}

@media (max-width: 899px) {
  .stitch-res-list-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .stitch-res-aside {
    position: static;
  }
  .stitch-article-cards {
    grid-template-columns: 1fr;
  }
  .stitch-article-index-link {
    grid-template-columns: minmax(96px, 132px) minmax(0, 1fr);
    gap: 14px;
  }
  .stitch-res-pager {
    justify-content: center;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .stitch-article-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.stitch-res-rail {
  padding: 0 0 clamp(40px, 6vw, 72px);
}
.stitch-res-rail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  border-top: 1px solid rgb(12 17 23 / 8%);
  padding-top: clamp(24px, 3.5vw, 36px);
}
.stitch-res-rail-card {
  display: grid;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  padding-right: 8px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.stitch-res-rail-card:hover {
  transform: translateX(3px);
}
.stitch-res-rail-card strong {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: var(--primary, #0b1219);
}
.stitch-res-rail-card > span {
  color: var(--muted, #5c6770);
  line-height: 1.5;
  font-size: 0.95rem;
  max-width: 36ch;
}
.stitch-res-rail-card:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stitch-video-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.stitch-video-player {
  margin: 0;
  background: #0b1219;
  border-radius: 5px;
  overflow: hidden;
}
.stitch-video-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.stitch-video-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  letter-spacing: -0.02em;
}
.stitch-video-copy p {
  margin: 0 0 18px;
  color: var(--muted, #5c6770);
  line-height: 1.55;
  max-width: 38ch;
}

.stitch-video-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.stitch-video-card {
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.stitch-video-embed {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #0b1219;
  aspect-ratio: 16 / 9;
}
.stitch-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1100px) {
  .stitch-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.stitch-download-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.stitch-download-section {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface, #fff);
  border-top: 1px solid rgb(17 26 36 / 8%);
}
.stitch-download-head {
  max-width: 44rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.stitch-download-head h2 {
  margin: 0 0 12px;
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--primary, #0b1219);
}
.stitch-download-head p {
  margin: 0;
  max-width: 54ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted, #5c6770);
}
.stitch-download-list {
  border-top: 1px solid rgb(17 26 36 / 12%);
}
.stitch-download-list li {
  display: grid;
  grid-template-columns: minmax(100px, 140px) minmax(0, 1fr) auto;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgb(17 26 36 / 12%);
}
.stitch-download-meta {
  display: grid;
  gap: 6px;
}
.stitch-download-index {
  display: none !important;
}
.stitch-download-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-bronze, #8f5f42);
}
.stitch-download-body {
  display: grid;
  gap: 6px;
  min-width: 0;
  max-width: none;
  flex: none;
}
.stitch-download-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary, #0b1219);
}
.stitch-download-body p {
  margin: 0;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted, #5c6770);
}
.stitch-download-list .btn {
  flex: 0 0 auto;
  min-width: 8.5rem;
  justify-content: center;
  justify-self: end;
}
.stitch-download-note {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted, #5c6770);
}
.stitch-download-note a {
  color: var(--primary, #0b1219);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.stitch-download-note a:hover {
  color: var(--brand-bronze, #8f5f42);
}

@media (max-width: 767px) {
  .stitch-download-list li {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  .stitch-download-list .btn {
    justify-self: start;
    min-width: 0;
  }
}

.stitch-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(168px, 200px);
  gap: clamp(36px, 5vw, 64px);
  padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 7vw, 88px);
  align-items: start;
}
.stitch-article-body {
  max-width: 62ch;
}
.stitch-article-body > p,
.stitch-article-body li {
  line-height: 1.7;
  color: rgb(26 34 41 / 92%);
  font-size: 1.02rem;
}
.stitch-article-body > p {
  margin: 0 0 1.2em;
}
.stitch-article-body h2 {
  margin: 2.1em 0 0.7em;
  padding-top: 0.35em;
  font-size: clamp(1.15rem, 1.7vw, 1.32rem);
  letter-spacing: -0.02em;
  border-top: 1px solid rgb(12 17 23 / 8%);
}
.stitch-article-body h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.stitch-article-body ul,
.stitch-article-body ol {
  margin: 0 0 1.4em;
  padding-left: 1.2em;
}
.stitch-article-body li + li {
  margin-top: 0.5em;
}
.stitch-article-cta {
  margin-top: clamp(32px, 4.5vw, 48px);
  padding: clamp(24px, 3.5vw, 32px) 0 0;
  border-top: 1px solid rgb(12 17 23 / 8%);
}
.stitch-article-cta h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
}
.stitch-article-cta p {
  margin: 0 0 16px;
  color: var(--muted, #5c6770);
  line-height: 1.5;
  max-width: 42ch;
}
.stitch-article-aside {
  position: sticky;
  top: calc(var(--head-h) + 20px);
  padding-top: 2px;
}
.stitch-article-aside h2 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, #5c6770);
  font-weight: 700;
}
.stitch-article-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(12 17 23 / 8%);
}
.stitch-article-aside li {
  border-bottom: 1px solid rgb(12 17 23 / 8%);
}
.stitch-article-aside a {
  display: block;
  padding: 10px 0;
  color: var(--primary, #0b1219);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.4;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.stitch-article-aside a:hover {
  transform: translateX(3px);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .stitch-video-featured,
  .stitch-article-layout {
    grid-template-columns: 1fr;
  }
  .stitch-video-grid {
    grid-template-columns: 1fr;
  }
  .stitch-res-rail-grid {
    gap: 16px 20px;
  }
  .stitch-article-aside {
    position: static;
    margin-top: 8px;
  }
  .stitch-res-hero {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stitch-article-index-link,
  .stitch-res-rail-card,
  .stitch-article-aside a,
  .stitch-res-hero-actions .btn {
    transition: none;
  }
  .stitch-article-index-link:hover,
  .stitch-res-rail-card:hover,
  .stitch-article-aside a:hover {
    transform: none;
  }
}



/* —— Resources / stitch body readability (Impeccable type pass) —— */
:is(
  .stitch-products-hero-kicker,
  .stitch-about-hero-kicker,
  .stitch-oem-hero-kicker,
  .stitch-qc-hero-kicker,
  .stitch-ddp-eyebrow,
  .stitch-contact-hero-kicker,
  .stitch-res-hero-kicker,
  .stitch-res-kicker,
  .stitch-article-index-meta,
  .stitch-res-rail-label
) {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

:is(
  .stitch-products-hero-lead,
  .stitch-about-hero-lead,
  .stitch-oem-hero-lead,
  .stitch-qc-hero-lead,
  .stitch-ddp-hero-lead,
  .stitch-contact-hero-lead,
  .stitch-res-hero-lead,
  .stitch-res-lead
) {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  font-weight: 500;
  line-height: 1.6;
}

:is(
  .stitch-article-body > p,
  .stitch-article-body li,
  .stitch-video-copy p,
  .stitch-download-body p,
  .stitch-download-head p,
  .stitch-res-section-head p,
  .stitch-article-copy > span:last-child,
  .stitch-res-rail-card > span
) {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

:is(
  .stitch-article-index-link strong,
  .stitch-download-body h3,
  .stitch-res-rail-card strong,
  .stitch-video-copy h3
) {
  font-weight: 700;
  letter-spacing: -0.015em;
}

.stitch-article-body h2,
.stitch-res-section-head h2,
.stitch-res-hero h1,
.stitch-article-hero h1 {
  font-weight: 700;
}

/* About secondary buyer note (no tabs) */
.stitch-about-panel[hidden] {
  display: none !important;
}

/* Policy pages — Reachsky-style sticky TOC + prose */
.stitch-policy-section {
  margin-top: var(--head-h);
  padding: clamp(20px, 3vw, 32px) 0 clamp(48px, 7vw, 80px);
  background: transparent;
}
.stitch-policy-layout {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
@media (min-width: 900px) {
  .stitch-policy-layout {
    grid-template-columns: minmax(11rem, 14.5rem) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
  }
}
.stitch-policy-sidebar {
  min-width: 0;
}
@media (min-width: 900px) {
  .stitch-policy-sidebar {
    position: sticky;
    top: calc(var(--head-h) + 1rem);
  }
}
.stitch-policy-toc {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}
.stitch-policy-toc a {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgb(17 26 36 / 10%);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: rgb(17 26 36 / 48%);
  text-decoration: none;
  transition: color 0.18s ease;
}
.stitch-policy-toc a:last-child {
  border-bottom: 0;
}
.stitch-policy-toc a:hover {
  color: var(--primary);
}
.stitch-policy-toc a.is-active {
  color: var(--brand-bronze);
  font-weight: 700;
}
@media (max-width: 899px) {
  .stitch-policy-toc {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0 1.1rem;
    padding: 0 0 0.75rem;
    border-bottom: 1px solid rgb(17 26 36 / 10%);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .stitch-policy-toc a {
    flex: 0 0 auto;
    padding: 0.3rem 0;
    border-bottom: 0;
    white-space: nowrap;
  }
  .stitch-policy-toc a.is-active {
    box-shadow: inset 0 -2px 0 var(--brand-bronze);
  }
}
.stitch-policy-main {
  min-width: 0;
  max-width: 42rem;
}
.stitch-policy-head {
  margin-bottom: clamp(20px, 3vw, 28px);
}
.stitch-policy-head .stitch-breadcrumb {
  margin-bottom: 8px;
}
.stitch-policy-head h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: var(--tracking-title, -0.03em);
  line-height: 1.2;
  color: var(--primary);
  max-width: 22ch;
}
.stitch-policy-wrap {
  display: block;
  max-width: 42rem;
  margin-inline: auto;
}

/* Simple utility page title — checkout and pages without TOC */
.stitch-page-head {
  margin-top: var(--head-h);
  padding: clamp(16px, 2.5vw, 24px) 0 0;
  background: var(--surface, #fff);
  border-bottom: 0;
}
.stitch-page-head .wrap {
  max-width: 42rem;
  margin-inline: auto;
}
.stitch-page-head .stitch-breadcrumb {
  margin-bottom: 8px;
}
.stitch-page-head h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: var(--tracking-title, -0.03em);
  line-height: 1.2;
  color: var(--primary);
  max-width: 22ch;
}

/* Policy / checkout pages — continuous legal prose, not cards */
.stitch-policy-card {
  padding: 0 0 clamp(28px, 4vw, 40px);
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: calc(var(--head-h) + 12px);
}
.stitch-policy-card + .stitch-policy-card {
  border-top: 0;
  padding-top: 0;
}
.stitch-policy-card.is-featured {
  background: transparent !important;
  color: inherit !important;
  border: 0 !important;
}
.stitch-policy-card h2 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink, #0c1117);
}
.stitch-policy-card p,
.stitch-policy-card li {
  color: var(--ink, #0c1117);
  font-size: 16px;
  line-height: 1.7;
}
.stitch-policy-card p {
  margin: 0 0 12px;
}
.stitch-policy-card p:last-child {
  margin-bottom: 0;
}
.stitch-policy-card a {
  color: var(--brand-bronze, #8f5f42);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}
.stitch-policy-card a:hover {
  color: var(--primary, #0b1219);
}
.stitch-policy-card ul,
.stitch-policy-card ol {
  margin: 0 0 4px;
  padding-left: 1.25rem;
  display: grid;
  gap: 8px;
}
.stitch-policy-card li::marker {
  color: var(--muted, #5c6770);
}

.stitch-track-form {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}
.stitch-checkout-layout {
  display: grid;
  gap: 28px;
}
@media (min-width: 960px) {
  .stitch-checkout-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
    align-items: start;
  }
}
.stitch-checkout-title {
  font-size: 1.25rem;
  margin: 0 0 16px;
}
.stitch-checkout-summary {
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgb(17 26 36 / 12%);
  border-radius: var(--radius);
  background: var(--surface-low);
}
.stitch-checkout-lines {
  margin: 8px 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 6px;
}
.stitch-checkout-lines span {
  color: var(--muted);
  font-weight: 400;
}
.stitch-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-size: 14px;
  color: var(--ink);
}
.stitch-field legend {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

/* Logistics freight credentials */
.stitch-freight-creds {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--accent-panel);
  color: var(--ink);
}
.stitch-freight-creds-head {
  max-width: 40rem;
  margin-bottom: 28px;
}
.stitch-freight-creds-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 10px;
}
.stitch-freight-creds-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.stitch-freight-creds-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 900px) {
  .stitch-freight-creds-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.stitch-freight-cred-card {
  padding: 24px;
  border: 1px solid rgb(17 26 36 / 14%);
  border-radius: var(--radius);
  background: var(--accent-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stitch-freight-cred-card h3 {
  font-size: 1.125rem;
  margin: 0;
}
.stitch-freight-cred-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.stitch-freight-cred-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}
.stitch-freight-cred-tags li {
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--surface-low);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Contact process panel — keep after global “de-box” passes */
.stitch-contact-aside .stitch-why-card {
  background:
    linear-gradient(165deg, rgb(255 255 255 / 6%) 0%, transparent 42%),
    var(--primary) !important;
  color: #fff !important;
  border: 0 !important;
}
.stitch-contact-aside .stitch-why-list li {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  padding: 18px 0 !important;
  border-top: 1px solid rgb(255 255 255 / 14%) !important;
}
.stitch-contact-aside .stitch-why-list li:first-child {
  padding-top: 0 !important;
  border-top: 0 !important;
}
.stitch-contact-aside .stitch-why-list li::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 0 12px;
  background: var(--brand-bronze);
}
.stitch-contact-aside .stitch-why-list h4 {
  color: #fff !important;
}
.stitch-contact-aside .stitch-why-list p {
  color: rgb(255 255 255 / 68%) !important;
}
.stitch-contact-aside .stitch-contact-channels {
  margin-top: 28px;
  padding: 20px 0 0 !important;
  border: 0 !important;
  border-top: 1px solid rgb(255 255 255 / 14%) !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.stitch-contact-aside .stitch-contact-channels a,
.stitch-contact-aside .stitch-contact-channels p {
  color: #fff !important;
}
.stitch-contact-aside .stitch-contact-channel-icon {
  color: rgb(255 255 255 / 62%) !important;
}

/* —— Logistics page: industrial weight pass —— */
.stitch-logistics-page .stitch-ddp-hero {
  min-height: min(calc(100dvh - var(--head-h)), 620px);
}
.stitch-logistics-page .stitch-ddp-hero-fade {
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 97%) 0%,
    rgb(255 255 255 / 90%) 28%,
    rgb(255 255 255 / 52%) 54%,
    rgb(255 255 255 / 10%) 76%,
    transparent 100%
  );
}
.stitch-logistics-page .stitch-ddp-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--brand-bronze);
}
.stitch-logistics-page .stitch-ddp-hero h1 {
  max-width: 16ch;
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.stitch-logistics-page .stitch-ddp-hero-actions {
  margin-bottom: 8px;
}
.stitch-logistics-page .stitch-hero-stats {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgb(17 26 36 / 14%);
  gap: 24px 48px;
}
.stitch-logistics-page .stitch-hero-stat dt {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-variant-numeric: tabular-nums;
}

.stitch-logistics-page .stitch-freight-section {
  padding: var(--section-gap) 0;
  border-bottom: 0;
  background: var(--surface-low);
}
.stitch-logistics-page .stitch-freight-eyebrow,
.stitch-logistics-page .stitch-network-eyebrow,
.stitch-logistics-page .stitch-freight-creds-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-bronze);
}
.stitch-logistics-page .stitch-freight-copy h2,
.stitch-logistics-page .stitch-network-copy h2,
.stitch-logistics-page .stitch-freight-creds-head h2 {
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.stitch-logistics-page .stitch-freight-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--primary);
}
.stitch-logistics-page .stitch-freight-media::after {
  content: "LANES";
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgb(255 255 255 / 72%);
  pointer-events: none;
}
.stitch-logistics-page .stitch-freight-media img {
  border: 0 !important;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.92;
}
.stitch-logistics-page .stitch-freight-routes {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0;
  margin-top: 8px;
}
.stitch-logistics-page .stitch-freight-route {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid rgb(17 26 36 / 14%) !important;
  background: transparent;
}
.stitch-logistics-page .stitch-freight-route:first-child {
  border-top: 1px solid rgb(17 26 36 / 14%);
}
.stitch-logistics-page .stitch-freight-route-body::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 0 12px;
  background: var(--brand-bronze);
}
.stitch-logistics-page .stitch-freight-index,
.stitch-logistics-page .stitch-network-index,
.stitch-logistics-page .stitch-freight-cred-index {
  display: none !important;
}
.stitch-logistics-page .stitch-freight-route dt {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.stitch-logistics-page .stitch-freight-meta {
  gap: 8px 18px;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
}
.stitch-logistics-page .stitch-freight-note {
  font-size: 15px;
  max-width: 48ch;
}
.stitch-logistics-page .stitch-freight-route.is-featured {
  margin-top: 8px;
  padding: 22px 20px;
  border: 0 !important;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
}
.stitch-logistics-page .stitch-freight-route.is-featured .stitch-freight-route-body::before {
  background: var(--brand-bronze);
}
.stitch-logistics-page .stitch-freight-route.is-featured dt,
.stitch-logistics-page .stitch-freight-route.is-featured .stitch-freight-meta {
  color: #fff;
}
.stitch-logistics-page .stitch-freight-route.is-featured .stitch-freight-note {
  color: rgb(255 255 255 / 70%);
}
.stitch-logistics-page .stitch-freight-route.is-featured .stitch-freight-meta span + span::before {
  background: rgb(255 255 255 / 28%);
}

.stitch-logistics-page .stitch-network-section {
  padding: var(--section-gap) 0;
  background: var(--surface);
}
.stitch-logistics-page .stitch-network-blocks {
  border-top: 0;
}
.stitch-logistics-page .stitch-network-block {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid rgb(17 26 36 / 14%) !important;
}
.stitch-logistics-page .stitch-network-block:first-child {
  border-top: 1px solid rgb(17 26 36 / 14%);
}
.stitch-logistics-page .stitch-network-block > div::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 0 12px;
  background: var(--brand-bronze);
}
.stitch-logistics-page .stitch-network-block h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stitch-logistics-page .stitch-network-block > div > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.stitch-logistics-page .stitch-network-meta {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.stitch-logistics-page .stitch-network-media {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.stitch-logistics-page .stitch-network-media::before {
  content: none;
  display: none;
}
.stitch-logistics-page .stitch-network-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
}

.stitch-logistics-page .stitch-freight-creds {
  padding: var(--section-gap) 0;
  background: var(--surface-low);
}
.stitch-logistics-page .stitch-freight-creds-head {
  max-width: 42rem;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.stitch-logistics-page .stitch-freight-creds-grid {
  gap: 12px;
}
.stitch-logistics-page .stitch-freight-cred-card {
  position: relative;
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgb(17 26 36 / 12%) !important;
  background: var(--surface) !important;
  gap: 14px;
}
.stitch-logistics-page .stitch-freight-cred-card::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--brand-bronze);
}
.stitch-logistics-page .stitch-freight-cred-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.stitch-logistics-page .stitch-freight-cred-card > p {
  font-size: 15px;
  line-height: 1.65;
}
.stitch-logistics-page .stitch-freight-cred-card.is-featured {
  background: var(--primary) !important;
  border-color: transparent !important;
  color: #fff;
}
.stitch-logistics-page .stitch-freight-cred-card.is-featured h3 {
  color: #fff;
}
.stitch-logistics-page .stitch-freight-cred-card.is-featured > p {
  color: rgb(255 255 255 / 70%);
}
.stitch-logistics-page .stitch-freight-cred-card.is-featured .stitch-freight-cred-tags li {
  background: rgb(255 255 255 / 10%);
  color: #fff;
}
.stitch-logistics-page .stitch-freight-cred-tags li {
  border: 1px solid rgb(17 26 36 / 10%);
  background: var(--surface-low);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.stitch-logistics-page .stitch-freight-cred-card .stitch-network-meta {
  margin-top: auto;
}
.stitch-logistics-page .stitch-freight-cred-card .stitch-network-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 899px) {
  .stitch-logistics-page .stitch-freight-media img {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
}

/* 2026-08-30: unified dark documentary heroes */
:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero
) {
  height: 520px;
  min-height: 520px;
  background: #111418;
  color: #fff;
}

:is(
  .stitch-products-hero-img,
  .stitch-about-hero-img,
  .stitch-oem-hero-img,
  .stitch-qc-hero-img,
  .stitch-ddp-hero-img,
  .stitch-contact-hero-img
) {
  opacity: 1;
  object-position: center;
  filter: none;
}

:is(
  .stitch-products-hero-fade,
  .stitch-about-hero-fade,
  .stitch-oem-hero-fade,
  .stitch-qc-hero-fade,
  .stitch-ddp-hero-fade,
  .stitch-contact-hero-fade
) {
  background: linear-gradient(
    90deg,
    rgb(7 10 13 / 56%) 0%,
    rgb(7 10 13 / 32%) 36%,
    rgb(7 10 13 / 10%) 60%,
    transparent 84%
  );
}

/* About / Products: keep photo framing tweaks */
.stitch-about-hero-img {
  object-position: 58% center;
}
.stitch-products-hero-img {
  object-position: 78% center;
}
.stitch-oem-hero-img,
.stitch-qc-hero-img,
.stitch-ddp-hero-img {
  object-position: center;
}

:is(
  .stitch-products-hero-wrap,
  .stitch-about-hero-wrap,
  .stitch-oem-hero-wrap,
  .stitch-qc-hero-wrap,
  .stitch-ddp-hero-wrap,
  .stitch-contact-hero-wrap
) {
  padding-block: clamp(32px, 5vh, 48px);
}

/* Keep copy vertically centered in the fixed 520px heroes */
:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero
) {
  display: flex !important;
  align-items: center !important;
}

:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero
) > .wrap {
  flex: 0 1 auto !important;
  align-self: center !important;
  width: 100%;
  height: auto !important;
  margin-block: auto;
}

:is(
  .stitch-products-hero h1,
  .stitch-about-hero h1,
  .stitch-oem-hero h1,
  .stitch-qc-hero h1,
  .stitch-ddp-hero h1,
  .stitch-contact-head h1
) {
  margin-bottom: 14px;
  color: #fff;
  text-shadow: 0 1px 18px rgb(0 0 0 / 24%);
}

:is(
  .stitch-products-hero-lead,
  .stitch-about-hero-lead,
  .stitch-oem-hero-lead,
  .stitch-qc-hero-lead,
  .stitch-ddp-hero-lead,
  .stitch-contact-hero-lead
) {
  margin-bottom: 20px;
  color: rgb(255 255 255 / 76%);
}

:is(
  .stitch-products-hero-actions,
  .stitch-about-hero-actions,
  .stitch-oem-hero-actions,
  .stitch-qc-hero-actions,
  .stitch-ddp-hero-actions
) .btn-dark {
  border-color: #fff;
  background: #fff;
  color: #111820;
}

:is(
  .stitch-products-hero-actions,
  .stitch-about-hero-actions,
  .stitch-oem-hero-actions,
  .stitch-qc-hero-actions,
  .stitch-ddp-hero-actions,
  .stitch-res-hero-actions
) .btn-dark:hover {
  border-color: #c08a64;
  background: #c08a64;
  color: #fff;
}

.stitch-weight :is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero
) .stitch-hero-stats {
  margin-top: 22px;
  padding-top: 18px;
  border-top-color: rgb(255 255 255 / 22%);
}

:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero
) .stitch-hero-stat dt {
  color: #fff;
}

:is(
  .stitch-products-hero,
  .stitch-about-hero,
  .stitch-oem-hero,
  .stitch-qc-hero,
  .stitch-ddp-hero
) .stitch-hero-stat dd {
  color: rgb(255 255 255 / 68%);
}

@media (max-width: 767px) {
  :is(
    .stitch-products-hero,
    .stitch-about-hero,
    .stitch-oem-hero,
    .stitch-qc-hero,
    .stitch-ddp-hero,
    .stitch-contact-hero
  ) {
    height: auto;
    min-height: 560px;
  }

  :is(
    .stitch-products-hero-img,
    .stitch-about-hero-img,
    .stitch-oem-hero-img,
    .stitch-qc-hero-img,
    .stitch-ddp-hero-img,
    .stitch-contact-hero-img
  ) {
    object-position: 68% center;
  }

  :is(
    .stitch-products-hero-fade,
    .stitch-about-hero-fade,
    .stitch-oem-hero-fade,
    .stitch-qc-hero-fade,
    .stitch-ddp-hero-fade,
    .stitch-contact-hero-fade
  ) {
    background: linear-gradient(
      90deg,
      rgb(7 10 13 / 58%) 0%,
      rgb(7 10 13 / 28%) 48%,
      transparent 78%
    );
  }

  .stitch-about-hero-img {
    filter: none;
    object-position: 58% center;
  }

  .stitch-products-hero-img {
    filter: none;
    object-position: 42% center;
  }

  .stitch-oem-hero-img,
  .stitch-qc-hero-img,
  .stitch-ddp-hero-img,
  .stitch-contact-hero-img {
    filter: none;
  }
}

/* Resources newsletter strip — short photo band over documentary passes */
.stitch-res-hero {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin-top: var(--head-h);
  display: block !important;
  background: #1a1d21 !important;
  color: #fff !important;
  text-align: left !important;
  border-bottom: 0;
}
.stitch-res-hero-img {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.stitch-res-hero-fade {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgb(7 10 13 / 52%) 0%,
    rgb(7 10 13 / 28%) 40%,
    rgb(7 10 13 / 10%) 68%,
    transparent 88%
  );
  pointer-events: none;
}
.stitch-res-hero-wrap {
  position: relative;
  z-index: 2;
  height: auto !important;
  align-self: auto !important;
  flex: none !important;
  padding-block: 28px !important;
}
.stitch-res-hero-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 22rem);
  align-items: center;
  gap: 16px 36px;
  max-width: none !important;
  margin: 0 !important;
}
.stitch-res-hero h1 {
  max-width: none !important;
  margin-bottom: 4px !important;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem) !important;
  line-height: 1.1 !important;
  color: #fff !important;
  text-shadow: none !important;
}
.stitch-res-hero-lead {
  margin-bottom: 0 !important;
  max-width: 42ch !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgb(255 255 255 / 62%) !important;
}
@media (max-width: 899px) {
  .stitch-res-hero-inner {
    grid-template-columns: 1fr !important;
  }
  .stitch-res-hero-wrap {
    padding-block: 24px !important;
  }
}
@media (max-width: 560px) {
  .stitch-res-hero-form {
    flex-direction: column;
    align-items: stretch;
  }
  .stitch-res-hero-submit {
    width: 100%;
  }
}

/* —— Kill all stitch hero fades sitewide (no photo masks) —— */
.stitch-products-hero-fade,
.stitch-about-hero-fade,
.stitch-oem-hero-fade,
.stitch-qc-hero-fade,
.stitch-ddp-hero-fade,
.stitch-contact-hero-fade,
.stitch-res-hero-fade {
  display: none !important;
  opacity: 0 !important;
  background: none !important;
  pointer-events: none !important;
}
:is(
  .stitch-products-hero-img,
  .stitch-about-hero-img,
  .stitch-oem-hero-img,
  .stitch-qc-hero-img,
  .stitch-ddp-hero-img,
  .stitch-contact-hero-img,
  .stitch-res-hero-img
) {
  filter: none !important;
  opacity: 1 !important;
}

/* Products hero: flat black scrim over photo (no gradient) */
.stitch-products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgb(0 0 0 / 45%);
  pointer-events: none;
}
.stitch-products-hero > .stitch-products-hero-wrap {
  z-index: 1;
}
