:root {
  --unipack-navy: #0D1B2A;
  --unipack-charcoal: #2B2F36;
  --unipack-gold: #C7A142;
  --unipack-steel: #6B7280;
  --unipack-light: #E5E7EB;
  --unipack-offwhite: #F7F7F8;
  --brand-accent: var(--unipack-gold);
  --brand-accent-deep: var(--unipack-navy);
  --brand-accent-soft: #E7D7A7;
  --graphite: var(--unipack-navy);
  --ink: var(--unipack-charcoal);
  --muted: var(--unipack-steel);
  --paper: #F0F2F4;
  --warm-white: var(--unipack-offwhite);
  --white: #FFFFFF;
  --line: var(--unipack-light);
  --line-dark: rgba(255, 255, 255, .16);
  --shell: min(1320px, calc(100vw - 72px));
  --ease: cubic-bezier(.22, .72, .2, 1);
}

/* Keep translated RTL copy without mirroring the English visual layout. */
html[dir="rtl"],
html[dir="rtl"] body {
  direction: ltr;
}

html[dir="rtl"] :where(h1, h2, h3, h4, h5, h6, p, li, dt, dd, label, legend, figcaption, small) {
  unicode-bidi: plaintext;
}

html[dir="rtl"] :where(input, textarea) {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] #site-language-select {
  direction: ltr;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: Inter, Manrope, "Segoe UI", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open,
body.filters-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid #2369B1;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: 78px;
  background: rgba(247, 247, 248, .92);
  border-bottom: 1px solid rgba(13, 27, 42, .08);
  backdrop-filter: blur(16px);
  transition: height .25s var(--ease), box-shadow .25s var(--ease);
}

.site-header.scrolled {
  height: 70px;
  box-shadow: 0 12px 32px rgba(24, 25, 23, .07);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 218px;
}

.site-logo {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.site-header.scrolled .site-logo {
  height: 41px;
}

.brand-fallback {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  position: relative;
  display: block;
  padding: 28px 0 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .015em;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item>a::after,
.primary-nav .current_page_item>a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .language-select {
  display: flex;
  align-items: center;
}

.primary-nav .language-select select {
  max-width: 132px;
  padding: 7px 28px 7px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--warm-white);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.header-phone {
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 12px;
  font-weight: 750;
  border-bottom: 1px solid var(--brand-accent-soft);
}

.site-footer a[href^="tel:"],
.mobile-contact-bar a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: isolate;
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid var(--brand-accent);
  border-radius: 2px;
  background: var(--brand-accent);
  color: var(--unipack-navy);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .035em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
}

.button:hover {
  border-color: var(--unipack-navy);
  background: var(--unipack-navy);
  color: #fff;
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: .6;
  transform: none;
}

.button-ghost {
  border-color: #A9A69E;
  background: transparent;
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--brand-accent);
  background: transparent;
  color: var(--brand-accent-deep);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--graphite);
}

.button-light:hover {
  border-color: var(--brand-accent-soft);
  background: var(--brand-accent-soft);
}

.text-link {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-accent-deep);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s var(--ease);
}

.text-link:hover {
  transform: translateX(3px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(48px, 5.1vw, 68px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 3.7vw, 50px);
}

h3 {
  font-size: 22px;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
}

.section {
  padding: 132px 0;
}

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

.dark {
  background: var(--graphite);
  color: #fff;
}

.dark .lead {
  color: #C8C6BF;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 58px;
}

.section-head h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-head>p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* Hero */
.hero-carousel {
  position: relative;
  min-height: clamp(580px, 62vh, 640px);
  overflow: hidden;
  background: var(--unipack-navy, #03182A);
  color: #fff;
}

.hero-track,
.hero-slide {
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), visibility .6s;
}

.hero-slide.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    rgba(3, 24, 42, 0.96) 0%,
    rgba(3, 24, 42, 0.88) 23%,
    rgba(3, 24, 42, 0.58) 42%,
    rgba(3, 24, 42, 0.15) 62%,
    rgba(3, 24, 42, 0) 78%
  ), var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1.01);
  transition: transform 6s linear;
}

.hero-slide.active .hero-photo {
  transform: scale(1.025);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: 82px 0 100px;
}

.hero-content {
  max-width: 540px;
  width: 100%;
}

.hero-title {
  max-width: 540px;
  margin: 0 0 20px;
  font-size: clamp(46px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-content .lead {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 32px;
}

.hero-content .button-ghost {
  border-color: rgba(211, 166, 58, 0.85);
  color: #fff;
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-controls .hero-controls-group {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(4, 24, 40, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.hero-controls .hero-controls-group > button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.hero-controls .hero-controls-group > button:hover {
  border-color: #D3A63A;
  background: #D3A63A;
  color: #03182A;
}

.hero-controls [data-carousel-dots] {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-controls [data-carousel-dots] button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.22s ease;
}

.hero-controls [data-carousel-dots] button.active {
  background: #D3A63A;
  transform: scale(1.25);
  box-shadow: 0 0 6px rgba(211, 166, 58, 0.7);
}

/* Verified metrics */
.metrics-section {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  min-height: 150px;
  padding: 34px 28px 30px;
  border-left: 1px solid var(--line);
}

.metric:last-child {
  border-right: 1px solid var(--line);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--graphite);
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -.045em;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Product families and cards */
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.family-panel {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  background: #F5F5F3;
  box-shadow: 0 14px 34px rgba(13, 27, 42, .045);
  transition: background .25s, box-shadow .25s, transform .25s var(--ease);
}

.family-panel:hover {
  background: #F8F8F7;
  box-shadow: 0 18px 42px rgba(13, 27, 42, .08);
  transform: translateY(-2px);
}

.family-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F4F4F2;
}

.family-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  padding: clamp(14px, 1.8vw, 22px);
  transition: transform .5s var(--ease);
}

.family-panel:hover .family-image img {
  transform: scale(1.025);
}

.family-panel>div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 30px 32px;
}

.family-panel h3 {
  margin: 0 0 13px;
  font-size: 30px;
}

.family-panel p {
  min-height: 54px;
  margin-bottom: 26px;
  color: var(--muted);
}

.family-panel b {
  margin-top: auto;
  color: var(--brand-accent-deep);
  font-size: 13px;
}

.family-panel b span {
  display: inline-block;
  margin-left: 3px;
  transition: transform .25s var(--ease);
}

.family-panel:hover b span {
  transform: translateX(4px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  height: 100%;
  border-bottom: 1px solid var(--line);
  transition: border-color .25s, transform .25s;
}

.product-card:hover {
  border-color: var(--brand-accent);
  transform: translateY(-2px);
}

.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / .78;
  padding: 12px;
  overflow: hidden;
  background: #EEEAE2;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-card-body {
  padding: 24px 2px 28px;
}

.product-card-body h3 {
  margin: 7px 0 16px;
  font-size: 22px;
}

.product-card-body p {
  color: var(--muted);
  font-size: 14px;
}

.product-meta {
  color: var(--brand-accent-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-key-spec {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-key-spec span {
  color: var(--ink);
  font-weight: 750;
}

/* Why / editorial compositions */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 46px;
}

.why-grid article {
  min-height: 230px;
  padding: 28px 0 34px;
  border-top: 1px solid #AFA99F;
}

.why-grid span,
.control-line span,
.options-grid span {
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.why-grid h3 {
  margin: 28px 0 12px;
}

.why-grid p {
  color: var(--muted);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 100px;
}

.editorial-copy {
  max-width: 580px;
}

.editorial-media {
  position: relative;
}

.editorial-media>img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.data-note {
  position: absolute;
  right: -22px;
  bottom: -26px;
  display: flex;
  align-items: center;
  width: 280px;
  gap: 18px;
  padding: 22px;
  background: var(--brand-accent);
  color: #fff;
}

.data-note strong {
  font-size: 46px;
  line-height: 1;
}

.data-note span {
  font-size: 12px;
  line-height: 1.45;
}

.photo-story {
  padding: 128px 0;
}

.photo-story-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: 92px;
}

.photo-story-image img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.photo-story-copy {
  padding-right: 8%;
}

.photo-story-copy .lead {
  font-size: 19px;
}

/* Applications */
.application-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 184px;
  gap: 12px;
}

.application-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.application-toolbar button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}

.application-toolbar button:hover,
.application-toolbar button:focus-visible {
  border-color: var(--brand-accent);
}

.application-toolbar button.active {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: white;
}

.application-result {
  min-height: 20px;
  margin: 0 0 24px;
  color: var(--brand-steel);
  font-size: 13px;
}

.application-tile {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  background: #EEF0F2;
  color: #fff;
}

.application-tile:first-child {
  grid-column: span 7;
  grid-row: span 2;
}

.application-tile:nth-child(2) {
  grid-column: span 5;
}

.application-tile:nth-child(4),
.application-tile:nth-child(7) {
  grid-column: span 5;
}

.applications-home .application-tile:nth-child(3) {
  grid-column: span 5;
}

.applications-home .application-tile:nth-child(4) {
  grid-column: span 4;
}

.application-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transition: transform .55s var(--ease), opacity .35s;
}

.application-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(13, 27, 42, .94), rgba(13, 27, 42, .04) 70%);
}

.application-tile:hover img {
  opacity: .92;
  transform: scale(1.025);
}

.application-tile span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.application-tile b {
  font-size: 22px;
}

.application-tile small {
  max-width: 450px;
  margin-top: 6px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.4;
}

.archive-mosaic {
  grid-auto-rows: 206px;
}

.archive-mosaic .application-tile:nth-child(1) {
  grid-column: span 8;
  grid-row: span 2;
}

.archive-mosaic .application-tile:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.archive-mosaic .application-tile:nth-child(3),
.archive-mosaic .application-tile:nth-child(6) {
  grid-column: span 5;
}

.archive-mosaic .application-tile:nth-child(4),
.archive-mosaic .application-tile:nth-child(5) {
  grid-column: span 7;
}

.archive-mosaic .application-tile:nth-child(7),
.archive-mosaic .application-tile:nth-child(8) {
  grid-column: span 6;
}

.customization-band {
  background: var(--paper);
}

.customization-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr auto;
  align-items: center;
  gap: 50px;
}

.customization-layout h2 {
  margin-bottom: 0;
}

.customization-layout ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.customization-layout li::before {
  margin-right: 8px;
  color: var(--brand-accent);
  content: "—";
}

.warehouse-feature {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: end;
  padding: 110px 0;
  overflow: hidden;
  background: var(--warehouse-image) center / cover no-repeat;
  color: #fff;
}

.warehouse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 19, 18, .9), rgba(20, 21, 19, .54) 55%, rgba(0, 0, 0, .15));
}

.warehouse-content {
  position: relative;
  z-index: 1;
}

.warehouse-content h2 {
  max-width: 700px;
}

.warehouse-content p:not(.eyebrow) {
  max-width: 620px;
  color: #D4D1CB;
  font-size: 19px;
}

.quote-cta {
  background: var(--graphite);
  color: #fff;
}

.quote-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.quote-cta h2 {
  max-width: 840px;
  margin: 0;
}

/* Page heroes */
.page-hero {
  position: relative;
  min-height: 430px;
  padding: 132px 0 104px;
  overflow: hidden;
  background: var(--paper);
}

.page-hero::after {
  position: absolute;
  top: -180px;
  right: -110px;
  width: 500px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(199, 161, 66, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(199, 161, 66, .055);
}

.page-hero .shell {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero.compact {
  min-height: 340px;
  padding: 105px 0 82px;
}

.about-hero,
.factory-hero {
  min-height: 660px;
  display: flex;
  align-items: end;
  padding-bottom: 105px;
  background: var(--ink);
  color: #fff;
}

.page-hero-media,
.page-hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.page-hero-media {
  pointer-events: none;
}

.page-hero-image {
  object-fit: cover;
}

.about-hero {
  align-items: start;
  padding: 100px 0 105px;
}

.factory-hero {
  align-items: start;
  padding: 100px 0 105px;
}

.about-hero::after,
.factory-hero::after {
  display: none;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 27, 42, .94), rgba(13, 27, 42, .38) 67%, rgba(13, 27, 42, .1));
}

.about-hero .lead,
.factory-hero .lead {
  color: #DEDCD6;
}

/* Catalog */
.catalog-section {
  padding-block: 108px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 38px;
}

.filters {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  padding: 18px 8px 0 0;
  overflow-y: auto;
  border-top: 3px solid var(--graphite);
  scrollbar-gutter: stable;
}

.filter-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.filter-heading h2 {
  margin-bottom: 18px;
  font-size: 22px;
}

.filter-close {
  display: none;
  border: 0;
  background: transparent;
  font-size: 30px;
}

.filter-search {
  display: block;
  font-size: 13px;
}

.filter-search>span,
.filters legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.filters input[type="search"] {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--warm-white);
}

.filters fieldset {
  margin: 18px 0;
  padding: 16px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.filters fieldset label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 13px;
}

.filters fieldset small {
  color: #99978F;
}

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

.catalog-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-bar select {
  padding: 7px 28px 7px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.filter-toggle {
  display: none;
}

.empty-state,
.empty-editorial {
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
}

[data-product-item][hidden] {
  display: none;
}

/* Product detail */
.product-detail {
  padding-top: 70px;
  padding-bottom: 104px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: start;
  gap: 56px;
}

.product-gallery,
.product-summary {
  min-width: 0;
}

.gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  display: block;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.gallery-main:hover img {
  transform: scale(1.18);
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}

.gallery-thumb {
  flex: 0 0 82px;
  width: 82px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  background: #EEEAE2;
  object-fit: cover;
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--brand-accent);
}

.product-summary {
  padding-top: 12px;
}

.product-summary h1 {
  font-size: clamp(44px, 4.8vw, 66px);
}

.spec-highlight {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.spec-highlight div {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.spec-highlight dt {
  color: var(--muted);
}

.spec-highlight dd {
  margin: 0;
  font-weight: 750;
}

.micro-copy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.product-information {
  padding-block: 104px;
}

.tabs {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.tabs button {
  padding: 0 0 16px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.tabs button[aria-selected="true"] {
  border-bottom: 3px solid var(--brand-accent);
  color: var(--ink);
}

.tab-panel {
  animation: panel-in .3s var(--ease);
}

@keyframes panel-in {
  from {
    opacity: .3;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.product-overview-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 90px;
}

.product-overview-grid aside {
  padding: 32px;
  border-top: 3px solid var(--brand-accent);
  background: var(--warm-white);
}

.prose {
  font-size: 18px;
}

.prose>*+* {
  margin-top: 1.25em;
}

.prose h2 {
  margin-top: 2em;
  font-size: 32px;
}

.spec-columns {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
}

.spec-columns h2 {
  font-size: 28px;
}

.spec-table,
.technical-table {
  width: 100%;
  border-collapse: collapse;
}

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

.spec-table th {
  width: 42%;
  color: var(--muted);
  font-weight: 650;
}

.technical-table {
  min-width: 700px;
  background: var(--warm-white);
  font-size: 14px;
}

.technical-table thead {
  background: var(--graphite);
  color: #fff;
}

.technical-table th {
  font-size: 11px;
  letter-spacing: .04em;
}

.table-scroll {
  overflow-x: auto;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.options-grid article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.options-grid h3 {
  margin: 24px 0 12px;
}

.related-products {
  padding-block: 104px;
  background: var(--warm-white);
}

.related-products .catalog-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 330px));
  justify-content: start;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 72px;
  background: rgba(8, 9, 8, .96);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 110px);
  margin: auto;
  object-fit: contain;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 0;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 34px;
}

.gallery-lightbox-nav {
  width: 54px;
  height: 54px;
  font-size: 22px;
}

.gallery-lightbox-nav.next {
  justify-self: end;
}

/* Configurator */
.configurator {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: start;
  gap: 64px;
}

.config-step {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.config-step>span {
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 850;
}

.config-step h2 {
  margin: 8px 0 20px;
  font-size: 27px;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.choice.active {
  border-color: var(--brand-accent);
  color: var(--brand-accent-deep);
  box-shadow: inset 0 -2px var(--brand-accent);
}

.config-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.config-field-grid label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.config-field-grid input {
  display: block;
  width: 100%;
  height: 46px;
  margin-top: 6px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.config-preview {
  position: sticky;
  top: 100px;
  padding: 34px;
  background: var(--graphite);
  color: #fff;
}

.config-preview h2 {
  font-size: 32px;
}

.config-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 230px;
  margin: 25px 0;
  overflow: hidden;
  background: radial-gradient(circle, #3B3B36, #20211F);
}

.config-visual::before {
  width: 170px;
  aspect-ratio: 1;
  content: "";
  border: 30px solid var(--brand-accent);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-12deg);
}

.config-visual span {
  position: absolute;
  z-index: 1;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
}

.config-preview dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
}

.config-preview dt {
  color: #AEADA6;
}

.config-preview dd {
  margin: 0;
  text-align: right;
}

.config-preview>p {
  color: #AEADA6;
  font-size: 12px;
}

.config-preview .button {
  width: 100%;
  margin-top: 16px;
}

/* Factory / About / Contact */
.factory-metrics {
  background: var(--graphite);
  color: #fff;
  border: 0;
}

.factory-metrics .metric {
  border-color: var(--line-dark);
}

.factory-metrics .metric strong {
  color: #fff;
}

.portrait-accent img {
  aspect-ratio: 1.15;
}

.control-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.control-line article {
  min-height: 285px;
  padding: 30px 28px;
  border-right: 1px solid var(--line-dark);
}

.control-line h3 {
  margin: 42px 0 14px;
}

.control-line p {
  color: #BDBCB5;
}

.process-switch {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
}

.process-tabs button {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: #C8CBD0;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: background .25s, color .25s;
}

.process-tabs button:last-child {
  border-bottom: 0;
}

.process-tabs button span {
  color: var(--brand-accent);
  font-size: 11px;
  letter-spacing: .12em;
}

.process-tabs button[aria-selected="true"],
.process-tabs button:hover {
  background: rgba(255, 255, 255, .07);
  color: white;
}

.process-panels {
  min-height: 288px;
}

.process-panels article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 288px;
  padding: clamp(38px, 5vw, 76px);
}

.process-panels article>span {
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.process-panels h3 {
  max-width: 660px;
  margin: 22px 0 16px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.04;
}

.process-panels p {
  max-width: 680px;
  margin: 0;
  color: #BDBCB5;
  font-size: 16px;
  line-height: 1.75;
}

.factory-video-section {
  padding-block: 108px;
  background: var(--warm-white);
}

.factory-videos {
  display: grid;
  grid-template-columns: .7fr 1.15fr 1.15fr;
  gap: 18px;
}

.video-card {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.video-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  background: #111;
  object-fit: contain;
}

.video-card figcaption {
  padding: 10px 4px 3px;
  color: var(--muted);
  font-size: 12px;
}

.warehouse-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 56px;
}

.warehouse-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.warehouse-collage .wide {
  grid-column: 1 / -1;
}

.warehouse-collage img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.warehouse-collage .wide img {
  height: 350px;
}

.factory-gallery {
  padding-block: 108px;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 174px;
  gap: 12px;
}

.editorial-gallery figure {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
}

.editorial-gallery figure:first-child {
  grid-column: span 7;
  grid-row: span 2;
}

.editorial-gallery figure:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.editorial-gallery figure:nth-child(5) {
  grid-column: span 8;
}

.editorial-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro {
  padding-block: 112px;
}

.about-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 72px;
}

.about-layout aside {
  position: sticky;
  top: 110px;
}

.about-layout aside h2 {
  font-size: 40px;
}

.about-metrics {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.about-metrics .metric {
  min-height: 110px;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.about-metrics .metric strong {
  font-size: 30px;
}

/* Customer Value / Partnership Section */
.partnership-section {
  background: #08101A;
  background: radial-gradient(ellipse at 50% 20%, #111e30 0%, #080f1a 100%);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.partnership-head {
  max-width: 860px;
  margin-bottom: 50px;
  text-align: left;
}

.partnership-head .eyebrow {
  color: #D4A34B;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.partnership-head h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 750;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.partnership-lead {
  font-size: 16px;
  line-height: 1.65;
  color: #94A3B8;
  max-width: 660px;
  margin: 0;
}

.buyer-carousel-wrapper {
  position: relative;
  width: 100%;
}

.buyer-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  width: 100%;
}

.buyer-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%), #0D1726;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 38px 20px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  user-select: none;
}

.buyer-card:focus-visible {
  outline: 2px solid #D4A34B;
  outline-offset: 2px;
}

.buyer-card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: all 0.35s ease;
}

.buyer-card.active .buyer-card-top-bar,
.buyer-card:hover .buyer-card-top-bar {
  background: linear-gradient(90deg, transparent, #D4A34B 20%, #F3D27E 50%, #D4A34B 80%, transparent);
  box-shadow: 0 0 10px rgba(212, 163, 75, 0.6);
}

.buyer-card:hover,
.buyer-card.active {
  border-color: rgba(212, 163, 75, 0.35);
  background: linear-gradient(180deg, rgba(212, 163, 75, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%), #0F1B2E;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(212, 163, 75, 0.08);
}

.buyer-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 163, 75, 0.45);
  background: radial-gradient(circle at center, rgba(212, 163, 75, 0.12) 0%, rgba(13, 23, 38, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: #D4A34B;
  transition: all 0.35s ease;
}

.buyer-icon-badge svg {
  display: block;
  stroke: #D4A34B;
  transition: transform 0.35s ease, stroke 0.35s ease;
}

.buyer-card:hover .buyer-icon-badge,
.buyer-card.active .buyer-icon-badge {
  border-color: #D4A34B;
  background: radial-gradient(circle at center, rgba(212, 163, 75, 0.24) 0%, rgba(13, 23, 38, 0.8) 100%);
  box-shadow: 0 0 18px rgba(212, 163, 75, 0.35);
  transform: scale(1.05);
}

.buyer-card:hover .buyer-icon-badge svg,
.buyer-card.active .buyer-icon-badge svg {
  stroke: #E5BE6C;
}

.buyer-card-title {
  font-size: 19px;
  font-weight: 750;
  color: #FFFFFF;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.buyer-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #8E9BAE;
  margin: 0;
  max-width: 220px;
}

/* Navigation Controls (Arrows & Dots) */
.buyer-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.buyer-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 163, 75, 0.5);
  background: rgba(13, 23, 38, 0.6);
  color: #D4A34B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.buyer-nav-btn:hover {
  border-color: #D4A34B;
  background: rgba(212, 163, 75, 0.18);
  box-shadow: 0 0 12px rgba(212, 163, 75, 0.35);
  transform: scale(1.08);
}

.buyer-nav-btn:focus-visible {
  outline: 2px solid #D4A34B;
  outline-offset: 2px;
}

.buyer-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.buyer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #3B4858;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buyer-dot:hover {
  background: #64748B;
  transform: scale(1.25);
}

.buyer-dot.active {
  background: #D4A34B;
  box-shadow: 0 0 8px rgba(212, 163, 75, 0.8);
  transform: scale(1.3);
}

.buyer-dot:focus-visible {
  outline: 2px solid #D4A34B;
  outline-offset: 2px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .buyer-cards-grid {
    gap: 14px;
  }
  .buyer-card {
    padding: 32px 14px 28px;
  }
  .buyer-card-title {
    font-size: 17px;
  }
  .buyer-card-desc {
    font-size: 12.5px;
  }
}

@media (max-width: 992px) {
  .buyer-carousel-wrapper {
    overflow: hidden;
  }
  .buyer-cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 10px 4px 20px;
    gap: 16px;
  }
  .buyer-cards-grid::-webkit-scrollbar {
    display: none;
  }
  .buyer-card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }
}

/* Custom Hero: image-only carousel. */
.custom-hero .product-hero-deck-stage {
  width: 100%;
  min-height: clamp(350px, 32vw, 430px);
  padding: 12px 46px 44px;
}

.custom-hero .deck-cards {
  width: 100%;
  max-width: none;
  height: clamp(260px, 24vw, 340px);
}

.custom-hero .deck-card {
  top: 50%;
  left: 50%;
  width: 13%;
  height: 74%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  pointer-events: auto;
}

.custom-hero .deck-card-inner {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  background: rgba(7, 18, 29, .52);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

.custom-hero .deck-card-image {
  --custom-carousel-image-inset: clamp(6px, 1.2vw, 14px);
  position: relative;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}

.custom-hero .deck-card-image img {
  display: block;
  position: absolute;
  inset: var(--custom-carousel-image-inset);
  width: calc(100% - var(--custom-carousel-image-inset) - var(--custom-carousel-image-inset));
  max-width: none;
  height: calc(100% - var(--custom-carousel-image-inset) - var(--custom-carousel-image-inset));
  max-height: none;
  margin: 0;
  object-fit: contain;
  filter: brightness(.7);
  transform: none;
}

.custom-hero .deck-card--left {
  left: 0;
  transform: translateY(-50%);
  opacity: .38;
  filter: none;
}

.custom-hero .deck-card--right {
  right: 0;
  left: auto;
  transform: translateY(-50%);
  opacity: .38;
  filter: none;
}

.custom-hero .deck-card--featured {
  width: 82%;
  max-width: 480px;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

.custom-hero .deck-card--featured .deck-card-inner {
  border: 1.5px solid #E2AE2D;
  border-radius: 4px;
  background: #0c1115;
  box-shadow: 0 0 24px rgba(226, 174, 45, .18), 0 18px 38px rgba(0, 0, 0, .44);
}

.custom-hero .deck-card--featured .deck-card-image {
  background: #0c1115;
}

.custom-hero .deck-card--featured .deck-card-image img {
  filter: none;
}

.custom-hero .deck-card-footer,
.custom-hero .featured-badge {
  display: none;
}

.custom-hero .deck-nav {
  width: 42px;
  height: 42px;
  border-color: rgba(226, 174, 45, .65);
  background: rgba(7, 18, 29, .78);
}

.custom-hero .deck-prev {
  left: 0;
}

.custom-hero .deck-next {
  right: 0;
}

.custom-hero .deck-dots {
  bottom: 2px;
}

.custom-hero .deck-card:focus-visible,
.custom-hero .deck-nav:focus-visible,
.custom-hero .deck-dot:focus-visible {
  outline: 2px solid #E2AE2D;
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .custom-hero .product-hero-deck-stage {
    min-height: 270px;
    padding: 8px 34px 36px;
  }

  .custom-hero .deck-cards {
    height: 210px;
  }

  .custom-hero .deck-card {
    width: 12%;
    height: 72%;
  }

  .custom-hero .deck-card--featured {
    width: 79%;
  }

  .custom-hero .deck-nav {
    width: 36px;
    height: 36px;
  }

  .custom-hero .deck-prev {
    left: 0;
  }

  .custom-hero .deck-next {
    right: 0;
  }
}

@media (max-width: 640px) {
  .buyer-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .partnership-section {
    padding: 20px 0;
  }
  .buyer-controls {
    margin-top: 22px;
  }
}

.about-photography {
  padding-top: 104px;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo-pair>div {
  margin: 0;
}

.photo-pair img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.photo-pair p {
  padding: 10px 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 56px;
}

.contact-aside {
  padding-top: 34px;
}

.contact-details div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: 12px;
}

.contact-details dd {
  margin: 4px 0 0;
  font-weight: 750;
}

.contact-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

.contact-form-panel {
  padding: 40px;
  background: var(--paper);
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #C9C5BC;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font-weight: 400;
}

.inquiry-form input {
  height: 46px;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-status {
  margin: 0;
}

.form-status.error {
  color: #A52222;
}

.form-status.success {
  color: #327542;
}

.faq-list details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.faq-list summary {
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
}

.faq-list details div {
  padding: 12px 0;
  color: var(--muted);
}

/* Articles and application details */
.featured-media {
  margin-top: 68px;
}

.featured-media img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  background: var(--paper);
}

.application-featured img {
  aspect-ratio: 1.8;
  object-fit: contain;
  padding: 24px;
}

.application-content {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
  gap: 90px;
}

.application-content aside {
  padding: 32px;
  background: var(--paper);
}

.application-content aside ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

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

.article-card {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

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

.article-card h2 {
  font-size: 28px;
}

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

.article-card>p:not(.eyebrow) {
  color: var(--muted);
}

.insights-listing {
  padding-block: 104px;
}

.insights-listing .empty-editorial {
  padding: 36px;
}

/* Card 07: Insights — compact empty-state editorial rhythm. */
body.blog {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.blog #main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

body.blog .insights-listing {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.blog .insights-listing-grid {
  width: 100%;
}

.page-hero.insights-hero {
  min-height: 0;
  padding-block: 40px 42px;
}

.insights-hero .eyebrow {
  margin-bottom: 12px;
}

.insights-hero h1 {
  margin-bottom: 14px;
}

.insights-hero .lead {
  margin-bottom: 0;
}

.insights-listing {
  padding-block: 40px;
}

.insights-listing-grid {
  display: block;
}

.insights-empty-editorial {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 0;
  padding: 20px !important;
}

.insights-empty-editorial h2 {
  margin-bottom: 12px;
}

.insights-empty-editorial p {
  margin: 0;
  color: var(--muted);
}

.insights-empty-mark {
  position: relative;
  flex: 0 0 140px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #EEF0F2;
}

.insights-empty-mark::before {
  position: absolute;
  top: 33px;
  left: 43px;
  width: 52px;
  height: 68px;
  content: "";
  border: 3px solid var(--brand-steel);
  border-radius: 4px;
}

.insights-empty-mark::after {
  position: absolute;
  top: 54px;
  left: 55px;
  width: 30px;
  height: 3px;
  content: "";
  background: var(--brand-accent);
  box-shadow: 0 12px 0 var(--brand-accent), 0 24px 0 var(--brand-accent);
}

.quote-cta.insights-inquiry {
  padding-block: 36px;
}

.insights-inquiry .quote-cta-inner {
  align-items: center;
}

.insights-inquiry h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(28px, 2.5vw, 36px);
}

.insights-inquiry .button {
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .page-hero.insights-hero {
    padding-block: 36px;
  }

  .insights-empty-editorial {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px !important;
  }

  .insights-empty-mark {
    flex-basis: 76px;
    width: 76px;
    height: 76px;
  }

  .insights-empty-mark::before {
    top: 17px;
    left: 23px;
    width: 27px;
    height: 35px;
    border-width: 2px;
  }

  .insights-empty-mark::after {
    top: 29px;
    left: 30px;
    width: 18px;
    height: 2px;
    box-shadow: 0 8px 0 var(--brand-accent), 0 16px 0 var(--brand-accent);
  }

  .insights-inquiry .quote-cta-inner {
    align-items: flex-start;
    gap: 24px;
  }

  .insights-inquiry h2 {
    font-size: 32px;
  }

  .insights-inquiry .button {
    width: 100%;
  }
}

/* Footer and modal */
.site-footer {
  padding: 30px 0;
  background: #111210;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 72px;
}

.site-logo-footer {
  filter: none;
}

.footer-brand p,
.footer-grid address {
  max-width: 430px;
  color: #A9AAA4;
  font-style: normal;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
}

.footer-grid nav a:hover,
.footer-grid address a:hover {
  color: var(--brand-accent-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line-dark);
  color: #81837E;
  font-size: 12px;
}

.mobile-contact-bar {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .74);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(820px, 100%);
  max-height: 92vh;
  padding: 42px;
  overflow: auto;
  background: var(--warm-white);
}

.modal-panel h2 {
  font-size: 38px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 17px;
  border: 0;
  background: transparent;
  font-size: 34px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* UniPack V2 editorial compositions */
.family-stage {
  display: grid;
  grid-template-columns: minmax(0, 2.06fr) minmax(320px, .74fr);
  width: calc(100% + 36px);
  min-height: 0;
  margin: 0 -18px 30px;
  overflow: hidden;
  background: var(--unipack-navy);
  color: #fff;
}

.family-stage-media {
  align-self: stretch;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  background: #F1F2F3;
}

.family-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.family-stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 48px 42px;
}

.family-stage-copy>span {
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
}

.family-stage-copy h3 {
  margin: 28px 0 15px;
  font-size: 31px;
}

.family-stage-copy p {
  color: #C9CED4;
}

.family-stage-copy .text-link {
  margin-top: 20px;
  color: var(--brand-accent-soft);
}

.product-families,
.why-section,
.manufacturing-story,
.applications-home,
.customization-band,
.quote-cta {
  padding-block: 108px;
}

.pp-range-section {
  padding-top: 42px;
  padding-bottom: 108px;
}

.pp-range-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, .65fr);
  align-items: center;
  gap: 56px;
}

.pp-range-media {
  min-width: 0;
  overflow: hidden;
}

.pp-range-media img {
  width: 100%;
  aspect-ratio: 12 / 5;
  object-fit: cover;
  object-position: center;
}

.pp-range-media small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.pp-range-copy {
  max-width: 530px;
}

.pp-range-copy ul {
  margin: 32px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pp-range-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.pp-range-copy li::before {
  margin-right: 12px;
  color: var(--brand-accent);
  content: "—";
}

.why-section .section-head>p {
  color: #B8C0C9;
}

.why-section .why-grid {
  grid-template-columns: repeat(4, 1fr);
  column-gap: 34px;
}

.why-section .why-grid article {
  min-height: 280px;
  border-color: rgba(255, 255, 255, .18);
}

.why-section .why-grid h3 {
  margin-top: 30px;
  color: #fff;
}

.why-section .why-grid p {
  color: #B8C0C9;
}

.why-icon {
  width: 28px;
  height: 28px;
  margin-top: 18px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(32%) saturate(817%) hue-rotate(4deg) brightness(86%);
}

.manufacturing-mosaic {
  display: grid;
  grid-template-columns: 1.48fr .52fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 16px;
}

.manufacturing-mosaic>div {
  overflow: hidden;
  border-radius: 14px;
}

.manufacturing-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.manufacturing-mosaic>div:hover img {
  transform: scale(1.02);
}

.manufacturing-main {
  grid-row: 1 / 4;
  min-height: 690px;
}

.manufacturing-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding: 22px 28px;
  border-radius: 14px;
  background: var(--unipack-navy);
  color: #fff;
}

.manufacturing-link span {
  color: #AEB7C1;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.manufacturing-link strong {
  color: var(--brand-accent-soft);
  font-size: 13px;
}

.application-tile em {
  margin-bottom: 7px;
  color: var(--brand-accent-soft);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(247, 247, 248, .98) 0%, rgba(247, 247, 248, .94) 48%, rgba(247, 247, 248, .12) 82%), var(--page-hero-image) center / cover no-repeat;
}

.product-hero::after {
  display: none;
}

.product-hero .lead {
  max-width: 620px;
}

.custom-hero {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 78% 44%, rgba(199, 161, 66, .18), transparent 27%), linear-gradient(96deg, #08131F 0%, #0D1B2A 57%, #13273A 100%);
}

.custom-hero::after {
  display: none;
}

.custom-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .76fr);
  align-items: center;
  gap: 56px;
  min-height: inherit;
  padding: 48px 0;
}

.custom-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 670px;
}

.custom-hero .eyebrow {
  color: var(--brand-accent-soft);
}

.custom-hero h1 {
  max-width: 650px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(48px, 4.65vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.custom-hero .lead {
  max-width: 620px;
  margin: 0;
  color: #D3D9DF;
}

.custom-hero-media {
  position: relative;
  min-height: 300px;
}

.custom-hero-media::before {
  position: absolute;
  inset: 4% 3% 1% 11%;
  border: 1px solid rgba(199, 161, 66, .6);
  content: "";
}

.custom-hero-frame {
  position: absolute;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(225, 230, 234, .82));
  box-shadow: 0 24px 48px rgba(0, 0, 0, .28);
}

.custom-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.custom-hero-frame--pp {
  top: 14%;
  left: 0;
  width: 39%;
  aspect-ratio: 1 / .82;
  opacity: .7;
  transform: rotate(-5deg);
}

.custom-hero-frame--pet {
  top: 0;
  left: 24%;
  z-index: 2;
  width: 45%;
  aspect-ratio: .88;
  border: 1px solid rgba(199, 161, 66, .76);
}

.custom-hero-frame--film {
  right: -2%;
  bottom: 2%;
  z-index: 3;
  width: 33%;
  aspect-ratio: .7;
  transform: rotate(3deg);
}

.config-preview {
  overflow: hidden;
}

.config-visual {
  aspect-ratio: 4 / 3;
  height: auto;
  background: linear-gradient(145deg, #F7F7F8, #E8EBEF);
}

.config-visual::before {
  display: none;
}

.config-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}

.config-visual.updating img {
  opacity: .25;
  transform: scale(.98);
}

.config-visual span {
  right: 14px;
  bottom: 12px;
  padding: 5px 8px;
  background: var(--unipack-navy);
  color: #fff;
}

.custom-hero+.section {
  padding-top: 40px;
  padding-bottom: 44px;
}

.custom-hero+.section .configurator {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: 48px;
}

.custom-hero+.section .config-step {
  padding: 20px 0;
}

.custom-hero+.section .config-step h2 {
  margin: 6px 0 16px;
  font-size: 25px;
}

.custom-hero+.section .choice-row {
  gap: 8px;
}

.custom-hero+.section .choice {
  min-height: 44px;
  padding: 9px 16px;
}

.custom-hero+.section .choice:focus-visible,
.custom-hero+.section .config-field-grid input:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid rgba(199, 161, 66, .7);
  outline-offset: 2px;
}

.custom-hero+.section .config-field-grid {
  gap: 14px 16px;
}

.custom-hero+.section .config-field-grid input {
  height: 44px;
}

.custom-hero+.section .config-preview {
  top: 92px;
  max-height: none;
  padding: 28px 28px 26px;
  border-top: 3px solid var(--brand-accent);
  box-shadow: 0 18px 40px rgba(13, 27, 42, .12);
  overflow: visible;
}

.custom-hero+.section .config-preview h2 {
  margin: 0;
  font-size: 29px;
}

.custom-hero+.section .config-visual {
  aspect-ratio: 4 / 3;
  height: auto;
  margin: 18px 0;
}

.custom-hero+.section .config-preview dl div {
  padding: 8px 0;
}

.custom-hero+.section .config-preview dd {
  overflow-wrap: anywhere;
}

.custom-hero+.section .config-preview>p {
  margin: 16px 0 0;
}

.custom-hero+.section .config-preview .button {
  min-height: 46px;
  margin-top: 14px;
}

.contact-atmosphere {
  margin: -34px 0 38px;
  overflow: hidden;
}

.contact-atmosphere img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.footer-brand small {
  display: block;
  max-width: 420px;
  margin-top: 16px;
  color: #7E8791;
  font-size: 11px;
}

.site-footer {
  background: #08131F;
}

.footer-brand .brand {
  width: max-content;
  padding: 7px 12px;
  background: #fff;
}

.image-reveal {
  transition: transform .7s var(--ease), opacity .7s var(--ease);
}

.image-reveal:hover {
  transform: scale(1.015);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1050px);
  }

  .header-phone {
    display: none;
  }

  .primary-nav ul {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .hero-layout {
    grid-template-columns: 1fr .75fr;
    gap: 30px;
  }

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

  .editorial-split {
    gap: 55px;
  }

  .factory-videos {
    grid-template-columns: 1fr 1fr;
  }

  .video-card:first-child {
    grid-row: span 2;
  }

  .why-section .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .family-stage {
    width: 100%;
    margin-inline: 0;
    grid-template-columns: minmax(0, 1.85fr) minmax(300px, .75fr);
  }

  .family-stage-copy {
    padding: 38px 32px;
  }

  .family-panel {
    min-height: 490px;
  }
}

@media (max-width: 1024px) {

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    display: none;
    position: fixed;
    inset: 72px 0 auto;
    margin: 0;
    padding: 22px var(--shell-side, 24px);
    background: var(--warm-white);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .12);
  }

  .primary-nav.open {
    display: block;
  }

  .primary-nav ul {
    display: block;
    width: var(--shell);
    margin: auto;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .language-select {
    padding: 12px 0;
  }

  .primary-nav .language-select select {
    width: 100%;
    max-width: none;
  }

  .primary-nav a {
    padding: 15px 0;
    font-size: 15px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero-carousel {
    min-height: 700px;
  }

  .hero-layout {
    grid-template-columns: 1fr 330px;
    gap: 20px;
  }

  .hero-product {
    min-height: 380px;
  }

  .family-panel {
    min-height: 520px;
  }

  .family-image {
    height: 280px;
  }

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

  .editorial-split,
  .photo-story-grid,
  .warehouse-layout,
  .about-layout,
  .contact-layout,
  .application-content,
  .configurator {
    grid-template-columns: 1fr;
  }

  .about-layout aside {
    position: static;
  }

  .about-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .about-metrics .metric {
    padding-right: 18px;
    border-right: 1px solid var(--line);
  }

  .photo-story-copy {
    padding: 0;
  }

  .control-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-switch {
    grid-template-columns: 1fr;
  }

  .process-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    overflow-x: auto;
  }

  .process-tabs button {
    min-width: 150px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filter-toggle {
    display: inline-flex;
    width: max-content;
  }

  .filters {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 180;
    display: none;
    width: min(390px, 92vw);
    height: 100vh;
    max-height: none;
    padding: 30px 26px;
    overflow: auto;
    background: var(--warm-white);
    box-shadow: 20px 0 50px rgba(0, 0, 0, .18);
  }

  .filters.open {
    display: block;
  }

  .filter-close {
    display: block;
  }

  .product-detail-grid,
  .product-overview-grid,
  .spec-columns {
    grid-template-columns: 1fr;
  }

  .product-summary {
    padding-top: 0;
  }

  .config-preview {
    position: relative;
    top: auto;
    grid-row: 1;
  }

  .config-visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1.1fr .8fr 1fr;
    gap: 40px;
  }

  .family-stage,
  .pp-range-layout {
    grid-template-columns: 1fr;
  }

  .family-stage-copy {
    min-height: 330px;
  }

  .family-stage-media {
    min-height: 0;
    aspect-ratio: 16 / 7;
  }

  .pp-range-layout {
    gap: 52px;
  }

  .manufacturing-main {
    min-height: 580px;
  }
}

@media (max-width: 840px) {
  .family-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .family-panel {
    min-height: auto;
  }

  .family-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .family-panel p {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .shell,
  .primary-nav ul {
    width: auto;
    margin-inline: 14px;
  }

  body {
    padding-bottom: 58px;
  }

  .section {
    padding: 84px 0;
  }

  h1 {
    font-size: clamp(38px, 11vw, 44px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .lead {
    font-size: 17px;
  }

  .site-logo,
  .site-header.scrolled .site-logo {
    height: 41px;
  }

  .hero-carousel {
    min-height: 790px;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 64px 0 90px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .hero-content .lead {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-content .button-row {
    margin-top: 24px;
  }

  .hero-content .button {
    flex: 1;
    min-width: 145px;
  }

  .hero-product {
    min-height: 270px;
    margin-top: 12px;
  }

  .hero-product::before {
    width: 280px;
  }

  .hero-product::after {
    width: 210px;
  }

  .hero-product-image {
    width: min(84vw, 350px);
    max-height: 290px;
  }

  .hero-photo {
    background: linear-gradient(180deg, rgba(13, 27, 42, .94) 0%, rgba(13, 27, 42, .7) 58%, rgba(13, 27, 42, .2) 100%), var(--hero-mobile-image), var(--unipack-navy);
    background-position: center;
  }

  .hero-slide[data-hero-mobile-image*="home-hero-real-dark"] .hero-photo {
    filter: brightness(1.8) saturate(1.08) contrast(1.04);
  }

  .hero-controls {
    bottom: 22px;
    justify-content: flex-start;
  }

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

  .metric {
    min-height: 120px;
    padding: 26px 16px;
    border-bottom: 1px solid var(--line);
  }

  .metric strong {
    font-size: 29px;
  }

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

  .family-panel {
    min-height: auto;
  }

  .family-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .family-panel p {
    min-height: 0;
  }

  .family-stage {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .family-stage-media {
    min-height: 0;
    padding: 0;
    aspect-ratio: 5 / 4;
  }

  .family-stage-media img {
    object-position: 48% center;
  }

  .family-stage-copy {
    min-height: 0;
    padding: 38px 26px 44px;
  }

  .pp-range-section {
    padding-top: 30px;
  }

  .pp-range-layout {
    gap: 46px;
  }

  .pp-range-media img {
    aspect-ratio: 5 / 4;
    object-position: 72% center;
  }

  .pp-range-copy {
    max-width: none;
  }

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

  .why-section .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid article {
    min-height: auto;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 38px;
  }

  .editorial-media>img {
    min-height: 360px;
  }

  .data-note {
    right: -8px;
    bottom: -24px;
    width: 250px;
  }

  .photo-story {
    padding: 96px 0;
  }

  .photo-story-image img {
    aspect-ratio: 1.15;
  }

  .application-mosaic,
  .archive-mosaic {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .application-tile,
  .application-tile:first-child,
  .application-tile:nth-child(2),
  .application-tile:nth-child(4),
  .application-tile:nth-child(7),
  .archive-mosaic .application-tile:nth-child(n) {
    flex: 0 0 84vw;
    height: 390px;
    scroll-snap-align: start;
  }

  .customization-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .warehouse-feature {
    min-height: 620px;
    padding: 78px 0;
    background-position: 63% center;
  }

  .manufacturing-mosaic {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .manufacturing-mosaic>div,
  .manufacturing-main,
  .manufacturing-link {
    flex: 0 0 84vw;
    min-height: 390px;
    scroll-snap-align: start;
  }

  .manufacturing-link {
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
  }

  .quote-cta-inner {
    align-items: start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 360px;
    padding: 90px 0 68px;
  }

  .page-hero.compact {
    min-height: 300px;
    padding: 78px 0 62px;
  }

  .about-hero,
  .factory-hero {
    min-height: 580px;
    padding-bottom: 72px;
  }

  .product-hero,
  .custom-hero {
    min-height: 460px;
    background-position: 62% center;
  }

  .product-grid,
  .catalog-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .related-products .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-bar {
    margin-top: 20px;
  }

  .product-detail {
    padding-top: 38px;
  }

  .product-detail-grid {
    gap: 42px;
  }

  .gallery-main {
    margin-inline: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .spec-highlight div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .tabs {
    gap: 24px;
  }

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

  .config-field-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .config-preview {
    margin-inline: -14px;
    padding: 28px 22px;
  }

  .config-visual {
    height: 280px;
  }

  .control-line {
    display: flex;
    overflow-x: auto;
  }

  .control-line article {
    flex: 0 0 78vw;
  }

  .process-tabs {
    display: flex;
  }

  .process-tabs button {
    flex: 0 0 auto;
    min-width: 138px;
    padding: 0 16px;
  }

  .process-panels,
  .process-panels article {
    min-height: 330px;
  }

  .process-panels article {
    padding: 38px 24px;
  }

  .factory-videos {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .video-card {
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .video-card video {
    height: auto;
  }

  .warehouse-collage img,
  .warehouse-collage .wide img {
    height: 220px;
  }

  .editorial-gallery {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
  }

  .editorial-gallery figure,
  .editorial-gallery figure:first-child,
  .editorial-gallery figure:nth-child(2),
  .editorial-gallery figure:nth-child(5) {
    flex: 0 0 82vw;
    height: 360px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .buyer-row {
    grid-template-columns: 1fr 1fr;
  }

  .buyer-row span {
    border-bottom: 1px solid var(--line);
  }

  .photo-pair {
    grid-template-columns: 1fr;
  }

  .photo-pair img {
    height: 380px;
  }

  .contact-form-panel {
    margin-inline: -14px;
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 6px;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 58px;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .12);
  }

  .mobile-contact-bar a,
  .mobile-contact-bar button {
    display: grid;
    place-items: center;
    border: 0;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-contact-bar button {
    background: var(--brand-accent);
    color: #fff;
  }

  .modal {
    padding: 0;
    align-items: end;
  }

  .modal-panel {
    width: 100%;
    max-height: 94vh;
    padding: 34px 18px 24px;
  }

  .gallery-lightbox {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    padding: 64px 8px 20px;
  }

  .gallery-lightbox-nav {
    width: 42px;
    height: 42px;
  }
}

/* Home: metrics and sections */

.home .metric {
  min-height: 118px;
  padding-block: 28px 24px;
}

.home .metric strong {
  font-size: clamp(28px, 2.6vw, 38px);
}

.home .product-families {
  padding-block: 30px;
}

.home .product-families .section-head {
  margin-bottom: 38px;
}

.home .product-families .section-head h2 {
  font-size: clamp(36px, 3.3vw, 46px);
}

.home .product-families .family-intro p {
  margin: 0 0 12px;
}

.home .product-families .family-intro .text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--brand-accent);
}

.home .family-grid {
  gap: 20px;
}

.home .family-panel {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(13, 27, 42, .045);
}

.home .family-image {
  aspect-ratio: 4 / 3;
  padding: 0;
  background: #F7F7F6;
}

.home .family-image img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

.home .family-panel>div:last-child {
  min-height: 190px;
  padding: 24px 26px 26px;
}

.home .family-panel h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.home .family-panel p {
  min-height: 48px;
  margin-bottom: 18px;
  font-size: 14px;
}

.pp-color-band {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 2.3fr);
  align-items: stretch;
  gap: 28px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.pp-color-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 8px;
}

.pp-color-copy .eyebrow {
  margin-bottom: 9px;
}

.pp-color-copy h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.pp-color-copy p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pp-color-copy .text-link {
  width: max-content;
  max-width: 100%;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--brand-accent);
  font-size: 12px;
}

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

.pp-color-item {
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.pp-color-item img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transition: transform .45s var(--ease);
}

.pp-color-item:hover img {
  transform: scale(1.018);
}

.home .why-section {
  padding-block: 28px;
}

.home .why-section .section-head {
  margin-bottom: 24px;
}

.home .why-section .why-grid article {
  min-height: 0;
  padding-block: 18px 12px;
}

.home .why-section .why-grid h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.home .why-section .why-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.home .manufacturing-story {
  padding-block: 28px 30px;
}

.home .manufacturing-story .section-head {
  margin-bottom: 28px;
}

.home .manufacturing-mosaic {
  gap: 12px;
}

.home .manufacturing-main {
  min-height: 520px;
}

.home .manufacturing-link {
  min-height: 76px;
  padding: 18px 22px;
}

.home .applications-home {
  padding-block: 28px 30px;
}

.home .applications-home .section-head {
  margin-bottom: 38px;
}

.home .applications-home .application-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
  margin-right: 0;
  overflow: visible;
}

.home .applications-home .application-tile,
.home .applications-home .application-tile:first-child,
.home .applications-home .application-tile:nth-child(2),
.home .applications-home .application-tile:nth-child(3),
.home .applications-home .application-tile:nth-child(4),
.home .applications-home .application-tile:nth-child(7) {
  position: relative;
  display: grid;
  grid-column: auto;
  grid-row: auto;
  grid-template-rows: 176px 1fr;
  height: auto;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(13, 27, 42, .035);
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}

.home .applications-home .application-tile::after {
  display: none;
}

.home .applications-home .application-tile>img {
  width: 100%;
  height: 176px;
  padding: 12px;
  background: #F4F5F5;
  object-fit: contain;
  opacity: 1;
}

.home .applications-home .application-tile .application-tile-copy {
  position: static;
  display: flex;
  flex-direction: column;
  padding: 18px 46px 20px 18px;
}

.home .applications-home .application-tile em {
  margin-bottom: 5px;
  color: var(--brand-accent);
}

.home .applications-home .application-tile b {
  font-size: 18px;
  line-height: 1.2;
}

.home .applications-home .application-tile small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.home .applications-home .application-tile .application-tile-arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: auto;
  z-index: 2;
  display: block;
  color: var(--brand-accent);
  font-size: 20px;
  line-height: 1;
  transition: transform .25s var(--ease);
}

.home .applications-home .application-tile:hover,
.home .applications-home .application-tile:focus-visible {
  border-color: var(--brand-accent);
  box-shadow: 0 18px 38px rgba(13, 27, 42, .1);
  transform: translateY(-3px);
}

.home .applications-home .application-tile:hover>img {
  opacity: 1;
  transform: scale(1.025);
}

.home .applications-home .application-tile:hover .application-tile-arrow,
.home .applications-home .application-tile:focus-visible .application-tile-arrow {
  transform: translateX(4px);
}

.home .customization-band {
  padding-block: 28px 30px;
}

.home .customization-layout {
  gap: 36px;
}

.home .customization-layout h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.home .warehouse-feature {
  min-height: 420px;
  padding-block: 28px 30px;
}

.home .insights-section {
  padding-block: 30px;
}

.home .quote-cta {
  padding-block: 28px 30px;
}

@media (max-width: 1024px) {
  .pp-color-band {
    grid-template-columns: 1fr;
  }

  .home .applications-home .application-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .manufacturing-main {
    min-height: 500px;
  }
}

@media (max-width: 840px) {
  .home .family-grid {
    max-width: 620px;
  }

  .home .family-image {
    height: auto;
  }

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

@media (max-width: 720px) {
  .home .product-families,
  .home .why-section,
  .home .manufacturing-story,
  .home .applications-home {
    padding-block: 72px;
  }

  .home .family-panel>div:last-child {
    min-height: 0;
  }

  .pp-color-band {
    gap: 18px;
    padding: 18px;
  }

  .pp-color-gallery {
    gap: 8px;
  }

  .home .applications-home .application-mosaic {
    display: flex;
    gap: 12px;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .home .applications-home .application-tile,
  .home .applications-home .application-tile:first-child,
  .home .applications-home .application-tile:nth-child(2),
  .home .applications-home .application-tile:nth-child(3),
  .home .applications-home .application-tile:nth-child(4),
  .home .applications-home .application-tile:nth-child(7) {
    flex: 0 0 84vw;
    height: auto;
    min-height: 330px;
    scroll-snap-align: start;
  }

  .home .warehouse-feature {
    min-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-photo,
  .hero-slide.active .hero-photo {
    transform: none;
  }
}

/* Home Hero: modern full-width industrial B2B hero */
.home .hero-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.home .hero-carousel {
  position: relative;
  min-height: clamp(580px, 62vh, 640px);
  background: #03182A;
  color: #fff;
  overflow: hidden;
}

.home .hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), visibility .6s;
}

.home .hero-slide.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.home .hero-slide::after {
  display: none;
}

.home .hero-photo {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    rgba(3, 24, 42, 0.96) 0%,
    rgba(3, 24, 42, 0.88) 23%,
    rgba(3, 24, 42, 0.58) 42%,
    rgba(3, 24, 42, 0.15) 62%,
    rgba(3, 24, 42, 0) 78%
  ), var(--hero-image);
  background-position: var(--hero-bg-pos, center center);
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1.01);
  transition: transform 6s linear;
}

.home .hero-photo::after {
  display: none;
}

.home .hero-slide.active .hero-photo {
  transform: scale(1.025);
}

.home .hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: 82px 0 100px;
}

.home .hero-content {
  max-width: 540px;
  width: 100%;
}

.home .hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.home .hero-kicker .eyebrow {
  margin: 0;
  color: #D3A63A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home .hero-accent-line {
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: 22px;
  background: #D3A63A;
}

.home .hero-title {
  max-width: 540px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(46px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.home .hero-content .lead {
  max-width: 480px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16.5px;
  line-height: 1.6;
}

.home .hero-content .button-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.home .hero-content .button {
  min-width: 160px;
  height: 50px;
  padding: 0 26px;
  border-radius: 4px;
  background: #D3A63A;
  color: #03182A;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home .hero-content .button::after {
  display: none;
}

.home .hero-content .button:hover {
  background: #e0b44b;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(211, 166, 58, 0.35);
}

.home .hero-content .button-ghost {
  min-width: 160px;
  height: 50px;
  padding: 0 24px;
  border-radius: 4px;
  background: rgba(3, 24, 42, 0.45);
  border: 1.5px solid rgba(211, 166, 58, 0.85);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: none;
  box-shadow: none;
  transition: all 0.2s ease;
}

.home .hero-content .button-ghost:hover {
  border-color: #D3A63A;
  background: rgba(211, 166, 58, 0.16);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(211, 166, 58, 0.25);
}

.home .hero-features {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 540px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home .hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.home .hero-feature:first-child {
  padding-left: 0;
  border-left: 0;
}

.home .hero-feature:last-child {
  padding-right: 0;
}

.home .hero-feature svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: #D3A63A;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home .hero-controls {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.home .hero-controls .hero-controls-group {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(4, 24, 40, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
}

.home .hero-controls-group > button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.home .hero-controls-group > button svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
}

.home .hero-controls-group > button:hover,
.home .hero-controls-group > button:focus-visible {
  border-color: #D3A63A;
  background: #D3A63A;
  color: #03182A;
  transform: scale(1.06);
  box-shadow: 0 0 10px rgba(211, 166, 58, 0.4);
}

.home .hero-controls [data-carousel-dots] {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home .hero-controls [data-carousel-dots] button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.22s ease;
}

.home .hero-controls [data-carousel-dots] button:hover {
  background: rgba(255, 255, 255, 0.85);
}

.home .hero-controls [data-carousel-dots] button.active {
  background: #D3A63A;
  transform: scale(1.25);
  box-shadow: 0 0 6px rgba(211, 166, 58, 0.7);
}

@media (max-width: 1024px) {
  .home .hero-carousel {
    min-height: 540px;
  }

  .home .hero-photo {
    background-image: linear-gradient(
      90deg,
      rgba(3, 24, 42, 0.96) 0%,
      rgba(3, 24, 42, 0.9) 35%,
      rgba(3, 24, 42, 0.6) 65%,
      rgba(3, 24, 42, 0.2) 100%
    ), var(--hero-image);
  }

  .home .hero-layout {
    padding: 70px 0 94px;
  }

  .home .hero-content {
    max-width: 500px;
  }

  .home .hero-title {
    font-size: clamp(38px, 4.4vw, 46px);
  }

  .home .hero-content .lead {
    font-size: 15.5px;
    margin-bottom: 26px;
  }

  .home .hero-content .button-row {
    gap: 12px;
    margin-bottom: 30px;
  }

  .home .hero-content .button,
  .home .hero-content .button-ghost {
    min-width: 140px;
    height: 46px;
    font-size: 13px;
    padding: 0 18px;
  }

  .home .hero-feature {
    padding: 0 12px;
    font-size: 12px;
  }

  .home .hero-feature svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 720px) {
  .home .hero-carousel {
    min-height: 620px;
  }

  .home .hero-photo {
    background-image: linear-gradient(
      180deg,
      rgba(3, 24, 42, 0.88) 0%,
      rgba(3, 24, 42, 0.78) 55%,
      rgba(3, 24, 42, 0.92) 100%
    ), var(--hero-image);
  }

  .home .hero-layout {
    padding: 44px 0 86px;
  }

  .home .hero-content {
    max-width: 100%;
  }

  .home .hero-kicker {
    margin-bottom: 12px;
  }

  .home .hero-kicker .eyebrow {
    font-size: 12px;
  }

  .home .hero-accent-line {
    width: 44px;
    margin-bottom: 16px;
  }

  .home .hero-title {
    font-size: clamp(32px, 8.5vw, 40px);
    margin-bottom: 16px;
  }

  .home .hero-content .lead {
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .home .hero-content .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .home .hero-content .button,
  .home .hero-content .button-ghost {
    min-width: 0;
    height: 44px;
    font-size: 12px;
    padding: 0 10px;
  }

  .home .hero-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    max-width: 100%;
  }

  .home .hero-feature {
    border-left: none;
    padding: 0;
    font-size: 12px;
    gap: 8px;
  }

  .home .hero-feature svg {
    width: 18px;
    height: 18px;
  }

  .home .hero-controls {
    bottom: 18px;
  }

  .home .hero-controls-group {
    padding: 5px 14px;
    gap: 12px;
  }

  .home .hero-controls-group > button {
    width: 28px;
    height: 28px;
  }

  .home .hero-controls [data-carousel-dots] button {
    width: 7px;
    height: 7px;
  }
}

/* Products catalogue: approved editorial stage and compact filter layout. */
.product-hero {
  min-height: 280px;
  display: flex;
  align-items: center;
  color: #fff;
  background: radial-gradient(circle at 77% 58%, rgba(199, 161, 66, .18), transparent 24%), linear-gradient(105deg, #061724 0%, #0A2235 58%, #071725 100%);
}

.product-hero::after {
  display: none;
}

.product-hero .shell {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
  align-items: center;
  gap: clamp(38px, 6vw, 90px);
}

.product-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 570px;
}

.product-hero .eyebrow {
  color: #E2AE2D;
}

.product-hero .lead {
  color: #D4DAE0;
}

.product-hero-line {
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 30px;
  background: #E2AE2D;
}

.product-hero-stage {
  position: relative;
  min-height: 220px;
  isolation: isolate;
}

.product-hero-stage::before {
  position: absolute;
  inset: 8% 4% 7% 1%;
  z-index: -2;
  content: "";
  border: 1px solid rgba(226, 174, 45, .68);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .015));
  box-shadow: 0 30px 68px rgba(0, 0, 0, .3);
  transform: rotate(-2deg);
}

.product-hero-stage::after {
  position: absolute;
  right: 9%;
  bottom: 5%;
  left: 7%;
  z-index: -1;
  height: 18%;
  content: "";
  border-radius: 50%;
  background: rgba(0, 0, 0, .36);
  filter: blur(18px);
}

.product-hero-item {
  position: absolute;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(226, 174, 45, .54);
  border-radius: 12px;
  background: rgba(247, 247, 248, .96);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .24);
}

.product-hero-item img {
  width: 100%;
  height: 100%;
  padding: clamp(10px, 2vw, 24px);
  object-fit: contain;
}

.product-hero-item--1 {
  bottom: 12%;
  left: 1%;
  width: 36%;
  aspect-ratio: 1 / 1.05;
  transform: rotate(-5deg);
}

.product-hero-item--2 {
  top: 2%;
  left: 29%;
  width: 39%;
  aspect-ratio: 1 / 1.1;
  transform: rotate(3deg);
}

.product-hero-item--3 {
  right: 0;
  bottom: 8%;
  width: 34%;
  aspect-ratio: .84 / 1;
  transform: rotate(-2deg);
}

.catalog-section {
  padding-block: 28px 40px;
}

.catalog-layout {
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 28px 38px;
  align-items: start;
}

.catalog-toolbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.catalog-filter-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.catalog-filter-label::before {
  width: 17px;
  height: 12px;
  content: "";
  background: linear-gradient(var(--ink), var(--ink)) left top / 17px 2px no-repeat, linear-gradient(var(--ink), var(--ink)) center / 11px 2px no-repeat, linear-gradient(var(--ink), var(--ink)) right bottom / 5px 2px no-repeat;
}

.catalog-bar {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-bar select {
  min-height: 36px;
  padding: 7px 28px 7px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.filters {
  top: 92px;
  padding-top: 16px;
}

.catalog-results {
  min-width: 0;
}

.catalog-grid {
  gap: 18px;
}

.catalog-grid .product-image {
  aspect-ratio: 1 / .82;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.catalog-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 0.3s ease;
}

.catalog-grid .product-card:hover .product-image img {
  transform: scale(1.15);
}

.catalog-grid .product-card-body {
  display: flex;
  flex-direction: column;
  min-height: 236px;
  padding: 22px 20px 20px;
}

.catalog-grid .product-card-body .text-link {
  margin-top: auto;
}

.catalog-rfq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.catalog-rfq .eyebrow {
  margin-bottom: 7px;
}

.catalog-rfq p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-rfq .button-ghost {
  flex: 0 0 auto;
  border-color: #A9A69E;
}

@media (max-width: 1024px) {
  .product-hero {
    min-height: 440px;
  }

  .product-hero .shell {
    grid-template-columns: minmax(0, .9fr) minmax(350px, 1.1fr);
    gap: 28px;
  }

  .product-hero-stage {
    min-height: 260px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-toolbar {
    grid-column: auto;
  }

  .catalog-filter-label {
    display: none;
  }

  .catalog-toolbar {
    justify-content: flex-end;
  }

  .filter-toggle {
    grid-row: 2;
  }

  .catalog-results {
    grid-row: 3;
  }

  .filters {
    top: 0;
    padding-top: 30px;
  }
}

@media (max-width: 720px) {
  .product-hero {
    min-height: 650px;
    padding: 80px 0 58px;
  }

  .product-hero .shell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
  }

  .product-hero-copy {
    max-width: none;
  }

  .product-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 11vw, 54px);
  }

  .product-hero .lead {
    font-size: 16px;
  }

  .product-hero-line {
    margin-top: 22px;
  }

  .product-hero-stage {
    min-height: 254px;
  }

  .product-hero-item--1 {
    bottom: 7%;
    width: 37%;
  }

  .product-hero-item--2 {
    width: 41%;
  }

  .product-hero-item--3 {
    bottom: 4%;
    width: 35%;
  }

  .catalog-section {
    padding-block: 46px 72px;
  }

  .catalog-toolbar {
    min-height: 42px;
    padding-bottom: 12px;
  }

  .catalog-bar {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .catalog-grid .product-image {
    padding: 18px;
  }

  .catalog-grid .product-card-body {
    min-height: 0;
  }

  .catalog-rfq {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .catalog-rfq .button {
    width: 100%;
  }
}

/* Product Hero V5: 100% UI Restoration for RFQ & Catalogue */
.product-hero--rfq {
  position: relative;
  min-height: 520px;
  padding: 80px 0 70px;
  background: #071624;
  color: #ffffff;
  overflow: hidden;
}

.product-hero-bg-blueprint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(14, 34, 54, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 34, 54, 0.45) 1px, transparent 1px);
  background-size: 32px 32px;
}

.blueprint-curves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.product-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

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

.eyebrow-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow-accent {
  display: block;
  width: 32px;
  height: 2px;
  background: #E2AE2D;
}

.product-hero-copy .eyebrow {
  margin: 0;
  color: #E2AE2D;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.text-gold {
  color: #E2AE2D;
}

.product-hero-copy .lead {
  margin-bottom: 32px;
  color: #94A3B8;
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
}

.product-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #E2AE2D;
  color: #071523;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid #E2AE2D;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(226, 174, 45, 0.2);
}

.button-gold:hover {
  background: #f1bf40;
  border-color: #f1bf40;
  color: #040c14;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(226, 174, 45, 0.35);
}

.button-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(10, 24, 38, 0.5);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(226, 174, 45, 0.4);
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.button-gold-outline:hover {
  border-color: #E2AE2D;
  background: rgba(226, 174, 45, 0.12);
  color: #E2AE2D;
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.button-gold:hover .btn-arrow,
.button-gold-outline:hover .btn-arrow {
  transform: translateX(4px);
}

/* 3D Product Carousel Deck */
.product-hero-deck-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding-bottom: 40px;
  isolation: isolate;
}

.deck-cards {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  height: 320px;
}

.deck-card {
  position: absolute;
  width: 220px;
  cursor: pointer;
  user-select: none;
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 12px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.deck-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(14, 28, 44, 0.92) 0%, rgba(8, 18, 29, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}

.deck-card-image {
  width: 100%;
  height: 190px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.deck-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.deck-card:hover .deck-card-image img {
  transform: scale(1.05);
}

.deck-card-footer {
  padding: 14px 16px;
  background: rgba(5, 13, 22, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.deck-card-footer .product-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.deck-card-footer .more-details {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #E2AE2D;
  letter-spacing: 0.05em;
}

/* Card States & Positioning */
.deck-card--left {
  z-index: 2;
  transform: translateX(-120px) scale(0.85);
  opacity: 0.75;
  filter: brightness(0.85);
}

.deck-card--right {
  z-index: 2;
  transform: translateX(120px) scale(0.85);
  opacity: 0.75;
  filter: brightness(0.85);
}

.deck-card--featured {
  z-index: 5;
  width: 240px;
  transform: translateX(0) scale(1.06);
  opacity: 1;
  filter: brightness(1);
}

.deck-card--featured .deck-card-inner {
  border: 1.5px solid #E2AE2D;
  box-shadow: 0 0 30px rgba(226, 174, 45, 0.3), 0 20px 45px rgba(0, 0, 0, 0.6);
}

.deck-card--featured .deck-card-footer {
  background: rgba(4, 11, 18, 0.95);
  border-top-color: rgba(226, 174, 45, 0.25);
  padding: 16px;
}

.deck-card--featured .deck-card-footer .product-name {
  font-size: 16px;
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 3px 12px;
  background: #E2AE2D;
  color: #061320;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Controls */
.deck-nav {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(226, 174, 45, 0.4);
  background: rgba(7, 18, 29, 0.85);
  color: #E2AE2D;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.deck-prev {
  left: -12px;
}

.deck-next {
  right: -12px;
}

.deck-nav:hover {
  background: #E2AE2D;
  color: #071523;
  border-color: #E2AE2D;
  box-shadow: 0 0 16px rgba(226, 174, 45, 0.4);
  transform: scale(1.08);
}

.deck-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.deck-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.deck-dot.active {
  width: 22px;
  height: 8px;
  border-radius: 4px;
  background: #E2AE2D;
  box-shadow: 0 0 8px rgba(226, 174, 45, 0.5);
}

/* Responsive Styles for Hero V5 */
@media (max-width: 1024px) {
  .product-hero--rfq {
    min-height: auto;
    padding: 60px 0 50px;
  }

  .product-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .eyebrow-wrapper {
    align-items: center;
  }

  .product-hero-copy .lead {
    margin-inline: auto;
  }

  .product-hero-actions {
    justify-content: center;
  }

  .product-hero-deck-stage {
    max-width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .product-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .button-gold,
  .button-gold-outline {
    width: 100%;
    justify-content: center;
  }

  .deck-card {
    width: 170px;
  }

  .deck-card--featured {
    width: 195px;
  }

  .deck-card--left {
    transform: translateX(-80px) scale(0.8);
  }

  .deck-card--right {
    transform: translateX(80px) scale(0.8);
  }

  .deck-prev {
    left: -6px;
  }

  .deck-next {
    right: -6px;
  }
}

/* Custom RFQ: approved compact workspace. */
@media (max-width: 1180px) {
  .custom-hero+.section .configurator {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .custom-hero+.section .config-preview {
    position: relative;
    top: auto;
    grid-row: auto;
    max-height: none;
  }
}

@media (max-width: 720px) {
  .custom-hero {
    min-height: 0;
    padding: 0;
  }

  .custom-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 76px 0 40px;
  }

  .custom-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 11vw, 52px);
  }

  .custom-hero .lead {
    font-size: 16px;
  }

  .custom-hero-media {
    min-height: 226px;
  }

  .custom-hero-media::before {
    inset: 4% 6% 4% 11%;
  }

  .custom-hero-frame--pp {
    width: 37%;
  }

  .custom-hero-frame--pet {
    left: 25%;
    width: 44%;
  }

  .custom-hero-frame--film {
    width: 32%;
  }

  .custom-hero+.section {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .custom-hero+.section .configurator {
    gap: 32px;
  }

  .custom-hero+.section .config-step {
    padding: 18px 0;
  }

  .custom-hero+.section .config-step h2 {
    font-size: 24px;
  }

  .custom-hero+.section .choice {
    flex: 1 1 130px;
  }

  .custom-hero+.section .config-preview {
    margin: 0;
    padding: 24px 20px 22px;
  }

  .custom-hero+.section .config-preview h2 {
    font-size: 27px;
  }

  .custom-hero+.section .config-visual {
    height: 220px;
  }
}

/* Applications archive: approved editorial browse layout. */
.application-hero {
  min-height: 446px;
  padding-block: 94px 72px;
  color: #fff;
  background: radial-gradient(circle at 88% 28%, rgba(226, 174, 45, .15), transparent 18%), linear-gradient(112deg, #061724 0%, #0A2235 58%, #071725 100%);
}

.application-hero::after {
  display: none;
}

.application-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .88fr);
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
}

.application-hero-copy {
  max-width: 600px;
}

.application-hero .eyebrow {
  color: #E2AE2D;
}

.application-hero .lead {
  max-width: 570px;
  color: #D4DAE0;
}

.application-hero-art {
  display: grid;
  grid-template-columns: 1.08fr .78fr 1fr;
  grid-template-rows: repeat(2, 104px);
  gap: 10px;
  min-height: 218px;
}

.application-hero-art-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
}

.application-hero-art-item:nth-child(1) {
  grid-row: span 2;
}

.application-hero-art-item:nth-child(4) {
  grid-column: span 2;
}

.application-hero-art-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-archive {
  padding-block: 58px 72px;
}

.application-archive .application-toolbar {
  gap: 10px;
  margin-bottom: 10px;
}

.application-archive .application-toolbar button {
  min-height: 38px;
  padding-inline: 17px;
  border-color: #D6D9DC;
  background: #fff;
  font-size: 12px;
}

.application-archive .application-toolbar button:hover,
.application-archive .application-toolbar button:focus-visible {
  border-color: #E2AE2D;
  box-shadow: 0 0 0 3px rgba(226, 174, 45, .18);
  outline: 0;
}

.application-archive .application-toolbar button.active {
  border-color: #0A2235;
  background: #0A2235;
  color: #fff;
}

.application-archive .application-result {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.application-archive .archive-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 208px;
  gap: 12px;
  margin: 0;
  overflow: visible;
}

.application-archive .application-tile,
.application-archive .application-tile:first-child,
.application-archive .application-tile:nth-child(2),
.application-archive .application-tile:nth-child(4),
.application-archive .application-tile:nth-child(7),
.application-archive .archive-mosaic .application-tile:nth-child(n) {
  display: grid;
  grid-column: auto;
  grid-row: auto;
  grid-template-columns: minmax(128px, .78fr) minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(13, 27, 42, .035);
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}

.application-archive .application-tile::after {
  right: 16px;
  bottom: 15px;
  left: auto;
  z-index: 2;
  width: auto;
  height: auto;
  content: "→";
  background: transparent;
  color: #C79520;
  font-size: 20px;
  line-height: 1;
  transition: transform .25s var(--ease);
}

.application-archive .application-tile>img {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #F4F5F5;
  object-fit: cover;
  opacity: 1;
}

.application-archive .application-tile span {
  position: static;
  display: flex;
  min-width: 0;
  padding: 20px 42px 18px 18px;
}

.application-archive .application-tile em {
  margin-bottom: 6px;
  color: #B38316;
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.application-archive .application-tile b {
  font-size: 17px;
  line-height: 1.18;
}

.application-archive .application-tile small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.application-archive .application-tile:hover,
.application-archive .application-tile:focus-visible {
  border-color: #E2AE2D;
  box-shadow: 0 16px 34px rgba(13, 27, 42, .11);
  outline: 0;
  transform: translateY(-3px);
}

.application-archive [data-application-item]:focus-visible {
  outline: 3px solid #E2AE2D;
  outline-offset: 3px;
}

.application-archive .application-tile:hover>img,
.application-archive .application-tile:focus-visible>img {
  opacity: 1;
  transform: scale(1.025);
}

.application-archive .application-tile:hover::after,
.application-archive .application-tile:focus-visible::after {
  transform: translateX(4px);
}

.application-rfq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.application-rfq .eyebrow {
  margin-bottom: 5px;
}

.application-rfq p:last-child {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
}

.application-rfq .button {
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .application-hero {
    min-height: 408px;
  }

  .application-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr);
    gap: 30px;
  }

  .application-hero-art {
    grid-template-rows: repeat(2, 90px);
    min-height: 190px;
  }

  .application-archive .archive-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }
}

@media (max-width: 720px) {
  .application-hero {
    min-height: 0;
    padding-block: 76px 44px;
  }

  .application-hero-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .application-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 11vw, 52px);
  }

  .application-hero .lead {
    font-size: 16px;
  }

  .application-hero-art {
    grid-template-rows: repeat(2, 82px);
    min-height: 174px;
  }

  .application-archive {
    padding-block: 44px 64px;
  }

  .application-archive .application-toolbar {
    gap: 8px;
  }

  .application-archive .application-toolbar button {
    padding-inline: 14px;
  }

  .application-archive .archive-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 188px;
    gap: 12px;
    margin: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .application-archive .application-tile,
  .application-archive .application-tile:first-child,
  .application-archive .application-tile:nth-child(2),
  .application-archive .application-tile:nth-child(4),
  .application-archive .application-tile:nth-child(7),
  .application-archive .archive-mosaic .application-tile:nth-child(n) {
    display: grid;
    flex: none;
    width: auto;
    height: auto;
    min-height: 0;
    scroll-snap-align: none;
  }

  .application-rfq {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .application-rfq .button {
    width: 100%;
  }
}

/* Card 05: About — preserve the supplied narrative while tightening its evidence hierarchy. */
.about-intro {
  padding-block: 20px;
}

.about-layout {
  grid-template-columns: minmax(270px, .7fr) minmax(0, 640px);
  justify-content: space-between;
  gap: clamp(48px, 8vw, 132px);
}

.about-fact-rail {
  max-width: 390px;
}

.about-layout aside h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.14;
}

.about-metrics {
  margin-top: 38px;
}

.about-metrics .metric {
  min-height: 0;
  padding: 20px 0 19px;
}

.about-metrics .metric strong {
  font-size: clamp(28px, 2.25vw, 34px);
}

.about-prose {
  max-width: 640px;
}

.about-prose p {
  margin: 0 0 25px;
  font-size: 17px;
  line-height: 1.72;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.partnership {
  padding-block: clamp(70px, 7vw, 96px);
  background: #08131F;
  color: #fff;
}

.partnership .section-head {
  margin-bottom: 30px;
}

.partnership .section-head h2 {
  max-width: 620px;
}

.partnership .eyebrow {
  color: #E2AE2D;
}

.buyer-row {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .025);
}

.buyer-row span {
  position: relative;
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 22px 16px 18px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.buyer-row span::before {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 22px;
  height: 2px;
  content: "";
  background: #E2AE2D;
}

.buyer-row span:first-child {
  border-left: 0;
}

.about-photography {
  padding-block: 20px;
}

.photo-pair {
  gap: clamp(14px, 2vw, 24px);
}

.about-evidence {
  min-width: 0;
}

.photo-pair img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  object-fit: cover;
}

.about-evidence-showroom img {
  object-position: center;
}

.about-evidence-production img {
  object-position: center;
}

.photo-pair p {
  margin: 0;
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .02em;
}

.about-inquiry {
  padding-block: 20px;
}

.about-inquiry .quote-cta-inner {
  align-items: center;
}

.about-inquiry .eyebrow {
  color: #E2AE2D;
}

.about-inquiry .button {
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-fact-rail {
    max-width: none;
  }

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

  .about-metrics .metric {
    padding-right: 18px;
    border-right: 1px solid var(--line);
  }

  .about-metrics .metric:last-child {
    border-right: 0;
  }

  .about-prose {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .about-intro {
    padding-block: 70px;
  }

  .about-layout {
    gap: 38px;
  }

  .about-layout aside h2 {
    font-size: clamp(33px, 9vw, 40px);
  }

  .about-metrics {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .about-metrics .metric {
    padding: 19px 0;
    border-right: 0;
  }

  .about-prose p {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.72;
  }

  .partnership {
    padding-block: 64px;
  }

  .partnership .section-head {
    margin-bottom: 26px;
  }

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

  .buyer-row span {
    min-height: 104px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .buyer-row span:nth-child(odd) {
    border-left: 0;
  }

  .buyer-row span:last-child {
    border-bottom: 0;
  }

  .about-photography {
    padding-block: 20px;
  }

  .photo-pair {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .photo-pair img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .about-inquiry {
    padding-block: 20px;
  }

  .about-inquiry .quote-cta-inner {
    gap: 26px;
  }

  .about-inquiry .button {
    width: 100%;
  }
}

/* Card 04: Factory — compact evidence-led page rhythm. */
.factory-story-section {
  padding-block: clamp(76px, 8vw, 112px);
}

.factory-story {
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: clamp(46px, 7vw, 96px);
}

.factory-story .editorial-copy {
  max-width: 520px;
}

.factory-story .editorial-copy h2 {
  max-width: 510px;
}

.factory-story .portrait-accent img {
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
}

.factory-process-section {
  padding-block: clamp(72px, 7vw, 100px);
}

.factory-process-section .section-head {
  margin-bottom: 36px;
}

.factory-process-section .process-tabs button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid rgba(226, 174, 45, .8);
  outline-offset: -3px;
}

.factory-video-section {
  padding-block: clamp(72px, 7vw, 100px);
}

.factory-video-section .section-head {
  margin-bottom: 34px;
}

.factory-videos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}

.factory-videos .video-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.factory-videos .video-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #090d10;
  object-fit: contain;
}

.factory-videos .video-card figcaption {
  min-height: 42px;
  margin: 0;
  padding: 11px 13px 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.factory-warehouse-section {
  padding-block: clamp(76px, 8vw, 108px);
}

.factory-warehouse-section .warehouse-layout {
  gap: clamp(38px, 6vw, 72px);
}

.factory-warehouse-section .warehouse-collage {
  gap: clamp(10px, 1.2vw, 16px);
}

.factory-warehouse-section .warehouse-collage img {
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.factory-warehouse-section .warehouse-collage .wide img {
  height: auto;
  aspect-ratio: 16 / 9;
}

.factory-gallery {
  padding-block: clamp(74px, 7vw, 100px);
}

.factory-gallery .section-head {
  margin-bottom: 34px;
}

.factory-gallery .editorial-gallery {
  grid-auto-rows: clamp(136px, 13vw, 184px);
  gap: clamp(10px, 1.2vw, 16px);
}

.factory-gallery .editorial-gallery figure {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.factory-gallery .editorial-gallery figure:nth-child(6) {
  grid-row: 3;
  grid-column: 9 / -1;
}

.factory-gallery .editorial-gallery img {
  object-position: center;
}

.factory-inquiry {
  padding-block: 54px;
}

.factory-inquiry .quote-cta-inner {
  align-items: center;
}

.factory-inquiry .eyebrow {
  color: #E2AE2D;
}

.factory-inquiry .button {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .factory-videos .video-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 1024px) {
  .factory-story {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .factory-story .editorial-copy {
    max-width: 680px;
  }

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

  .factory-warehouse-section .warehouse-layout {
    gap: 42px;
  }
}

@media (max-width: 720px) {
  .factory-story-section {
    padding-block: 68px;
  }

  .factory-story {
    gap: 34px;
  }

  .factory-story .portrait-accent img {
    aspect-ratio: 5 / 4;
  }

  .factory-process-section {
    padding-block: 64px;
  }

  .factory-process-section .section-head {
    margin-bottom: 26px;
  }

  .factory-video-section {
    padding-block: 64px;
  }

  .factory-video-section .section-head {
    margin-bottom: 26px;
  }

  .factory-videos {
    display: flex;
    gap: 12px;
    margin: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .factory-videos .video-card {
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .factory-videos .video-card figcaption {
    min-height: 0;
  }

  .factory-warehouse-section {
    padding-block: 68px;
  }

  .factory-warehouse-section .warehouse-collage {
    gap: 10px;
  }

  .factory-warehouse-section .warehouse-collage img {
    aspect-ratio: 4 / 3;
  }

  .factory-warehouse-section .warehouse-collage .wide img {
    aspect-ratio: 16 / 10;
  }

  .factory-gallery {
    padding-block: 68px;
  }

  .factory-gallery .section-head {
    margin-bottom: 26px;
  }

  .factory-gallery .editorial-gallery {
    gap: 12px;
  }

  .factory-inquiry {
    padding-block: 42px;
  }

  .factory-inquiry .quote-cta-inner {
    align-items: flex-start;
    gap: 26px;
  }

  .factory-inquiry .button {
    width: 100%;
  }
}

/* Card 08: Contact — compact RFQ workspace without changing shared form controls. */
.page-template-page-contact .contact-hero {
  min-height: 0;
  padding-block: 50px 48px;
}

.page-template-page-contact .contact-hero .eyebrow {
  margin-bottom: 12px;
}

.page-template-page-contact .contact-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 4vw, 54px);
}

.page-template-page-contact .contact-hero .lead {
  margin-bottom: 0;
}

.page-template-page-contact .contact-workspace {
  padding-block: 48px;
}

.page-template-page-contact .contact-workspace .contact-layout {
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
}

.page-template-page-contact .contact-aside {
  padding-top: 0;
}

.page-template-page-contact .contact-atmosphere {
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.page-template-page-contact .contact-atmosphere img {
  aspect-ratio: 1.45;
}

.page-template-page-contact .contact-aside .eyebrow {
  margin-bottom: 10px;
}

.page-template-page-contact .contact-aside h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.14;
}

.page-template-page-contact .contact-details {
  margin: 0;
}

.page-template-page-contact .contact-details div {
  padding-block: 14px;
}

.page-template-page-contact .contact-note {
  margin-top: 16px;
}

.page-template-page-contact .contact-form-panel {
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(13, 27, 42, .05);
}

.page-template-page-contact .contact-form-panel .eyebrow {
  margin-bottom: 10px;
}

.page-template-page-contact .contact-form-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 2.8vw, 40px);
}

.page-template-page-contact .contact-form-panel .inquiry-form {
  gap: 14px 16px;
}

.page-template-page-contact .contact-form-panel .inquiry-form input {
  height: 44px;
  padding: 10px;
}

.page-template-page-contact .contact-form-panel .inquiry-form textarea {
  min-height: 104px;
  padding: 10px;
}

.page-template-page-contact .contact-form-panel .inquiry-form .button {
  min-height: 46px;
}

.page-template-page-contact .contact-faq {
  padding-block: 44px;
}

.page-template-page-contact .contact-faq .narrow {
  max-width: none;
}

.page-template-page-contact .contact-faq .eyebrow {
  margin-bottom: 10px;
}

.page-template-page-contact .contact-faq h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3vw, 42px);
}

.page-template-page-contact .contact-faq .faq-list details {
  padding-block: 16px;
}

.page-template-page-contact .contact-faq .faq-list details div {
  padding: 10px 0 2px;
}

.page-template-page-contact .contact-inquiry {
  padding-block: 40px;
}

.page-template-page-contact .contact-inquiry .quote-cta-inner {
  align-items: center;
}

.page-template-page-contact .contact-inquiry .eyebrow {
  margin-bottom: 8px;
  color: #E2AE2D;
}

.page-template-page-contact .contact-inquiry h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 2.6vw, 38px);
}

.page-template-page-contact .contact-inquiry .button {
  flex: 0 0 auto;
}

@media (min-width: 721px) and (max-width: 1024px) {
  .page-template-page-contact .contact-hero {
    padding-block: 58px 55px;
  }
}

@media (max-width: 720px) {
  .page-template-page-contact .contact-hero {
    padding-block: 40px 38px;
  }

  .page-template-page-contact .contact-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(40px, 10vw, 46px);
  }

  .page-template-page-contact .contact-workspace {
    padding-block: 40px;
  }

  .page-template-page-contact .contact-workspace .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-template-page-contact .contact-atmosphere {
    margin-bottom: 20px;
  }

  .page-template-page-contact .contact-aside h2 {
    font-size: 32px;
  }

  .page-template-page-contact .contact-form-panel {
    margin-inline: 0;
    padding: 18px;
  }

  .page-template-page-contact .contact-form-panel h2 {
    font-size: 30px;
  }

  .page-template-page-contact .contact-faq {
    padding-block: 40px;
  }

  .page-template-page-contact .contact-faq h2 {
    font-size: 34px;
  }

  .page-template-page-contact .contact-faq .faq-list details {
    padding-block: 14px;
  }

  .page-template-page-contact .contact-inquiry {
    padding-block: 36px;
  }

  .page-template-page-contact .contact-inquiry .quote-cta-inner {
    align-items: flex-start;
    gap: 24px;
  }

  .page-template-page-contact .contact-inquiry h2 {
    font-size: 32px;
  }

  .page-template-page-contact .contact-inquiry .button {
    width: 100%;
  }
}

/* Card 09: PP Semi-Transparent Strapping — compact product-detail stage. */
body.single-strap_product.postid-115 .product-detail {
  padding-block: 42px 36px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 45%, rgba(199, 161, 66, .16), transparent 30%),
    linear-gradient(112deg, #061724 0%, #0A2235 58%, #071725 100%);
}

body.single-strap_product.postid-115 .product-detail-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(34px, 4vw, 56px);
}

body.single-strap_product.postid-115 .gallery-main {
  aspect-ratio: 1.35 / 1;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #F7F7F5;
}

body.single-strap_product.postid-115 .gallery-main img,
body.single-strap_product.postid-115 .gallery-thumb,
body.single-strap_product.postid-115 .related-products .product-image img {
  object-fit: contain;
}

body.single-strap_product.postid-115 .gallery-thumbs {
  gap: 8px;
  margin-top: 10px;
  padding-bottom: 3px;
  scrollbar-color: rgba(226, 174, 45, .85) rgba(255, 255, 255, .12);
}

body.single-strap_product.postid-115 .gallery-thumb {
  flex-basis: 66px;
  width: 66px;
  height: 58px;
  padding: 4px;
  border-color: rgba(255, 255, 255, .26);
  border-radius: 4px;
  background: #F7F7F5;
}

body.single-strap_product.postid-115 .gallery-thumb.active {
  border-color: #E2AE2D;
}

body.single-strap_product.postid-115 .gallery-main:focus-visible,
body.single-strap_product.postid-115 .gallery-thumb:focus-visible {
  outline: 3px solid #E2AE2D;
  outline-offset: 3px;
}

body.single-strap_product.postid-115 .product-summary {
  padding-top: 0;
}

body.single-strap_product.postid-115 .product-summary .eyebrow {
  margin-bottom: 12px;
  color: #E2AE2D;
}

body.single-strap_product.postid-115 .product-summary h1 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.04;
}

body.single-strap_product.postid-115 .product-summary .lead {
  max-width: 530px;
  margin-bottom: 0;
  color: #D4DAE0;
  font-size: 17px;
}

body.single-strap_product.postid-115 .spec-highlight {
  margin: 24px 0;
  border-color: rgba(255, 255, 255, .18);
}

body.single-strap_product.postid-115 .spec-highlight div {
  gap: 16px;
  padding: 11px 0;
  border-color: rgba(255, 255, 255, .18);
}

body.single-strap_product.postid-115 .spec-highlight dt {
  color: #C1CCD4;
}

body.single-strap_product.postid-115 .spec-highlight dd {
  color: #fff;
}

body.single-strap_product.postid-115 .product-summary .button-row {
  margin-top: 0;
}

body.single-strap_product.postid-115 .product-summary .button-ghost {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

body.single-strap_product.postid-115 .product-summary .micro-copy {
  margin-top: 14px;
  color: #C1CCD4;
}

body.single-strap_product.postid-115 .product-information {
  padding-block: 40px 46px;
}

body.single-strap_product.postid-115 .product-information .tabs {
  gap: 28px;
  margin-bottom: 28px;
}

body.single-strap_product.postid-115 .product-information .tabs button {
  padding-bottom: 13px;
}

body.single-strap_product.postid-115 .product-information .product-overview-grid {
  gap: clamp(36px, 6vw, 72px);
}

body.single-strap_product.postid-115 .product-information .product-overview-grid aside {
  padding: 22px;
}

body.single-strap_product.postid-115 .product-information .prose>*+* {
  margin-top: 1em;
}

body.single-strap_product.postid-115 .product-information .prose h2 {
  margin-top: 1.5em;
}

body.single-strap_product.postid-115 .related-products {
  padding-block: 20px;
}

body.single-strap_product.postid-115 .related-products .section-head {
  margin-bottom: 12px;
}

body.single-strap_product.postid-115 .related-products .section-head h2 {
  font-size: clamp(30px, 3vw, 38px);
}

body.single-strap_product.postid-115 .related-products .section-head .eyebrow {
  margin-bottom: 6px;
}

body.single-strap_product.postid-115 .related-products .catalog-grid {
  display: block;
}

body.single-strap_product.postid-115 .related-products .product-card {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  min-height: 160px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}

body.single-strap_product.postid-115 .related-products .product-image {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 14px;
  background: #F6F6F4;
}

body.single-strap_product.postid-115 .related-products .product-image img {
  width: 100%;
  height: 100%;
}

body.single-strap_product.postid-115 .related-products .product-card-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 12px 20px;
}

body.single-strap_product.postid-115 .related-products .product-meta {
  font-size: 10px;
  line-height: 1.2;
}

body.single-strap_product.postid-115 .related-products .product-card-body h3 {
  margin: 3px 0 5px;
  font-size: 20px;
  line-height: 1.12;
}

body.single-strap_product.postid-115 .related-products .product-key-spec,
body.single-strap_product.postid-115 .related-products .product-card-body p {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.28;
}

body.single-strap_product.postid-115 .related-products .text-link {
  margin-top: auto;
}

@media (min-width: 721px) and (max-width: 1024px) {
  body.single-strap_product.postid-115 .product-detail-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    gap: 30px;
  }

  body.single-strap_product.postid-115 .product-summary h1 {
    font-size: clamp(38px, 4.7vw, 50px);
  }

  body.single-strap_product.postid-115 .product-summary .lead {
    font-size: 16px;
  }

  body.single-strap_product.postid-115 .spec-highlight div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 720px) {
  body.single-strap_product.postid-115 .product-detail {
    padding-block: 34px 36px;
  }

  body.single-strap_product.postid-115 .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.single-strap_product.postid-115 .gallery-main {
    aspect-ratio: 5 / 4;
    padding: 14px;
  }

  body.single-strap_product.postid-115 .gallery-thumb {
    flex-basis: 58px;
    width: 58px;
    height: 52px;
  }

  body.single-strap_product.postid-115 .product-summary h1 {
    font-size: clamp(39px, 10vw, 46px);
  }

  body.single-strap_product.postid-115 .spec-highlight {
    margin-block: 20px;
  }

  body.single-strap_product.postid-115 .spec-highlight div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding-block: 10px;
  }

  body.single-strap_product.postid-115 .product-summary .button-row {
    gap: 10px;
  }

  body.single-strap_product.postid-115 .product-summary .button {
    flex: 1 1 148px;
  }

  body.single-strap_product.postid-115 .product-information {
    padding-block: 36px 40px;
  }

  body.single-strap_product.postid-115 .product-information .tabs {
    gap: 22px;
    margin-bottom: 24px;
  }

  body.single-strap_product.postid-115 .product-information .product-overview-grid {
    gap: 26px;
  }

  body.single-strap_product.postid-115 .product-information .product-overview-grid aside {
    padding: 20px;
  }

  body.single-strap_product.postid-115 .related-products {
    padding-block: 34px;
  }

  body.single-strap_product.postid-115 .related-products .product-card {
    grid-template-columns: minmax(112px, 34%) minmax(0, 1fr);
    min-height: 178px;
  }

  body.single-strap_product.postid-115 .related-products .product-image {
    min-height: 178px;
    padding: 10px;
  }

  body.single-strap_product.postid-115 .related-products .product-card-body {
    padding: 14px 15px;
  }

  body.single-strap_product.postid-115 .related-products .product-card-body h3 {
    font-size: 19px;
  }
}

/* Card 10: PET Strapping — compact, product-scoped detail treatment. */
body.single-strap_product.postid-117 .product-detail {
  padding-block: 42px 36px;
  background: #fff;
}

body.single-strap_product.postid-117 .product-detail-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(34px, 4vw, 56px);
}

body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-main {
  aspect-ratio: 1 / 1;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #DDD9D1;
  border-radius: 8px;
  background: #F7F7F5;
}

body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-main img,
body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-thumb {
  object-fit: contain;
}

body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-main img,
body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-main:hover img {
  transform: none;
}

body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-thumbs {
  gap: 8px;
  margin-top: 10px;
  padding-bottom: 3px;
}

body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-thumb {
  flex-basis: 66px;
  width: 66px;
  height: 58px;
  padding: 4px;
  border-color: #DDD9D1;
  border-radius: 4px;
  background: #F7F7F5;
}

body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-thumb.active {
  border-color: #C7A142;
}

body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-main:focus-visible,
body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-thumb:focus-visible {
  outline: 3px solid #C7A142;
  outline-offset: 3px;
}

body.single-strap_product.postid-117 .product-summary {
  padding-top: 0;
}

body.single-strap_product.postid-117 .product-summary .eyebrow {
  margin-bottom: 12px;
  color: #A47A18;
}

body.single-strap_product.postid-117 .product-summary h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.04;
}

body.single-strap_product.postid-117 .product-summary .lead {
  max-width: 530px;
  margin-bottom: 0;
  font-size: 17px;
}

body.single-strap_product.postid-117 .spec-highlight {
  margin: 24px 0;
}

body.single-strap_product.postid-117 .spec-highlight div {
  gap: 16px;
  padding: 11px 0;
}

body.single-strap_product.postid-117 .product-summary .button-row {
  margin-top: 0;
}

body.single-strap_product.postid-117 .product-summary .micro-copy {
  margin-top: 14px;
}

body.single-strap_product.postid-117 .product-information {
  padding-block: 40px 46px;
}

body.single-strap_product.postid-117 .product-information .tabs {
  gap: 24px;
  margin-bottom: 26px;
}

body.single-strap_product.postid-117 .product-information .product-overview-grid {
  gap: 42px;
}

body.single-strap_product.postid-117 .product-information .product-overview-grid aside {
  padding: 26px;
}

body.single-strap_product.postid-117 .product-information .spec-columns {
  gap: 42px;
}

body.single-strap_product.postid-117 .product-information .spec-table th,
body.single-strap_product.postid-117 .product-information .spec-table td,
body.single-strap_product.postid-117 .product-information .technical-table th,
body.single-strap_product.postid-117 .product-information .technical-table td {
  padding: 12px 14px;
}

body.single-strap_product.postid-117 .product-information .options-grid {
  gap: 26px;
}

/* PET-only supplied footage, kept separate from the shared product template. */
body.single-strap_product.postid-117 .product-video-evidence {
  padding-block: 38px 46px;
  background: var(--warm-white);
}

body.single-strap_product.postid-117 .product-video-evidence .section-head {
  margin-bottom: 20px;
}

body.single-strap_product.postid-117 .product-video-card {
  max-width: 820px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090d10;
}

body.single-strap_product.postid-117 .product-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #090d10;
}

@media (max-width: 720px) {
  body.single-strap_product.postid-117 .product-video-evidence {
    padding-block: 32px 38px;
  }

  body.single-strap_product.postid-117 .product-video-evidence .section-head {
    margin-bottom: 16px;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  body.single-strap_product.postid-117 .product-detail-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    gap: 30px;
  }

  body.single-strap_product.postid-117 .product-summary h1 {
    font-size: clamp(38px, 4.7vw, 50px);
  }

  body.single-strap_product.postid-117 .product-summary .lead {
    font-size: 16px;
  }

  body.single-strap_product.postid-117 .spec-highlight div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 720px) {
  body.single-strap_product.postid-117 .product-detail {
    padding-block: 34px 36px;
  }

  body.single-strap_product.postid-117 .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-main {
    aspect-ratio: 1 / 1;
    padding: 14px;
  }

  body.single-strap_product:is(.postid-117, .postid-479, .postid-506) .gallery-thumb {
    flex-basis: 58px;
    width: 58px;
    height: 52px;
  }

  body.single-strap_product.postid-117 .product-summary h1 {
    font-size: clamp(39px, 10vw, 46px);
  }

  body.single-strap_product.postid-117 .spec-highlight {
    margin-block: 20px;
  }

  body.single-strap_product.postid-117 .spec-highlight div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding-block: 10px;
  }

  body.single-strap_product.postid-117 .product-summary .button-row {
    gap: 10px;
  }

  body.single-strap_product.postid-117 .product-summary .button {
    flex: 1 1 148px;
  }

  body.single-strap_product.postid-117 .product-information {
    padding-block: 36px 40px;
  }

  body.single-strap_product.postid-117 .product-information .tabs {
    gap: 22px;
    margin-bottom: 24px;
  }

  body.single-strap_product.postid-117 .product-information .product-overview-grid {
    gap: 26px;
  }

  body.single-strap_product.postid-117 .product-information .product-overview-grid aside {
    padding: 20px;
  }
}

/* Card 11: Stretch Film family — taxonomy-only compact catalogue. */
body.tax-product_type.term-stretch-film .product-hero--stretch-film {
  min-height: 304px;
  padding-block: 34px;
}

body.tax-product_type.term-stretch-film .product-hero--stretch-film .shell {
  grid-template-columns: minmax(0, 1fr) minmax(250px, .72fr);
  gap: clamp(28px, 5vw, 72px);
}

body.tax-product_type.term-stretch-film .product-hero--stretch-film .product-hero-stage {
  min-height: 236px;
}

body.tax-product_type.term-stretch-film .product-hero--stretch-film .product-hero-item--1 {
  top: 12px;
  right: 18%;
  bottom: 12px;
  left: auto;
  width: clamp(180px, 19vw, 258px);
  aspect-ratio: 1 / 1.1;
  transform: none;
}

body.tax-product_type.term-stretch-film .catalog-section--stretch-film {
  padding-block: 44px 48px;
}

body.tax-product_type.term-stretch-film .catalog-layout--stretch-film {
  display: block;
}

body.tax-product_type.term-stretch-film .catalog-toolbar--stretch-film {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
}

body.tax-product_type.term-stretch-film .catalog-toolbar--stretch-film .filter-toggle {
  display: inline-flex;
  grid-row: auto;
  min-height: 42px;
  padding-inline: 16px;
}

body.tax-product_type.term-stretch-film .catalog-toolbar--stretch-film .filter-toggle:focus-visible {
  outline: 3px solid #E2AE2D;
  outline-offset: 2px;
}

body.tax-product_type.term-stretch-film .filter-search--toolbar {
  margin: 0;
}

body.tax-product_type.term-stretch-film .filter-search--toolbar input {
  height: 42px;
}

body.tax-product_type.term-stretch-film .catalog-toolbar--stretch-film .catalog-bar {
  justify-content: flex-end;
  gap: 18px;
  white-space: nowrap;
}

body.tax-product_type.term-stretch-film .catalog-layout--stretch-film .filters {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 180;
  display: none;
  width: min(390px, 92vw);
  height: 100dvh;
  max-height: none;
  padding: 30px 26px;
  overflow: auto;
  border-top: 0;
  background: var(--warm-white);
  box-shadow: 20px 0 50px rgba(0, 0, 0, .18);
}

body.tax-product_type.term-stretch-film .catalog-layout--stretch-film .filters.open {
  display: block;
}

body.tax-product_type.term-stretch-film .catalog-results {
  margin-top: 22px;
}

body.tax-product_type.term-stretch-film .catalog-grid {
  grid-template-columns: minmax(0, 312px);
  justify-content: start;
}

body.tax-product_type.term-stretch-film .catalog-grid .product-image {
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

body.tax-product_type.term-stretch-film .catalog-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  display: block;
}

body.tax-product_type.term-stretch-film .catalog-grid .product-card-body {
  min-height: 0;
  padding: 18px;
}

body.tax-product_type.term-stretch-film .catalog-rfq {
  max-width: 760px;
  margin-top: 22px;
  padding: 20px 22px;
}

@media (min-width: 721px) and (max-width: 1024px) {
  body.tax-product_type.term-stretch-film .product-hero--stretch-film {
    min-height: 300px;
    padding-block: 41px;
  }

  body.tax-product_type.term-stretch-film .product-hero--stretch-film .shell {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .7fr);
    gap: 26px;
  }

  body.tax-product_type.term-stretch-film .product-hero--stretch-film .product-hero-stage {
    min-height: 218px;
  }

  body.tax-product_type.term-stretch-film .catalog-section--stretch-film {
    padding-block: 40px 44px;
  }
}

@media (max-width: 720px) {
  body.tax-product_type.term-stretch-film .product-hero--stretch-film {
    min-height: 0;
    padding-block: 40px 36px;
  }

  body.tax-product_type.term-stretch-film .product-hero--stretch-film .shell {
    gap: 22px;
  }

  body.tax-product_type.term-stretch-film .product-hero--stretch-film .product-hero-stage {
    min-height: 188px;
  }

  body.tax-product_type.term-stretch-film .product-hero--stretch-film .product-hero-item--1 {
    top: 4px;
    right: 50%;
    bottom: 4px;
    width: 156px;
    transform: translateX(50%);
  }

  body.tax-product_type.term-stretch-film .catalog-section--stretch-film {
    padding-block: 36px 40px;
  }

  body.tax-product_type.term-stretch-film .catalog-toolbar--stretch-film {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 10px;
  }

  body.tax-product_type.term-stretch-film .filter-search--toolbar {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  body.tax-product_type.term-stretch-film .catalog-toolbar--stretch-film .filter-toggle {
    min-height: 40px;
  }

  body.tax-product_type.term-stretch-film .catalog-toolbar--stretch-film .catalog-bar {
    gap: 12px;
    font-size: 12px;
  }

  body.tax-product_type.term-stretch-film .catalog-bar select {
    min-height: 34px;
  }

  body.tax-product_type.term-stretch-film .catalog-results {
    margin-top: 18px;
  }

  body.tax-product_type.term-stretch-film .catalog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.tax-product_type.term-stretch-film .catalog-grid .product-image {
    padding: 0;
  }

  body.tax-product_type.term-stretch-film .catalog-rfq {
    margin-top: 18px;
    padding: 18px;
  }
}

/* Card 12: Carton & General Packaging — slug-scoped application detail. */
.application-page--carton-general-packaging .application-detail-hero {
  height: 292px;
  min-height: 292px;
  padding: 0;
  color: #fff;
  background: linear-gradient(90deg, #0D1B2A 0 42%, #F7F7F5 42% 100%);
}

.application-page--carton-general-packaging .application-detail-hero::after {
  display: none;
}

.application-page--carton-general-packaging .application-detail-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  min-height: 292px;
  height: 292px;
}

.application-page--carton-general-packaging .application-detail-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px clamp(28px, 4vw, 58px) 16px 0;
}

.application-page--carton-general-packaging .application-detail-hero__copy .eyebrow {
  margin-bottom: 8px;
  color: #E2AE2D;
}

.application-page--carton-general-packaging .application-detail-hero__copy h1 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: clamp(42px, 3.6vw, 52px);
  line-height: 1;
}

.application-page--carton-general-packaging .application-detail-hero__copy .lead {
  max-width: 470px;
  margin: 0;
  color: #D4DAE0;
  font-size: 17px;
}

.application-page--carton-general-packaging .application-detail-hero__media {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  height: 292px;
  margin: 0;
  background: #F7F7F5;
}

.application-page--carton-general-packaging .application-detail-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 20px 30px 12px;
  object-fit: contain;
  background: transparent;
}

.application-page--carton-general-packaging .application-detail-hero__media figcaption {
  padding: 9px 18px 11px;
  border-top: 1px solid #E3E0D9;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.application-page--carton-general-packaging .carton-application-context {
  padding-block: 40px;
  background: #fff;
}

.application-page--carton-general-packaging .carton-application-context .application-content {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: clamp(32px, 5vw, 68px);
}

.application-page--carton-general-packaging .carton-application-context .prose {
  max-width: 660px;
  font-size: 17px;
}

.application-page--carton-general-packaging .carton-application-context .prose>*+* {
  margin-top: 16px;
}

.application-page--carton-general-packaging .carton-application-context aside {
  padding: 18px 20px 20px;
  border: 1px solid #E1E4E6;
  background: var(--paper);
}

.application-page--carton-general-packaging .carton-application-context aside .eyebrow {
  margin-bottom: 10px;
}

.application-page--carton-general-packaging .carton-application-context aside ul {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.55;
}

.application-page--carton-general-packaging .carton-application-context aside .button {
  min-height: 46px;
}

.application-page--carton-general-packaging .carton-application-related {
  padding-block: 42px;
}

.application-page--carton-general-packaging .carton-application-related .section-head {
  margin-bottom: 24px;
}

.application-page--carton-general-packaging .carton-application-related .section-head .eyebrow {
  margin-bottom: 10px;
}

.application-page--carton-general-packaging .carton-application-related .section-head h2 {
  font-size: clamp(30px, 3.1vw, 42px);
}

.application-page--carton-general-packaging .carton-application-related .product-grid {
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 22px;
}

.application-page--carton-general-packaging .carton-application-related .product-card {
  border: 1px solid #DDD9D1;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
}

.application-page--carton-general-packaging .carton-application-related .product-image {
  aspect-ratio: 1 / .86;
  padding: 16px;
  background: #F7F7F5;
}

.application-page--carton-general-packaging .carton-application-related .product-image img {
  object-fit: contain;
}

.application-page--carton-general-packaging .carton-application-related .product-card-body {
  padding: 15px 18px 18px;
}

.application-page--carton-general-packaging .carton-application-related .product-card-body h3 {
  margin: 5px 0 10px;
  font-size: 20px;
}

.application-page--carton-general-packaging .carton-application-related .product-card a:focus-visible {
  outline: 3px solid #C7A142;
  outline-offset: -3px;
}

.application-page--carton-general-packaging .carton-application-inquiry {
  padding-block: 26px;
}

.application-page--carton-general-packaging .carton-application-inquiry .quote-cta-inner {
  align-items: center;
  gap: 30px;
}

.application-page--carton-general-packaging .carton-application-inquiry .eyebrow {
  margin-bottom: 8px;
  color: #E2AE2D;
}

.application-page--carton-general-packaging .carton-application-inquiry h2 {
  max-width: none;
  font-size: clamp(26px, 2.3vw, 32px);
}

.application-page--carton-general-packaging .carton-application-inquiry .button {
  flex: 0 0 auto;
}

@media (min-width: 721px) and (max-width: 1024px) {

  .application-page--carton-general-packaging .application-detail-hero,
  .application-page--carton-general-packaging .application-detail-hero__inner {
    height: 288px;
    min-height: 288px;
  }

  .application-page--carton-general-packaging .application-detail-hero__inner {
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  }

  .application-page--carton-general-packaging .application-detail-hero__copy {
    padding-right: 28px;
  }

  .application-page--carton-general-packaging .application-detail-hero__media {
    height: 288px;
  }

  .application-page--carton-general-packaging .application-detail-hero__copy h1 {
    font-size: clamp(36px, 4.2vw, 44px);
    line-height: 1.02;
  }

  .application-page--carton-general-packaging .carton-application-context .application-content {
    grid-template-columns: minmax(0, 1fr) minmax(290px, .82fr);
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .application-page--carton-general-packaging .application-detail-hero {
    height: auto;
    min-height: 0;
    background: #0D1B2A;
  }

  .application-page--carton-general-packaging .application-detail-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
    width: auto;
    margin: 0;
  }

  .application-page--carton-general-packaging .application-detail-hero__copy {
    padding: 38px 14px 32px;
  }

  .application-page--carton-general-packaging .application-detail-hero__copy h1 {
    font-size: clamp(40px, 10.5vw, 48px);
  }

  .application-page--carton-general-packaging .application-detail-hero__media {
    height: auto;
    min-height: 238px;
  }

  .application-page--carton-general-packaging .application-detail-hero__media img {
    padding: 18px 20px 12px;
  }

  .application-page--carton-general-packaging .carton-application-context {
    padding-block: 36px;
  }

  .application-page--carton-general-packaging .carton-application-context .application-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .application-page--carton-general-packaging .carton-application-context .prose {
    font-size: 16px;
  }

  .application-page--carton-general-packaging .carton-application-context aside {
    padding: 18px;
  }

  .application-page--carton-general-packaging .carton-application-related {
    padding-block: 38px;
  }

  .application-page--carton-general-packaging .carton-application-related .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .application-page--carton-general-packaging .carton-application-related .product-card-body {
    padding: 14px 16px 16px;
  }

  .application-page--carton-general-packaging .carton-application-inquiry {
    padding-block: 28px;
  }

  .application-page--carton-general-packaging .carton-application-inquiry .quote-cta-inner {
    align-items: flex-start;
    gap: 22px;
  }

  .application-page--carton-general-packaging .carton-application-inquiry h2 {
    font-size: 30px;
  }

  .application-page--carton-general-packaging .carton-application-inquiry .button {
    width: 100%;
  }
}

/* Custom Carton & General Packaging Hero Banner (UI Mockup Restoration) */
.carton-application-hero {
  position: relative;
  width: 100%;
  background: #0b1928;
  overflow: hidden;
}

.carton-hero__container {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 620px;
  background: radial-gradient(circle at 65% 50%, #f7f6f2 0%, #e6e3da 100%);
  overflow: hidden;
}

/* Background Dot Matrix Pattern */
.carton-hero__dots-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 360px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: 4;
  pointer-events: none;
}

/* Background Waves Overlay */
.carton-hero__waves-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 54%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Left Navy Panel */
.carton-hero__left {
  position: relative;
  flex: 0 0 54%;
  background: radial-gradient(ellipse at 20% 40%, #0d2238 0%, #071524 100%);
  padding: 64px 84px 48px clamp(24px, 5.5vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
  clip-path: polygon(0 0, 91% 0, 100% 52%, 83% 100%, 0 100%);
}

.carton-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

/* SVG Slanted Ribbon Divider with Bent Knee Angle */
.carton-hero__divider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 54%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.carton-hero__divider-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.carton-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.carton-hero__eyebrow-text {
  color: #c7a142;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.carton-hero__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: #c7a142;
}

.carton-hero__title {
  color: #ffffff;
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 22px 0;
  letter-spacing: -0.03em;
}

.carton-hero__lead {
  color: #a3b3c4;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.62;
  max-width: 510px;
  margin: 0 0 38px 0;
}

.carton-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 50px;
}

.carton-hero__btn-primary {
  min-height: 50px;
  padding: 0 32px;
  background: #c7a142;
  color: #0b1928;
  border: 1px solid #c7a142;
  border-radius: 3px;
  font-weight: 850;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carton-hero__btn-primary:hover {
  background: #d8af4b;
  border-color: #d8af4b;
  color: #0b1928;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(199, 161, 66, 0.35);
}

.carton-hero__btn-secondary {
  min-height: 50px;
  padding: 0 32px;
  background: rgba(11, 25, 40, 0.7);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  font-weight: 750;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.carton-hero__btn-secondary:hover {
  border-color: #c7a142;
  color: #c7a142;
  background: rgba(11, 25, 40, 0.95);
  transform: translateY(-2px);
}

.carton-hero__arrow {
  transition: transform 0.25s ease;
}

.carton-hero__btn-primary:hover .carton-hero__arrow,
.carton-hero__btn-secondary:hover .carton-hero__arrow {
  transform: translateX(4px);
}

/* Feature Highlights Bar */
.carton-hero__features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: auto;
  max-width: 580px;
}

.carton-hero__feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carton-hero__feature-icon {
  color: #c7a142;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.carton-hero__feature-text {
  color: #c5d3e2;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

/* Right Studio Panel */
.carton-hero__right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 620px;
}

.carton-hero__studio {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Concentric Studio Arch Rings SVG */
.carton-hero__studio-arches {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 760px;
  height: 760px;
  pointer-events: none;
  z-index: 1;
}

.carton-hero__arches-svg {
  width: 100%;
  height: 100%;
}

/* Product Image & Floor Shadow */
.carton-hero__image-wrapper {
  position: relative;
  z-index: 2;
  width: 82%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -10%;
}

.carton-hero__product-img {
  width: 100%;
  height: auto;
  max-height: 530px;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.18));
  transition: transform 0.4s ease;
}

.carton-hero__product-img:hover {
  transform: scale(1.018);
}

.carton-hero__floor-shadow {
  width: 85%;
  height: 25px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.22) 0%, transparent 75%);
  margin-top: -15px;
  pointer-events: none;
}

/* Floating Card 1: Ideal For */
.carton-hero__card--ideal {
  position: absolute;
  top: 12%;
  right: 6%;
  z-index: 4;
  width: 290px;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.09), 0 4px 14px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.carton-hero__card-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c7a142;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(199, 161, 66, 0.35);
}

.carton-hero__card-eyebrow {
  font-size: 11px;
  color: #c7a142;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.carton-hero__card-title {
  font-size: 16px;
  font-weight: 800;
  color: #0b1928;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.carton-hero__card-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Floating Card 2: Applications */
.carton-hero__card--apps {
  position: absolute;
  bottom: 8%;
  right: 6%;
  z-index: 4;
  width: 360px;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.09), 0 4px 14px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Privacy Policy */
.page-template-page-privacy-policy {
  background: var(--warm-white);
}

.privacy-policy-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  background: var(--paper);
}

.privacy-policy-hero::after {
  position: absolute;
  top: -280px;
  right: 4%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(199, 161, 66, .35);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, .38), 0 0 0 108px rgba(199, 161, 66, .08);
  content: "";
  pointer-events: none;
}

.privacy-policy-hero .shell {
  position: relative;
  z-index: 1;
}

.privacy-policy-hero .eyebrow {
  margin-bottom: 18px;
}

.privacy-policy-hero h1 {
  margin-bottom: 14px;
  color: var(--unipack-navy);
}

.privacy-policy-hero .lead {
  max-width: 670px;
  margin-bottom: 28px;
}

.privacy-policy-updated {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.privacy-policy-body {
  padding: 48px 0 88px;
}

.privacy-policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(260px, .95fr);
  align-items: start;
  gap: 46px;
}

.privacy-policy-content,
.privacy-policy-card {
  border: 1px solid #DDE2E7;
  background: #fff;
  box-shadow: 0 8px 22px rgba(13, 27, 42, .06);
}

.privacy-policy-content {
  padding: 28px 38px 30px;
  color: var(--ink);
  font-size: 16px;
}

.privacy-policy-content > h2 {
  margin: 0;
  padding: 0 0 20px;
  color: var(--unipack-navy);
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.2;
}

.privacy-policy-content > h2:not(:first-child) {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.privacy-policy-content > p {
  margin: 0;
  line-height: 1.75;
}

.privacy-policy-sidebar {
  display: grid;
  gap: 30px;
}

.privacy-policy-card {
  padding: 30px 34px;
}

.privacy-policy-card h2 {
  margin-bottom: 26px;
  color: var(--unipack-navy);
  font-size: 30px;
}

.privacy-policy-card dl {
  margin: 0 0 27px;
}

.privacy-policy-card dl div + div {
  margin-top: 22px;
}

.privacy-policy-card dt {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.privacy-policy-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.privacy-policy-card dd a {
  text-decoration: underline;
  text-decoration-color: var(--brand-accent-soft);
  text-underline-offset: 3px;
}

.privacy-policy-card .button {
  width: 100%;
  min-height: 46px;
}

.privacy-policy-covers h2 {
  margin-bottom: 18px;
}

.privacy-policy-covers ul {
  margin: 0;
  padding-left: 20px;
}

.privacy-policy-covers li {
  padding-left: 4px;
  color: var(--muted);
  font-size: 14px;
}

.privacy-policy-covers li::marker {
  color: var(--brand-accent);
}

/* Keep the confirmed footer order legible at desktop and tablet widths. */
.site-footer .footer-grid > nav > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 0;
}

@media (max-width: 700px) {
  .site-footer .footer-grid > nav > ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .privacy-policy-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(220px, 1fr);
    gap: 28px;
  }

  .privacy-policy-content {
    padding-inline: 26px;
  }

  .privacy-policy-card {
    padding-inline: 24px;
  }
}

@media (max-width: 700px) {
  .privacy-policy-hero {
    padding: 58px 0 52px;
  }

  .privacy-policy-hero::after {
    top: -230px;
    right: -220px;
    width: 360px;
    height: 360px;
  }

  .privacy-policy-body {
    padding: 28px 0 68px;
  }

  .privacy-policy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-policy-content {
    padding: 24px 20px;
    font-size: 15px;
  }

  .privacy-policy-content > h2 {
    font-size: 24px;
  }

  .privacy-policy-sidebar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .privacy-policy-card {
    padding: 24px 20px;
  }

  .privacy-policy-card h2 {
    font-size: 28px;
  }
}

.carton-hero__card-header {
  margin-bottom: 14px;
}

.carton-hero__card-header-title {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  color: #c7a142;
  text-transform: uppercase;
  display: block;
}

.carton-hero__card-header-line {
  display: block;
  width: 36px;
  height: 2px;
  background: #c7a142;
  margin-top: 4px;
}

.carton-hero__app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.carton-hero__app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.carton-hero__app-icon {
  width: 40px;
  height: 40px;
  color: #0b1928;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 8px;
}

.carton-hero__app-item span {
  font-size: 11px;
  font-weight: 750;
  color: #1e293b;
}

/* Global quick-contact links */
.contact-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 110;
  display: grid;
  gap: 10px;
}

.contact-float__button {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(13, 27, 42, .24);
  color: #fff;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.contact-float__button:hover {
  box-shadow: 0 12px 26px rgba(13, 27, 42, .32);
  transform: translateY(-2px);
}

.contact-float__button:focus-visible {
  outline-color: var(--brand-accent);
  outline-offset: 3px;
}

.contact-float__button--email {
  background: #1673B9;
}

.contact-float__button--whatsapp {
  background: #25D366;
}

.contact-float__button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}



/* Responsive Breakpoints */
@media (max-width: 1400px) {
  .carton-hero__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
  }
}

@media (max-width: 1200px) {
  .carton-hero__left {
    flex: 0 0 58%;
    padding-right: 50px;
  }

  .carton-hero__card--ideal {
    width: 250px;
    padding: 18px;
  }

  .carton-hero__card--apps {
    width: 310px;
    padding: 18px 20px;
  }
}

@media (max-width: 992px) {
  .carton-hero__container {
    flex-direction: column;
    min-height: auto;
  }

  .carton-hero__left {
    flex: none;
    width: 100%;
    clip-path: none;
    padding: 48px 24px 36px;
  }

  .carton-hero__divider {
    display: none;
  }

  .carton-hero__right {
    min-height: 480px;
    padding: 40px 24px;
  }

  .carton-hero__image-wrapper {
    margin-left: 0;
    width: 90%;
  }

  .carton-hero__card--ideal {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto 0;
    width: 100%;
    max-width: 360px;
  }

  .carton-hero__card--apps {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 16px auto 0;
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  .contact-float {
    right: 14px;
    bottom: 74px;
  }
}


/* Stage 26: PET product display containment. */
.home .family-image {
	position: relative;
	padding: 0;
}

.home .family-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	box-sizing: border-box;
	padding: clamp(14px, 1.8vw, 22px);
	object-fit: contain;
}

.catalog-grid .product-image {
	position: relative;
	padding: 0;
}

.catalog-grid .product-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	box-sizing: border-box;
	padding: clamp(14px, 1.6vw, 22px);
	object-fit: contain;
	transform: none;
}

.catalog-grid .product-card:hover .product-image img {
	transform: scale(1.025);
}

@media (max-width: 720px) {
	.catalog-grid .product-image img {
		padding: 16px;
	}
}
