﻿:root {
  --ink: #171a1d;
  --charcoal: #11171b;
  --deep: #263640;
  --steel: #617783;
  --steel-light: #d8dfe2;
  --red: #a91f25;
  --paper: #f1f2f0;
  --white: #ffffff;
  --muted: #697278;
  --line: #d6dadd;
  --content-max: 1360px;
  --page-pad: clamp(22px, 4vw, 56px);
  --section-y: 84px;
  --section-space-desktop: 96px;
  --section-space-tablet: 72px;
  --section-space-mobile: 52px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

section[id] {
  scroll-margin-top: 104px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
  letter-spacing: 0;
}

.refined-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 23, 27, 0.12);
  backdrop-filter: blur(14px);
}

.refined-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.refined-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.refined-brand span {
  max-width: 130px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.1;
}

.refined-header nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: rgba(23, 26, 29, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.refined-header nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.refined-header nav a:hover {
  border-bottom-color: var(--red);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 0 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle span:not(.menu-text) {
  width: 14px;
  height: 2px;
  background: currentColor;
}

.header-contact,
.primary-button,
.secondary-button,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
}

.header-contact,
.primary-button,
.contact-button {
  color: var(--white);
  background: var(--red);
}

.header-contact .mobile-label {
  display: none;
}

.refined-hero {
  --hero-image: url("assets/hero-dongdubao-panorama-blur.jpg");
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.refined-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(17, 23, 27, 0.95) 0%, rgba(17, 23, 27, 0.82) 42%, rgba(17, 23, 27, 0.5) 72%, rgba(17, 23, 27, 0.36)),
    var(--hero-image);
  background-size: cover;
  background-position: center 54%;
}

.refined-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 120px 120px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 7px;
  background: var(--red);
}

.hero-coordinate {
  position: absolute;
  top: 30px;
  right: 42px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.refined-hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 84px));
  margin-left: 6vw;
  padding: 72px 0 92px;
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  padding-left: 18px;
  border-left: 3px solid var(--red);
}

.hero-brand-lockup span,
.hero-brand-lockup strong {
  display: block;
}

.hero-brand-lockup span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-brand-lockup strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.section-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-code::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-code.light {
  color: rgba(255, 255, 255, 0.76);
}

.refined-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.01;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-bottom: 30px;
}

.material-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.secondary-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.66);
}

.scale-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.scale-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 4px;
  background: var(--red);
}

.scale-strip article {
  min-height: 112px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.scale-strip article:first-child {
  border-left: 1px solid var(--line);
}

.scale-strip strong,
.scale-strip span {
  display: block;
}

.scale-strip strong {
  margin-bottom: 6px;
  font-size: 27px;
  font-variant-numeric: tabular-nums;
}

.scale-strip span {
  color: var(--muted);
  font-size: 13px;
}

.scale-strip strong .scale-number {
  display: inline;
  color: inherit;
  font-size: inherit;
}

.company-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 82px 5vw;
  background: var(--paper);
}

.company-copy h2,
.principles-statement h2,
.products-heading h2,
.production-copy h2,
.workflow-heading h2,
.placeholder-heading h2,
.heritage-heading h2,
.refined-contact h2 {
  margin-bottom: 24px;
  font-size: 43px;
  line-height: 1.08;
}

.company-copy > p:not(.section-code) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 4px;
  color: var(--deep);
  font-weight: 800;
  border-bottom: 2px solid var(--red);
}

.detail-collage {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
  align-items: stretch;
}

.detail-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.detail-card-large {
  grid-row: span 2;
}

.detail-card img {
  width: 100%;
  height: 100%;
  min-height: 238px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
}

.detail-card-large img {
  object-position: center;
}

.detail-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(17, 23, 27, 0.88), rgba(17, 23, 27, 0));
}

.detail-card figcaption span,
.detail-card figcaption strong {
  display: block;
}

.detail-card figcaption span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-card figcaption strong {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.28;
}

.principles-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
  padding: 94px 5vw;
  background:
    linear-gradient(90deg, rgba(169, 31, 37, 0.08) 0 1px, transparent 1px),
    var(--white);
  background-size: 86px 86px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles-statement > p:not(.section-code) {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principles-grid article {
  min-height: 224px;
  padding: 28px;
  background: rgba(241, 242, 240, 0.94);
}

.principles-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.principles-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.principles-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.products-section {
  padding: 104px 5vw;
  color: var(--ink);
  background: #f7f8f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.products-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}

.products-heading > p {
  max-width: 560px;
  margin-bottom: 4px;
  color: var(--muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-tile {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border-radius: 2px;
  border: 1px solid var(--line);
}

.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: #fbfbfa;
  border-bottom: 1px solid var(--line);
}

.product-media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center;
}

.product-tile:nth-child(6) .product-media {
  background: #fdfdfc;
}

.product-tile:nth-child(6) .product-media img {
  width: 72%;
  height: 72%;
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  padding: 22px;
}

.product-index {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.product-tile h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.product-tile p {
  margin-bottom: 18px;
  color: var(--muted);
}

.product-tags,
.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.product-tags span,
.application-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  color: var(--deep);
  background: #f8f8f6;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.product-link:hover {
  color: var(--ink);
}

.placeholder-section {
  padding: 104px 5vw;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.placeholder-heading {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.placeholder-heading > p:not(.section-code) {
  max-width: 720px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.placeholder-grid article {
  min-height: 188px;
  padding: 24px;
  background: #fbfbfa;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.placeholder-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.placeholder-grid h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.placeholder-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.applications-grid,
.compatibility-grid,
.manufacturing-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.applications-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compatibility-grid {
  grid-template-columns: repeat(3, 1fr);
}

.applications-grid article,
.compatibility-grid article,
.manufacturing-grid article {
  min-height: 218px;
  padding: 24px;
  background: #fbfbfa;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.applications-grid > article > span,
.compatibility-grid > article > span,
.manufacturing-grid > article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.applications-grid h3,
.compatibility-grid h3,
.manufacturing-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.applications-grid p,
.compatibility-grid p,
.manufacturing-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.applications-grid p {
  margin-bottom: 24px;
}

.compatibility-action {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.compatibility-action p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.production-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
  padding: 104px 5vw;
  background: var(--white);
}

.production-copy {
  align-self: center;
}

.production-copy > p:not(.section-code) {
  color: var(--muted);
  font-size: 17px;
}

.manufacturing-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
}

.manufacturing-grid article {
  min-height: 206px;
}

.manufacturing-grid > article > span {
  margin-bottom: 26px;
}

.equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.equipment-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.production-note {
  padding-left: 18px;
  border-left: 3px solid var(--red);
}

.capability-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.capability-stack article {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.capability-stack img {
  width: 100%;
  height: 100%;
  min-height: 224px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.capability-stack article:nth-child(1) img {
  object-position: center;
}

.capability-stack article:nth-child(2) img {
  object-position: center;
}

.capability-stack article:nth-child(3) img,
.capability-stack article:nth-child(4) img {
  object-position: center;
}

.capability-stack span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(17, 23, 27, 0.78);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-section {
  padding: 104px 5vw;
  background: var(--paper);
}

.workflow-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 38px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.workflow-grid article {
  min-height: 216px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 900;
}

.workflow-grid h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.workflow-grid p {
  color: var(--muted);
}

.heritage-section {
  padding: 84px 5vw;
  color: var(--white);
  background: var(--ink);
}

.heritage-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.heritage-story {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
}

.heritage-visual {
  position: relative;
  overflow: hidden;
  min-height: 438px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.heritage-visual img {
  width: 100%;
  height: 100%;
  min-height: 438px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) contrast(1.04) brightness(0.82);
}

.heritage-visual figcaption,
.heritage-snapshots figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(168px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.history-timeline article {
  min-height: 218px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.06);
}

.history-timeline span {
  display: block;
  margin-bottom: 36px;
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.history-timeline h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.history-timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.heritage-snapshots {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.heritage-snapshots figure {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.heritage-snapshots img {
  width: 100%;
  height: 100%;
  min-height: 224px;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.08) brightness(0.8);
}

.heritage-snapshots figure::after,
.heritage-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(17, 23, 27, 0.86), rgba(17, 23, 27, 0));
}

.refined-contact {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 26px;
  align-items: stretch;
  padding: 84px 5vw;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 23, 27, 0.96), rgba(38, 54, 64, 0.98)),
    var(--deep);
  border-top: 5px solid var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 5vw;
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 15px;
}

.site-footer span,
.site-footer a {
  font-size: 13px;
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-weight: 800;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.contact-intro {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 100%;
  padding: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-intro h2 {
  margin-bottom: 0;
}

.contact-intro > p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.whatsapp-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  color: var(--white);
  background: #0fb060;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.whatsapp-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b8c4b;
  background: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.whatsapp-card strong,
.whatsapp-card small,
.contact-detail-grid span,
.contact-detail-grid strong,
.form-heading span,
.form-heading strong {
  display: block;
}

.whatsapp-card strong {
  margin-bottom: 3px;
  font-size: 21px;
}

.whatsapp-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.contact-detail-grid {
  display: grid;
  gap: 1px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

.contact-detail-grid article {
  padding: 20px;
  background: rgba(17, 23, 27, 0.42);
}

.contact-detail-grid span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail-grid a,
.contact-detail-grid strong {
  font-size: 14px;
  font-weight: 800;
}

.enquiry-form {
  display: grid;
  gap: 20px;
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.form-heading {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-heading strong {
  font-size: 25px;
  line-height: 1.14;
}

.form-row {
  display: grid;
  gap: 16px;
}

.two-fields {
  grid-template-columns: 1fr 1fr;
}

.phone-fields {
  grid-template-columns: minmax(190px, 1fr) 112px minmax(180px, 1fr);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form label > span {
  color: #4e5961;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfbfa;
  border: 1px solid #cbd2d6;
  border-radius: 0;
  font: inherit;
  font-size: 16px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 2px solid rgba(169, 31, 37, 0.2);
  border-color: var(--red);
  background: var(--white);
}

.prefix-field input {
  color: var(--red);
  font-weight: 900;
  text-align: center;
}

.full-field textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.form-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding-top: 4px;
}

.consent-line {
  display: flex !important;
  grid-template-columns: none;
  gap: 10px !important;
  align-items: center;
  color: #64707a;
  font-size: 13px;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--red);
}

.form-footer button {
  min-width: 170px;
  min-height: 54px;
  color: var(--white);
  background: var(--red);
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.form-footer button:hover {
  background: #8e181d;
}

@media (max-width: 980px) {
  .refined-header {
    grid-template-columns: 1fr auto;
    padding: 12px 22px;
  }

  .refined-header nav {
    display: none;
  }

  .scale-strip {
    grid-template-columns: 1fr 1fr;
  }

  .company-section,
  .principles-section,
  .products-heading,
  .production-section,
  .workflow-heading,
  .placeholder-heading,
  .heritage-heading,
  .heritage-story,
  .refined-contact {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .applications-grid,
  .compatibility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .history-timeline,
  .heritage-snapshots {
    grid-template-columns: 1fr 1fr;
  }

  .placeholder-grid {
    grid-template-columns: 1fr;
  }

  .phone-fields {
    grid-template-columns: 1fr 120px 1fr;
  }
}

@media (max-width: 600px) {
  .refined-header {
    min-height: 76px;
  }

  .refined-brand img {
    width: 52px;
    height: 52px;
  }

  .refined-brand span {
    font-size: 13px;
  }

  .header-contact {
    min-height: 42px;
    padding: 0 13px;
  }

  .refined-hero {
    min-height: 680px;
    align-items: flex-start;
    background-position: 62% center;
  }

  .hero-coordinate {
    right: 22px;
  }

  .refined-hero-content {
    width: calc(100% - 44px);
    margin-left: 22px;
    padding: 78px 0 64px;
  }

  .hero-brand-lockup {
    gap: 14px;
    margin-bottom: 24px;
  }

  .hero-brand-lockup img {
    width: 76px;
    height: 76px;
  }

  .hero-brand-lockup strong {
    font-size: 15px;
  }

  .refined-hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-buttons {
    display: grid;
  }

  .scale-strip,
  .products-grid,
  .workflow-grid,
  .placeholder-grid,
  .applications-grid,
  .compatibility-grid,
  .manufacturing-grid,
  .detail-collage,
  .capability-stack,
  .history-timeline,
  .heritage-snapshots,
  .two-fields,
  .phone-fields,
  .form-footer {
    grid-template-columns: 1fr;
  }

  .scale-strip article {
    min-height: 96px;
  }

  .product-body {
    min-height: auto;
  }

  .company-section,
  .principles-section,
  .products-section,
  .production-section,
  .workflow-section,
  .placeholder-section,
  .heritage-section,
  .refined-contact {
    padding: 62px 22px;
  }

  .company-copy h2,
  .principles-statement h2,
  .products-heading h2,
  .production-copy h2,
  .workflow-heading h2,
  .placeholder-heading h2,
  .heritage-heading h2,
  .refined-contact h2 {
    font-size: 35px;
  }

  .company-section {
    gap: 34px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro,
  .enquiry-form {
    padding: 26px;
  }

  .whatsapp-card {
    padding: 18px;
  }

  .form-footer button {
    width: 100%;
  }

  .detail-card-large {
    grid-row: auto;
  }

  .history-timeline article,
  .heritage-visual,
  .heritage-visual img,
  .heritage-snapshots figure,
  .heritage-snapshots img {
    min-height: 220px;
  }

  .equipment-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .site-footer div:last-child {
    justify-content: flex-start;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.hero-buttons a {
  min-width: 168px;
}

.material-tags span {
  font-size: 13px;
}

.solution-section,
.systems-section,
.workflow-compact,
.manufacturing-compact,
.proof-section,
.refined-contact {
  padding-top: 92px;
  padding-bottom: 92px;
}

.compact-heading {
  margin-bottom: 34px;
}

.compact-heading > p:not(.section-code) {
  max-width: 620px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.solution-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  margin: 0;
  background: #fbfbfa;
  border-bottom: 1px solid var(--line);
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-body {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px 22px 22px;
}

.solution-body h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.solution-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.systems-section {
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.systems-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: end;
  padding: 0 5vw;
}

.systems-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.gallery-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
  padding: 0 5vw;
  overflow: hidden;
}

.gallery-arrow {
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: var(--red);
  border-color: var(--red);
  outline: none;
}

.systems-gallery {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 0;
  scrollbar-width: none;
  cursor: grab;
  contain: layout paint;
}

.systems-gallery::-webkit-scrollbar {
  display: none;
}

.systems-gallery.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery-card {
  display: grid;
  gap: 12px;
  align-content: start;
  align-self: start;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-align: left;
}

.gallery-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #fbfbfa;
  overflow: hidden;
}

.gallery-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-card .gallery-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 14px 14px;
  padding: 5px 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.menu-toggle:focus-visible,
.custom-file-control:focus-within {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.application-line {
  margin: 18px 5vw 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.mid-cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 5vw;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mid-cta-section h2 {
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 1.16;
}

.mid-cta-section p {
  margin-bottom: 0;
  color: var(--muted);
}

.mid-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.workflow-compact {
  background: var(--paper);
}

.workflow-compact .workflow-heading {
  display: block;
  max-width: none;
  margin-bottom: 30px;
  text-align: center;
}

.workflow-compact .workflow-heading .section-code {
  justify-content: center;
  margin-bottom: 14px;
}

.workflow-compact .workflow-heading h2 {
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.12;
  white-space: nowrap;
}

.process-grid article {
  min-height: 152px;
}

.process-grid span {
  margin-bottom: 22px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--deep);
  font-weight: 800;
}

.process-details {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.process-details summary {
  width: fit-content;
  padding: 14px 0 0;
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
}

.process-details ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.manufacturing-compact {
  display: block;
  color: var(--white);
  background: var(--ink);
}

.manufacturing-compact .production-copy {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.manufacturing-compact .production-copy h2 {
  margin-bottom: 0;
}

.manufacturing-compact .production-copy > p:not(.section-code) {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.manufacturing-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.manufacturing-hero-image {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.manufacturing-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.06);
}

.manufacturing-hero-image figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(17, 23, 27, 0.86);
  font-size: 11px;
  font-weight: 900;
}

.manufacturing-points {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.manufacturing-points article {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.055);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid transparent;
}

.manufacturing-points article:hover {
  border-left-color: var(--red);
}

.manufacturing-points span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.manufacturing-points h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 25px;
}

.manufacturing-points p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  line-height: 1.7;
}

.capability-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.capability-cards article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.capability-cards figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.capability-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.capability-cards figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(17, 23, 27, 0.82);
  font-size: 11px;
  font-weight: 900;
}

.capability-cards h3,
.capability-cards p {
  margin-left: 18px;
  margin-right: 18px;
}

.capability-cards h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 22px;
}

.capability-cards p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.proof-section {
  display: block;
  background: #f7f7f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-copy {
  max-width: 1180px;
}

.proof-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.08;
}

.proof-copy > p {
  max-width: 760px;
  color: var(--muted);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 26px 0 22px;
  border-top: 3px solid var(--red);
}

.proof-points span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.proof-actions .secondary-button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.mini-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.mini-timeline span:not(:last-child)::after {
  content: "→";
  margin-left: 10px;
  color: var(--red);
}

.proof-visual {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.proof-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04) brightness(0.88);
}

.proof-visual figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(17, 23, 27, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.refined-contact {
  padding-top: 80px;
  padding-bottom: 80px;
}

.whatsapp-compact {
  display: inline-flex;
  grid-template-columns: none;
  gap: 12px;
  width: fit-content;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.whatsapp-compact .whatsapp-mark {
  width: 32px;
  height: 32px;
  color: var(--white);
  background: #128c4a;
}

.whatsapp-compact strong {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-note {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.file-field small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.native-file-input {
  position: fixed;
  top: 0;
  left: -9999px;
  width: 1px;
  max-width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.custom-file-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-width: 126px;
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.file-name {
  min-width: 0;
  padding: 0 14px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.has-error input,
.has-error textarea,
.has-error select,
.has-error .custom-file-control {
  border-color: var(--red);
}

.field-error {
  display: block;
  margin-top: 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--red);
}

.enquiry-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.mould-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 23, 27, 0.82);
}

.mould-lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  position: relative;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--white);
  border: 1px solid var(--line);
}

.lightbox-panel img {
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #fbfbfa;
}

.lightbox-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
}

.lightbox-copy span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lightbox-copy h3 {
  margin-bottom: 4px;
  font-size: 32px;
  line-height: 1.08;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(17, 23, 27, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: calc(34% + 12px);
}

.lightbox-nav:hover {
  color: var(--red);
  background: var(--white);
}

/* Stage 5 proportion and spacing pass */
.refined-header,
.mid-cta-section,
.site-footer {
  padding-left: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  padding-right: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
}

.refined-header nav a.is-active {
  color: var(--ink);
  border-bottom-color: rgba(169, 31, 37, 0.65);
}

.solution-section,
.systems-section,
.workflow-compact,
.manufacturing-compact,
.proof-section,
.refined-contact {
  padding: var(--section-y) max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
}

.systems-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.workflow-compact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.manufacturing-compact {
  padding-top: 62px;
  padding-bottom: 62px;
}

.proof-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.refined-contact {
  padding-top: 68px;
  padding-bottom: 68px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: start;
  border-top-width: 2px;
}

.products-heading,
.solution-grid,
.systems-heading,
.gallery-shell,
.workflow-compact > .workflow-heading,
.workflow-compact > .workflow-grid,
.workflow-compact > .process-details,
.manufacturing-compact > .production-copy,
.manufacturing-compact > .manufacturing-layout,
.proof-copy {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.systems-heading,
.gallery-shell {
  padding-left: 0;
  padding-right: 0;
}

.products-heading h2,
.systems-heading h2,
.manufacturing-compact .production-copy h2,
.proof-copy h2,
.refined-contact h2 {
  font-size: 44px;
  line-height: 1.1;
}

.solution-grid {
  gap: 20px;
}

.solution-card {
  border-color: #dde1e3;
}

.solution-card figure {
  aspect-ratio: 16 / 10;
}

.solution-body {
  min-height: 166px;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  padding: 18px 20px 20px;
}

.solution-body h3 {
  font-size: 24px;
}

.solution-body .product-tags {
  min-height: 50px;
  align-content: start;
}

.solution-body .product-link {
  align-self: end;
}

.systems-heading {
  margin-bottom: 28px;
}

.gallery-shell {
  gap: 16px;
}

.gallery-card {
  gap: 10px;
  border-color: #dde1e3;
}

.gallery-card .gallery-label {
  min-height: 25px;
  align-items: center;
  margin: 0 14px 13px;
}

.workflow-compact .workflow-heading {
  margin-bottom: 24px;
}

.workflow-compact .workflow-heading h2 {
  font-size: 42px;
}

.process-grid article {
  min-height: 122px;
  padding: 18px 20px;
}

.process-grid span {
  margin-bottom: 16px;
  font-size: 14px;
}

.process-grid h3 {
  font-size: 22px;
}

.process-details {
  margin-top: 14px;
}

.process-details summary {
  padding-top: 12px;
  font-size: 15px;
}

.manufacturing-compact .production-copy {
  display: block;
  margin-bottom: 18px;
}

.manufacturing-compact .production-copy .section-code {
  margin-bottom: 12px;
}

.manufacturing-compact .production-copy h2 {
  max-width: 860px;
  margin-bottom: 10px;
}

.manufacturing-compact .production-copy > p:not(.section-code) {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 16px;
}

.manufacturing-layout {
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  gap: 20px;
  align-items: stretch;
}

.manufacturing-hero-image {
  height: clamp(480px, 30vw, 500px);
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.manufacturing-hero-image img {
  height: 100%;
  min-height: 0;
  object-position: center 52%;
}

.manufacturing-points {
  height: clamp(480px, 30vw, 500px);
  display: flex;
  flex-direction: column;
  border-top-color: rgba(255, 255, 255, 0.22);
}

.manufacturing-points article {
  flex: 1;
  align-content: center;
  gap: 6px;
  padding: 18px 24px;
  border-right-color: rgba(255, 255, 255, 0.16);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.manufacturing-points span {
  font-size: 14px;
}

.manufacturing-points h3 {
  font-size: 26px;
}

.manufacturing-points p {
  font-size: 16px;
  line-height: 1.5;
}

.proof-copy {
  text-align: center;
}

.proof-copy .section-code {
  justify-content: center;
  margin-bottom: 12px;
}

.proof-copy h2 {
  max-width: none;
  margin-bottom: 10px;
}

.proof-copy > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: 16px;
}

.proof-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 16px;
  border-top-width: 2px;
}

.proof-points article {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 18px;
  text-align: left;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-points strong,
.proof-points span {
  display: block;
}

.proof-points strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
}

.proof-points span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.proof-actions {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.company-profile-link {
  margin-top: 0;
}

.contact-intro {
  gap: 15px;
  min-height: auto;
  padding: 26px;
}

.contact-intro > p {
  font-size: 16px;
  line-height: 1.55;
}

.whatsapp-compact {
  padding: 10px 14px;
}

.contact-detail-grid {
  margin-top: 0;
}

.contact-detail-grid article {
  padding: 14px 16px;
}

.contact-detail-grid span {
  margin-bottom: 6px;
}

.contact-note {
  margin-bottom: 0;
}

.enquiry-form {
  align-self: start;
  gap: 14px;
  padding: 30px;
}

.form-heading {
  padding-bottom: 14px;
}

.form-heading strong {
  font-size: 24px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  min-height: 48px;
}

.full-field textarea {
  min-height: 98px;
}

.file-field small {
  font-size: 13px;
  line-height: 1.45;
}

.form-footer {
  align-items: center;
  margin-top: 0;
}

/* Phase 6 layout refinement */
.scale-strip {
  border-top: 0;
}

.scale-strip article {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 22px;
  text-align: center;
}

.scale-strip strong {
  width: 100%;
  margin-bottom: 7px;
  font-size: 28px;
  line-height: 1.12;
}

.scale-strip span {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.38;
}

.systems-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.systems-heading {
  margin-bottom: 24px;
}

.gallery-shell {
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 10px;
}

.gallery-arrow {
  width: 36px;
  height: 36px;
  font-size: 19px;
}

.systems-gallery {
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
}

.workflow-compact {
  padding-top: 64px;
  padding-bottom: 64px;
}

.workflow-compact .workflow-heading {
  margin-bottom: 20px;
}

.process-grid article {
  min-height: 112px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.process-details summary {
  font-size: 15px;
}

.manufacturing-compact {
  padding-top: 76px;
  padding-bottom: 76px;
}

.manufacturing-compact .production-copy {
  max-width: var(--content-max);
  display: block;
  margin-bottom: 28px;
}

.manufacturing-compact .production-copy h2 {
  max-width: 840px;
  margin-bottom: 10px;
}

.manufacturing-compact .production-copy > p:not(.section-code) {
  max-width: 780px;
  margin-bottom: 0;
}

.capability-grid {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #20272c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.88) contrast(1.05);
}

.capability-media figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(17, 23, 27, 0.86);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-media-text {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
}

.capability-media-text::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.capability-media-text span {
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(72px, 8vw, 112px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
}

.capability-media-text strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-content {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 166px;
  padding: 20px 22px 22px;
}

.capability-number {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.capability-content h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 27px;
  line-height: 1.12;
}

.capability-content ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
  padding: 70px max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-copy,
.mini-timeline {
  max-width: var(--content-max);
}

.about-copy h2 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.1;
}

.about-copy > p:not(.section-code) {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.about-actions {
  margin-top: 20px;
}

.mini-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}

.mini-timeline article {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-timeline article:last-child {
  border-top: 3px solid var(--red);
}

.mini-timeline strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.mini-timeline span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
}

.refined-contact {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-intro {
  gap: 13px;
  padding: 24px;
}

.contact-detail-grid article {
  padding: 12px 15px;
}

.full-field textarea {
  min-height: 88px;
}

.enquiry-form {
  padding: 28px;
}

.site-footer {
  align-items: start;
}

.site-footer p {
  grid-column: 1 / -1;
  width: 100%;
}

.site-footer p span {
  display: inline;
}

@media (max-width: 1100px) {
  .scale-strip,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .systems-gallery {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

}

@media (max-width: 900px) {
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .refined-header {
    grid-template-columns: auto auto 1fr;
    gap: 14px;
    padding: 10px 22px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .refined-header nav {
    position: fixed;
    inset: 88px 0 auto;
    z-index: 29;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px 22px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .refined-header nav {
    display: flex;
  }

  .header-contact {
    justify-self: end;
  }

  .systems-heading,
  .manufacturing-compact .production-copy,
  .mid-cta-section {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .capability-cards {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-shell {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
    padding: 0 22px;
  }

  .systems-gallery {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .workflow-compact .workflow-heading h2 {
    font-size: 30px;
    white-space: nowrap;
  }

  .manufacturing-layout,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 28px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .manufacturing-points {
    height: auto;
    flex-direction: row;
  }

  .manufacturing-points article {
    min-height: 178px;
  }

  .proof-points {
    grid-template-columns: 1fr 1fr;
  }

  .lightbox-panel {
    grid-template-columns: 1fr;
  }

  .lightbox-panel img {
    max-height: 56vh;
  }

  .lightbox-next {
    right: 12px;
  }
}

@media (max-width: 600px) {
  .solution-section,
  .systems-section,
  .workflow-compact,
  .manufacturing-compact,
  .proof-section,
  .refined-contact {
    padding: 62px 22px;
  }

  .systems-section {
    padding-left: 0;
    padding-right: 0;
  }

  .scale-strip {
    grid-template-columns: 1fr 1fr;
  }

  .scale-strip article {
    min-height: 112px;
    padding: 20px 12px;
  }

  .scale-strip strong {
    font-size: 22px;
  }

  .scale-strip span {
    max-width: 150px;
    font-size: 12px;
  }

  .systems-heading,
  .application-line {
    margin-left: 22px;
    margin-right: 22px;
    padding-left: 0;
    padding-right: 0;
  }

  .solution-grid,
  .capability-grid,
  .capability-cards,
  .process-grid,
  .proof-points {
    grid-template-columns: 1fr;
  }

  .capability-card:last-child {
    grid-column: auto;
  }

  .systems-gallery {
    grid-auto-columns: 100%;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
  }

  .gallery-arrow {
    display: none;
  }

  .refined-header nav {
    inset: 76px 0 auto;
  }

  .mid-cta-section {
    padding: 26px 22px;
  }

  .workflow-compact .workflow-heading h2 {
    font-size: 28px;
    white-space: normal;
  }

  .manufacturing-points {
    flex-direction: column;
  }

  .manufacturing-hero-image,
  .manufacturing-hero-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .manufacturing-points article {
    min-height: 0;
    padding: 20px 22px;
  }

  .mid-cta-section h2,
  .about-copy h2,
  .proof-copy h2,
  .lightbox-copy h3 {
    font-size: 30px;
  }

  .about-section {
    padding: 52px 22px;
  }

  .mini-timeline {
    grid-template-columns: 1fr;
  }

  .mini-timeline article {
    min-height: 96px;
    padding: 16px 18px;
  }

  .mini-timeline strong {
    font-size: 27px;
  }

  .capability-content {
    min-height: 142px;
    padding: 17px 18px 18px;
  }

  .capability-content h3 {
    font-size: 24px;
  }

  .capability-content ul {
    font-size: 15px;
    line-height: 1.45;
  }

  .manufacturing-compact .production-copy {
    margin-bottom: 22px;
  }

  .manufacturing-compact .production-copy h2 {
    font-size: 30px;
  }

  .manufacturing-compact .production-copy > p:not(.section-code) {
    font-size: 15px;
  }

  .proof-visual,
  .proof-visual img {
    min-height: 260px;
  }

  .form-row.two-fields {
    grid-template-columns: 1fr;
  }

  .custom-file-control {
    grid-template-columns: 1fr;
  }

  .file-button {
    min-height: 42px;
  }

  .lightbox-panel {
    max-height: calc(100vh - 48px);
    overflow: auto;
  }

  .lightbox-nav {
    top: 42%;
  }
}

/* Phase 7 final homepage refinement */
.refined-header nav {
  gap: 22px;
}

.refined-hero {
  min-height: min(760px, calc(100vh - 88px));
}

.refined-hero h1 span {
  display: block;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 23, 27, 0.88) 0%, rgba(17, 23, 27, 0.66) 42%, rgba(17, 23, 27, 0.22) 100%),
    linear-gradient(0deg, rgba(17, 23, 27, 0.42), rgba(17, 23, 27, 0.08));
}

.scale-strip article {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.scale-strip strong {
  width: auto;
  max-width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  min-height: 34px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  white-space: nowrap;
}

.scale-strip strong .scale-number {
  display: inline;
  flex: 0 0 auto;
  max-width: none;
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.scale-strip span:not(.scale-number) {
  display: block;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
}

.solution-card figure,
.gallery-media {
  aspect-ratio: 4 / 3;
  background: #f8f9f9;
}

.solution-card figure {
  aspect-ratio: 4 / 3;
}

.solution-card {
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover,
.solution-card:focus-within,
.solution-card:focus-visible {
  border-color: rgba(169, 31, 37, 0.45);
  box-shadow: 0 12px 24px rgba(17, 23, 27, 0.06);
  transform: translateY(-2px);
}

.solution-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.solution-body {
  grid-template-rows: auto auto auto 1fr;
}

.solution-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.systems-heading h2 {
  max-width: 760px;
}

.workflow-compact {
  color: var(--white);
  background: var(--ink);
  padding-top: 86px;
  padding-bottom: 86px;
}

.workflow-compact > .workflow-heading,
.workflow-compact > .workflow-grid,
.workflow-compact > .process-details {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.workflow-compact .workflow-heading {
  margin-bottom: 30px;
  text-align: left;
}

.workflow-compact .workflow-heading .section-code {
  justify-content: flex-start;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.workflow-compact .workflow-heading h2 {
  max-width: 900px;
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(42px, 4vw, 52px);
  line-height: 1.1;
  white-space: normal;
}

.workflow-compact .workflow-heading > p:not(.section-code) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.process-grid article {
  min-height: 196px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px 24px 26px;
  color: var(--white);
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-grid span {
  margin-bottom: 0;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 26px;
  line-height: 1.12;
}

.process-grid ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
}

.process-details {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-details summary {
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 13px 0 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.process-details summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.full-process-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
  animation: processReveal 240ms ease;
}

.full-process-grid li {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 16px;
  background: #1d2327;
}

.full-process-grid strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.full-process-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.42;
}

@keyframes processReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  align-items: start;
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-copy h2 {
  max-width: 520px;
}

.refined-contact {
  border-top: 2px solid var(--red);
}

.site-footer {
  min-height: auto;
}

.site-footer p {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .workflow-compact .workflow-heading h2 {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .refined-hero {
    min-height: 720px;
  }

  .scale-strip strong {
    display: block;
    min-height: 0;
    font-size: 21px;
  }

  .scale-strip span:not(.scale-number) {
    font-size: 12px;
  }

  .workflow-compact {
    padding: 56px 22px;
  }

  .workflow-compact .workflow-heading h2 {
    font-size: 30px;
  }

  .workflow-compact .workflow-heading > p:not(.section-code) {
    font-size: 15px;
  }

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

  .process-grid article {
    min-height: 0;
    padding: 20px 18px;
  }

  .full-process-grid li {
    min-height: 0;
  }

  .about-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

/* Stage 8 round 2: final source and layout stabilisation. */
main {
  padding-top: 88px;
}

.refined-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
}

.refined-header nav {
  min-width: 0;
  gap: clamp(14px, 1.5vw, 22px);
}

.refined-hero {
  min-height: clamp(560px, calc(100vh - 88px), 620px);
}

.scale-strip article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding-inline: clamp(14px, 1.8vw, 24px);
  text-align: center;
}

.scale-strip strong {
  display: block;
  max-width: 100%;
  min-height: 0;
  margin: 0 0 6px;
  font-size: clamp(22px, 1.75vw, 27px);
  line-height: 1.12;
  white-space: normal;
}

.scale-strip strong .scale-number {
  display: inline;
  margin: 0;
}

.scale-strip span:not(.scale-number) {
  max-width: 280px;
  margin-inline: auto;
  white-space: normal;
}

.solution-grid {
  gap: clamp(22px, 2.2vw, 32px);
}

.solution-card {
  grid-template-rows: auto 1fr;
  border-color: rgba(17, 23, 27, 0.14);
}

.solution-card figure,
.gallery-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f7f8fa;
}

.solution-card figure img,
.gallery-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.solution-body {
  min-height: 220px;
}

.systems-gallery {
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
}

.gallery-card {
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 1180px) {
  .refined-header {
    gap: 18px;
    padding-inline: 28px;
  }

  .refined-brand span {
    max-width: 110px;
  }

  .refined-header nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-contact {
    padding-inline: 16px;
  }
}

@media (max-width: 980px) {
  main {
    padding-top: 88px;
  }

  .refined-header nav {
    position: fixed;
    inset: 88px 0 auto;
    z-index: 1001;
  }

  .systems-gallery {
    grid-auto-columns: calc((100% - 22px) / 2);
  }
}

@media (max-width: 600px) {
  main {
    padding-top: 76px;
  }

  .refined-hero {
    min-height: 620px;
  }

  .scale-strip strong {
    font-size: 19px;
    white-space: normal;
  }

  .scale-strip span:not(.scale-number) {
    max-width: 160px;
    font-size: 12px;
  }

  .systems-gallery {
    grid-auto-columns: 100%;
  }

  .solution-body {
    min-height: 0;
  }

  .refined-header nav {
    inset: 76px 0 auto;
  }

  .products-heading h2,
  .systems-heading h2,
  .workflow-heading h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.12;
  }

  .products-heading,
  .systems-heading {
    gap: 22px;
  }

  .refined-contact {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    overflow: hidden;
  }

  .contact-intro,
  .enquiry-form {
    width: 100%;
    min-width: 0;
    padding-inline: 22px;
  }

  .contact-detail-grid,
  .form-row,
  .form-footer {
    min-width: 0;
  }
}

/* Stage 9 layout polish: tighter B2B proportions, unified width and address layout. */
:root {
  --container-width: 1200px;
  --content-max: var(--container-width);
  --page-gutter: 24px;
  --page-pad: var(--page-gutter);
  --section-space-desktop: 80px;
  --section-space-tablet: 64px;
  --section-space-mobile: 48px;
  --grid-gap-desktop: 20px;
  --grid-gap-mobile: 16px;
  --section-y: var(--section-space-desktop);
}

html {
  scroll-padding-top: 104px;
}

#mould-solutions,
#mould-systems,
#development,
#about,
#contact {
  scroll-margin-top: 104px;
}

.refined-header {
  min-height: 88px;
  padding-left: max(var(--page-gutter), calc((100vw - var(--container-width)) / 2));
  padding-right: max(var(--page-gutter), calc((100vw - var(--container-width)) / 2));
}

.refined-hero {
  height: clamp(540px, calc(100vh - 88px), 620px);
  min-height: 540px;
}

.refined-hero-content {
  width: min(620px, calc(100% - 2 * var(--page-gutter)));
  padding-top: 46px;
  padding-bottom: 54px;
}

.hero-lead {
  max-width: 610px;
}

.hero-brand-lockup {
  margin-bottom: 24px;
}

.refined-hero h1 {
  margin-bottom: 20px;
}

.material-tags {
  margin-bottom: 24px;
}

.scale-strip {
  width: min(var(--container-width), calc(100% - 2 * var(--page-gutter)));
  margin-inline: auto;
}

.scale-strip article {
  min-height: 0;
  padding: 24px 20px;
}

.scale-strip strong {
  min-height: 0;
  margin-bottom: 6px;
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.15;
}

.scale-strip span:not(.scale-number) {
  font-size: 13px;
  line-height: 1.4;
}

.solution-section,
.systems-section {
  padding: var(--section-space-desktop) max(var(--page-gutter), calc((100vw - var(--container-width)) / 2));
}

.products-heading,
.systems-heading {
  max-width: var(--container-width);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}

.products-heading h2,
.systems-heading h2 {
  max-width: 780px;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
}

.products-heading > p,
.systems-heading > p {
  max-width: 390px;
  margin: 0;
  justify-self: end;
  font-size: 15px;
  line-height: 1.55;
}

.solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap-desktop);
}

.solution-card {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  border: 1px solid rgba(17, 23, 27, 0.13);
  box-shadow: none;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.solution-card:hover,
.solution-card:focus-within,
.solution-card:focus-visible {
  border-color: rgba(169, 31, 37, 0.44);
  box-shadow: 0 8px 18px rgba(17, 23, 27, 0.055);
  transform: translateY(-2px);
}

.solution-card figure {
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: #f8fafc;
}

.solution-card figure img {
  object-fit: contain;
}

.solution-body {
  display: flex;
  min-height: 190px;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0;
  padding: 18px 18px 16px;
}

.solution-body h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 20px;
  line-height: 1.2;
}

.solution-body .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.solution-body .tag-list span {
  padding: 4px 7px;
  font-size: 10px;
  line-height: 1.1;
}

.solution-body p {
  display: -webkit-box;
  margin: 0 0 16px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #53616a;
  font-size: 13px;
  line-height: 1.55;
}

.solution-body .product-link {
  margin-top: auto;
  font-size: 13px;
}

.gallery-shell {
  max-width: var(--container-width);
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 12px;
  padding-inline: 0;
}

.gallery-arrow {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
}

.systems-gallery {
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
}

.gallery-card {
  border-color: rgba(17, 23, 27, 0.14);
}

.gallery-media {
  aspect-ratio: 4 / 3;
  background: #f8fafc;
}

.gallery-media img {
  object-fit: contain;
}

.gallery-card .gallery-label {
  min-height: 24px;
  margin: 0 12px 12px;
  padding: 5px 8px;
  font-size: 10px;
  line-height: 1.1;
}

.workflow-compact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.workflow-compact .workflow-heading {
  margin-bottom: 26px;
}

.workflow-compact .workflow-heading h2 {
  font-size: clamp(34px, 3.2vw, 46px);
}

.process-grid article {
  min-height: 168px;
  padding: 24px 22px;
}

.process-grid h3 {
  font-size: 23px;
}

.process-grid ul {
  font-size: 15px;
}

.about-section {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  padding: 70px max(var(--page-gutter), calc((100vw - var(--container-width)) / 2));
}

.about-copy p:not(.section-code) {
  max-width: 430px;
}

.mini-timeline article {
  min-height: 132px;
  padding: 22px 24px;
}

.refined-contact {
  grid-template-columns: minmax(340px, 0.37fr) minmax(0, 0.63fr);
  gap: 20px;
  padding: 72px max(var(--page-gutter), calc((100vw - var(--container-width)) / 2));
}

.contact-intro {
  gap: 16px;
  padding: 28px;
}

.contact-intro h2 {
  font-size: clamp(34px, 3vw, 42px);
}

.contact-intro > p {
  font-size: 16px;
  line-height: 1.55;
}

.contact-detail-grid article {
  padding: 15px 17px;
}

.contact-detail-grid a,
.contact-detail-grid strong {
  font-size: 14px;
  line-height: 1.52;
}

.contact-note {
  margin-top: 2px;
}

.enquiry-form {
  gap: 13px;
  padding: 30px;
}

.form-heading {
  padding-bottom: 16px;
}

.form-heading strong {
  font-size: 23px;
}

.form-row {
  gap: 14px;
}

.enquiry-form label {
  gap: 7px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  min-height: 46px;
}

.full-field textarea {
  min-height: 108px;
}

.custom-file-control {
  min-height: 46px;
  margin-top: 6px;
}

.file-button {
  min-height: 44px;
}

.form-footer {
  gap: 16px;
  align-items: center;
}

.form-footer button {
  min-height: 48px;
}

.site-footer {
  padding: 28px max(var(--page-gutter), calc((100vw - var(--container-width)) / 2));
}

.site-footer span {
  line-height: 1.5;
}

@media (max-width: 1179px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .solution-body {
    min-height: 178px;
  }

  .systems-gallery {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px;
  }
}

@media (max-width: 1050px) {
  .refined-contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 20px;
    --section-y: var(--section-space-tablet);
  }

  .refined-header {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .products-heading,
  .systems-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .products-heading > p,
  .systems-heading > p {
    max-width: 620px;
    justify-self: start;
  }

  .workflow-compact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 18px;
    --section-y: var(--section-space-mobile);
  }

  html {
    scroll-padding-top: 92px;
  }

  #mould-solutions,
  #mould-systems,
  #development,
  #about,
  #contact {
    scroll-margin-top: 92px;
  }

  .refined-hero {
    height: auto;
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 36px;
  }

  .refined-hero-content {
    width: calc(100% - 2 * var(--page-gutter));
    margin-left: var(--page-gutter);
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-brand-lockup {
    margin-bottom: 16px;
  }

  .refined-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(38px, 10.6vw, 46px);
    line-height: 0.99;
  }

  .hero-lead {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.48;
  }

  .material-tags {
    gap: 6px;
    margin-bottom: 18px;
  }

  .material-tags span {
    min-height: 30px;
    padding: 0 9px;
    font-size: 11px;
  }

  .section-code.light {
    margin-bottom: 14px;
  }

  .scale-strip {
    width: calc(100% - 2 * var(--page-gutter));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scale-strip article {
    min-height: 92px;
    padding: 18px 12px;
  }

  .scale-strip strong {
    white-space: normal;
    font-size: 20px;
  }

  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .solution-section,
  .systems-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: var(--grid-gap-mobile);
  }

  .solution-body {
    min-height: 0;
    padding: 18px;
  }

  .solution-body h3 {
    min-height: 0;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .gallery-arrow {
    display: none;
  }

  .systems-gallery {
    grid-auto-columns: 100%;
    gap: var(--grid-gap-mobile);
  }

  .workflow-compact {
    padding-top: 56px;
    padding-bottom: 56px;
  }

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

  .process-grid article {
    min-height: 0;
    padding: 22px 20px;
  }

  .about-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .mini-timeline {
    grid-template-columns: 1fr;
  }

  .mini-timeline article {
    min-height: 0;
  }

  .refined-contact {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact-intro,
  .enquiry-form {
    padding: 22px;
  }

  .form-row.two-fields {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 26px var(--page-gutter);
  }
}

@media (max-width: 390px) {
  .scale-strip {
    grid-template-columns: 1fr;
  }
}

/* Stage 9 Round 2: full-width industrial visual refinement. */
:root {
  --container-wide: 1480px;
  --container-main: 1400px;
  --container-width: var(--container-wide);
  --content-max: var(--container-wide);
  --gutter-desktop: 48px;
  --gutter-laptop: 32px;
  --gutter-mobile: 18px;
  --page-gutter: var(--gutter-desktop);
  --page-pad: var(--gutter-desktop);
  --section-space-xl: 112px;
  --section-space-lg: 96px;
  --section-space-md: 72px;
  --section-space-mobile: 60px;
  --grid-gap-lg: 28px;
  --grid-gap-md: 22px;
  --grid-gap-sm: 16px;
  --brand-red: #b51e23;
  --red: var(--brand-red);
  --text-dark: #171a1d;
  --text-muted: #66717a;
  --border-light: #d9dde0;
  --surface-light: #f5f6f5;
  --surface-dark: #171b1e;
  --ink: var(--text-dark);
  --muted: var(--text-muted);
  --line: var(--border-light);
  --paper: var(--surface-light);
  --charcoal: var(--surface-dark);
}

html,
body {
  overflow-x: visible;
}

html {
  scroll-padding-top: 96px;
}

body {
  color: var(--text-dark);
}

#mould-solutions,
#mould-systems,
#development,
#about,
#contact {
  scroll-margin-top: 96px;
}

.refined-header {
  min-height: 80px;
  gap: 34px;
  padding: 8px max(var(--gutter-desktop), calc((100vw - var(--container-wide)) / 2));
  border-bottom-color: rgba(17, 23, 27, 0.1);
  box-shadow: none;
}

.refined-brand img {
  width: 58px;
  height: 58px;
}

.refined-brand span {
  max-width: 150px;
  font-size: 14px;
}

.refined-header nav {
  gap: 30px;
  color: rgba(23, 26, 29, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.refined-header nav a,
.refined-header nav a.is-active {
  border-bottom-width: 2px;
}

.header-contact,
.primary-button,
.secondary-button,
.contact-button {
  min-height: 48px;
  padding-inline: 24px;
  font-size: 14px;
}

.refined-hero {
  height: clamp(650px, calc(100vh - 80px), 720px);
  min-height: 650px;
}

.refined-hero::before {
  background-position: center 52%;
}

.hero-coordinate {
  top: 32px;
  right: max(var(--gutter-desktop), calc((100vw - var(--container-wide)) / 2));
}

.refined-hero-content {
  width: min(680px, calc(100% - var(--gutter-desktop) * 2));
  margin-left: max(var(--gutter-desktop), calc((100vw - var(--container-wide)) / 2));
  padding-top: 56px;
  padding-bottom: 64px;
}

.hero-brand-lockup {
  margin-bottom: 28px;
}

.refined-hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(54px, 4.4vw, 76px);
  line-height: 1;
  font-weight: 850;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.65;
}

.material-tags {
  gap: 8px;
  margin-bottom: 28px;
}

.material-tags span {
  min-height: 34px;
}

.hero-buttons {
  gap: 14px;
}

.scale-strip {
  width: 100%;
  margin-inline: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--brand-red);
  border-bottom: 1px solid var(--border-light);
}

.scale-strip::before {
  content: none;
}

.scale-strip article {
  min-height: 0;
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.scale-strip article:first-child {
  border-left: 0;
}

.scale-strip strong {
  min-height: 0;
  margin-bottom: 8px;
  font-size: clamp(27px, 1.8vw, 31px);
  line-height: 1.08;
  text-wrap: balance;
}

.scale-strip span:not(.scale-number) {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.solution-section,
.systems-section {
  padding: 106px max(var(--gutter-desktop), calc((100vw - var(--container-wide)) / 2));
}

.products-heading,
.systems-heading {
  max-width: var(--container-wide);
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.products-heading h2,
.systems-heading h2,
.workflow-compact .workflow-heading h2,
.about-copy h2,
.refined-contact h2 {
  font-size: clamp(44px, 3.2vw, 58px);
  line-height: 1.07;
  font-weight: 820;
}

.products-heading h2 {
  max-width: 820px;
}

.systems-heading h2 {
  max-width: 760px;
}

.products-heading > p,
.systems-heading > p {
  max-width: 500px;
  justify-self: end;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.62;
}

.solution-grid {
  max-width: var(--container-wide);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.solution-card {
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: none;
  transition: transform 210ms ease-out, border-color 210ms ease-out, box-shadow 210ms ease-out;
}

.solution-card:hover,
.solution-card:focus-within,
.solution-card:focus-visible {
  border-color: rgba(181, 30, 35, 0.46);
  box-shadow: 0 12px 28px rgba(20, 30, 40, 0.06);
  transform: translateY(-2px);
}

.solution-card figure {
  aspect-ratio: 4 / 3;
  background: #f8fafc;
}

.solution-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-body {
  min-height: 250px;
  padding: 24px 22px 22px;
}

.solution-body h3 {
  min-height: 56px;
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.18;
}

.solution-body .product-tags {
  gap: 6px;
  margin: 0 0 18px;
}

.solution-body .product-tags span {
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.1;
}

.solution-body p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.58;
  -webkit-line-clamp: 3;
}

.solution-body .product-link {
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 800;
}

.gallery-shell {
  position: relative;
  display: block;
  max-width: min(1400px, var(--container-wide));
  padding-inline: 0;
  overflow: visible;
}

.systems-gallery {
  grid-auto-columns: calc((100% - 52px) / 3);
  gap: 26px;
  overflow-x: auto;
}

.gallery-card {
  border-color: var(--border-light);
}

.gallery-media {
  aspect-ratio: 4 / 3;
  background: #f8fafc;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-card .gallery-label {
  min-height: 30px;
  margin: 0 14px 14px;
  padding: 7px 11px;
  font-size: 11.5px;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.96);
}

.gallery-arrow-prev {
  left: -62px;
}

.gallery-arrow-next {
  right: -62px;
}

.mid-cta-section {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px max(var(--gutter-desktop), calc((100vw - var(--container-wide)) / 2));
  background: #f2f3f2;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.mid-cta-section h2 {
  margin-bottom: 6px;
  font-size: clamp(29px, 2.1vw, 32px);
  line-height: 1.18;
}

.mid-cta-section p {
  font-size: 15px;
  line-height: 1.55;
}

.mid-cta-actions {
  gap: 18px;
}

.mid-cta-actions .primary-button {
  min-height: 50px;
  padding-inline: 26px;
}

.workflow-compact {
  padding: 108px max(var(--gutter-desktop), calc((100vw - var(--container-wide)) / 2)) 104px;
  background: var(--surface-dark);
}

.workflow-compact > .workflow-heading,
.workflow-compact > .workflow-grid,
.workflow-compact > .process-details {
  max-width: var(--container-wide);
}

.workflow-compact .workflow-heading {
  margin-bottom: 50px;
}

.workflow-compact .workflow-heading h2 {
  max-width: 920px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(48px, 3.5vw, 62px);
  line-height: 1.05;
}

.workflow-compact .workflow-heading > p:not(.section-code) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

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

.process-grid article {
  min-height: 230px;
  padding: 30px 30px 32px;
  border-color: rgba(255, 255, 255, 0.16);
}

.process-grid article + article {
  margin-left: -1px;
}

.process-grid span {
  margin-bottom: 24px;
  font-size: 14px;
}

.process-grid h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}

.process-grid ul {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.process-details {
  margin-top: 30px;
}

.process-details summary {
  font-size: 14.5px;
}

.about-section {
  grid-template-columns: minmax(430px, 0.82fr) minmax(700px, 1.18fr);
  gap: 80px;
  align-items: center;
  padding: 108px max(var(--gutter-desktop), calc((100vw - var(--container-wide)) / 2));
  background: #fff;
}

.about-copy h2 {
  max-width: 580px;
}

.about-copy p:not(.section-code) {
  max-width: 540px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.7;
}

.about-copy .primary-button {
  min-height: 50px;
  margin-top: 30px;
  padding-inline: 26px;
}

.mini-timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-timeline article {
  min-height: 160px;
  padding: 28px 30px;
  background: #f0f1ef;
  border-color: #d8dcde;
}

.mini-timeline strong {
  font-size: 34px;
  line-height: 1;
}

.mini-timeline span {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.refined-contact {
  grid-template-columns: minmax(420px, 0.38fr) minmax(760px, 0.62fr);
  gap: 24px;
  align-items: stretch;
  padding: 100px max(var(--gutter-desktop), calc((100vw - var(--container-wide)) / 2));
}

.contact-intro {
  gap: 20px;
  padding: 38px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.contact-intro h2 {
  font-size: clamp(42px, 3vw, 50px);
  line-height: 1.06;
}

.contact-intro > p {
  margin-top: 2px;
  font-size: 15px;
  line-height: 1.65;
}

.whatsapp-compact {
  min-height: 50px;
}

.contact-detail-grid {
  margin-top: 0;
}

.contact-detail-grid article {
  padding: 17px 16px;
}

.contact-detail-grid a,
.contact-detail-grid strong {
  font-size: 15px;
  line-height: 1.56;
}

.enquiry-form {
  gap: 17px;
  padding: 38px 40px;
}

.form-heading {
  padding-bottom: 22px;
}

.form-heading strong {
  font-size: 29px;
  line-height: 1.2;
}

.form-row {
  gap: 18px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  min-height: 52px;
  padding-inline: 15px;
  font-size: 15px;
}

.full-field textarea {
  min-height: 130px;
  padding-top: 14px;
}

.custom-file-control {
  min-height: 50px;
}

.file-button {
  min-height: 48px;
}

.form-footer button {
  min-height: 50px;
  padding-inline: 24px;
}

.site-footer {
  padding: 46px max(var(--gutter-desktop), calc((100vw - var(--container-wide)) / 2));
}

.site-footer strong {
  font-size: 14px;
}

.site-footer span,
.site-footer a,
.site-footer p {
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1600px) {
  .gallery-arrow-prev {
    left: 8px;
  }

  .gallery-arrow-next {
    right: 8px;
  }

  .systems-gallery {
    padding-inline: 0;
    scroll-padding-inline: 0;
    grid-auto-columns: calc((100% - 52px) / 3);
  }
}

@media (max-width: 1280px) {
  :root {
    --page-gutter: var(--gutter-laptop);
    --page-pad: var(--gutter-laptop);
  }

  .refined-header,
  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact,
  .mid-cta-section,
  .site-footer {
    padding-left: max(var(--gutter-laptop), calc((100vw - var(--container-wide)) / 2));
    padding-right: max(var(--gutter-laptop), calc((100vw - var(--container-wide)) / 2));
  }

  .refined-hero-content {
    margin-left: max(var(--gutter-laptop), calc((100vw - var(--container-wide)) / 2));
  }

  .hero-coordinate {
    right: var(--gutter-laptop);
  }

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

  .solution-body {
    min-height: 220px;
  }

}

@media (width >= 1280px) {
  .solution-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .products-heading,
  .systems-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .products-heading > p,
  .systems-heading > p {
    max-width: 680px;
    justify-self: start;
  }

  .systems-gallery {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

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

  .process-grid article + article {
    margin-left: 0;
  }

  .about-section,
  .refined-contact {
    grid-template-columns: 1fr;
  }
}

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

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

  .mid-cta-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: var(--gutter-mobile);
    --page-pad: var(--gutter-mobile);
  }

  html,
  body {
    overflow-x: visible;
  }

  html {
    scroll-padding-top: 90px;
  }

  #mould-solutions,
  #mould-systems,
  #development,
  #about,
  #contact {
    scroll-margin-top: 90px;
  }

  .refined-header,
  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact,
  .mid-cta-section,
  .site-footer {
    padding-left: var(--gutter-mobile);
    padding-right: var(--gutter-mobile);
  }

  .refined-hero {
    height: auto;
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 56px;
  }

  .refined-hero-content {
    width: calc(100% - var(--gutter-mobile) * 2);
    margin-left: var(--gutter-mobile);
    padding: 0;
  }

  .hero-coordinate {
    top: 20px;
    right: var(--gutter-mobile);
  }

  .refined-hero h1 {
    font-size: clamp(42px, 11vw, 48px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .scale-strip article {
    padding: 26px 16px;
  }

  .scale-strip strong {
    font-size: 24px;
  }

  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .products-heading,
  .systems-heading {
    margin-bottom: 34px;
  }

  .products-heading h2,
  .systems-heading h2,
  .workflow-compact .workflow-heading h2,
  .about-copy h2,
  .refined-contact h2 {
    font-size: clamp(34px, 9vw, 42px);
  }

  .solution-grid,
  .process-grid,
  .mini-timeline {
    grid-template-columns: 1fr;
  }

  .solution-body {
    min-height: 0;
  }

  .solution-body h3 {
    min-height: 0;
  }

  .gallery-shell {
    overflow: hidden;
  }

  .gallery-arrow {
    display: none;
  }

  .systems-gallery {
    grid-auto-columns: 100%;
    gap: var(--grid-gap-sm);
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .process-grid article {
    min-height: 0;
    padding: 26px 24px;
  }

  .mini-timeline article {
    min-height: 150px;
  }

  .contact-intro,
  .enquiry-form {
    padding: 26px;
  }

  .form-row.two-fields {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (max-width: 360px) {
  .scale-strip {
    grid-template-columns: 1fr;
  }

  .contact-intro,
  .enquiry-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Stage 9 Round 3: typography and product image rebalance. */
:root {
  --container-wide: 1440px;
  --container-main: 1360px;
  --gutter-desktop: 32px;
  --gutter-laptop: 28px;
  --gutter-tablet: 24px;
  --gutter-mobile: 18px;
  --container-width: var(--container-main);
  --content-max: var(--container-main);
  --section-space-xl: 96px;
  --section-space-lg: 92px;
  --section-space-md: 72px;
  --section-space-mobile: 56px;
}

.refined-header {
  min-height: 76px;
  padding-left: max(var(--gutter-desktop), calc((100% - var(--container-main)) / 2));
  padding-right: max(var(--gutter-desktop), calc((100% - var(--container-main)) / 2));
}

.refined-hero {
  height: clamp(620px, calc(100vh - 76px), 690px);
  min-height: 620px;
}

.refined-hero-content {
  width: min(760px, calc(100% - var(--gutter-desktop) * 2));
  max-width: 760px;
  margin-left: max(var(--gutter-desktop), calc((100% - var(--container-main)) / 2));
  padding-top: 46px;
  padding-bottom: 58px;
}

.refined-hero h1 {
  max-width: 760px;
  margin-bottom: 23px;
  font-size: clamp(52px, 4vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.refined-hero h1 span {
  display: block;
}

@media (min-width: 768px) {
  .refined-hero h1 span {
    white-space: nowrap;
  }
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 21px;
  font-size: 16px;
  line-height: 1.65;
}

.material-tags {
  margin-bottom: 23px;
}

.solution-section,
.systems-section,
.about-section {
  padding-top: 92px;
  padding-bottom: 94px;
}

.workflow-compact,
.refined-contact {
  padding-top: 94px;
  padding-bottom: 94px;
}

.solution-section,
.systems-section,
.workflow-compact,
.about-section,
.refined-contact,
.mid-cta-section,
.site-footer {
  padding-left: max(var(--gutter-desktop), calc((100% - var(--container-main)) / 2));
  padding-right: max(var(--gutter-desktop), calc((100% - var(--container-main)) / 2));
}

.products-heading,
.systems-heading,
.solution-grid,
.gallery-shell,
.workflow-compact > .workflow-heading,
.workflow-compact > .workflow-grid,
.workflow-compact > .process-details,
.site-footer {
  max-width: var(--container-main);
}

.products-heading {
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.6fr);
  gap: 70px;
  margin-bottom: 48px;
  align-items: end;
}

.systems-heading {
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  gap: 64px;
  margin-bottom: 48px;
  align-items: end;
}

.products-heading h2,
.systems-heading h2 {
  font-size: clamp(42px, 3vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 800;
}

.products-heading h2 {
  max-width: 780px;
}

.systems-heading h2 {
  max-width: 720px;
}

.products-heading > p,
.systems-heading > p {
  max-width: 430px;
  font-size: 15.5px;
  line-height: 1.65;
}

.solution-grid {
  gap: 14px;
}

@media (min-width: 1400px) {
  .solution-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

.solution-card figure {
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  background: #f5f6f7;
}

.solution-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.solution-body {
  min-height: 196px;
  padding: 18px;
}

.solution-body h3 {
  min-height: 48px;
  margin-bottom: 10px;
  font-size: clamp(19px, 1.15vw, 21px);
  line-height: 1.2;
}

.solution-body .product-tags {
  gap: 5px;
  margin-bottom: 14px;
}

.solution-body .product-tags span {
  padding: 4px 7px;
  font-size: 10px;
}

.solution-body p {
  margin-bottom: 14px;
  font-size: 13.6px;
  line-height: 1.55;
}

.solution-body .product-link {
  font-size: 13px;
}

.gallery-shell {
  max-width: var(--container-main);
}

.systems-gallery {
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
}

.gallery-card .gallery-label {
  min-height: 28px;
  margin: 0 12px 12px;
  padding: 6px 10px;
  font-size: 11px;
}

.gallery-arrow {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
}

.gallery-arrow-prev {
  left: 10px;
}

.gallery-arrow-next {
  right: 10px;
}

.workflow-compact .workflow-heading {
  margin-bottom: 40px;
}

.workflow-compact .workflow-heading h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(42px, 3.1vw, 52px);
  line-height: 1.06;
}

.workflow-compact .workflow-heading > p:not(.section-code) {
  font-size: 15.5px;
  line-height: 1.6;
}

.process-grid article {
  min-height: 210px;
  padding: 26px 24px 28px;
}

.process-grid span {
  margin-bottom: 20px;
}

.process-grid h3 {
  font-size: 21px;
}

.process-grid ul {
  font-size: 14px;
}

.about-section {
  grid-template-columns: minmax(420px, 0.78fr) minmax(700px, 1.22fr);
  gap: 72px;
}

.about-copy h2 {
  max-width: 520px;
  font-size: clamp(40px, 2.8vw, 48px);
  line-height: 1.08;
}

.about-copy p:not(.section-code) {
  max-width: 520px;
  font-size: 16px;
}

.mini-timeline article {
  min-height: 148px;
  padding: 26px;
}

.mini-timeline strong {
  font-size: 31px;
}

.mini-timeline span {
  font-size: 14px;
}

.refined-contact {
  grid-template-columns: minmax(390px, 0.36fr) minmax(760px, 0.64fr);
  gap: 24px;
}

.contact-intro h2 {
  max-width: 430px;
  font-size: clamp(36px, 2.8vw, 44px);
  line-height: 1.07;
}

.contact-intro > p {
  font-size: 15px;
}

.contact-detail-grid a,
.contact-detail-grid strong {
  font-size: 14px;
}

.form-heading strong {
  font-size: 27px;
}

@media (max-width: 1399px) {
  .products-heading,
  .systems-heading {
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
    gap: 46px;
  }

  .products-heading h2,
  .systems-heading h2 {
    font-size: clamp(40px, 3vw, 46px);
  }
}

@media (max-width: 1180px) {
  .products-heading,
  .systems-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 42px;
  }

  .products-heading > p,
  .systems-heading > p {
    max-width: 620px;
    justify-self: start;
  }

  .systems-gallery {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .about-section,
  .refined-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .refined-hero {
    padding-top: 74px;
    padding-bottom: 52px;
  }

  .refined-hero-content {
    width: calc(100% - var(--gutter-mobile) * 2);
  }

  .refined-hero h1 {
    font-size: clamp(40px, 10.5vw, 44px);
    line-height: 1.01;
  }

  .refined-hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    font-size: 15px;
  }

  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .products-heading h2,
  .systems-heading h2,
  .workflow-compact .workflow-heading h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: clamp(32px, 8.5vw, 38px);
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-body {
    padding: 18px;
  }

  .systems-gallery {
    grid-auto-columns: 100%;
  }

  .process-grid article {
    min-height: 0;
  }
}

/* Stage 9 Round 4: final visual polish and layout bug fix. */
html,
body {
  min-height: 100%;
}

body {
  background: #11181c;
}

main {
  background: var(--white);
}

.refined-contact,
.site-footer {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  box-sizing: border-box;
  background: #11181c;
}

.refined-contact {
  overflow: hidden;
  grid-template-columns: minmax(360px, 0.36fr) minmax(720px, 0.64fr);
  gap: 32px;
  align-items: stretch;
  padding-top: 86px;
  padding-bottom: 86px;
  border-top: 2px solid var(--red);
}

.contact-intro,
.enquiry-form {
  min-width: 0;
  height: 100%;
}

.site-footer {
  padding-top: 42px;
  padding-bottom: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer::before,
.site-footer::after,
.refined-contact::before,
.refined-contact::after {
  max-width: 100%;
}

.products-heading h2,
.systems-heading h2 {
  font-size: clamp(38px, 2.7vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.products-heading,
.systems-heading,
.solution-grid,
.gallery-shell {
  max-width: var(--container-wide);
}

.workflow-compact .workflow-heading h2 {
  font-size: clamp(40px, 2.8vw, 49px);
  line-height: 1.08;
}

.about-copy h2 {
  font-size: clamp(38px, 2.6vw, 46px);
  line-height: 1.08;
}

.contact-intro h2 {
  font-size: clamp(34px, 2.5vw, 42px);
  line-height: 1.08;
}

.solution-section {
  padding-top: 84px;
  padding-bottom: 88px;
  padding-left: max(var(--gutter-desktop), calc((100% - var(--container-wide)) / 2));
  padding-right: max(var(--gutter-desktop), calc((100% - var(--container-wide)) / 2));
}

.products-heading {
  margin-bottom: 43px;
}

.solution-grid {
  gap: 12px;
}

.solution-card {
  grid-template-rows: auto minmax(0, 0.76fr);
}

.solution-card figure {
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
}

.solution-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.solution-body {
  min-height: 176px;
  padding: 16px 18px 17px;
  gap: 8px;
}

.solution-body h3 {
  min-height: 42px;
  margin-bottom: 6px;
  font-size: clamp(18px, 1.05vw, 20px);
  line-height: 1.18;
}

.solution-body .product-tags {
  margin-bottom: 10px;
  gap: 5px;
}

.solution-body .product-tags span {
  padding: 4px 7px;
  font-size: 10px;
}

.solution-body p {
  margin-bottom: 10px;
  font-size: 13.5px;
  line-height: 1.5;
}

.solution-body .product-link {
  font-size: 13px;
}

.systems-section {
  padding-top: 86px;
  padding-bottom: 92px;
  padding-left: max(var(--gutter-desktop), calc((100% - var(--container-wide)) / 2));
  padding-right: max(var(--gutter-desktop), calc((100% - var(--container-wide)) / 2));
}

.systems-heading {
  margin-bottom: 43px;
}

.gallery-shell {
  position: relative;
  overflow: visible;
}

.systems-gallery {
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
}

.gallery-media {
  aspect-ratio: 4 / 3;
}

.gallery-card .gallery-label {
  min-height: 28px;
  margin: 0 12px 11px;
  padding: 6px 10px;
  font-size: 11px;
}

.gallery-arrow {
  position: absolute;
  top: calc(50% - 18px);
  z-index: 4;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(17, 24, 31, 0.08);
}

.gallery-arrow-prev {
  left: -58px;
}

.gallery-arrow-next {
  right: -58px;
}

.workflow-compact {
  padding-top: 84px;
  padding-bottom: 84px;
}

.workflow-compact .workflow-heading {
  margin-bottom: 38px;
}

.workflow-compact .workflow-heading > p:not(.section-code) {
  font-size: 15px;
}

.process-grid article {
  min-height: 180px;
  padding: 22px 22px;
}

.process-grid span {
  margin-bottom: 13px;
}

.process-grid h3 {
  font-size: 19px;
  line-height: 1.2;
}

.process-grid ul,
.process-grid p {
  font-size: 13.6px;
  line-height: 1.48;
}

.about-section {
  grid-template-columns: minmax(400px, 0.9fr) minmax(680px, 1.1fr);
  gap: 72px;
  padding-top: 86px;
  padding-bottom: 90px;
}

.mini-timeline article {
  min-height: 154px;
  padding: 28px 30px;
}

.mini-timeline strong {
  font-size: 32px;
  line-height: 1;
}

.mini-timeline span {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1500px) {
  .gallery-shell {
    padding-inline: 52px;
  }

  .gallery-arrow-prev {
    left: 0;
  }

  .gallery-arrow-next {
    right: 0;
  }
}

@media (max-width: 1399px) {
  .products-heading h2,
  .systems-heading h2 {
    font-size: clamp(38px, 2.9vw, 44px);
  }

  .solution-body {
    min-height: 168px;
  }

  .systems-gallery {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 1180px) {
  .refined-contact {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .gallery-shell {
    padding-inline: 48px;
  }

  .gallery-arrow-prev {
    left: 0;
  }

  .gallery-arrow-next {
    right: 0;
  }
}

@media (max-width: 767px) {
  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .products-heading h2,
  .systems-heading h2,
  .workflow-compact .workflow-heading h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: clamp(31px, 8vw, 36px);
  }

  .solution-body {
    min-height: 0;
    padding: 16px;
  }

  .gallery-shell {
    padding-inline: 0;
  }

  .systems-gallery {
    grid-auto-columns: 100%;
  }

  .gallery-arrow {
    top: auto;
    bottom: -56px;
    transform: none;
  }

  .gallery-arrow-prev {
    left: 0;
  }

  .gallery-arrow-next {
    right: 0;
  }

  .systems-section {
    padding-bottom: 96px;
  }

  .process-grid article {
    min-height: 0;
    padding: 22px 20px;
  }

  .mini-timeline article {
    min-height: 130px;
    padding: 22px;
  }

  .refined-contact {
    gap: 18px;
  }

  .site-footer {
    padding-top: 36px;
    padding-bottom: 38px;
  }
}

/* Stage 9 Final Round: brand enhancement, density polish and subtle motion. */
:root {
  --brand-blue: #2d5e8b;
  --light-blue: #eaf3fb;
  --pale-blue: #f3f8fc;
  --soft-border-blue: #d8e6f2;
  --blue-accent-soft: #afc7de;
  --contact-dark: #11181c;
}

.refined-hero::before {
  transform-origin: center;
  animation: hero-subtle-zoom 16s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-subtle-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

.refined-hero-content {
  margin-left: max(var(--gutter-desktop), calc((100% - var(--container-main)) / 2 - 52px));
}

.hero-coordinate {
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.16em;
}

.solution-section {
  padding-top: 72px;
  padding-bottom: 76px;
  background:
    linear-gradient(180deg, rgba(243, 248, 252, 0.74) 0%, rgba(255, 255, 255, 0.98) 43%, rgba(248, 251, 253, 0.92) 100%);
}

.products-heading {
  margin-bottom: 36px;
}

.products-heading h2 {
  font-size: clamp(35px, 2.35vw, 42px);
}

.products-heading > p {
  max-width: 410px;
  font-size: 14px;
  line-height: 1.58;
}

.solution-grid {
  gap: 12px;
}

.solution-card {
  border-color: var(--soft-border-blue);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(45, 94, 139, 0.035);
  transition: transform 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out;
}

.solution-card:hover,
.solution-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--blue-accent-soft);
  box-shadow: 0 18px 34px rgba(45, 94, 139, 0.1);
}

.solution-card figure {
  aspect-ratio: 4 / 3.18;
  background:
    linear-gradient(180deg, #fbfdff 0%, #f4f8fb 100%);
  border-bottom-color: var(--soft-border-blue);
}

.solution-card figure img {
  transition: transform 240ms ease-out;
}

.solution-card:hover figure img,
.solution-card:focus-within figure img {
  transform: translateY(-2px) scale(1.008);
}

.solution-body {
  min-height: 150px;
  padding: 13px 16px 14px;
  gap: 5px;
}

.solution-body h3 {
  min-height: 34px;
  margin-bottom: 3px;
  font-size: clamp(16.5px, 0.92vw, 18px);
  line-height: 1.16;
}

.solution-body .product-tags {
  gap: 4px;
  margin-bottom: 6px;
}

.solution-body .product-tags span {
  padding: 3px 6px;
  font-size: 9.8px;
  border-color: var(--soft-border-blue);
  background: #f8fbfd;
}

.solution-body p {
  margin-bottom: 6px;
  font-size: 12.8px;
  line-height: 1.42;
}

.solution-body .product-link {
  font-size: 12.8px;
}

.systems-section {
  padding-top: 74px;
  padding-bottom: 76px;
}

.systems-heading {
  margin-bottom: 36px;
}

.systems-heading h2 {
  font-size: clamp(35px, 2.35vw, 42px);
}

.systems-heading > p {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.58;
}

.systems-gallery {
  gap: 16px;
  grid-auto-columns: calc((100% - 32px) / 3);
}

.gallery-card {
  border-color: var(--soft-border-blue);
  box-shadow: 0 10px 28px rgba(45, 94, 139, 0.035);
}

.gallery-media {
  aspect-ratio: 4 / 3.16;
  background: #f7fbfe;
}

.gallery-card .gallery-label {
  min-height: 26px;
  margin: 0 11px 10px;
  padding: 5px 9px;
  font-size: 10.8px;
}

.gallery-arrow {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  color: var(--text-dark);
  border-color: var(--soft-border-blue);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px rgba(17, 24, 31, 0.09);
  transition: color 200ms ease-out, border-color 200ms ease-out, background-color 200ms ease-out, transform 200ms ease-out;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: var(--red);
  border-color: var(--blue-accent-soft);
  background: var(--pale-blue);
  transform: scale(1.02);
}

.mid-cta-section {
  min-height: 104px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-color: var(--soft-border-blue);
  background: #f2f6f8;
}

.mid-cta-section h2 {
  font-size: clamp(23px, 1.55vw, 27px);
}

.mid-cta-section p {
  font-size: 13.5px;
}

.workflow-compact {
  padding-top: 74px;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 84% 16%, rgba(45, 94, 139, 0.18), transparent 34%),
    linear-gradient(180deg, #11181c 0%, #151d22 100%);
}

.workflow-compact .workflow-heading {
  margin-bottom: 34px;
}

.workflow-compact .workflow-heading h2 {
  max-width: 790px;
  font-size: clamp(37px, 2.45vw, 44px);
}

.workflow-compact .workflow-heading > p:not(.section-code) {
  font-size: 14.5px;
}

.process-grid article {
  min-height: 168px;
  padding: 20px 20px;
  border-color: rgba(216, 230, 242, 0.18);
  transition: border-color 220ms ease-out, background-color 220ms ease-out;
}

.process-grid article:hover {
  border-color: rgba(175, 199, 222, 0.42);
  background: rgba(234, 243, 251, 0.035);
}

.process-grid span {
  margin-bottom: 11px;
}

.process-grid h3 {
  font-size: 18px;
}

.process-grid ul,
.process-grid p {
  font-size: 13.2px;
  line-height: 1.5;
}

.process-details summary {
  color: #eaf3fb;
  text-decoration-color: rgba(175, 199, 222, 0.48);
  text-underline-offset: 5px;
}

.process-details summary:hover,
.process-details summary:focus-visible {
  color: #ffffff;
  text-decoration-color: var(--blue-accent-soft);
}

.about-section {
  gap: 68px;
  padding-top: 76px;
  padding-bottom: 78px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.about-copy h2 {
  font-size: clamp(35px, 2.3vw, 43px);
}

.about-copy p {
  font-size: 15px;
  line-height: 1.66;
}

.mini-timeline {
  gap: 12px;
}

.mini-timeline article {
  min-height: 158px;
  padding: 26px 28px;
  border-color: #e6ecf2;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 14px 30px rgba(45, 94, 139, 0.07);
}

.mini-timeline article:last-child {
  border-top: 2px solid var(--red);
}

.mini-timeline strong {
  color: #17364f;
  font-size: 32px;
}

.mini-timeline span {
  color: #5f6c76;
  font-size: 13.8px;
}

.refined-contact {
  padding-top: 74px;
  padding-bottom: 74px;
  background: var(--contact-dark);
}

.contact-intro {
  padding: 30px 32px;
  gap: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-intro h2 {
  font-size: clamp(31px, 2.25vw, 39px);
}

.contact-intro > p {
  font-size: 14px;
  line-height: 1.58;
}

.contact-detail-grid {
  gap: 8px;
}

.contact-detail-grid article {
  padding: 13px 14px;
}

.contact-detail-grid article span,
.contact-detail-grid article small {
  color: rgba(234, 243, 251, 0.62);
}

.contact-detail-grid article small {
  display: block;
  margin-top: 9px;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail-grid article a,
.contact-detail-grid article strong {
  line-height: 1.45;
}

.enquiry-form {
  padding: 31px 34px;
  gap: 14px;
}

.form-heading strong {
  font-size: 24px;
}

.form-row {
  gap: 14px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  min-height: 47px;
}

.enquiry-form textarea {
  min-height: 118px;
}

.site-footer {
  padding-top: 32px;
  padding-bottom: 34px;
  background: var(--contact-dark);
}

.site-footer strong {
  font-size: 13.5px;
}

.site-footer span,
.site-footer a,
.site-footer p {
  font-size: 12.8px;
  line-height: 1.55;
}

@media (max-width: 1500px) {
  .refined-hero-content {
    margin-left: max(var(--gutter-laptop), calc((100% - var(--container-main)) / 2 - 34px));
  }
}

@media (max-width: 1399px) {
  .products-heading h2,
  .systems-heading h2 {
    font-size: clamp(35px, 2.7vw, 40px);
  }

  .solution-card figure {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 1180px) {
  .systems-gallery {
    gap: 16px;
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .gallery-arrow:hover,
  .gallery-arrow:focus-visible {
    transform: scale(1.02);
  }
}

@media (max-width: 900px) {
  .systems-gallery {
    grid-auto-columns: 100%;
  }

  .gallery-media {
    aspect-ratio: 4 / 3.08;
  }
}

@media (max-width: 767px) {
  .refined-hero::before {
    animation: none;
    transform: none;
  }

  .refined-hero-content {
    margin-left: var(--gutter-mobile);
  }

  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .mid-cta-section,
  .site-footer {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .products-heading h2,
  .systems-heading h2,
  .workflow-compact .workflow-heading h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: clamp(29px, 7.4vw, 34px);
  }

  .solution-card figure {
    aspect-ratio: 4 / 3;
  }

  .solution-body {
    min-height: 0;
    padding: 14px;
  }

  .mini-timeline article {
    min-height: 132px;
    padding: 22px;
  }

  .contact-intro,
  .enquiry-form {
    padding: 24px 22px;
  }

  .gallery-arrow {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .refined-hero::before,
  .solution-card,
  .solution-card figure img,
  .gallery-arrow,
  .process-grid article {
    animation: none;
    transition: none;
    transform: none;
  }
}

/* Final overall polish: brighter blue-white industrial rhythm. */
:root {
  --blue-wash-1: #f7fafd;
  --blue-wash-2: #eaf3fb;
  --blue-wash-3: #dceafa;
  --blue-line: #cfe3f6;
  --ink-blue: #18364d;
}

.refined-header {
  margin-bottom: 0;
}

.refined-header + main,
main {
  margin-top: 0;
  padding-top: 0;
}

.refined-hero {
  margin-top: 0;
  border-top: 0;
}

.refined-hero-content {
  margin-left: max(56px, calc((100% - var(--container-main)) / 2 - 58px));
}

.refined-hero h1 {
  font-size: clamp(52px, 3.9vw, 64px);
  line-height: 1.02;
}

.hero-lead {
  font-size: 15.8px;
}

.scale-strip {
  min-height: 0;
}

.scale-strip article {
  padding-top: 22px;
  padding-bottom: 22px;
}

.scale-strip::before {
  height: 2px;
}

.solution-section,
.systems-section,
.about-section {
  position: relative;
  isolation: isolate;
}

.solution-section::before,
.systems-section::before,
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(234, 243, 251, 0.72) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 92% 12%, rgba(207, 227, 246, 0.55), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
}

.solution-section {
  padding-top: 66px;
  padding-bottom: 70px;
}

.products-heading {
  margin-bottom: 32px;
}

.products-heading h2,
.systems-heading h2 {
  font-size: clamp(34px, 2.2vw, 40px);
  line-height: 1.08;
}

.products-heading > p,
.systems-heading > p {
  font-size: 13.8px;
  line-height: 1.55;
}

.solution-grid {
  gap: 10px;
}

.solution-card {
  border-color: var(--blue-line);
  box-shadow: 0 12px 30px rgba(45, 94, 139, 0.055);
}

.solution-card:hover,
.solution-card:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 20px 40px rgba(45, 94, 139, 0.14);
}

.solution-card figure {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
}

.solution-card figure img,
.gallery-media img {
  object-fit: cover;
}

.solution-card:hover figure img,
.solution-card:focus-within figure img {
  transform: scale(1.018);
}

.solution-body {
  min-height: 138px;
  padding: 12px 15px 13px;
  gap: 4px;
}

.solution-body h3 {
  min-height: 31px;
  font-size: clamp(16px, 0.9vw, 17.5px);
}

.solution-body .product-tags {
  margin-bottom: 5px;
}

.solution-body p {
  font-size: 12.6px;
  line-height: 1.4;
}

.solution-body .product-link {
  font-size: 12.6px;
}

.systems-section {
  padding-top: 66px;
  padding-bottom: 68px;
}

.systems-heading {
  margin-bottom: 32px;
}

.systems-gallery {
  gap: 14px;
  grid-auto-columns: calc((100% - 28px) / 3);
}

.gallery-card {
  border-color: var(--blue-line);
  box-shadow: 0 12px 30px rgba(45, 94, 139, 0.06);
}

.gallery-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
}

.gallery-card .gallery-label {
  min-height: 24px;
  margin-bottom: 9px;
  padding: 5px 9px;
}

.gallery-arrow {
  border-color: var(--blue-line);
  color: var(--ink-blue);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  border-color: var(--brand-blue);
  background: var(--blue-wash-1);
}

.mid-cta-section {
  min-height: 96px;
  padding-top: 14px;
  padding-bottom: 14px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3f8fc 58%, #eaf3fb 100%);
}

.mid-cta-section h2 {
  font-size: clamp(22px, 1.45vw, 26px);
}

.mid-cta-section p {
  font-size: 13.2px;
}

.workflow-compact {
  position: relative;
  isolation: isolate;
  padding-top: 70px;
  padding-bottom: 72px;
  color: var(--text-dark);
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fafd 54%, #eaf3fb 100%);
  border-top: 1px solid var(--soft-border-blue);
  border-bottom: 1px solid var(--soft-border-blue);
}

.workflow-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(207, 227, 246, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(207, 227, 246, 0.3) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  opacity: 0.42;
}

.workflow-compact .workflow-heading {
  margin-bottom: 32px;
}

.workflow-compact .workflow-heading .section-code,
.workflow-compact .workflow-heading .section-code.light {
  color: var(--red);
}

.workflow-compact .workflow-heading h2 {
  max-width: 800px;
  color: var(--text-dark);
  font-size: clamp(36px, 2.35vw, 42px);
}

.workflow-compact .workflow-heading > p:not(.section-code) {
  color: var(--text-muted);
  font-size: 14.5px;
}

.process-grid article {
  min-height: 158px;
  padding: 18px 18px;
  border-color: var(--soft-border-blue);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(45, 94, 139, 0.065);
}

.process-grid article + article {
  border-left-color: var(--soft-border-blue);
}

.process-grid article:hover {
  border-color: var(--brand-blue);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(45, 94, 139, 0.12);
}

.process-grid h3 {
  color: var(--text-dark);
  font-size: 17.8px;
}

.process-grid ul,
.process-grid p,
.process-grid li {
  color: #596771;
  font-size: 13px;
  line-height: 1.48;
}

.process-details {
  border-top-color: var(--soft-border-blue);
}

.process-details summary {
  color: var(--brand-blue);
  text-decoration-color: rgba(45, 94, 139, 0.35);
}

.process-details summary:hover,
.process-details summary:focus-visible {
  color: var(--red);
  text-decoration-color: var(--red);
}

.full-process-grid li {
  border-color: var(--soft-border-blue);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(45, 94, 139, 0.045);
}

.full-process-grid strong {
  color: var(--ink-blue);
}

.full-process-grid span {
  color: #5f6c76;
}

.about-section {
  padding-top: 70px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
}

.about-copy h2 {
  font-size: clamp(34px, 2.2vw, 41px);
}

.about-copy p {
  font-size: 14.7px;
}

.mini-timeline article {
  min-height: 150px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-color: var(--soft-border-blue);
  box-shadow: 0 16px 34px rgba(45, 94, 139, 0.085);
}

.mini-timeline strong {
  color: var(--ink-blue);
}

.refined-contact {
  padding-top: 70px;
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 94, 139, 0.16), transparent 32%),
    var(--contact-dark);
}

.contact-intro {
  padding: 28px 30px;
  border-color: rgba(216, 230, 242, 0.18);
}

.contact-intro h2 {
  font-size: clamp(30px, 2.15vw, 38px);
}

.contact-detail-grid article {
  border-color: rgba(216, 230, 242, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.enquiry-form {
  padding: 29px 32px;
  border: 1px solid var(--soft-border-blue);
  box-shadow: 0 24px 48px rgba(45, 94, 139, 0.14);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(45, 94, 139, 0.12);
}

.site-footer {
  padding-top: 28px;
  padding-bottom: 30px;
}

@media (max-width: 1500px) {
  .refined-hero-content {
    margin-left: max(48px, calc((100% - var(--container-main)) / 2 - 38px));
  }
}

@media (max-width: 1399px) {
  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section {
    padding-top: 64px;
    padding-bottom: 66px;
  }

  .process-grid article {
    min-height: 168px;
  }
}

@media (max-width: 900px) {
  .workflow-compact::before {
    background-size: 48px 48px;
  }
}

@media (max-width: 767px) {
  .refined-hero-content {
    margin-left: var(--gutter-mobile);
  }

  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .scale-strip article {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .solution-card figure,
  .gallery-media {
    aspect-ratio: 4 / 3;
  }

  .solution-card figure img,
  .gallery-media img {
    object-fit: contain;
  }

  .process-grid article {
    min-height: 0;
    padding: 18px;
  }

  .contact-intro,
  .enquiry-form {
    padding: 22px 20px;
  }
}

@media (max-width: 1180px) {
  .systems-gallery {
    gap: 16px;
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}

@media (max-width: 900px) {
  .systems-gallery {
    gap: 0;
    grid-auto-columns: 100%;
  }

  .gallery-card {
    width: 100%;
  }

  .gallery-media {
    aspect-ratio: 4 / 3;
  }
}

/* Prelaunch final fix: clearer content, 7-step workflow and contact readiness. */
.hero-lead {
  max-width: 650px;
}

.process-grid-seven {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.process-grid-seven article {
  min-height: 188px;
  padding: 18px 14px 17px;
}

.process-grid-seven span {
  margin-bottom: 9px;
}

.process-grid-seven h3 {
  min-height: 42px;
  font-size: 15.5px;
  line-height: 1.2;
}

.process-grid-seven ul {
  margin-top: 10px;
}

.process-grid-seven li {
  font-size: 12.4px;
  line-height: 1.42;
}

.about-capabilities {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  max-width: 520px;
}

.about-capabilities span {
  display: block;
  padding: 10px 12px;
  color: var(--ink-blue);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  background: rgba(234, 243, 251, 0.74);
  border: 1px solid var(--soft-border-blue);
}

.contact-detail-grid article:first-child {
  grid-row: span 2;
}

.form-status.is-success {
  color: #1f6f43;
  background: rgba(31, 111, 67, 0.1);
  border-color: rgba(31, 111, 67, 0.24);
}

.systems-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 253, 0.96) 52%, rgba(234, 243, 251, 0.8) 100%);
}

.systems-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    linear-gradient(90deg, rgba(45, 94, 139, 0.55) 1px, transparent 1px),
    linear-gradient(0deg, rgba(45, 94, 139, 0.42) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
}

.systems-section > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1500px) {
  .process-grid-seven {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .process-grid-seven {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid-seven h3 {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .process-grid-seven {
    grid-template-columns: 1fr;
  }

  .process-grid-seven article {
    min-height: 0;
    padding: 17px;
  }
}

/* Prelaunch final corrections: anchor safety, visual density and blue-white consistency. */
#mould-solutions,
#mould-systems,
#development,
#about,
#contact {
  scroll-margin-top: 96px;
}

.refined-header + main,
main#top,
.refined-hero {
  margin-top: 0;
  padding-top: 0;
}

.products-heading h2,
.systems-heading h2,
.workflow-heading h2,
.about-copy h2,
.contact-intro h2 {
  font-size: clamp(36px, 2.65vw, 48px);
  line-height: 1.08;
}

.solution-section,
.systems-section,
.workflow-compact,
.about-section {
  padding-top: clamp(64px, 5vw, 84px);
  padding-bottom: clamp(68px, 5.5vw, 90px);
}

.solution-section,
.about-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 52%, #eef6fc 100%);
}

.solution-section::before,
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 18% 16%, rgba(45, 94, 139, 0.42), transparent 28%),
    linear-gradient(90deg, rgba(45, 94, 139, 0.42) 1px, transparent 1px),
    linear-gradient(0deg, rgba(45, 94, 139, 0.32) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
}

.solution-section > *,
.about-section > * {
  position: relative;
  z-index: 1;
}

.products-heading,
.systems-heading {
  gap: clamp(22px, 4vw, 56px);
  margin-bottom: clamp(32px, 4vw, 46px);
}

.solution-grid {
  gap: 18px;
}

.solution-card {
  border-color: var(--soft-border-blue);
  box-shadow: 0 10px 26px rgba(45, 94, 139, 0.045);
}

.solution-card figure {
  aspect-ratio: 4 / 3;
  background: #f7fbff;
}

.solution-card figure img,
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-body {
  padding: 18px;
}

.solution-body h3 {
  font-size: clamp(18px, 1.3vw, 21px);
}

.solution-body p {
  font-size: 13.8px;
  line-height: 1.54;
}

.product-tags {
  gap: 6px;
}

.product-tags span {
  font-size: 10.5px;
  padding: 4px 7px;
}

.workflow-compact {
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 54%, #eef6fc 100%);
}

.workflow-grid article,
.mini-timeline article {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--soft-border-blue);
}

.refined-contact {
  background: #0f181d;
}

.site-footer {
  background: #0f181d;
}

/* Final About timeline polish: each year card owns its own top accent line. */
.mini-timeline article {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  border-top: 1px solid var(--soft-border-blue);
}

.mini-timeline article:last-child {
  border-top: 1px solid var(--soft-border-blue);
}

.mini-timeline article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #25323a;
  pointer-events: none;
}

.mini-timeline article:nth-child(2)::before,
.mini-timeline article:nth-child(3)::before {
  background: #9fc4e4;
}

.mini-timeline article:nth-child(4)::before {
  background: var(--red);
}

@media (max-width: 768px) {
  #mould-solutions,
  #mould-systems,
  #development,
  #about,
  #contact {
    scroll-margin-top: 78px;
  }

  .products-heading h2,
  .systems-heading h2,
  .workflow-heading h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: clamp(30px, 8.5vw, 36px);
  }
}

/* Mobile final refinement: clearer hierarchy for 320px-480px without changing desktop. */
.mobile-quick-access {
  display: none;
}

.gallery-title {
  display: none;
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
  }

  body {
    background: #f7fbff;
  }

  .refined-header {
    width: 100%;
    min-height: 68px;
    height: 68px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
  }

  .refined-brand {
    min-width: 0;
    gap: 8px;
  }

  .refined-brand img {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }

  .refined-brand span {
    min-width: 0;
    max-width: 96px;
    font-size: 14px;
    line-height: 1.05;
    white-space: normal;
  }

  .menu-toggle {
    height: 38px;
    min-width: 0;
    width: 64px;
    padding: 0 8px;
    gap: 5px;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 12px;
  }

  .menu-toggle span:not(.menu-text) {
    width: 14px;
    height: 2px;
  }

  .menu-toggle .menu-text {
    display: inline;
    font-size: 12px;
    font-weight: 800;
  }

  .header-contact {
    height: 40px;
    min-height: 40px;
    min-width: 0;
    padding: 0 12px;
    white-space: nowrap;
    border-radius: 0;
  }

  .header-contact .desktop-label {
    display: none;
  }

  .header-contact .mobile-label {
    display: inline;
    font-size: 12px;
    font-weight: 800;
  }

  .refined-header nav {
    inset: 68px 0 auto;
    padding: 14px 20px 18px;
  }

  .refined-header nav a {
    min-height: 44px;
  }

  body.nav-open {
    overflow: hidden;
  }

  main#top,
  .refined-header + main {
    padding-top: 0;
    margin-top: 0;
  }

  .refined-hero {
    min-height: clamp(620px, 154vw, 680px);
    max-height: 760px;
    background-position: right center;
  }

  .refined-hero::after {
    background:
      linear-gradient(90deg, rgba(8, 19, 27, 0.88), rgba(12, 28, 38, 0.66) 58%, rgba(12, 28, 38, 0.36));
  }

  .hero-coordinate {
    display: none;
  }

  .refined-hero-content {
    width: min(340px, calc(100% - 40px));
    margin-left: 20px;
    padding-top: 78px;
    padding-bottom: 32px;
  }

  .hero-brand-lockup {
    margin-bottom: 14px;
  }

  .hero-brand-lockup::before {
    height: 28px;
  }

  .hero-brand-lockup span,
  .hero-brand-lockup strong,
  .refined-hero .section-code {
    font-size: 11px;
    line-height: 1.35;
  }

  .refined-hero h1 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(42px, 11vw, 48px);
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 340px;
    margin-bottom: 18px;
    font-size: 14.5px;
    line-height: 1.6;
  }

  .material-tags {
    max-width: 340px;
    gap: 8px;
    margin-bottom: 18px;
  }

  .material-tags span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .material-tags span:nth-child(3),
  .material-tags span:nth-child(4),
  .material-tags span:nth-child(6) {
    display: none;
  }

  .material-tags span:nth-child(7) {
    font-size: 0;
  }

  .material-tags span:nth-child(7)::after {
    content: "Direct Injection";
    font-size: 11px;
  }

  .hero-buttons {
    max-width: 340px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-buttons .primary-button,
  .hero-buttons .secondary-button {
    width: 100%;
    height: 46px;
    justify-content: center;
    font-size: 0;
  }

  .hero-buttons .primary-button::after {
    content: "Start Project";
    font-size: 13px;
    font-weight: 800;
  }

  .hero-buttons .secondary-button::after {
    content: "View Solutions";
    font-size: 13px;
    font-weight: 800;
  }

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

  .scale-strip article {
    min-height: 0;
    padding: 16px 10px;
  }

  .scale-strip strong {
    font-size: clamp(22px, 6.2vw, 27px);
    line-height: 1.15;
  }

  .scale-strip span:not(.scale-number) {
    font-size: 12px;
    line-height: 1.35;
  }

  .mobile-quick-access {
    display: block;
    padding: 22px 20px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #eef6fc 100%);
    border-top: 1px solid var(--soft-border-blue);
    border-bottom: 1px solid var(--soft-border-blue);
  }

  .mobile-quick-access h2 {
    margin: 0 0 12px;
    color: var(--ink-blue);
    font-size: 18px;
    line-height: 1.2;
  }

  .mobile-quick-access div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-quick-access a {
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: var(--ink-blue);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d8eaf7;
  }

  .mobile-quick-access a:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
  }

  .solution-card,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact {
    scroll-margin-top: 82px;
  }

  .solution-section,
  .systems-section,
  .workflow-compact,
  .about-section,
  .refined-contact {
    padding: 60px 20px;
  }

  .products-heading,
  .systems-heading,
  .workflow-compact .workflow-heading {
    display: block;
    margin-bottom: 28px;
  }

  .products-heading h2,
  .systems-heading h2,
  .workflow-heading h2,
  .about-copy h2,
  .contact-intro h2 {
    max-width: 360px;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.14;
  }

  .products-heading > p,
  .systems-heading > p,
  .workflow-heading > p,
  .about-copy p,
  .contact-intro > p {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.6;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution-card figure {
    height: clamp(220px, 62vw, 260px);
    aspect-ratio: auto;
  }

  .solution-body {
    padding: 18px;
  }

  .solution-body h3 {
    font-size: 22px;
    line-height: 1.18;
  }

  .solution-body p {
    font-size: 14px;
    line-height: 1.55;
  }

  .product-tags span {
    font-size: 11px;
    padding: 4px 7px;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .gallery-arrow {
    display: none;
  }

  .systems-gallery {
    grid-auto-columns: minmax(0, 100%);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .systems-gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-card {
    scroll-snap-align: start;
  }

  .gallery-card:nth-child(n+4) {
    display: none;
  }

  .gallery-media {
    aspect-ratio: 4 / 3;
  }

  .gallery-label {
    font-size: 10px;
    padding: 6px 9px;
  }

  .gallery-title {
    display: block;
    padding: 12px 14px 14px;
    color: var(--ink-blue);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
  }

  .mid-cta-section {
    display: block;
    min-height: 0;
    padding: 40px 20px;
    text-align: left;
  }

  .mid-cta-section h2 {
    font-size: 26px;
    line-height: 1.15;
  }

  .mid-cta-section p {
    font-size: 14px;
    line-height: 1.55;
  }

  .mid-cta-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .mid-cta-actions .primary-button {
    width: 100%;
    height: 46px;
    justify-content: center;
  }

  .mid-cta-actions .text-link {
    justify-self: start;
  }

  .process-grid-seven {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-grid-seven article {
    min-height: 0;
    padding: 18px;
  }

  .process-grid-seven h3 {
    min-height: 0;
    font-size: 20px;
  }

  .process-grid-seven li {
    font-size: 14px;
    line-height: 1.5;
  }

  .process-details {
    margin-top: 18px;
  }

  .process-details summary {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--red);
    font-size: 14px;
  }

  .about-section {
    display: block;
  }

  .about-capabilities {
    gap: 8px;
  }

  .about-capabilities span {
    padding: 10px 12px;
    font-size: 13px;
  }

  .about-actions .primary-button {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .mini-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .mini-timeline article {
    min-height: 150px;
    padding: 22px;
  }

  .mini-timeline strong {
    font-size: 28px;
  }

  .mini-timeline span {
    font-size: 14px;
  }

  .refined-contact {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-intro,
  .enquiry-form {
    padding: 22px 20px;
  }

  .contact-detail-grid {
    display: grid;
    gap: 10px;
  }

  .contact-detail-grid article:nth-child(1) {
    order: 2;
    grid-row: auto;
  }

  .contact-detail-grid article:nth-child(2) {
    order: 1;
  }

  .contact-detail-grid article:nth-child(3) {
    order: 3;
  }

  .contact-detail-grid article {
    padding: 14px;
  }

  .contact-detail-grid article span,
  .contact-detail-grid article small {
    font-size: 10.5px;
  }

  .contact-detail-grid article a,
  .contact-detail-grid article strong {
    font-size: 13.5px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

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

  .enquiry-form input,
  .enquiry-form select {
    min-height: 46px;
  }

  .enquiry-form textarea {
    min-height: 118px;
  }

  .form-footer {
    display: grid;
    gap: 14px;
  }

  .form-footer button {
    width: 100%;
    min-height: 48px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 20px;
    text-align: left;
  }

  .site-footer > div:last-of-type {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (min-width: 681px) and (max-width: 768px) {
  .solution-grid,
  .process-grid-seven,
  .mini-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .systems-gallery {
    grid-auto-columns: calc((100% - 14px) / 2);
  }
}

@media (max-width: 360px) {
  .refined-brand span {
    max-width: 78px;
    font-size: 13px;
  }

  .menu-toggle {
    padding-inline: 6px;
  }

  .header-contact {
    padding-inline: 10px;
  }

  .refined-hero h1 {
    font-size: 40px;
  }
}

/* Final timeline correction: one independent black top line per year card. */
.mini-timeline {
  border: 0 !important;
  gap: 12px;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.mini-timeline article,
.mini-timeline article:last-child,
.mini-timeline article:nth-child(1),
.mini-timeline article:nth-child(2),
.mini-timeline article:nth-child(3),
.mini-timeline article:nth-child(4) {
  position: relative;
  min-height: 168px;
  padding: 26px 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--soft-border-blue);
  border-top: 3px solid #11181c !important;
  box-shadow: none;
  height: 100%;
}

.mini-timeline article::before,
.mini-timeline article::after,
.mini-timeline span::before,
.mini-timeline span::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 768px) {
  .mini-timeline article,
  .mini-timeline article:last-child,
  .mini-timeline article:nth-child(1),
  .mini-timeline article:nth-child(2),
  .mini-timeline article:nth-child(3),
  .mini-timeline article:nth-child(4) {
    min-height: 150px;
    padding: 22px;
    border-top: 3px solid #11181c !important;
  }
}

/* Final launch enhancement: restrained reveal motion and interaction feedback. */
.count-value {
  display: inline-block;
  min-width: 2ch;
  font-variant-numeric: tabular-nums;
}

.scale-strip .scale-number,
.scale-strip .scale-number .count-value {
  display: inline;
  max-width: none;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

html.reveal-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.reveal-ready .reveal-left {
  transform: translate3d(-32px, 0, 0);
}

html.reveal-ready .reveal-right {
  transform: translate3d(32px, 0, 0);
}

html.reveal-ready .reveal-up {
  transform: translate3d(0, 24px, 0);
}

html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.header-contact,
.primary-button,
.secondary-button,
.contact-button,
.text-link,
.enquiry-form button,
.process-details summary {
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.header-contact:hover,
.primary-button:hover,
.contact-button:hover,
.enquiry-form button:hover {
  transform: translateY(-1px);
  background-color: #9f171d;
  box-shadow: 0 12px 24px rgba(181, 30, 35, 0.18);
}

.secondary-button:hover {
  transform: translateY(-1px);
  border-color: rgba(234, 243, 251, 0.9);
  background: rgba(234, 243, 251, 0.12);
}

.text-link:hover,
.process-details summary:hover {
  transform: translateY(-1px);
  color: var(--brand-blue);
}

@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .solution-card:hover,
  .solution-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 22px 42px rgba(45, 94, 139, 0.15);
  }

  .solution-card:hover figure img,
  .solution-card:focus-within figure img {
    transform: scale(1.02);
  }

  .gallery-card:hover,
  .gallery-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(45, 94, 139, 0.34);
    box-shadow: 0 18px 34px rgba(45, 94, 139, 0.1);
  }

  .gallery-card:hover img,
  .gallery-card:focus-within img {
    transform: scale(1.018);
  }
}

@media (max-width: 768px) {
  html.reveal-ready .reveal,
  html.reveal-ready .reveal-left,
  html.reveal-ready .reveal-right,
  html.reveal-ready .reveal-up {
    transform: translate3d(0, 16px, 0);
    transition-duration: 560ms;
  }

}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal,
  html.reveal-ready .reveal-left,
  html.reveal-ready .reveal-right,
  html.reveal-ready .reveal-up,
  html.reveal-ready .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .count-value {
    transition: none !important;
  }
}

