:root {
  --ink: #17202a;
  --muted: #5f6d7a;
  --line: #dbe3ea;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --brand: #0f766e;
  --brand-strong: #0b5c57;
  --accent: #f5a524;
  --accent-dark: #9a5d00;
  --shadow: 0 18px 50px rgba(21, 33, 45, 0.12);
  --display-title-size: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 234, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(21, 33, 45, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item::after {
  position: absolute;
  top: 100%;
  left: -14px;
  right: -14px;
  height: 18px;
  content: "";
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: none;
  z-index: 30;
  min-width: 260px;
  max-height: min(70vh, 620px);
  overflow: visible;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
}

.product-menu {
  grid-template-columns: minmax(230px, 1fr);
  align-items: start;
  gap: 4px;
  width: 270px;
  min-width: 0;
  overflow: visible;
}

.nav-group {
  position: relative;
  display: grid;
  align-content: start;
  gap: 4px;
}

.nav-group::after {
  position: absolute;
  top: 0;
  right: -12px;
  width: 14px;
  height: 100%;
  content: "";
}

.nav-group-label {
  display: block;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.nav-flyout {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  display: none;
  gap: 2px;
  z-index: 32;
  min-width: 250px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-group:hover .nav-group-label,
.nav-group:focus-within .nav-group-label,
.nav-group.nav-group-open .nav-group-label {
  color: var(--brand-strong);
  background: var(--soft);
  border-color: var(--line);
}

.nav-group:hover .nav-flyout,
.nav-group:focus-within .nav-flyout,
.nav-group.nav-group-open .nav-flyout {
  display: grid;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--brand-strong);
  background: var(--soft);
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu,
.nav-item.nav-item-open .nav-submenu {
  display: block;
}

.nav-item:hover .product-menu,
.nav-item:focus-within .product-menu,
.nav-item.nav-item-open .product-menu {
  display: grid;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-strong);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(86vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide {
  opacity: 0;
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.hero-slide:first-child {
  opacity: 1;
  animation-name: heroFirstSlide;
}

.hero-slide:nth-child(2) {
  animation-name: heroSecondSlide;
}

@keyframes heroFirstSlide {
  0%,
  44% {
    opacity: 1;
  }

  50%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes heroSecondSlide {
  0%,
  44% {
    opacity: 0;
  }

  50%,
  94% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 18, 28, 0.88) 0%, rgba(8, 18, 28, 0.66) 38%, rgba(8, 18, 28, 0.1) 72%, rgba(8, 18, 28, 0.02) 100%),
    linear-gradient(0deg, rgba(8, 18, 28, 0.42), rgba(8, 18, 28, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(54px, 9vw, 105px) clamp(18px, 6vw, 78px);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2rem, 4vw, var(--display-title-size));
  line-height: 1.28;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: #fff;
  background: var(--brand);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--brand-strong);
}

.btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-stats span {
  display: inline-flex;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro h2,
.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, var(--display-title-size));
  line-height: 1.08;
}

.intro > p,
.split-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.products,
.custom-materials,
.process {
  background: var(--soft);
}

.custom-materials {
  padding-top: clamp(48px, 7vw, 90px);
  border-top: 1px solid var(--line);
}

.custom-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  min-height: 430px;
  padding: clamp(24px, 4vw, 46px);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.18), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(15, 118, 110, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef7f5 100%);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(21, 33, 45, 0.1);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.custom-entry::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px dashed rgba(15, 118, 110, 0.18);
  border-radius: 8px;
}

.custom-entry::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 50%;
}

.custom-entry:has(.custom-entry-button:hover),
.custom-entry:has(.custom-entry-button:focus-visible) {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.custom-entry-visual {
  position: relative;
  min-height: 310px;
}

.custom-desk {
  position: absolute;
  inset: 8px 0 0;
  display: block;
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 118, 110, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: 8px;
}

.custom-desk::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 6%;
  bottom: 24px;
  height: 34px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.2), rgba(245, 158, 11, 0.2));
  border-radius: 50%;
  filter: blur(18px);
}

.custom-sheet,
.custom-package,
.custom-tape-roll,
.custom-label-chip,
.custom-route {
  position: absolute;
  display: block;
}

.custom-sheet {
  width: 165px;
  height: 118px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), transparent 45%),
    #fff;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(21, 33, 45, 0.12);
}

.custom-sheet::before,
.custom-sheet::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 8px;
  background: rgba(15, 118, 110, 0.18);
  border-radius: 999px;
}

.custom-sheet::before {
  top: 28px;
}

.custom-sheet::after {
  top: 48px;
  right: 46px;
}

.sheet-one {
  left: 9%;
  top: 28px;
  transform: rotate(-8deg);
}

.sheet-two {
  right: 9%;
  top: 44px;
  transform: rotate(7deg);
}

.custom-package {
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(15, 118, 110, 0.18)),
    #fff;
  border: 1px solid rgba(21, 33, 45, 0.12);
  box-shadow: 0 18px 38px rgba(21, 33, 45, 0.14);
}

.custom-package::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(15, 118, 110, 0.28);
  border-radius: 6px;
}

.package-one {
  left: 21%;
  top: 128px;
  width: 150px;
  height: 118px;
  border-radius: 8px;
  transform: rotate(3deg);
}

.package-two {
  right: 18%;
  top: 150px;
  width: 126px;
  height: 96px;
  border-radius: 8px;
  transform: rotate(-5deg);
}

.custom-tape-roll {
  left: 44%;
  top: 100px;
  width: 76px;
  height: 76px;
  background:
    radial-gradient(circle at center, #fff 0 28%, transparent 29%),
    conic-gradient(from 20deg, #0f766e, #f59e0b, #0f766e);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(21, 33, 45, 0.16);
}

.custom-label-chip {
  padding: 8px 13px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(21, 33, 45, 0.1);
  font-size: 0.85rem;
  font-weight: 900;
}

.chip-one {
  left: 8%;
  bottom: 68px;
}

.chip-two {
  right: 10%;
  bottom: 78px;
}

.custom-route {
  left: 50%;
  bottom: 58px;
  width: 128px;
  height: 28px;
  transform: translateX(-50%);
}

.custom-route span {
  position: absolute;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(245, 158, 11, 0.14);
}

.custom-route span:nth-child(1) {
  left: 4px;
}

.custom-route span:nth-child(2) {
  left: 58px;
}

.custom-route span:nth-child(3) {
  right: 4px;
}

.custom-entry:has(.custom-entry-button:hover) .sheet-one,
.custom-entry:has(.custom-entry-button:focus-visible) .sheet-one {
  transform: translateY(-8px) rotate(-10deg);
}

.custom-entry:has(.custom-entry-button:hover) .sheet-two,
.custom-entry:has(.custom-entry-button:focus-visible) .sheet-two {
  transform: translateY(-8px) rotate(9deg);
}

.custom-entry:has(.custom-entry-button:hover) .custom-tape-roll,
.custom-entry:has(.custom-entry-button:focus-visible) .custom-tape-roll {
  transform: rotate(18deg) scale(1.04);
}

.custom-entry-copy {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.custom-entry-copy strong {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, var(--display-title-size));
  line-height: 1.16;
  letter-spacing: 0;
}

.custom-entry-copy > span:not(.section-kicker):not(.custom-entry-actions) {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.custom-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.custom-entry-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 900;
}

.custom-entry-button {
  padding: 0 18px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.22);
  text-decoration: none;
}
.product-grid,
.timeline,
.kit-grid {
  display: grid;
  gap: 18px;
}

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

.product-category-list {
  display: grid;
  gap: 42px;
}

.product-category {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.product-category:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-category-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: inherit;
}

a.product-category-heading {
  width: fit-content;
  text-decoration: none;
}

a.product-category-heading:hover h3,
a.product-category-heading:focus-visible h3 {
  color: var(--brand);
}

.product-category-heading > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 7px;
  font-weight: 900;
}

.product-category-heading h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.product-category-heading p {
  margin: 4px 0 0;
  color: var(--accent-dark);
  font-weight: 850;
}

.product-card,
.timeline article,
.kit-grid article,
.proof-feature,
.proof-list article,
.quote-panel,
.rfq-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.06);
}

.product-card {
  display: block;
  min-height: 360px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card.highlight {
  border-color: rgba(15, 118, 110, 0.28);
}

.product-card:hover,
.product-card:focus-visible,
.subcategory-card:hover,
.subcategory-card:focus-visible {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card img {
  width: calc(100% - 24px);
  margin: 12px 12px 0;
  aspect-ratio: 1.45 / 1;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  transform: scale(1.025);
}

.product-card h3 {
  margin: 16px 20px 7px;
  font-size: 1.08rem;
}

.timeline h3,
.kit-grid h3,
.proof-feature h3,
.proof-list h3,
.quote-panel h3 {
  margin: 16px 0 8px;
  font-size: 1.2rem;
}

.product-card p,
.timeline p,
.kit-grid p,
.proof-feature p,
.proof-list p,
.quote-panel li {
  color: var(--muted);
}

.product-card p {
  margin: 0 20px;
  font-size: 0.94rem;
}

.product-card ul {
  margin: 16px 24px 24px;
  padding-left: 18px;
  color: var(--muted);
}

.series-showcase {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.series-nav {
  display: grid;
  gap: 10px;
}

.series-nav-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-content: center;
  min-height: 86px;
  padding: 14px;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.series-nav-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 7px;
  font-weight: 900;
}

.series-nav-item strong,
.series-nav-item small {
  grid-column: 2;
}

.series-nav-item strong {
  align-self: end;
  font-size: 1.05rem;
  line-height: 1.15;
}

.series-nav-item small {
  align-self: start;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.series-nav-item-active,
.series-nav-item:hover,
.series-nav-item:focus-visible {
  background: #fff;
  border-color: rgba(15, 118, 110, 0.36);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.series-preview {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #10202d;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 33, 45, 0.1);
  isolation: isolate;
}

.series-preview-item {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 220ms ease, transform 480ms ease;
}

.series-preview-item:first-child,
.series-showcase:has(.series-nav-item:nth-child(1):hover) .series-preview-sealing,
.series-showcase:has(.series-nav-item:nth-child(1):focus-visible) .series-preview-sealing,
.series-showcase:has(.series-nav-item:nth-child(2):hover) .series-preview-containers,
.series-showcase:has(.series-nav-item:nth-child(2):focus-visible) .series-preview-containers,
.series-showcase:has(.series-nav-item:nth-child(3):hover) .series-preview-cushioning,
.series-showcase:has(.series-nav-item:nth-child(3):focus-visible) .series-preview-cushioning,
.series-showcase:has(.series-nav-item:nth-child(4):hover) .series-preview-wrapping,
.series-showcase:has(.series-nav-item:nth-child(4):focus-visible) .series-preview-wrapping,
.series-showcase:has(.series-nav-item:nth-child(5):hover) .series-preview-tools,
.series-showcase:has(.series-nav-item:nth-child(5):focus-visible) .series-preview-tools {
  opacity: 1;
  transform: scale(1);
}

.series-showcase:has(.series-nav-item:nth-child(2):hover) .series-preview-item:first-child,
.series-showcase:has(.series-nav-item:nth-child(2):focus-visible) .series-preview-item:first-child,
.series-showcase:has(.series-nav-item:nth-child(3):hover) .series-preview-item:first-child,
.series-showcase:has(.series-nav-item:nth-child(3):focus-visible) .series-preview-item:first-child,
.series-showcase:has(.series-nav-item:nth-child(4):hover) .series-preview-item:first-child,
.series-showcase:has(.series-nav-item:nth-child(4):focus-visible) .series-preview-item:first-child,
.series-showcase:has(.series-nav-item:nth-child(5):hover) .series-preview-item:first-child,
.series-showcase:has(.series-nav-item:nth-child(5):focus-visible) .series-preview-item:first-child {
  opacity: 0;
  transform: scale(1.025);
}

.series-showcase.series-showcase-js .series-preview .series-preview-item {
  opacity: 0 !important;
  transform: scale(1.025) !important;
}

.series-showcase.series-showcase-js .series-preview .series-preview-item.series-preview-item-active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.series-showcase.series-showcase-js:has(.series-nav-item:hover) .series-nav-item-active:not(:hover),
.series-showcase.series-showcase-js:has(.series-nav-item:focus-visible) .series-nav-item-active:not(:focus-visible) {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.04);
  transform: none;
}

.series-showcase.series-showcase-js:has(.series-nav-item:hover) .series-preview .series-preview-item,
.series-showcase.series-showcase-js:has(.series-nav-item:focus-visible) .series-preview .series-preview-item {
  opacity: 0 !important;
  transform: scale(1.025) !important;
}

.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(1):hover) .series-preview-sealing,
.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(1):focus-visible) .series-preview-sealing,
.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(2):hover) .series-preview-containers,
.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(2):focus-visible) .series-preview-containers,
.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(3):hover) .series-preview-cushioning,
.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(3):focus-visible) .series-preview-cushioning,
.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(4):hover) .series-preview-wrapping,
.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(4):focus-visible) .series-preview-wrapping,
.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(5):hover) .series-preview-tools,
.series-showcase.series-showcase-js:has(.series-nav-item:nth-child(5):focus-visible) .series-preview-tools {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.series-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.series-preview-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.02) 0%, rgba(8, 18, 28, 0.16) 48%, rgba(8, 18, 28, 0.76) 100%),
    linear-gradient(90deg, rgba(8, 18, 28, 0.38) 0%, rgba(8, 18, 28, 0.04) 58%);
}

.series-preview-item figcaption {
  position: absolute;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
  z-index: 1;
  display: grid;
  gap: 8px;
  color: #fff;
}

.series-preview-item figcaption strong {
  font-size: 2rem;
  line-height: 1.08;
}

.series-preview-item figcaption span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.shipping-map-panel {
  position: relative;
  overflow: hidden;
  margin: clamp(24px, 4vw, 42px) 0 0;
  min-height: clamp(430px, 52vw, 560px);
  background: linear-gradient(135deg, #e7f5f6 0%, #d9edf4 60%, #cfe4f1 100%);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 33, 45, 0.08);
}

.shipping-map-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

.shipping-map-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: inherit;
  padding: clamp(34px, 6vw, 70px) clamp(28px, 7vw, 96px);
  color: #15212d;
}

.shipping-map-content h2 {
  max-width: 720px;
  margin: 0;
  font-size: var(--display-title-size);
  line-height: 1.48;
}

.shipping-map-content p {
  max-width: 860px;
  margin: 20px 0 0;
  color: #26394b;
  font-size: 1.08rem;
  line-height: 1.65;
}

.shipping-map-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 56px);
  margin-top: clamp(30px, 5vw, 54px);
}

.shipping-map-stats div {
  display: grid;
  gap: 6px;
}

.shipping-map-stats strong {
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.shipping-map-stats span {
  color: #15212d;
  font-size: 1.02rem;
  line-height: 1.22;
}

.page-main {
  background: var(--paper);
}

.breadcrumb {
  position: sticky;
  top: 72px;
  z-index: 35;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 227, 234, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 750;
}

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

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #9aa7b3;
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px) clamp(18px, 5vw, 72px);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, var(--display-title-size));
}

.page-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: contain;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  clip-path: inset(1px round 8px);
  box-shadow: var(--shadow);
}

.subcategory-section {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(42px, 6vw, 76px);
  background: #fff;
}

.subcategory-section .section-heading {
  margin-bottom: 20px;
}

.subcategory-section .section-heading h2 {
  max-width: 720px;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}

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

.subcategory-card,
.spec-card,
.side-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.06);
}

.subcategory-card {
  display: block;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.subcategory-card img {
  width: calc(100% - 24px);
  margin: 12px 12px 0;
  aspect-ratio: 1.65 / 1;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  padding: 10px;
}

.subcategory-card span {
  display: block;
  margin: 14px 16px 0;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.subcategory-card h3 {
  margin: 6px 16px;
  font-size: 0.94rem;
  line-height: 1.25;
}

.subcategory-card p {
  margin: 0 16px 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

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

.btn.outline {
  color: var(--brand-strong);
  border-color: rgba(15, 118, 110, 0.34);
  background: #fff;
}

.text-link {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--brand-strong);
  font-weight: 850;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  background: #fff;
}

.spec-card,
.side-panel {
  padding: 28px;
}

.spec-card h2 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3vw, var(--display-title-size));
  line-height: 1.08;
}

.product-intro {
  margin: -8px 0 22px;
  color: var(--muted);
  font-size: 1.04rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-table th,
.spec-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  background: var(--soft);
  color: var(--ink);
}

.spec-table td {
  color: var(--muted);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.detail-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.side-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.side-panel li + li {
  margin-top: 8px;
}

.product-icon {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 7px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(245, 165, 36, 0.16)),
    var(--soft);
}

.tape-icon {
  box-shadow: inset 12px 0 0 rgba(15, 118, 110, 0.32), inset -12px 0 0 rgba(245, 165, 36, 0.28);
}

.print-icon {
  background:
    repeating-linear-gradient(135deg, rgba(15, 118, 110, 0.45) 0 8px, rgba(245, 165, 36, 0.5) 8px 16px),
    var(--soft);
}

.film-icon {
  background: linear-gradient(90deg, rgba(210, 228, 235, 0.9), rgba(255, 255, 255, 0.9), rgba(185, 214, 225, 0.9));
}

.strap-icon {
  background: repeating-linear-gradient(90deg, #0f766e 0 10px, #ffffff 10px 16px);
}

.bag-icon {
  background: linear-gradient(145deg, #dceaf0 0 70%, #0f766e 70%);
}

.bubble-icon {
  background:
    radial-gradient(circle at 14px 14px, rgba(15, 118, 110, 0.32) 0 6px, transparent 7px),
    radial-gradient(circle at 30px 28px, rgba(245, 165, 36, 0.38) 0 7px, transparent 8px),
    #f4f7f9;
}

.wrap-icon {
  background:
    radial-gradient(circle at 10px 11px, rgba(15, 118, 110, 0.25) 0 5px, transparent 6px),
    radial-gradient(circle at 28px 16px, rgba(15, 118, 110, 0.22) 0 5px, transparent 6px),
    radial-gradient(circle at 18px 33px, rgba(245, 165, 36, 0.32) 0 5px, transparent 6px),
    #fff;
}

.column-icon {
  background: repeating-linear-gradient(90deg, rgba(15, 118, 110, 0.18) 0 8px, rgba(255, 255, 255, 0.95) 8px 14px);
}

.tie-icon {
  background: linear-gradient(45deg, transparent 42%, #0f766e 43% 57%, transparent 58%), #f4f7f9;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-copy p {
  margin-top: 18px;
  max-width: 720px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.check-list span {
  padding: 14px 16px;
  border-left: 4px solid var(--brand);
  background: var(--soft);
  border-radius: 6px;
  font-weight: 700;
}

.quote-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.quote-panel ol {
  margin: 16px 0 0;
  padding-left: 20px;
}

.quote-panel .kit-image {
  width: calc(100% + 56px);
  max-width: none;
  margin: -28px -28px 20px;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.quote-panel-cta {
  margin-top: 22px;
}

.kit-image {
  width: calc(100% + 52px);
  max-width: none;
  margin: -26px -26px 20px;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--brand-strong);
  font-size: 0.86rem;
  font-weight: 850;
}

.proof {
  background: #fff;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.proof-feature {
  overflow: hidden;
}

.proof-feature img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.proof-feature div {
  padding: 26px;
}

.proof-list {
  display: grid;
  gap: 18px;
}

.proof-list article {
  padding: 24px;
}

.proof-list span {
  color: var(--accent-dark);
  font-weight: 900;
}

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

.timeline article {
  min-height: 0;
  padding: 12px;
  overflow: hidden;
}

.timeline .step-image {
  width: 100%;
  margin-bottom: 12px;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #f8fbfd;
}

.kit-grid .kit-image {
  width: calc(100% + 48px);
  margin: -24px -24px 18px;
}

.timeline span {
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.timeline h3 {
  margin-top: 10px;
  font-size: 0.96rem;
}

.timeline p {
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.36;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
  grid-template-rows: auto 1fr;
  gap: clamp(28px, 5vw, 64px);
  background: #17202a;
  color: #fff;
}

.contact-copy {
  grid-column: 1;
  grid-row: 1;
}

.contact-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-methods a {
  color: #fff;
  font-weight: 800;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-social {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-social-mail {
  background: #0f766e;
}

.contact-social-wa {
  background: #25d366;
}

.contact-social-fb {
  background: #1877f2;
}

.sales-team-panel {
  align-self: start;
  display: grid;
  gap: 18px;
  grid-column: 1;
  grid-row: 2;
  scroll-margin-top: 96px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.sales-team-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.sales-team-head strong {
  display: block;
  max-width: 26ch;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.sales-team-kicker {
  display: block;
  margin-bottom: 6px;
  color: #7dd4a4;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-avatar-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(104px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.sales-person {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.sales-person img,
.sales-initial {
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  max-width: none;
  border: 2px solid rgba(125, 212, 164, 0.72);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.sales-person img {
  display: block;
  object-fit: cover;
  object-position: center top;
}

.sales-person img.sales-photo-sam {
  object-position: center center;
}

.sales-initial {
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #244238, #1f9d62);
  color: #fff;
  font-size: 1.95rem;
  font-weight: 900;
}

.sales-person strong {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.15;
}

.sales-person span:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  line-height: 1.2;
}

.sales-person-placeholder span:last-child {
  color: rgba(125, 212, 164, 0.82);
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 24px;
  color: var(--ink);
}

.rfq-form label:has(textarea),
.rfq-form .full {
  grid-column: 1 / -1;
}

.rfq-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.required-mark {
  color: #e04b37;
  font-weight: 900;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.rfq-form textarea {
  resize: vertical;
}

.form-status {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  margin: 0;
}

.form-note {
  color: rgba(82, 97, 114, 0.88);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
  margin: -4px 0 0;
}

.form-note a {
  color: var(--brand-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status[data-tone="success"] {
  color: #19784f;
}

.form-status[data-tone="error"] {
  color: #b42318;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.btn.full {
  width: 100%;
}

.admin-page {
  background: #f5f7f6;
  color: var(--ink);
}

.admin-shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: 36px 20px 56px;
}

.admin-toolbar {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-toolbar h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  margin: 0 0 10px;
}

.admin-toolbar p {
  color: var(--muted);
  margin: 0;
}

.admin-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.admin-actions .btn.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.admin-metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 14px;
}

.admin-metric {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
}

.admin-metric span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.admin-metric strong {
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.admin-controls {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 2fr repeat(4, minmax(0, 1fr));
  margin: 0 0 14px;
  padding: 14px;
}

.admin-owner-manager {
  align-items: end;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1.2fr 1.2fr auto auto;
  margin: 0 0 14px;
  padding: 14px;
}

.admin-controls label,
.admin-owner-manager label,
.admin-followup label {
  color: var(--muted);
  display: grid;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 7px;
  text-transform: uppercase;
}

.admin-controls input,
.admin-controls select,
.admin-owner-manager input,
.admin-owner-manager select,
.admin-followup input,
.admin-followup select,
.admin-followup textarea {
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 42px;
  padding: 10px 12px;
  text-transform: none;
  width: 100%;
}

.admin-owner-manager .btn {
  min-height: 42px;
  padding-left: 16px;
  padding-right: 16px;
}

.admin-followup textarea {
  line-height: 1.45;
  min-height: 118px;
  resize: vertical;
}

.admin-summary {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 750;
  margin: 0 0 18px;
  padding: 16px 18px;
}

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

.admin-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.admin-card header {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.admin-card header p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  margin: 0 0 6px;
}

.admin-card h2 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0;
}

.admin-card small {
  color: var(--muted);
  display: block;
  font-weight: 750;
  margin-top: 5px;
}

.admin-source {
  background: #e7f4ee;
  border-radius: 999px;
  color: #19784f;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 7px 10px;
}

.admin-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 12px 0;
}

.admin-contact-line a,
.admin-contact-line span {
  color: var(--ink);
  font-weight: 750;
}

.admin-fields {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 420px;
  overflow: auto;
  padding-top: 12px;
}

.admin-card-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 300px;
  padding-top: 12px;
}

.admin-card-grid .admin-fields {
  border-top: 0;
  padding-top: 0;
}

.admin-followup {
  align-self: start;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.admin-followup .btn {
  min-height: 42px;
  width: 100%;
}

.admin-save-status {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  margin: 0;
  min-height: 1.2em;
}

.admin-field {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 3px;
  padding: 7px 10px 7px 0;
}

.admin-field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-field strong {
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.38;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

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

.kit-grid article {
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.articles {
  background: #fff;
}

.article-console {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.article-feature,
.article-link-panel {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 33, 45, 0.08);
}

.article-feature {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--ink);
  isolation: isolate;
}

.article-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(21, 33, 45, 0.88), rgba(21, 33, 45, 0.34)),
    radial-gradient(circle at 82% 16%, rgba(245, 158, 11, 0.34), transparent 30%);
}

.article-feature-media,
.article-feature-media img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.article-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.article-feature-copy {
  display: grid;
  align-content: end;
  gap: 14px;
  max-width: 560px;
  padding: clamp(24px, 4vw, 42px);
}

.article-feature-copy .section-kicker {
  color: #fbbf24;
}

.article-feature-copy strong {
  max-width: 12ch;
  font-size: clamp(2rem, 3vw, var(--display-title-size));
  line-height: 1.16;
  letter-spacing: 0;
}

.article-feature-copy > span:not(.section-kicker):not(.article-feature-button) {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
  line-height: 1.65;
}

.article-feature-button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.article-feature:hover,
.article-feature:focus-visible,
.article-link-panel a:hover,
.article-link-panel a:focus-visible {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: var(--shadow);
}

.article-feature:hover .article-feature-media img,
.article-feature:focus-visible .article-feature-media img {
  transform: scale(1.045);
}

.article-link-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.article-link-panel a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 2px 16px;
  align-content: center;
  min-height: 82px;
  padding: 14px 20px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(219, 227, 234, 0.86);
  transition: background 180ms ease, transform 180ms ease;
}

.article-link-panel a:last-child {
  border-bottom: 0;
}

.article-link-panel a:hover,
.article-link-panel a:focus-visible {
  background: #fff;
  transform: translateX(4px);
}

.article-link-panel span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--brand-dark);
  background: rgba(15, 118, 110, 0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 950;
}

.article-link-panel strong {
  align-self: end;
  color: var(--ink);
  font-size: 1rem;
}

.article-link-panel small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.article-link-panel .article-all-link {
  background: rgba(15, 118, 110, 0.08);
}

.article-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.article-grid article,
.article-grid .home-article-card,
.testimonial-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.06);
  overflow: hidden;
}

.article-grid .home-article-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-grid .home-article-card:hover,
.article-grid .home-article-card:focus-visible {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.article-grid img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.article-grid h3,
.article-grid p,
.testimonial-grid p,
.testimonial-grid span,
.article-date {
  margin-left: 24px;
  margin-right: 24px;
}

.article-grid h3 {
  margin-top: 8px;
}

.article-grid p,
.testimonial-grid p {
  color: var(--muted);
}

.article-grid article > p:last-child {
  margin-bottom: 24px;
}

.article-date {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.articles .section-heading {
  margin-bottom: 22px;
}

.articles .section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, var(--display-title-size));
}

.home-article-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.home-article-row .home-article-card {
  min-height: 246px;
  color: inherit;
  text-decoration: none;
}

.home-article-row img {
  aspect-ratio: 1.42 / 1;
}

.home-article-row .article-date,
.home-article-row h3 {
  margin-left: 14px;
  margin-right: 14px;
}

.home-article-row .article-date {
  margin-top: 13px;
  font-size: 0.68rem;
  line-height: 1.25;
}

.home-article-row h3 {
  margin-top: 7px;
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.35;
}

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

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

.testimonial-grid article {
  padding: 26px;
}

.testimonial-grid p,
.testimonial-grid span {
  margin-left: 0;
  margin-right: 0;
}

.testimonial-grid span {
  display: block;
  color: var(--ink);
  font-weight: 850;
}

.service-reviews {
  background: var(--soft);
}

.service-review-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.review-summary h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 3vw, var(--display-title-size));
  line-height: 1.08;
}

.review-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 18px;
  color: var(--muted);
}

.review-score strong {
  color: var(--ink);
}

.review-stars {
  color: var(--accent-dark);
  letter-spacing: 0;
}

.review-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.review-buttons {
  display: flex;
  gap: 8px;
}

.review-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  border-color: rgba(15, 118, 110, 0.42);
  color: var(--brand-strong);
}

.review-track {
  display: grid;
  grid-auto-columns: minmax(280px, 360px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.review-card {
  min-height: 260px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.06);
  scroll-snap-align: start;
}

.review-card h3 {
  margin: 14px 0 8px;
  font-size: 1.1rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.review-card span {
  display: block;
  margin-top: 18px;
  color: var(--brand-strong);
  font-size: 0.86rem;
  font-weight: 850;
}

.legal-page {
  background: #fff;
}

.legal-section {
  max-width: 920px;
  margin: 0 auto;
}

.legal-copy {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-copy h2 {
  margin: 10px 0 -10px;
  color: var(--ink);
  font-size: 1.15rem;
}

.legal-copy p {
  margin: 0;
}

.legal-copy a {
  color: var(--brand-strong);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #101820;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-company {
  max-width: 760px;
}

.footer-company p {
  line-height: 1.55;
}

.site-footer a {
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  white-space: nowrap;
}

.custom-packaging-hero {
  background: linear-gradient(135deg, #eef6f4 0%, #ffffff 58%, #f8f0df 100%);
}

.custom-packaging-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 28px;
  background: #17202a;
}

.custom-packaging-strip article {
  padding: 20px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.custom-packaging-strip span {
  display: block;
  color: #fff;
  font-weight: 850;
}

.custom-packaging-strip p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.custom-solution-grid,
.custom-process-grid,
.custom-rfq-grid,
.custom-image-grid,
.custom-guide-grid,
.custom-faq-list {
  display: grid;
  gap: 18px;
}

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

.custom-solution-card,
.custom-buyer-grid article,
.custom-process-grid article,
.custom-rfq-grid article,
.custom-image-grid article,
.custom-guide-grid article,
.custom-faq-list article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.06);
}

.custom-solution-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.44fr) minmax(0, 0.56fr);
  overflow: hidden;
}

.custom-solution-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-right: 1px solid var(--line);
}

.custom-solution-card div {
  padding: 28px;
}

.custom-solution-card h3,
.custom-buyer-grid h3,
.custom-process-grid h3,
.custom-rfq-grid h3,
.custom-image-grid h3,
.custom-guide-grid h3,
.custom-faq-list h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
}

.custom-solution-card p,
.custom-buyer-grid p,
.custom-process-grid p,
.custom-rfq-grid p,
.custom-image-grid p,
.custom-guide-grid p,
.custom-faq-list p,
.custom-proof-copy p,
.custom-cta-section p {
  color: var(--muted);
}

.custom-solution-card ul {
  margin: 16px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.custom-packaging-buyers,
.custom-rfq-section {
  background: var(--soft);
}

.custom-buying-guide,
.custom-faq-section {
  background: #fff;
}

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

.custom-buyer-grid article,
.custom-process-grid article,
.custom-rfq-grid article,
.custom-guide-grid article,
.custom-faq-list article {
  padding: 26px;
}

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

.custom-process-section {
  background: #fff;
}

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

.custom-process-grid span {
  color: var(--accent-dark);
  font-weight: 900;
}

.custom-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #17202a;
  color: #fff;
}

.custom-proof-copy h2,
.custom-cta-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 3vw, var(--display-title-size));
  line-height: 1.08;
}

.custom-proof-copy p,
.custom-cta-section p {
  margin: 18px 0 0;
}

.custom-proof-section .custom-proof-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.custom-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.custom-proof-list span {
  min-height: 76px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

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

.custom-image-section {
  background: #fff;
}

.custom-image-grid article {
  overflow: hidden;
}

.custom-image-grid img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.custom-image-grid h3,
.custom-image-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.custom-image-grid p {
  margin-bottom: 24px;
}

.custom-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--soft);
}

.custom-cta-section .btn {
  flex: 0 0 auto;
}

.custom-quote-page {
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background: #f4f7f9;
}

.custom-quote-heading {
  margin-bottom: 24px;
}

.custom-quote-heading h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, var(--display-title-size));
}

.custom-quote-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.custom-quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.custom-product-picker {
  display: grid;
  gap: 14px;
}

.custom-mobile-selected {
  display: none;
}

.custom-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.06);
  cursor: pointer;
  text-align: left;
}

.custom-product-card:hover,
.custom-product-card:focus-visible,
.custom-product-card.is-active {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: var(--shadow);
}

.custom-product-card.is-active::before {
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 5px;
  content: "";
  background: var(--brand);
  border-radius: 8px 0 0 8px;
}

.custom-product-card img {
  width: 132px;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.custom-product-card span {
  font-size: 1.05rem;
  font-weight: 850;
}

.custom-quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.custom-quote-form h2 {
  margin: 0 0 4px;
  font-size: clamp(1.6rem, 3vw, var(--display-title-size));
  line-height: 1.1;
}

.custom-quote-form label,
.custom-quote-product-fields {
  display: grid;
  gap: 8px;
}

.custom-quote-form label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 760;
}

.custom-quote-form select,
.custom-quote-form input,
.custom-quote-form textarea {
  width: 100%;
  border: 1px solid #cbd6df;
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.custom-quote-form select:disabled {
  color: #9aa6b2;
  background: #edf1f4;
  cursor: not-allowed;
}

.custom-quote-form textarea {
  resize: vertical;
}

.custom-quote-product-fields {
  gap: 16px;
}

.custom-quote-product-fields[hidden],
.custom-quote-pending[hidden] {
  display: none;
}

.custom-quote-two {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
}

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

.custom-quote-pending {
  margin: 0;
  padding: 14px 16px;
  color: var(--accent-dark);
  background: #fff6df;
  border: 1px solid rgba(245, 165, 36, 0.42);
  border-radius: 7px;
  font-weight: 750;
}

.custom-quote-submit {
  justify-self: end;
  min-width: 150px;
}

.custom-tape-fit-section,
.custom-tape-process-section,
.custom-tape-image-section {
  background: var(--soft);
}

.custom-tape-quality-section,
.custom-tape-table-section {
  background: #fff;
}

.custom-tape-fit-grid,
.custom-tape-process-grid,
.custom-tape-image-grid,
.custom-tape-quality-layout,
.custom-tape-checks {
  display: grid;
  gap: 18px;
}

.custom-tape-fit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.custom-tape-fit-grid article,
.custom-tape-process-grid article,
.custom-tape-image-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.06);
}

.custom-tape-fit-grid article,
.custom-tape-process-grid article {
  padding: 24px;
}

.custom-tape-fit-grid h3,
.custom-tape-process-grid h3,
.custom-tape-image-grid h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.custom-tape-fit-grid p,
.custom-tape-quality-layout p,
.custom-tape-process-grid p,
.custom-tape-image-grid p {
  color: var(--muted);
}

.custom-tape-fit-grid p,
.custom-tape-process-grid p,
.custom-tape-image-grid p {
  margin: 0;
}

.custom-tape-quality-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
}

.custom-tape-quality-layout h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 3vw, var(--display-title-size));
  line-height: 1.08;
}

.custom-tape-quality-layout p {
  max-width: 760px;
  margin: 18px 0 0;
}

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

.custom-tape-checks span {
  min-height: 76px;
  padding: 18px;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 750;
}

.custom-tape-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.custom-tape-process-grid span {
  color: var(--accent-dark);
  font-weight: 900;
}

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

.custom-tape-image-grid article {
  overflow: hidden;
}

.custom-tape-image-grid img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.custom-tape-image-grid h3,
.custom-tape-image-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.custom-tape-image-grid h3 {
  margin-top: 20px;
}

.custom-tape-image-grid p {
  margin-bottom: 24px;
}

.tape-buying-section,
.tape-rfq-section,
.tape-proof-section {
  background: var(--soft);
}

.tape-spec-section {
  background: #fff;
}

.tape-choice-grid,
.tape-rfq-layout,
.tape-proof-grid {
  display: grid;
  gap: 18px;
}

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

.tape-choice-grid article,
.tape-rfq-panel,
.tape-proof-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.06);
}

.tape-choice-grid article {
  padding: 24px;
}

.tape-choice-grid h3,
.tape-rfq-panel h3,
.tape-proof-grid h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.tape-choice-grid p,
.tape-check-list,
.tape-rfq-panel li,
.tape-proof-grid p {
  color: var(--muted);
}

.tape-choice-grid p,
.tape-proof-grid p {
  margin: 0;
}

.tape-choice-grid .card-link {
  display: flex;
  margin-top: 10px;
}

.tape-spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(21, 33, 45, 0.06);
}

.tape-spec-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.tape-spec-table th,
.tape-spec-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.tape-spec-table th {
  color: var(--ink);
  background: #eef5f4;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.tape-spec-table tr:last-child td {
  border-bottom: 0;
}

.tape-rfq-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: start;
}

.tape-rfq-layout h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 3vw, var(--display-title-size));
  line-height: 1.08;
}

.tape-check-list {
  margin: 24px 0 0;
  padding-left: 20px;
}

.tape-check-list li,
.tape-rfq-panel li {
  margin: 10px 0;
}

.tape-rfq-panel {
  padding: 28px;
}

.tape-rfq-panel ul {
  margin: 0;
  padding-left: 20px;
}

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

.tape-proof-grid article {
  overflow: hidden;
}

.tape-proof-grid img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.tape-proof-grid h3,
.tape-proof-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.tape-proof-grid h3 {
  margin-top: 20px;
}

.tape-proof-grid p {
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .product-grid,
  .article-grid,
  .testimonial-grid,
  .subcategory-grid,
  .tape-choice-grid,
  .tape-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(7, minmax(132px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .intro,
  .split,
  .contact,
  .page-hero,
  .detail-layout,
  .proof-layout,
  .custom-entry,
  .article-console,
  .tape-rfq-layout,
  .custom-quote-layout {
    grid-template-columns: 1fr;
  }

  .custom-entry {
    min-height: 0;
  }

  .contact {
    grid-template-rows: auto;
  }

  .contact-copy,
  .sales-team-panel,
  .rfq-form {
    grid-column: 1;
    grid-row: auto;
  }

  .sales-avatar-row {
    grid-template-columns: repeat(5, minmax(104px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .custom-entry-visual {
    min-height: 270px;
  }

  .custom-entry-copy strong {
    max-width: 15ch;
  }

  .article-feature {
    min-height: 320px;
  }

  .article-link-panel a {
    min-height: 76px;
  }

  .home-article-row {
    grid-template-columns: repeat(5, minmax(176px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

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

  .custom-packaging-strip,
  .custom-tape-checks,
  .custom-tape-fit-grid,
  .custom-tape-image-grid,
  .custom-tape-process-grid,
  .custom-process-grid,
  .custom-rfq-grid,
  .custom-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-solution-grid,
  .custom-tape-quality-layout,
  .custom-proof-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
  }

  .breadcrumb {
    top: 72px;
    gap: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.78rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-item {
    display: grid;
  }

  .nav-item::after {
    display: none;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    max-height: none;
    padding: 0 0 8px 14px;
    border: 0;
    overflow: visible;
    box-shadow: none;
    transform: none;
  }

  .nav-submenu a {
    padding: 9px 0;
    background: transparent;
  }

  .product-menu {
    grid-template-columns: 1fr;
    gap: 0;
    width: auto;
    min-width: 0;
  }

  .nav-group {
    gap: 0;
  }

  .nav-group-label {
    min-height: 0;
    padding: 12px 0;
    border-bottom: 0;
  }

  .nav-group::after,
  .nav-group-label::after {
    display: none;
  }

  .nav-flyout {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
  }

  .nav-group:hover .nav-flyout,
  .nav-group:focus-within .nav-flyout {
    display: none;
  }

  .nav-group.nav-group-open .nav-group-label {
    color: var(--brand-strong);
  }

  .nav-group.nav-group-open .nav-flyout {
    display: grid;
  }

  .nav-flyout a {
    font-size: 0.9rem;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-header.nav-open .product-menu {
    display: grid;
  }

  .site-header.nav-open .nav-item:focus-within .product-menu,
  .site-header.nav-open .nav-item:hover .product-menu {
    display: grid;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 18, 28, 0.92) 0%, rgba(8, 18, 28, 0.66) 58%, rgba(8, 18, 28, 0.18) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 42px;
  }

  h1 {
    font-size: clamp(1.68rem, 7vw, 2.05rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 0.94rem;
    max-width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 8px;
    justify-content: start;
  }

  .hero-stats span {
    width: auto;
    min-height: 42px;
    padding: 8px 11px;
    white-space: nowrap;
  }

  .series-showcase {
    grid-template-columns: 1fr;
  }

  .series-nav {
    display: flex;
    gap: 10px;
    margin-inline: -18px;
    padding-inline: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .series-nav-item {
    flex: 0 0 min(78vw, 330px);
    scroll-snap-align: start;
  }

  .series-preview {
    min-height: 390px;
  }

  .series-preview-item figcaption strong {
    font-size: 1.55rem;
  }

  .shipping-map-panel {
    min-height: auto;
  }

  .shipping-map-content {
    min-height: 520px;
    padding: 28px 18px;
  }

  .shipping-map-content h2 {
    line-height: 1.28;
  }

  .shipping-map-content p {
    font-size: 0.94rem;
  }

  .shipping-map-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
  }

  .shipping-map-stats strong {
    font-size: 1.72rem;
  }

  .product-grid,
  .check-list,
  .subcategory-grid,
  .tape-choice-grid,
  .tape-proof-grid,
  .kit-grid,
  .article-grid,
  .testimonial-grid,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 34px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8vw, var(--display-title-size));
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .spec-table td {
    padding-top: 6px;
  }

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

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

  .service-review-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-actions {
    justify-items: start;
  }

  .custom-packaging-strip,
  .custom-tape-checks,
  .custom-tape-fit-grid,
  .custom-tape-process-grid,
  .custom-tape-image-grid,
  .custom-solution-card,
  .custom-buyer-grid,
  .custom-process-grid,
  .custom-rfq-grid,
  .custom-proof-list,
  .custom-image-grid,
  .custom-guide-grid,
  .custom-faq-list,
  .custom-quote-two {
    grid-template-columns: 1fr;
  }

  .custom-solution-card img {
    min-height: 0;
    aspect-ratio: 1.55 / 1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .custom-cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .custom-quote-page {
    min-height: auto;
    padding-top: 28px;
  }

  .custom-product-picker {
    gap: 10px;
  }

  .custom-mobile-selected {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    position: sticky;
    top: 88px;
    z-index: 2;
    padding: 10px;
    border: 1px solid rgba(15, 118, 110, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(21, 33, 45, 0.1);
    backdrop-filter: blur(10px);
  }

  .custom-mobile-selected img {
    width: 72px;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 7px;
  }

  .custom-mobile-selected span {
    display: grid;
    gap: 3px;
    min-width: 0;
  }

  .custom-mobile-selected small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .custom-mobile-selected strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .custom-mobile-selected button {
    min-height: 42px;
    padding: 0 14px;
    color: #fff;
    background: var(--brand);
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 900;
  }

  .custom-product-picker:not(.is-expanded) .custom-product-card {
    display: none;
  }

  .custom-product-picker.is-expanded .custom-product-card {
    grid-template-columns: 84px minmax(0, 1fr);
    min-height: 90px;
  }

  .custom-product-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .custom-product-card img {
    width: 84px;
    aspect-ratio: 1.35 / 1;
  }

  .custom-quote-submit {
    justify-self: stretch;
  }

  .custom-entry {
    padding: 20px;
  }

  .custom-entry::before {
    inset: 10px;
  }

  .custom-entry-visual {
    min-height: 230px;
  }

  .custom-sheet {
    width: 128px;
    height: 94px;
  }

  .package-one {
    left: 13%;
    top: 112px;
    width: 124px;
    height: 94px;
  }

  .package-two {
    right: 9%;
    top: 132px;
    width: 104px;
    height: 78px;
  }

  .custom-tape-roll {
    left: 42%;
    top: 86px;
    width: 62px;
    height: 62px;
  }

  .custom-entry-copy strong {
    max-width: 13ch;
    font-size: clamp(2rem, 8vw, var(--display-title-size));
  }

  .custom-entry-actions {
    align-items: stretch;
  }

  .article-feature {
    min-height: 300px;
  }

  .article-feature-copy {
    padding: 22px;
  }

  .article-feature-copy strong {
    max-width: 13ch;
    font-size: clamp(2rem, 8vw, var(--display-title-size));
  }

  .article-link-panel a {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 84px;
    padding: 13px 15px;
  }

  .article-link-panel span {
    width: 34px;
    height: 34px;
  }

  .home-article-row {
    grid-template-columns: repeat(5, minmax(168px, 1fr));
  }

  .home-article-row .home-article-card {
    min-height: 228px;
  }

  .custom-entry-button {
    min-height: 40px;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: stretch;
  }

  .admin-actions .btn {
    flex: 1;
  }

  .admin-metrics,
  .admin-controls,
  .admin-owner-manager,
  .admin-card-grid {
    grid-template-columns: 1fr;
  }

  .admin-card header,
  .admin-contact-line {
    flex-direction: column;
  }

  .admin-fields {
    grid-template-columns: 1fr;
  }
}
