:root {
  --navy-950: #031b45;
  --navy-900: #06275b;
  --blue-500: #0788f8;
  --blue-400: #27a0ff;
  --slate-100: #f4f7fb;
  --slate-200: #e8edf4;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* Shared header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgb(6 39 91 / .08);
  box-shadow: 0 6px 26px rgb(2 30 75 / .08);
  backdrop-filter: none;
}

.header-utility {
  color: #dceeff;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-900) 60%, #08488a);
  font-size: .7rem;
  letter-spacing: .055em;
}

.header-utility-inner,
.header-utility-inner > div {
  display: flex;
  align-items: center;
}

.header-utility-inner {
  min-height: 33px;
  justify-content: space-between;
  gap: 1rem;
}

.header-utility p,
.header-utility span,
.header-utility a {
  margin: 0;
  color: inherit;
  text-decoration: none;
}

.header-utility i { margin-right: .35rem; color: var(--blue-400); }
.header-utility-inner > div { gap: 1.2rem; }

.header-inner { min-height: 78px; gap: 1rem; }
.brand { flex-basis: 190px; }
.brand img { width: 164px; transition: transform .35s var(--ease-out); }
.brand:hover img { transform: translateY(-2px) rotate(-1deg); }

.site-nav { gap: .2rem; }
.site-nav > a,
.nav-menu > summary {
  position: relative;
  padding: .68rem .78rem;
  color: #35425a;
  border-radius: 7px;
  font-size: .84rem;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease;
}

.site-nav > a::after {
  position: absolute;
  right: .78rem;
  bottom: .38rem;
  left: .78rem;
  height: 2px;
  content: '';
  background: var(--blue-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease-out);
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-active,
.nav-menu > summary:hover,
.nav-menu > summary:focus-visible,
.nav-menu[open] > summary { color: var(--navy-900); background: var(--slate-100); }
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after { transform: scaleX(1); }

.nav-panel {
  top: calc(100% + 10px);
  min-width: 310px;
  max-width: min(350px, calc(100vw - 2rem));
  max-height: calc(100dvh - 128px);
  padding: .65rem;
  overflow-y: auto;
  border: 1px solid rgb(6 39 91 / .09);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgb(2 30 75 / .17);
}

.nav-panel a { border-radius: 6px; font-weight: 600; }

.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: .45rem; }
.header-search,
.header-quote,
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s var(--ease-out), background-color .2s ease, box-shadow .2s ease;
}

.header-search {
  gap: .48rem;
  padding: .75rem .78rem;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid rgb(6 39 91 / .13);
}

.header-quote {
  gap: .55rem;
  padding: .8rem .9rem;
  color: var(--navy-900);
  background: var(--slate-100);
}

.header-phone {
  gap: .55rem;
  padding: .6rem .72rem;
  background: var(--blue-500);
  box-shadow: 0 8px 18px rgb(7 136 248 / .24);
}

.header-phone i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  background: var(--navy-900);
  border-radius: 6px;
}

.header-search:hover,
.header-quote:hover,
.header-phone:hover { transform: translateY(-2px); }
.header-search:hover,
.header-search:focus-visible { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.header-quote:hover { background: #dfeeff; }
.header-phone:hover { background: #0076dc; box-shadow: 0 12px 22px rgb(7 136 248 / .3); }

.nav-search-link { display: none; }

/* Associated-product hub and site search. */
.associated-product-grid .product-card { min-height: 100%; }
.associated-explore { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.associated-explore > div:first-child { max-width: 670px; }
.associated-explore > div:first-child > p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); }
.associated-explore-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.button-secondary { color: var(--navy-900); background: #fff; border: 1px solid rgb(6 39 91 / .2); }
.button-secondary:hover,
.button-secondary:focus-visible { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.site-search-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .75rem; max-width: 860px; margin: 0 auto; }
.site-search-form input { min-width: 0; padding: .92rem 1rem; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: #fff; font: 400 .95rem PlusJakarta, Arial, sans-serif; }
.site-search-form input:focus { outline: 3px solid rgb(7 136 248 / .2); border-color: var(--blue-500); }
.search-hint,
.search-summary { max-width: 860px; margin: 1.25rem auto 0; color: var(--muted); }
.search-summary strong { color: var(--navy-900); }
.search-empty { max-width: 860px; margin: 2rem auto 0; padding: 1.5rem; border: 1px solid var(--line); border-radius: 12px; background: var(--slate-100); }
.search-empty h2 { font-size: 2.35rem; }
.search-empty p { margin: 0; color: var(--muted); }
.search-empty a { color: var(--blue-500); font-weight: 700; }
.search-results { display: grid; gap: 1rem; max-width: 860px; margin: 1.5rem auto 0; }
.search-results article { padding: 1.4rem 1.5rem; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .045); }
.search-results h2 { margin-bottom: .5rem; font-size: clamp(2rem, 3vw, 2.7rem); }
.search-results h2 a { text-decoration: none; }
.search-results h2 a:hover,
.search-results h2 a:focus-visible { color: var(--blue-500); text-decoration: underline; }
.search-results article > p:not(.product-type) { color: var(--muted); }

/* Shared refinements and quiet page movement */
.home-hero,
.page-hero { box-shadow: 0 16px 36px rgb(2 30 75 / .12); }
.home-hero::after,
.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  content: '';
  pointer-events: none;
  background: linear-gradient(0deg, rgb(2 30 75 / .34), transparent);
}

.home-hero .hero-content,
.page-hero .shell { position: relative; z-index: 1; }
.eyebrow { color: #55708d; font-weight: 700; }

/* Homepage positioning and customer journeys */
.button-outline-light {
  color: #fff;
  background: rgb(255 255 255 / .08);
  border: 1px solid rgb(255 255 255 / .72);
}

.button-outline-light:hover,
.button-outline-light:focus-visible { background: #fff; color: var(--navy-900); }

.hero-proof-strip {
  position: relative;
  z-index: 2;
  margin: 12px 20px 0;
  color: #fff;
  background: linear-gradient(110deg, var(--navy-950), var(--navy-900));
  border-radius: 12px;
  box-shadow: 0 14px 32px rgb(2 30 75 / .14);
}

.hero-proof-strip ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.2rem 0;
  list-style: none;
}

.hero-proof-strip li { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.hero-proof-strip i { color: var(--blue-400); font-size: 1.35rem; }
.hero-proof-strip span { display: grid; gap: .05rem; font-size: .68rem; line-height: 1.35; color: #bed2ed; }
.hero-proof-strip strong { color: #fff; font-size: .78rem; letter-spacing: .015em; text-transform: uppercase; }

.journey-section { padding-bottom: 0; }
.journey-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.journey-card { display: flex; flex-direction: column; min-height: 100%; padding: clamp(1.6rem, 3vw, 2.5rem); border: 1px solid rgb(6 39 91 / .11); border-radius: 14px; box-shadow: 0 12px 28px rgb(2 30 75 / .08); }
.journey-card h3 { font-size: clamp(2rem, 3vw, 2.8rem); }
.journey-card > p:not(.eyebrow) { max-width: 620px; color: #536279; }
.journey-card-product { background: #fff; }
.journey-card-project { color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-900)); }
.journey-card-project h3 { color: #fff; }
.journey-card-project .eyebrow { color: #92ceff; }
.journey-card-project > p:not(.eyebrow) { color: #d8e7f8; }
.journey-links { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0 1.6rem; padding: 0; list-style: none; }
.journey-links a { display: inline-flex; align-items: center; min-height: 32px; padding: .35rem .65rem; color: var(--navy-900); background: var(--slate-100); border-radius: 99px; font-size: .74rem; font-weight: 700; line-height: 1.15; text-decoration: none; transition: transform .2s var(--ease-out), background-color .2s ease; }
.journey-links a:hover, .journey-links a:focus-visible { background: #dceeff; transform: translateY(-2px); }
.journey-card-project .journey-links a { color: #fff; background: rgb(255 255 255 / .12); }
.journey-card-project .journey-links a:hover, .journey-card-project .journey-links a:focus-visible { color: var(--navy-900); background: #fff; }
.journey-card .button { align-self: flex-start; margin-top: auto; }
.journey-card-project .button-light { color: var(--navy-900); background: #fff; }
.journey-card-project .button-light:hover, .journey-card-project .button-light:focus-visible { background: #dff2ff; }
.button { box-shadow: 0 8px 16px rgb(2 30 75 / .12); }
.button i { transition: transform .2s var(--ease-out); }
.button:hover i { transform: translateX(3px); }

.product-card,
.promise-grid article,
.three-cards article,
.two-mini-cards article,
.process-grid article,
.contact-details > a {
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}

.product-card:hover,
.promise-grid article:hover,
.three-cards article:hover,
.two-mini-cards article:hover,
.process-grid article:hover,
.contact-details > a:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgb(2 30 75 / .13);
}

.product-card:hover { border-color: rgb(7 136 248 / .45); }
.product-card img { transition: transform .55s var(--ease-out); }
.product-card:hover img { transform: scale(1.04); }

/* Supplier marks retain their proportions, but read clearly at desktop scale. */
.clients > div > div { gap: clamp(1.5rem, 3vw, 3.25rem); }
.clients img { max-width: 190px; max-height: 88px; }

/* Correct fallback for lists if an icon font takes longer than the kit. */
.check-list { gap: .72rem; }
.check-list li { padding-left: 1.7rem; }
.check-list li::before {
  display: grid;
  width: 1.05rem;
  height: 1.05rem;
  place-items: center;
  content: '✓';
  color: #fff;
  background: var(--blue-500);
  border-radius: 50%;
  font: 800 .67rem/1 PlusJakarta, Arial, sans-serif;
}

.contact-details > a { min-height: 144px; padding: 1.35rem 4.25rem 1.35rem 1.35rem; border: 1px solid transparent; }
.contact-details > a:hover { border-color: rgb(7 136 248 / .35); }
.contact-details strong { max-width: 100%; font-size: clamp(1.35rem, 2vw, 1.65rem); letter-spacing: .02em; }

/* Service and product pages */
.service-card-grid article { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.service-card-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 4px;
  content: '';
  background: var(--blue-500);
  border-radius: 0 0 4px 0;
}
.service-card-icon {
  display: inline-grid;
  width: 53px;
  height: 53px;
  margin-bottom: 1.35rem;
  place-items: center;
  color: #fff;
  background: var(--blue-500);
  border-radius: 12px;
  box-shadow: 0 10px 18px rgb(7 136 248 / .22);
  font-size: 1.3rem;
}
.service-card-icon > i,
.service-card-icon > svg {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  margin: 0;
  color: #fff;
}
.service-card-grid article { display: flex; flex-direction: column; }
.service-card-grid article > img { width: 100%; height: 185px; margin-top: auto; object-fit: cover; border-radius: 8px; }

.benefit-section { position: relative; overflow: hidden; background: #fff; }
.benefit-section::before {
  position: absolute;
  top: 8%;
  right: -8rem;
  width: 22rem;
  height: 22rem;
  content: '';
  border: 38px solid rgb(7 136 248 / .045);
  border-radius: 50%;
}
.benefit-section .shell { position: relative; z-index: 1; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.benefit-card {
  position: relative;
  min-height: 268px;
  padding: 1.65rem;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #f5f8fc);
  border: 1px solid #dce5f0;
  border-radius: 14px;
  transition: transform .32s var(--ease-out), box-shadow .32s ease, border-color .32s ease;
}
.benefit-card::after {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 5.7rem;
  height: 5.7rem;
  content: '';
  background: rgb(7 136 248 / .07);
  border-radius: 50%;
  transition: transform .35s var(--ease-out), background-color .35s ease;
}
.benefit-card:hover { transform: translateY(-7px); border-color: rgb(7 136 248 / .45); box-shadow: 0 18px 35px rgb(2 30 75 / .12); }
.benefit-card:hover::after { background: rgb(7 136 248 / .12); transform: scale(1.45); }
.benefit-card > * { position: relative; z-index: 1; }
.benefit-card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 1.45rem;
  place-items: center;
  color: #fff;
  background: var(--navy-900);
  border-radius: 11px;
  font-size: 1.15rem;
}
.benefit-card-icon > i,
.benefit-card-icon > svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  color: #fff;
}
.benefit-card h3 { font-size: 1.5rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.industries-section { color: #fff; background: linear-gradient(115deg, var(--navy-950), var(--navy-900) 60%, #08498c); }
.industries-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.industries-layout h2 { color: #fff; }
.industries-layout .eyebrow { color: #86c9ff; }
.industries-layout > div > p:not(.eyebrow) { max-width: 560px; color: #d5e4f6; }
.industries-layout .text-link { color: #8bd0ff; }
.industry-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.industry-grid article {
  min-height: 155px;
  padding: 1.25rem;
  background: rgb(255 255 255 / .08);
  border: 1px solid rgb(255 255 255 / .13);
  border-radius: 12px;
  transition: transform .3s var(--ease-out), background-color .3s ease, border-color .3s ease;
}
.industry-grid article:hover { transform: translateY(-5px); background: rgb(255 255 255 / .14); border-color: rgb(125 203 255 / .55); }
.industry-grid i { display: block; margin-bottom: 1rem; color: #6ec0ff; font-size: 1.35rem; }
.industry-grid h3 { color: #fff; font-size: 1.35rem; }
.industry-grid p { margin: 0; color: #d5e4f6; font-size: .78rem; }

.product-content-section { background: var(--slate-100); }
.product-content-section .section-heading { max-width: 820px; margin-bottom: 2rem; text-align: left; }
.product-content-section .section-heading h2 { max-width: 820px; }
.product-content-grid { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.product-content-main { max-width: 760px; }
.product-content-main > p { color: #4e6079; }
.product-content-main h3,
.product-content-card h3 { margin: 1.75rem 0 .8rem; color: var(--navy-900); }
.product-content-main h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
.product-application-list,
.product-content-card ul { display: grid; gap: .78rem; margin: 0; padding: 0; list-style: none; }
.product-application-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-application-list li { display: flex; gap: .6rem; align-items: flex-start; color: #40516a; font-size: .9rem; line-height: 1.45; }
.product-application-list i { flex: 0 0 auto; margin-top: .14rem; color: var(--blue-500); }
.product-content-card { position: relative; padding: clamp(1.45rem, 3vw, 2rem); overflow: hidden; color: #d8e6f8; background: linear-gradient(145deg, var(--navy-950), var(--navy-900)); border-radius: 14px; box-shadow: 0 18px 34px rgb(2 30 75 / .15); }
.product-content-card::after { position: absolute; right: -50px; bottom: -80px; width: 190px; height: 190px; content: ''; pointer-events: none; border: 34px solid rgb(39 160 255 / .14); border-radius: 50%; }
.product-content-card > * { position: relative; z-index: 1; }
.product-content-card-icon { display: grid; width: 44px; height: 44px; place-items: center; color: #fff; background: var(--blue-500); border-radius: 10px; font-size: 1.15rem; }
.product-content-card h3 { margin-top: 1.1rem; color: #fff; font-size: clamp(1.25rem, 2vw, 1.6rem); }
.product-content-card p { color: #d8e6f8; font-size: .9rem; }
.product-content-card li { position: relative; padding-left: 1.3rem; color: #e4eef9; font-size: .84rem; line-height: 1.45; }
.product-content-card li::before { position: absolute; top: .18rem; left: 0; width: .55rem; height: .55rem; content: ''; background: var(--blue-400); border-radius: 50%; }
.product-content-card .text-link { margin-top: 1.45rem; color: #fff; }
.product-content-card .text-link::after { background: var(--blue-400); }

/* Keep long product pages compact without losing the breathing room of the design. */
.section { padding-block: clamp(3.75rem, 5vw, 5.75rem); }
.section-heading { margin-bottom: 2.25rem; }
.solution-faq { padding-bottom: clamp(2.5rem, 3.5vw, 4rem); }
section.brochure-section { padding-top: clamp(2.75rem, 4vw, 4.25rem); }

/* Show the cable trough photography without stretching or over-cropping the supplied files. */
.cable-trough-gallery { padding-top: clamp(2.75rem, 4vw, 4.25rem); }
.cable-trough-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: auto; }
.cable-trough-gallery-grid figure,
.cable-trough-gallery-grid figure:first-child,
.cable-trough-gallery-grid figure:nth-child(2) { grid-column: auto; aspect-ratio: 4 / 3; background: #eff4fa; }
.cable-trough-gallery-grid img { object-fit: contain; }

/* Specific, migrated product detail for profiles and the legacy product routes. */
.legacy-detail-section { background: #fff; }
.legacy-detail-section .section-heading { max-width: 830px; text-align: left; }
.legacy-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.legacy-detail-layout > div > p { color: #4d5e75; }
.legacy-detail-layout .product-application-list { margin-top: 1.6rem; }
.legacy-detail-card { padding: clamp(1.5rem, 3vw, 2rem); color: #dce9f7; background: linear-gradient(145deg, var(--navy-950), var(--navy-900)); border-radius: 14px; box-shadow: 0 16px 30px rgb(2 30 75 / .13); }
.legacy-detail-card > span { display: grid; width: 46px; height: 46px; place-items: center; color: #fff; background: var(--blue-500); border-radius: 10px; }
.legacy-detail-card h3 { margin: 1rem 0 .7rem; color: #fff; font-size: clamp(1.45rem, 2.3vw, 1.9rem); }
.legacy-detail-card p { color: #dce9f7; font-size: .9rem; }
.legacy-detail-card .text-link { color: #fff; }
.pultrusion-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.pultrusion-gallery figure,
.pultrusion-properties { min-width: 0; margin: 0; overflow: hidden; border: 1px solid #dbe5f0; border-radius: 12px; background: #f4f8fc; }
.pultrusion-gallery img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; padding: .85rem; object-fit: contain; }
.pultrusion-properties img { width: 100%; height: clamp(220px, 21vw, 290px); padding: .85rem; object-fit: contain; }
.pultrusion-gallery figcaption,
.pultrusion-properties figcaption { padding: .65rem .8rem .75rem; color: var(--navy-900); font-size: .75rem; font-weight: 700; line-height: 1.3; }

.profile-stock-section { background: #f4f7fb; }
.profile-stock-section .section-heading { max-width: 860px; }
.profile-stock-intro { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem; align-items: center; margin-bottom: 1.15rem; padding: 1rem 1.15rem; border: 1px solid #d9e4ef; border-radius: 12px; background: #fff; }
.profile-stock-intro > i { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: var(--blue-500); border-radius: 8px; }
.profile-stock-intro p { margin: 0; color: #4e6079; font-size: .86rem; line-height: 1.5; }
.profile-stock-intro .text-link { white-space: nowrap; }
.profile-stock-table-wrap { overflow-x: auto; border: 1px solid #d9e2ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 18px rgb(2 30 75 / .05); }
.profile-stock-table { width: 100%; min-width: 690px; border-collapse: collapse; }
.profile-stock-table caption { text-align: left; }
.profile-stock-table th, .profile-stock-table td { padding: .72rem 1.1rem; border-bottom: 1px solid #e7edf5; text-align: left; }
.profile-stock-table thead th { color: #4d6786; background: #f3f7fc; font-size: .7rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.profile-stock-table tbody th[scope="row"] { color: var(--navy-900); font-size: .83rem; font-weight: 800; }
.profile-stock-table td { color: #4f5f75; font-size: .83rem; }
.profile-stock-table .profile-stock-table-group th { padding-top: .62rem; padding-bottom: .62rem; color: #fff; background: var(--navy-900); border-bottom-color: var(--navy-900); font-family: Bebas, Impact, sans-serif; font-size: 1.1rem; letter-spacing: .035em; text-transform: uppercase; }
.profile-stock-table tbody tr:not(.profile-stock-table-group):hover > * { background: #f8fbff; }
.profile-stock-table tbody tr:last-child > * { border-bottom: 0; }
.profile-stock-note { margin: 1rem 0 0; color: #66768b; font-size: .77rem; }

.stairs-project-gallery { background: #f4f7fb; }
.stairs-project-gallery .section-heading { max-width: 820px; }
.stairs-project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.stairs-project-grid figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; margin: 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.stairs-project-grid img { width: 100%; height: clamp(240px, 25vw, 355px); object-fit: cover; transition: transform .3s var(--ease-out); }
.stairs-project-grid figure:hover img { transform: scale(1.035); }
.stairs-project-grid figcaption { padding: .8rem .95rem .9rem; color: var(--navy-900); font-size: .78rem; font-weight: 700; line-height: 1.4; }

.service-riser-gallery { background: #f4f7fb; }
.service-riser-gallery .section-heading { max-width: 840px; }
.service-riser-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.service-riser-gallery-grid figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; margin: 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.service-riser-gallery-grid figure:last-child { grid-column: 1 / -1; }
.service-riser-gallery-grid img { width: 100%; height: clamp(165px, 18vw, 255px); padding: .55rem; object-fit: contain; background: linear-gradient(145deg, #f9fbfe, #edf3f9); }
.service-riser-gallery-grid figcaption { padding: .75rem .95rem .85rem; color: var(--navy-900); font-size: .78rem; font-weight: 700; line-height: 1.4; }

.grating-intro { padding-top: clamp(2rem, 3vw, 3.25rem); }
.grating-product-gallery { background: #f4f7fb; }
.grating-product-gallery .section-heading { max-width: 820px; }
.grating-product-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.grating-product-gallery-grid figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-width: 0; margin: 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.grating-product-gallery-grid img { width: 100%; height: clamp(205px, 20vw, 295px); object-fit: cover; transition: transform .3s var(--ease-out); }
.grating-product-gallery-grid figure:hover img { transform: scale(1.035); }
.grating-product-gallery-grid figcaption { padding: .75rem .9rem .85rem; color: var(--navy-900); font-size: .76rem; font-weight: 700; line-height: 1.4; }
.grating-stock-section .section-heading { max-width: 820px; }
.grating-stock-intro { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem; align-items: center; margin: 0 0 1rem; padding: 1rem 1.2rem; border: 1px solid rgb(7 136 248 / .17); border-radius: 12px; background: #eef6ff; }
.grating-stock-intro-icon { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: var(--blue-500); border-radius: 9px; }
.grating-stock-intro p { margin: 0; color: #4e6079; font-size: .86rem; line-height: 1.55; }
.grating-stock-intro .text-link { white-space: nowrap; }
.grating-colour-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; margin-bottom: 1.25rem; }
.grating-colour-grid article { display: flex; align-items: center; gap: .7rem; padding: .8rem; border: 1px solid #dce6f1; border-radius: 10px; background: #fff; }
.grating-colour-grid article > span:last-child { display: grid; min-width: 0; gap: .12rem; }
.grating-colour-grid strong { color: var(--navy-900); font-size: .79rem; line-height: 1.2; }
.grating-colour-grid small { color: #6a7b91; font-size: .67rem; font-weight: 700; letter-spacing: .025em; }
.grating-colour-swatch { width: 30px; height: 30px; flex: 0 0 auto; border: 1px solid rgb(2 30 75 / .16); border-radius: 8px; box-shadow: inset 0 0 0 3px rgb(255 255 255 / .28); }
.grating-colour-swatch.light-grey { background: #c4c7c5; }
.grating-colour-swatch.dark-grey { background: #4a4d4c; }
.grating-colour-swatch.yellow { background: #e3b120; }
.grating-colour-swatch.green { background: #4a7551; }
.grating-stock-tables { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.grating-stock-tables > article { overflow: hidden; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .05); }
.grating-stock-tables > article:first-child { grid-column: 1 / -1; }
.grating-table-card-heading { padding: 1.1rem 1.25rem .85rem; border-bottom: 1px solid #e2eaf3; background: linear-gradient(115deg, #f8fbff, #eef5fc); }
.grating-table-card-heading h3 { margin: 0 0 .25rem; color: var(--navy-900); font-size: 1.5rem; }
.grating-table-card-heading p { margin: 0; color: #5a6d84; font-size: .78rem; line-height: 1.45; }
.grating-table-scroll { overflow-x: auto; }
.grating-table-scroll table { width: 100%; min-width: 670px; border-collapse: collapse; }
.grating-table-scroll th, .grating-table-scroll td { padding: .75rem 1.25rem; border-bottom: 1px solid #e7edf5; text-align: left; }
.grating-table-scroll thead th { color: #4d6786; background: #f6f9fc; font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.grating-table-scroll tbody th { color: var(--navy-900); font-size: .82rem; font-weight: 800; }
.grating-table-scroll td { color: #4d5e75; font-size: .81rem; }
.grating-table-scroll tbody tr:hover > * { background: #f8fbff; }
.grating-table-scroll tbody tr:last-child > * { border-bottom: 0; }
.grating-stock-note { margin: 1.2rem 0 0; color: #68798e; font-size: .75rem; line-height: 1.5; }
.grating-load-section { scroll-margin-top: 2rem; background: #f4f7fb; }
.grating-load-layout { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.grating-load-layout figure { margin: 0; padding: .75rem; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 10px 24px rgb(2 30 75 / .07); }
.grating-load-layout img { display: block; width: 100%; max-height: 570px; object-fit: contain; }
.grating-load-layout figcaption { padding: .7rem .1rem .05rem; color: #5b6d82; font-size: .71rem; font-weight: 700; text-align: center; }
.grating-load-layout h2 { max-width: 620px; margin-bottom: 1rem; }
.grating-load-layout p:not(.eyebrow):not(.grating-load-note) { max-width: 690px; color: #4d5e75; }
.grating-load-layout .button { margin-top: .5rem; }
.grating-load-note { display: flex; align-items: flex-start; gap: .5rem; margin: 1rem 0 0; color: #64758a; font-size: .74rem; line-height: 1.45; }
.grating-load-note i { margin-top: .12rem; color: var(--blue-500); }

.enclosure-intro { padding-bottom: clamp(2rem, 3.5vw, 3.5rem); }
.enclosure-intro + .enclosure-photo-gallery { padding-top: clamp(2rem, 3.5vw, 3.5rem); }
.product-photo-gallery { background: #f4f7fb; }
.product-photo-gallery .section-heading { max-width: 850px; }
.product-photo-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.product-photo-gallery-grid figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-width: 0; margin: 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.product-photo-gallery-grid img { width: 100%; height: clamp(210px, 23vw, 315px); object-fit: cover; transition: transform .3s var(--ease-out); }
.product-photo-gallery-grid figure:hover img { transform: scale(1.035); }
.product-photo-gallery-grid figcaption { padding: .8rem .95rem .9rem; color: var(--navy-900); font-size: .78rem; font-weight: 700; line-height: 1.4; }
.handrail-photo-gallery .product-photo-gallery-grid figure:first-child { grid-column: span 2; }
.handrail-photo-gallery .product-photo-gallery-grid figure:first-child img { height: clamp(250px, 25vw, 355px); }
.platforms-photo-gallery .product-photo-gallery-grid figure:first-child { grid-column: span 2; }
.platforms-photo-gallery .product-photo-gallery-grid figure:first-child img { height: clamp(250px, 25vw, 355px); }
.cable-tray-photo-gallery .product-photo-gallery-grid figure:first-child { grid-column: span 2; }
.cable-tray-photo-gallery .product-photo-gallery-grid img { padding: .7rem; object-fit: contain; background: #0788c8; }
.cable-tray-photo-gallery .product-photo-gallery-grid figcaption { background: #fff; }
.enclosure-photo-gallery .product-photo-gallery-grid img { padding: .65rem; object-fit: contain; background: linear-gradient(145deg, #f9fbfe, #edf3f9); }

.key-clamp-system-section { background: #fff; }
.key-clamp-system-section .section-heading, .key-clamp-technical-section .section-heading, .key-clamp-components-section .section-heading, .key-clamp-posts-section .section-heading { max-width: 880px; text-align: left; }
.key-clamp-overview { display: grid; grid-template-columns: minmax(230px, .58fr) minmax(0, 1.42fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.key-clamp-overview figure { margin: 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 14px; background: #f7fafc; box-shadow: 0 14px 30px rgb(2 30 75 / .09); }
.key-clamp-overview figure img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.key-clamp-overview figcaption { padding: .8rem 1rem .9rem; color: var(--navy-900); font-size: .78rem; font-weight: 700; line-height: 1.4; }
.key-clamp-overview-copy { color: #4d5e75; }
.key-clamp-overview-copy > p { margin: 0 0 1rem; }
.key-clamp-benefit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem 1rem; margin: 1.3rem 0 1.5rem; padding: 0; list-style: none; }
.key-clamp-benefit-list li { position: relative; padding-left: 1.35rem; color: var(--navy-900); font-size: .86rem; font-weight: 650; line-height: 1.45; }
.key-clamp-benefit-list li::before { position: absolute; top: .13rem; left: 0; width: .82rem; height: .82rem; border-radius: 50%; background: var(--blue-500); box-shadow: inset 0 0 0 3px #d7efff; content: ''; }
.key-clamp-overview .button { margin-top: .15rem; }

.key-clamp-technical-section { background: #f4f7fb; }
.key-clamp-technical-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.key-clamp-technical-grid article { min-height: 235px; padding: 1.4rem; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.key-clamp-technical-grid article > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 10px; color: #fff; background: var(--blue-500); }
.key-clamp-technical-grid h3 { margin: 1rem 0 .55rem; color: var(--navy-900); font-size: 1.15rem; }
.key-clamp-technical-grid p { margin: 0; color: #51637a; font-size: .82rem; line-height: 1.65; }

.key-clamp-components-section { background: #fff; }
.key-clamp-components-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.key-clamp-components-grid article { display: grid; grid-template-rows: 190px auto; overflow: hidden; min-width: 0; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.key-clamp-components-grid img { width: 100%; height: 100%; padding: .65rem; object-fit: contain; background: linear-gradient(145deg, #f9fbfe, #edf3f9); }
.key-clamp-components-grid article > div { padding: .9rem .95rem 1rem; }
.key-clamp-components-grid strong { display: block; color: var(--blue-600); font-family: var(--font-display); font-size: .86rem; letter-spacing: .03em; }
.key-clamp-components-grid h3 { margin: .35rem 0 .35rem; color: var(--navy-900); font-size: .98rem; line-height: 1.25; }
.key-clamp-components-grid p { margin: 0; color: #64748b; font-size: .75rem; line-height: 1.45; }

.key-clamp-posts-section { background: #f4f7fb; }
.key-clamp-posts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.key-clamp-posts-grid article { display: grid; grid-template-columns: 145px minmax(0, 1fr); align-items: center; gap: 1rem; min-width: 0; padding: 1rem; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.key-clamp-posts-grid img { width: 100%; height: 220px; object-fit: contain; }
.key-clamp-posts-grid h3 { margin: 0 0 .5rem; color: var(--navy-900); font-size: 1.12rem; }
.key-clamp-posts-grid p { margin: 0; color: #51637a; font-size: .78rem; line-height: 1.55; }

.pipe-system-section, .palisade-fencing-section { background: #fff; }
.pipe-system-section .section-heading, .pipe-specification-section .section-heading, .pipe-advantages-section .section-heading, .palisade-fencing-section .section-heading, .palisade-fencing-specification .section-heading, .palisade-fencing-installation .section-heading { max-width: 880px; text-align: left; }
.pipe-system-overview, .palisade-fencing-overview { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.pipe-system-overview-copy, .palisade-fencing-overview-copy { grid-template-columns: minmax(0, 1fr); max-width: 900px; }
.pipe-system-overview > div, .palisade-fencing-overview > div { color: #4d5e75; }
.pipe-system-overview > div > p, .palisade-fencing-overview > div > p { margin-top: 0; }
.pipe-system-overview h3, .palisade-fencing-overview h3 { margin: 1.55rem 0 .75rem; color: var(--navy-900); font-size: 1.28rem; }
.pipe-system-overview .button { margin-top: 1.5rem; }
.pipe-system-overview figure, .palisade-fencing-overview figure { margin: 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 14px; background: #f7fafc; box-shadow: 0 14px 30px rgb(2 30 75 / .09); }
.pipe-system-overview figure img { display: block; width: 100%; aspect-ratio: 1.2; object-fit: cover; }
.palisade-fencing-overview figure img { display: block; width: 100%; aspect-ratio: .92; object-fit: cover; }
.pipe-system-overview figcaption, .palisade-fencing-overview figcaption, .pipe-specification-grid figcaption, .palisade-fencing-diagram-grid figcaption, .palisade-fencing-installation figure figcaption { padding: .8rem 1rem .9rem; color: var(--navy-900); font-size: .78rem; font-weight: 700; line-height: 1.4; }

.pipe-specification-section, .palisade-fencing-specification { background: #f4f7fb; }
.pipe-specification-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.pipe-specification-grid article { padding: 1.4rem; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.pipe-specification-grid article > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 10px; color: #fff; background: var(--blue-500); }
.pipe-specification-grid h3 { margin: 1rem 0 .55rem; color: var(--navy-900); font-size: 1.12rem; }
.pipe-specification-grid p { color: #51637a; font-size: .82rem; line-height: 1.65; }
.pipe-specification-grid figure { margin: 1.25rem 0 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 9px; background: #f7fafc; }
.pipe-specification-grid figure img { display: block; width: 100%; height: auto; }

.pipe-advantages-section { background: #fff; }
.pipe-advantages-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.pipe-advantages-layout h2 { margin-top: .4rem; }
.pipe-advantages-layout > div > p { max-width: 690px; color: #51637a; }
.pipe-advantages-layout aside { padding: 1.75rem; border-radius: 14px; color: #dce9f7; background: linear-gradient(145deg, var(--navy-950), var(--navy-900)); box-shadow: 0 16px 30px rgb(2 30 75 / .13); }
.pipe-advantages-layout aside > i { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 10px; color: #fff; background: var(--blue-500); }
.pipe-advantages-layout aside h3 { margin: 1rem 0 .65rem; color: #fff; font-size: 1.35rem; }
.pipe-advantages-layout aside p { color: #dce9f7; font-size: .87rem; line-height: 1.65; }
.pipe-advantages-layout aside .text-link { color: #fff; }

.palisade-fencing-diagram-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.palisade-fencing-diagram-grid figure, .palisade-fencing-diagram-grid article { margin: 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.palisade-fencing-diagram-grid figure img { display: block; width: 100%; height: 245px; padding: .75rem; object-fit: contain; background: #f7fafc; }
.palisade-fencing-diagram-grid article { padding: 1.4rem; }
.palisade-fencing-diagram-grid h3 { margin: 0 0 1rem; color: var(--navy-900); font-size: 1.18rem; }
.palisade-fencing-diagram-grid table { width: 100%; overflow: hidden; border: 1px solid #d9e3ef; border-collapse: separate; border-radius: 8px; border-spacing: 0; }
.palisade-fencing-diagram-grid th, .palisade-fencing-diagram-grid td { padding: .7rem .8rem; border-bottom: 1px solid #d9e3ef; color: #4d5e75; font-size: .83rem; text-align: left; }
.palisade-fencing-diagram-grid thead th { color: #fff; background: var(--navy-900); }
.palisade-fencing-diagram-grid tbody tr:last-child th, .palisade-fencing-diagram-grid tbody tr:last-child td { border-bottom: 0; }
.palisade-fencing-diagram-grid article p { margin: 1rem 0 0; color: #64748b; font-size: .78rem; line-height: 1.55; }

.palisade-fencing-installation { background: #fff; }
.palisade-fencing-installation-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.palisade-fencing-installation-layout > div { padding: 1.35rem; border: 1px solid #d9e3ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.palisade-fencing-installation-layout > div > img { display: block; width: 100%; padding: .5rem; border: 1px solid #d9e3ef; border-radius: 9px; background: #f7fafc; }
.palisade-fencing-installation-layout h3 { margin: 1.25rem 0 .6rem; color: var(--navy-900); font-size: 1.18rem; }
.palisade-fencing-installation-layout figure { margin: 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 12px; background: #f7fafc; box-shadow: 0 8px 20px rgb(2 30 75 / .06); }
.palisade-fencing-installation-layout figure img { display: block; width: 100%; height: auto; }

.deck-500-system-section { background: #fff; }
.deck-500-system-section .section-heading { max-width: 860px; }
.deck-500-system-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(290px, .9fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: stretch; }
.deck-500-photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.deck-500-photo-grid figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; margin: 0; overflow: hidden; border: 1px solid #d9e3ef; border-radius: 12px; background: #f7faff; }
.deck-500-photo-grid img { width: 100%; height: 100%; min-height: 195px; padding: .55rem; object-fit: contain; }
.deck-500-photo-grid figcaption, .deck-500-load-layout figcaption { padding: .75rem .9rem .85rem; color: var(--navy-900); font-size: .76rem; font-weight: 700; line-height: 1.4; }
.deck-500-spec-card { padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid #d7e4f1; border-radius: 14px; background: linear-gradient(145deg, #eff7ff, #f9fbfe); }
.deck-500-spec-card h3 { margin: 1rem 0 .8rem; color: var(--navy-900); font-size: clamp(1.55rem, 2.4vw, 2rem); }
.deck-500-spec-card ul { display: grid; gap: .65rem; margin: 0 0 1.25rem; padding-left: 1.1rem; color: #4d5e75; font-size: .88rem; line-height: 1.5; }
.deck-500-load-layout { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; margin-top: clamp(2rem, 5vw, 4rem); padding: clamp(1.2rem, 3vw, 1.75rem); border-radius: 14px; background: #f4f7fb; }
.deck-500-load-layout figure { margin: 0; padding: .7rem; border: 1px solid #d9e3ef; border-radius: 10px; background: #fff; }
.deck-500-load-layout img { width: 100%; object-fit: contain; }
.deck-500-load-layout h2 { margin-bottom: .9rem; }
.deck-500-load-layout p:not(.eyebrow) { color: #4d5e75; }
.deck-500-load-layout .button { margin-top: .3rem; }

.cabinet-size-section { background: #fff; }
.cabinet-size-section .section-heading { max-width: 880px; }
.cabinet-photo-gallery { background: #f4f7fb; }
.cabinet-photo-gallery .section-heading { max-width: 780px; }
.cabinet-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.cabinet-photo-grid figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; margin: 0; overflow: hidden; background: #fff; border: 1px solid #d9e3ef; border-radius: 12px; box-shadow: 0 8px 20px rgb(2 30 75 / .06); transition: transform .2s ease, box-shadow .2s ease; }
.cabinet-photo-grid figure:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgb(2 30 75 / .12); }
.cabinet-photo-grid img { width: 100%; height: clamp(260px, 27vw, 365px); padding: .75rem; object-fit: contain; background: linear-gradient(145deg, #f9fbfe, #edf3f9); }
.cabinet-photo-grid figcaption { padding: .78rem 1rem .9rem; color: var(--navy-900); font-family: Bebas, Impact, sans-serif; font-size: 1.18rem; letter-spacing: .025em; line-height: 1.08; }
.translucent-sheets-section { background: #fff; }
.translucent-sheets-section .section-heading { max-width: 840px; }
.translucent-sheets-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.translucent-sheets-copy > p { color: #4d5d73; }
.translucent-sheets-copy h3 { margin: 1.75rem 0 .85rem; color: var(--navy-900); font-size: clamp(1.5rem, 2.3vw, 1.9rem); }
.translucent-sheets-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; }
.translucent-sheets-gallery figure { margin: 0; overflow: hidden; border: 1px solid #dce5f0; border-radius: 12px; background: #f4f7fb; }
.translucent-sheets-gallery figure:first-child { grid-row: span 2; }
.translucent-sheets-gallery img { width: 100%; height: 100%; min-height: 160px; object-fit: cover; }
.translucent-sheets-gallery figure:first-child img { min-height: 342px; }
.translucent-sheets-gallery figcaption { padding: .6rem .75rem .7rem; color: var(--navy-900); font-size: .72rem; font-weight: 700; line-height: 1.35; }
.translucent-spec-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4.5rem); }
.translucent-spec-grid article { padding: 1.4rem; border: 1px solid #dce5ef; border-radius: 12px; background: #f6f9fd; }
.translucent-spec-icon { display: grid; width: 44px; height: 44px; place-items: center; color: #fff; background: var(--blue-500); border-radius: 10px; }
.translucent-spec-grid h3 { margin: 1rem 0 .65rem; color: var(--navy-900); font-size: 1.45rem; }
.translucent-spec-grid p { color: #506177; font-size: .84rem; line-height: 1.63; }
.translucent-spec-grid p + p { margin-top: .85rem; }
.translucent-weight-guide { margin-top: 1rem; padding: 1.4rem; border: 1px solid #dce5ef; border-radius: 12px; background: #fff; }
.translucent-weight-guide h3 { margin: 0 0 .4rem; color: var(--navy-900); font-size: 1.55rem; }
.translucent-weight-guide > p { max-width: 780px; margin: 0 0 1rem; color: #56677d; font-size: .84rem; }
.translucent-weight-table { overflow-x: auto; }
.translucent-weight-table table { width: 100%; min-width: 520px; border-collapse: collapse; }
.translucent-weight-table th, .translucent-weight-table td { padding: .62rem .8rem; border-bottom: 1px solid #e5ecf4; text-align: left; font-size: .8rem; }
.translucent-weight-table thead th { color: #456482; background: #eef5fc; font-size: .69rem; letter-spacing: .075em; text-transform: uppercase; }
.translucent-weight-table tbody th { color: var(--navy-900); font-weight: 800; }
.translucent-weight-table tbody td { color: #506177; }
.translucent-weight-table tbody tr:last-child > * { border-bottom: 0; }
.cabinet-size-intro { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem; align-items: center; margin: 0 0 1.45rem; padding: 1rem 1.2rem; background: #edf5ff; border: 1px solid rgb(7 136 248 / .16); border-radius: 10px; }
.cabinet-size-intro > i { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: var(--blue-500); border-radius: 8px; }
.cabinet-size-intro p { margin: 0; color: #4e6079; font-size: .87rem; }
.cabinet-size-intro .text-link { white-space: nowrap; }
.cabinet-range-list { display: grid; gap: .85rem; }
.cabinet-range { overflow: hidden; border: 1px solid #d9e2ef; border-radius: 12px; background: #fff; box-shadow: 0 8px 18px rgb(2 30 75 / .05); transition: border-color .2s ease, box-shadow .2s ease; }
.cabinet-range[open] { border-color: rgb(7 136 248 / .42); box-shadow: 0 14px 28px rgb(2 30 75 / .09); }
.cabinet-range > summary { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.15rem 1.35rem; color: var(--navy-900); list-style: none; cursor: pointer; transition: background-color .2s ease; }
.cabinet-range > summary::-webkit-details-marker { display: none; }
.cabinet-range > summary:hover { background: #f7faff; }
.cabinet-range > summary > span:first-child { display: grid; gap: .28rem; }
.cabinet-range > summary strong { font-family: Bebas, Impact, sans-serif; font-size: 1.45rem; letter-spacing: .02em; text-transform: uppercase; }
.cabinet-range > summary small { max-width: 720px; color: #5c6b81; font-size: .78rem; line-height: 1.4; }
.cabinet-range-count { display: inline-flex; flex: 0 0 auto; align-items: center; gap: .65rem; color: #477095; font-size: .77rem; font-weight: 700; white-space: nowrap; }
.cabinet-range-count i { display: grid; width: 28px; height: 28px; place-items: center; color: #fff; background: var(--navy-900); border-radius: 50%; font-size: .72rem; transition: transform .2s var(--ease-out), background-color .2s ease; }
.cabinet-range[open] .cabinet-range-count i { background: var(--blue-500); transform: rotate(45deg); }
.cabinet-table-scroll { overflow-x: auto; border-top: 1px solid #e3ebf5; }
.cabinet-table-scroll table { width: 100%; min-width: 650px; border-collapse: collapse; }
.cabinet-table-scroll caption { text-align: left; }
.cabinet-table-scroll th,
.cabinet-table-scroll td { padding: .8rem 1.35rem; border-bottom: 1px solid #e7edf5; text-align: left; }
.cabinet-table-scroll thead th { color: #4d6786; background: #f3f7fc; font-size: .7rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.cabinet-table-scroll tbody th { color: var(--navy-900); font-size: .84rem; font-weight: 800; }
.cabinet-table-scroll td { color: #4f5f75; font-size: .84rem; }
.cabinet-table-scroll tbody tr:last-child > * { border-bottom: 0; }
.cabinet-table-scroll tbody tr:hover > * { background: #f8fbff; }
.cabinet-size-note { margin: 1.3rem 0 0; color: #66768b; font-size: .77rem; }

.legal-prose { max-width: 900px; }
.legal-prose > h2 { margin-bottom: .45rem; }
.legal-prose > h3 { margin: 2.35rem 0 .65rem; color: var(--navy-900); font-size: clamp(1.35rem, 2.5vw, 1.8rem); }
.legal-prose .legal-updated { margin-bottom: 1.7rem; color: #5b7090; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.solution-faq { max-width: 1060px; }
.faq-list details { border: 1px solid transparent; transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.faq-list details:hover,
.faq-list details[open] { border-color: rgb(7 136 248 / .28); background: #f7faff; box-shadow: 0 8px 18px rgb(2 30 75 / .06); }

/* Give the page CTA and the footer CTA distinct brand roles. */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, var(--navy-950), #064783);
}
.cta-band::after {
  position: absolute;
  inset: auto -7rem -13rem auto;
  width: 26rem;
  height: 26rem;
  content: '';
  border: 38px solid rgb(80 180 255 / .12);
  border-radius: 50%;
}
.cta-band .shell { position: relative; z-index: 1; }
.cta-band .eyebrow { color: #9fdbff; }
.cta-band .button { color: var(--navy-900); background: #fff; box-shadow: 0 12px 24px rgb(0 12 36 / .24); }
.cta-band .button:hover,
.cta-band .button:focus-visible { background: #dff2ff; }

/* Rebuilt footer */
.site-footer { padding: 0 0 1.2rem; overflow: hidden; background: var(--navy-950); }
.footer-cta { position: relative; overflow: hidden; color: #fff; background: linear-gradient(105deg, #0874d6, #0b8ef1); }
.footer-cta::after {
  position: absolute;
  top: -10rem;
  right: -4rem;
  width: 25rem;
  height: 25rem;
  content: '';
  border: 42px solid rgb(255 255 255 / .1);
  border-radius: 50%;
}
.footer-cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 2.65rem; padding-bottom: 2.65rem; }
.footer-cta .eyebrow { color: #d5efff; }
.footer-cta h2 { color: #fff; font-size: clamp(2.35rem, 4vw, 3.65rem); }
.footer-cta p:not(.eyebrow) { max-width: 680px; margin: 0; color: #fff; }
.footer-cta-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 1.25rem; }
.button-light { color: var(--navy-900); background: #fff; box-shadow: 0 12px 24px rgb(2 30 75 / .16); }
.button-light:hover { background: #e8f5ff; }
.footer-cta-phone { display: flex; align-items: center; gap: .75rem; color: #fff; text-decoration: none; }
.footer-cta-phone > i { font-size: 1.7rem; }
.footer-cta-phone span { display: grid; font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-cta-phone strong { font: 700 1.55rem/1.1 Bebas, Impact, sans-serif; letter-spacing: .03em; }

.footer-main { display: grid; grid-template-columns: .92fr 1.05fr 1.35fr; gap: clamp(2rem, 5vw, 5rem); padding-top: 4rem; padding-bottom: 3rem; }
.footer-brand > img { width: 212px; margin: 0 0 1.65rem; }
.footer-brand > p:not(.social-links) { max-width: 335px; color: #c7d9f0; font-size: .87rem; }
.social-links { gap: .7rem; color: #9db5d5; font-weight: 700; }
.social-links span { margin-right: .25rem; }
.social-links a { display: grid; width: 30px; height: 30px; place-items: center; color: #fff; background: rgb(255 255 255 / .1); border-radius: 50%; line-height: 1; text-decoration: none; transition: transform .2s var(--ease-out), background-color .2s ease; }
.social-links a > i,
.social-links a > svg { display: block; width: 1rem; height: 1rem; line-height: 1; text-decoration: none; }
.social-links a:hover { background: var(--blue-500); transform: translateY(-3px); text-decoration: none; }

.footer-newsletter { padding: 1.6rem; background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .1); border-radius: 14px; }
.footer-newsletter .eyebrow { color: #8ed0ff; }
.footer-newsletter h2 { color: #fff; font-size: 1.85rem; }
.footer-newsletter > p:not(.eyebrow) { color: #c7d9f0; font-size: .82rem; }
.newsletter-form { max-width: none; }
.newsletter-form input { color: var(--ink); background: #fff; border-radius: 7px; }
.newsletter-form button { display: flex; align-items: center; justify-content: center; gap: .55rem; border-radius: 7px; font-weight: 700; transition: transform .2s var(--ease-out), background-color .2s ease; }
.newsletter-form button:hover { background: #0076dc; transform: translateY(-2px); }

.footer-links { grid-column: auto; align-content: start; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.45rem; }
.footer-links p { color: #8ed0ff; font-weight: 700; }
.footer-links a { color: #dce8f8; font-size: .8rem; transition: color .2s ease, transform .2s var(--ease-out); }
.footer-links a:hover { color: #fff; transform: translateX(3px); text-decoration: none; }
.footer-bottom { grid-template-columns: 1.4fr auto auto; margin-top: 0; padding-top: 1.5rem; border-color: rgb(255 255 255 / .13); color: #9db5d5; }
.footer-bottom p:first-child a { color: #64baff; }
.footer-bottom a { color: #dce8f8; }
.back-top { border-color: rgb(255 255 255 / .55); transition: background-color .2s ease, transform .2s var(--ease-out); }
.back-top:hover { background: rgb(255 255 255 / .1); transform: translateY(-2px); }

/* Reveal on scroll only after JavaScript has opted in. */
html.js-enhanced .reveal { opacity: 0; transform: translateY(24px); transition: opacity .62s var(--ease-out), transform .62s var(--ease-out); }
html.js-enhanced .reveal.is-visible { opacity: 1; transform: none; }
html.js-enhanced .reveal:nth-child(2) { transition-delay: 70ms; }
html.js-enhanced .reveal:nth-child(3) { transition-delay: 140ms; }
html.js-enhanced .reveal:nth-child(4) { transition-delay: 210ms; }

@media (max-width: 1180px) {
  .site-nav > a, .nav-menu > summary { padding-right: .5rem; padding-left: .5rem; }
  .header-search span,
  .header-quote span { display: none; }
  .header-search,
  .header-quote { width: 40px; padding: .7rem; }
  .hero-proof-strip ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: .9fr 1.1fr; }
  .footer-links { grid-column: 1 / -1; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-content-grid { grid-template-columns: 1fr .8fr; }
}

@media (max-width: 860px) {
  .header-utility { display: none; }
  .header-inner { min-height: 64px; }
  .brand { flex: 1 1 auto; }
  .brand img { width: 142px; }
  .header-actions { margin-left: auto; }
  .header-search { display: none; }
  .header-quote { width: auto; padding: .65rem .72rem; }
  .header-quote span { display: inline; }
  .header-phone { width: 40px; padding: .45rem; }
  .header-phone span { display: none; }
  .site-nav { top: calc(100% + 1px); padding-top: 1rem; padding-bottom: 1rem; background: #fff; }
  .site-nav > a, .nav-menu > summary { padding: .72rem 0; border-radius: 0; }
  .site-nav .nav-search-link { display: block; }
  .site-nav > a::after { right: auto; left: 0; width: 36px; }
  .nav-panel { margin-top: 0; border: 0; border-radius: 8px; box-shadow: none; }
  .hero-proof-strip { margin-right: 12px; margin-left: 12px; }
  .hero-proof-strip ul { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 1rem 0; }
  .journey-grid { grid-template-columns: 1fr; }
  .footer-cta-inner, .industries-layout { grid-template-columns: 1fr; }
  .product-content-grid { grid-template-columns: 1fr; }
  .legacy-detail-layout { grid-template-columns: 1fr; }
  .key-clamp-overview { grid-template-columns: minmax(220px, .58fr) minmax(0, 1.42fr); }
  .key-clamp-technical-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .key-clamp-components-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .key-clamp-posts-grid { grid-template-columns: 1fr; }
  .pipe-system-overview, .palisade-fencing-overview, .pipe-advantages-layout, .palisade-fencing-installation-layout { grid-template-columns: 1fr; }
  .pipe-system-overview figure, .palisade-fencing-overview figure { max-width: 460px; }
  .pipe-specification-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pipe-specification-grid article:first-child { grid-column: 1 / -1; }
  .cable-trough-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grating-product-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grating-colour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grating-stock-tables { grid-template-columns: 1fr; }
  .grating-stock-tables > article:first-child { grid-column: auto; }
  .grating-load-layout { grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: 2rem; }
  .product-photo-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deck-500-system-layout, .deck-500-load-layout { grid-template-columns: 1fr; }
  .product-content-main { max-width: none; }
  .translucent-sheets-layout { grid-template-columns: 1fr; }
  .translucent-spec-grid { grid-template-columns: 1fr; }
  .cabinet-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stairs-project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stairs-project-grid figure:last-child { grid-column: 1 / -1; }
  .cabinet-size-intro { grid-template-columns: auto minmax(0, 1fr); }
  .cabinet-size-intro .text-link { grid-column: 2; }
  .footer-cta-inner { display: grid; }
  .footer-cta-actions { flex-wrap: wrap; }
  .industries-layout { display: grid; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3rem; }
  .footer-links { grid-column: auto; }
  .associated-explore { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 580px) {
  .header-actions { gap: .3rem; }
  .header-quote span { display: none; }
  .header-quote { width: 38px; min-height: 38px; padding: .55rem; }
  .header-phone { min-height: 38px; }
  .site-search-form { grid-template-columns: 1fr; }
  .site-search-form .button { justify-content: center; }
  .associated-explore-actions { width: 100%; }
  .associated-explore-actions .button { flex: 1 1 100%; justify-content: center; }
  .hero-proof-strip { margin-right: 12px; margin-left: 12px; }
  .hero-proof-strip ul { gap: .75rem; }
  .hero-proof-strip li:last-child { grid-column: 1 / -1; }
  .hero-proof-strip i { font-size: 1.2rem; }
  .journey-card { padding: 1.45rem; }
  .journey-card h3 { font-size: 2.25rem; }
  .journey-card .button { width: 100%; justify-content: center; }
  .benefit-grid, .industry-grid { grid-template-columns: 1fr; }
  .section { padding-block: 3.5rem; }
  .product-application-list { grid-template-columns: 1fr; }
  .key-clamp-overview { grid-template-columns: 1fr; }
  .key-clamp-overview figure { max-width: 360px; }
  .key-clamp-benefit-list { grid-template-columns: 1fr; }
  .key-clamp-overview .button { width: 100%; justify-content: center; }
  .key-clamp-technical-grid, .key-clamp-components-grid { grid-template-columns: 1fr; }
  .key-clamp-technical-grid article { min-height: 0; }
  .key-clamp-components-grid article { grid-template-columns: 130px minmax(0, 1fr); grid-template-rows: 1fr; }
  .key-clamp-components-grid img { min-height: 135px; }
  .key-clamp-posts-grid article { grid-template-columns: 115px minmax(0, 1fr); }
  .key-clamp-posts-grid img { height: 175px; }
  .pipe-specification-grid, .palisade-fencing-diagram-grid { grid-template-columns: 1fr; }
  .pipe-specification-grid article:first-child { grid-column: auto; }
  .pipe-system-overview figure, .palisade-fencing-overview figure { max-width: 360px; }
  .palisade-fencing-diagram-grid figure img { height: 220px; }
  .palisade-fencing-installation-layout > div { padding: 1rem; }
  .cable-trough-gallery-grid { grid-template-columns: 1fr; }
  .grating-product-gallery-grid, .grating-colour-grid { grid-template-columns: 1fr; }
  .grating-product-gallery-grid img { height: 250px; }
  .grating-intro { padding-top: 2rem; }
  .grating-stock-intro { grid-template-columns: 1fr; padding: 1rem; }
  .grating-stock-intro-icon { display: none; }
  .grating-stock-intro .text-link { white-space: normal; }
  .grating-load-layout { grid-template-columns: 1fr; }
  .grating-load-layout img { max-height: 500px; }
  .product-photo-gallery-grid { grid-template-columns: 1fr; }
  .handrail-photo-gallery .product-photo-gallery-grid figure:first-child { grid-column: auto; }
  .platforms-photo-gallery .product-photo-gallery-grid figure:first-child { grid-column: auto; }
  .cable-tray-photo-gallery .product-photo-gallery-grid figure:first-child { grid-column: auto; }
  .product-photo-gallery-grid img { height: 255px; }
  .deck-500-photo-grid { grid-template-columns: 1fr; }
  .deck-500-photo-grid img { height: 210px; min-height: 0; }
  .pultrusion-gallery { grid-template-columns: 1fr; }
  .pultrusion-properties img { height: clamp(230px, 60vw, 280px); }
  .profile-stock-intro { grid-template-columns: 1fr; padding: 1rem; }
  .profile-stock-intro > i { display: none; }
  .profile-stock-intro .text-link { white-space: normal; }
  .translucent-sheets-gallery { grid-template-columns: 1fr; }
  .translucent-sheets-gallery figure:first-child { grid-row: auto; }
  .translucent-sheets-gallery figure img,
  .translucent-sheets-gallery figure:first-child img { height: 210px; min-height: 0; }
  .cabinet-photo-grid { grid-template-columns: 1fr; }
  .stairs-project-grid { grid-template-columns: 1fr; }
  .stairs-project-grid figure:last-child { grid-column: auto; }
  .service-riser-gallery-grid { grid-template-columns: 1fr; }
  .service-riser-gallery-grid figure:last-child { grid-column: auto; }
  .cabinet-photo-grid img { height: 330px; }
  .cabinet-size-intro { grid-template-columns: 1fr; padding: 1rem; }
  .cabinet-size-intro > i { display: none; }
  .cabinet-size-intro .text-link { grid-column: auto; }
  .cabinet-range > summary { align-items: flex-start; padding: 1rem; }
  .cabinet-range > summary strong { font-size: 1.25rem; }
  .cabinet-range-count { margin-top: .2rem; font-size: 0; }
  .cabinet-table-scroll th, .cabinet-table-scroll td { padding: .75rem 1rem; }
  .clients img { max-width: 170px; max-height: 78px; }
  .benefit-card { min-height: auto; }
  .industries-section { padding-top: 4rem; padding-bottom: 4rem; }
  .footer-cta-inner { padding-top: 3rem; padding-bottom: 3rem; }
  .footer-cta-actions { align-items: flex-start; flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { color: #a8bdd8; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  html.js-enhanced .reveal { opacity: 1; transform: none; }
}
