:root {
  --navy-950: #031126;
  --navy-900: #071a38;
  --navy-800: #0c2852;
  --navy-700: #153967;
  --gold-500: #c9952e;
  --gold-400: #ddb45b;
  --gold-100: #fbf2dd;
  --ink-900: #132238;
  --ink-700: #435168;
  --ink-600: #5f6b7c;
  --line: #dce2ea;
  --surface: #f5f7fa;
  --white: #ffffff;

  --container: 75rem;
  --header-height: 5rem;
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 0.6rem 2rem rgb(7 26 56 / 0.08);
  --shadow-lg: 0 1.5rem 4rem rgb(3 17 38 / 0.18);
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--white);
  color: var(--ink-900);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.65rem, 6.4vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.2rem solid var(--gold-400);
  outline-offset: 0.25rem;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section--light {
  background: var(--surface);
}

.section--muted {
  background: linear-gradient(180deg, #f3f5f8 0%, #ffffff 100%);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  translate: 0 -200%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  translate: 0;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-400);
}

.button {
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border: 0.08rem solid transparent;
  border-radius: 999rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  transition: translate var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.button svg,
.text-link svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover {
  translate: 0 -0.12rem;
}

.button--small {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

.button--primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 0.55rem 1.5rem rgb(7 26 56 / 0.16);
}

.button--primary:hover {
  background: var(--navy-800);
}

.button--gold {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 0.8rem 2rem rgb(201 149 46 / 0.25);
}

.button--gold:hover {
  background: var(--gold-400);
}

.button--outline-light {
  border-color: rgb(255 255 255 / 0.42);
  background: rgb(255 255 255 / 0.03);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 0.1);
}

.topbar {
  position: relative;
  z-index: 40;
  background: var(--navy-950);
  color: rgb(255 255 255 / 0.74);
  font-size: 0.78rem;
}

.topbar__inner {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__location {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar__location svg {
  width: 0.95rem;
  fill: currentColor;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar a {
  transition: color var(--transition);
}

.topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 0.0625rem solid transparent;
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  border-color: rgb(19 34 56 / 0.08);
  box-shadow: 0 0.5rem 2rem rgb(3 17 38 / 0.08);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-900);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand__mark {
  width: 2.35rem;
  aspect-ratio: 1;
  border-radius: 0.65rem 0.65rem 0.65rem 0.2rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 0.5rem 1.2rem rgb(201 149 46 / 0.2);
}

.brand__text {
  font-size: 1.3rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.65rem);
  font-size: 0.9rem;
  font-weight: 650;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 0.6rem;
  color: var(--ink-700);
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 0.12rem;
  border-radius: 1rem;
  background: var(--gold-500);
  scale: 0 1;
  transform-origin: right;
  transition: scale var(--transition);
}

.primary-nav > a:not(.button):hover,
.primary-nav > a[aria-current="page"] {
  color: var(--navy-900);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a[aria-current="page"]::after {
  scale: 1 1;
  transform-origin: left;
}

.nav-toggle {
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  display: none;
  place-items: center;
  align-content: center;
  gap: 0.28rem;
  background: var(--surface);
  color: var(--navy-900);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.18rem;
  height: 0.12rem;
  border-radius: 1rem;
  background: currentColor;
  transition: rotate var(--transition), translate var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  translate: 0 0.4rem;
  rotate: 45deg;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  translate: 0 -0.4rem;
  rotate: -45deg;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(53rem, calc(100svh - 2.25rem));
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--navy-950);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(3 17 38 / 0.9) 0%, rgb(3 17 38 / 0.76) 38%, rgb(3 17 38 / 0.3) 68%, rgb(3 17 38 / 0.1) 100%),
    linear-gradient(180deg, rgb(3 17 38 / 0.04), rgb(3 17 38 / 0.3));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.07;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.16) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  pointer-events: none;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--navy-950);
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.04) brightness(1.06);
  opacity: 0;
  scale: 1.035;
  transition: opacity 900ms ease, scale 7s ease;
}

.hero__slide.is-active {
  opacity: 1;
  scale: 1;
}

.hero__slide:nth-child(1) {
  object-position: 58% center;
}

.hero__slide:nth-child(2) {
  object-position: 62% center;
}

.hero__slide:nth-child(3) {
  object-position: 66% center;
}

.hero__slide:nth-child(4) {
  object-position: 62% center;
}

.hero__slide:nth-child(5) {
  object-position: 68% center;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(0.4rem);
  pointer-events: none;
}

.hero__glow--one {
  right: -9rem;
  top: -10rem;
  width: 32rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgb(201 149 46 / 0.24), transparent 67%);
}

.hero__glow--two {
  bottom: -17rem;
  left: 14%;
  width: 34rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgb(21 57 103 / 0.65), transparent 66%);
}

.hero__grid {
  padding-block: clamp(5rem, 10vw, 8.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero__content {
  min-width: 0;
  max-width: 58rem;
}

.hero h1 {
  max-width: 15ch;
  margin-bottom: 1.45rem;
  text-wrap: balance;
}

.hero__lead {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: rgb(255 255 255 / 0.74);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__assurances {
  margin: 2.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.35rem;
  color: rgb(255 255 255 / 0.7);
  font-size: 0.82rem;
  list-style: none;
}

.hero__assurances li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__assurances li::before {
  content: "";
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0.25rem rgb(221 180 91 / 0.12);
}

.hero-slider-dots {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-slider-dot {
  width: 2.6rem;
  height: 0.28rem;
  padding: 0;
  border: 0;
  border-radius: 999rem;
  background: rgb(255 255 255 / 0.34);
  cursor: pointer;
  transition: width var(--transition), background-color var(--transition), translate var(--transition);
}

.hero-slider-dot:hover {
  translate: 0 -0.08rem;
  background: rgb(255 255 255 / 0.62);
}

.hero-slider-dot.is-active {
  width: 4rem;
  background: var(--gold-400);
}

.hero-visual {
  min-width: 0;
}

.hero-visual__frame {
  position: relative;
  min-height: 34rem;
  border: 0.0625rem solid rgb(255 255 255 / 0.18);
  border-radius: 2.2rem;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgb(201 149 46 / 0.17), transparent 27%),
    linear-gradient(145deg, rgb(255 255 255 / 0.085), rgb(255 255 255 / 0.025));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(0.7rem);
  -webkit-backdrop-filter: blur(0.7rem);
}

.hero-visual__frame::before,
.hero-visual__frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 0.0625rem solid rgb(255 255 255 / 0.11);
}

.hero-visual__frame::before {
  width: 22rem;
  aspect-ratio: 1;
}

.hero-visual__frame::after {
  width: 14rem;
  aspect-ratio: 1;
}

.hero-visual__brand {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-visual__brand span {
  display: block;
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 0.7rem 2rem rgb(0 0 0 / 0.24);
}

.hero-visual__brand small {
  display: block;
  margin-top: 0.65rem;
  color: var(--gold-400);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual__orbit {
  position: absolute;
  z-index: 1;
  border: 0.0625rem dashed rgb(221 180 91 / 0.3);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.hero-visual__orbit--one {
  width: 27rem;
  aspect-ratio: 1;
}

.hero-visual__orbit--two {
  width: 18rem;
  aspect-ratio: 1;
  animation-direction: reverse;
  animation-duration: 18s;
}

.capability-chip {
  position: absolute;
  z-index: 4;
  width: min(13rem, 45%);
  padding: 0.85rem;
  border: 0.0625rem solid rgb(255 255 255 / 0.16);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgb(3 17 38 / 0.75);
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 0.18);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
}

.capability-chip--procurement {
  top: 12%;
  left: 5%;
}

.capability-chip--engineering {
  top: 44%;
  right: 4%;
}

.capability-chip--supply {
  bottom: 10%;
  left: 8%;
}

.capability-chip__icon {
  flex: 0 0 auto;
  width: 2.25rem;
  aspect-ratio: 1;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: rgb(201 149 46 / 0.16);
  color: var(--gold-400);
}

.capability-chip__icon svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-chip strong,
.capability-chip small {
  display: block;
}

.capability-chip strong {
  margin-bottom: 0.1rem;
  font-size: 0.82rem;
}

.capability-chip small {
  color: rgb(255 255 255 / 0.58);
  font-size: 0.68rem;
}

.capability-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
}

.capability-strip__grid {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.capability-strip article {
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 2.25rem);
}

.capability-strip article + article {
  border-left: 0.0625rem solid var(--line);
}

.capability-strip span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 850;
}

.capability-strip h2 {
  margin-bottom: 0.7rem;
  color: var(--navy-900);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.capability-strip p {
  color: var(--ink-600);
  font-size: 0.9rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.section-heading h2,
.section-intro h2 {
  margin-bottom: 0;
  color: var(--navy-900);
  text-wrap: balance;
}

.lead-copy {
  color: var(--ink-900);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.about-copy > p:not(.lead-copy) {
  color: var(--ink-600);
}

.vision-mission-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vision-mission-grid article {
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 0.8rem 2rem rgb(7 26 56 / 0.05);
}

.card-number,
.service-card__number {
  display: inline-block;
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 850;
}

.vision-mission-grid h3 {
  margin-block: 1.1rem 0.65rem;
  color: var(--navy-900);
}

.vision-mission-grid p {
  color: var(--ink-600);
  font-size: 0.92rem;
}

.section-intro {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.section-intro > div {
  max-width: 48rem;
}

.section-intro > p {
  max-width: 33rem;
  margin: 0;
  justify-self: end;
  color: var(--ink-600);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.75;
}

.section-intro--compact {
  grid-template-columns: minmax(0, 0.75fr);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.5rem), 1fr));
  gap: 1rem;
}

.service-card {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: translate var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  translate: 0 -0.35rem;
  border-color: rgb(201 149 46 / 0.5);
  box-shadow: var(--shadow-sm);
}

.service-card__top {
  margin-bottom: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-box {
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: var(--gold-100);
  color: var(--gold-500);
}

.icon-box svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  min-height: 3.2rem;
  margin-bottom: 0.9rem;
  color: var(--navy-900);
}

.service-card > p {
  min-height: 5.1rem;
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 0.9rem;
}

.check-list {
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 0.0625rem solid var(--line);
  display: grid;
  gap: 0.65rem;
  color: var(--ink-700);
  font-size: 0.86rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.3rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.45rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 0.22rem var(--gold-100);
}

.industries {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.industries::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.25) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.industries__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.industries__content h2 {
  margin-bottom: 1.2rem;
  text-wrap: balance;
}

.industries__content > p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-900);
  font-weight: 750;
}

.text-link--light {
  margin-top: 1rem;
  color: var(--gold-400);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.industries-grid article {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 10rem;
  padding: 1.35rem;
  border: 0.0625rem solid rgb(255 255 255 / 0.14);
  border-radius: 1.15rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgb(255 255 255 / 0.105), rgb(255 255 255 / 0.035));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08), 0 1rem 2.5rem rgb(0 0 0 / 0.08);
  backdrop-filter: blur(0.8rem);
  -webkit-backdrop-filter: blur(0.8rem);
  transition: translate var(--transition), border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.industries-grid article::before {
  content: "";
  position: absolute;
  top: -4.5rem;
  right: -3.5rem;
  z-index: -1;
  width: 9rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(201 149 46 / 0.2), transparent 68%);
  transition: scale var(--transition);
}

.industries-grid article::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  bottom: 0;
  left: 1.35rem;
  height: 0.14rem;
  border-radius: 99rem 99rem 0 0;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  opacity: 0.7;
}

.industries-grid article:hover {
  translate: 0 -0.3rem;
  border-color: rgb(221 180 91 / 0.52);
  background: linear-gradient(145deg, rgb(255 255 255 / 0.14), rgb(255 255 255 / 0.055));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.1), 0 1.25rem 3rem rgb(0 0 0 / 0.16);
}

.industries-grid article:hover::before {
  scale: 1.16;
}

.industry-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.industry-card__number {
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.industry-card__icon {
  width: 2.65rem;
  aspect-ratio: 1;
  border: 0.0625rem solid rgb(221 180 91 / 0.22);
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: rgb(201 149 46 / 0.12);
  color: var(--gold-400);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.industry-card__icon svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industries-grid h3 {
  max-width: 15rem;
  margin: 1.6rem 0 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.why-panel {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.why-panel h2 {
  margin-bottom: 1.2rem;
  color: var(--navy-900);
}

.why-panel > p:not(.eyebrow) {
  color: var(--ink-600);
}

.metric-grid {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-grid article {
  position: relative;
  min-width: 0;
  min-height: 10.5rem;
  padding: 1.15rem;
  border: 0.0625rem solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(155deg, #ffffff 0%, #f4f7fb 100%);
  box-shadow: 0 0.8rem 2rem rgb(7 26 56 / 0.07);
  transition: translate var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.metric-grid article::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -3.5rem;
  width: 7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(201 149 46 / 0.16), transparent 68%);
}

.metric-grid article:hover {
  translate: 0 -0.25rem;
  border-color: rgb(201 149 46 / 0.48);
  box-shadow: 0 1rem 2.4rem rgb(7 26 56 / 0.11);
}

.metric-card__icon {
  width: 2.55rem;
  aspect-ratio: 1;
  margin-bottom: 1.2rem;
  border-radius: 0.8rem;
  display: grid !important;
  place-items: center;
  background: var(--gold-100);
  color: var(--gold-500) !important;
}

.metric-card__icon svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-grid small,
.metric-grid strong,
.metric-grid > article > span:not(.metric-card__icon) {
  position: relative;
  z-index: 1;
  display: block;
}

.metric-grid small {
  margin-bottom: 0.3rem;
  color: var(--gold-500);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-grid strong {
  margin-bottom: 0.35rem;
  color: var(--navy-900);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.15;
}

.metric-grid > article > span:not(.metric-card__icon) {
  color: var(--ink-600);
  font-size: 0.75rem;
  line-height: 1.45;
}

.advantages-grid {
  display: grid;
  gap: 0.7rem;
}

.advantages-grid article {
  min-width: 0;
  padding: 1.25rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.advantages-grid article:hover {
  border-color: rgb(201 149 46 / 0.55);
  box-shadow: var(--shadow-sm);
}

.advantage-icon {
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-100);
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 850;
}

.advantages-grid h3 {
  margin-bottom: 0.35rem;
  color: var(--navy-900);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.advantages-grid p {
  color: var(--ink-600);
  font-size: 0.86rem;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quality-card {
  min-width: 0;
  min-height: 28rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quality-card--primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: transparent;
  background: var(--navy-900);
  color: var(--white);
}

.quality-card--primary::before {
  content: "PASS";
  position: absolute;
  top: 7%;
  right: -3%;
  z-index: -1;
  color: rgb(255 255 255 / 0.04);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.quality-card h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.quality-card > p:not(.eyebrow) {
  color: var(--ink-600);
}

.quality-card--primary > p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.68);
}

.check-list--large {
  margin-top: 1rem;
  border-top: 0;
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14.5rem), 1fr));
  gap: 0.75rem;
}

.values-grid article {
  min-width: 0;
  padding: 1.5rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.values-grid span {
  color: var(--gold-500);
  font-size: 0.7rem;
  font-weight: 850;
}

.values-grid h3 {
  margin-block: 1.5rem 0.55rem;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.values-grid p {
  color: var(--ink-600);
  font-size: 0.85rem;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 85% 25%, rgb(201 149 46 / 0.2), transparent 25%),
    var(--navy-950);
  color: var(--white);
}

.contact-cta::before {
  content: "PASS";
  position: absolute;
  right: -2%;
  bottom: -11%;
  color: rgb(255 255 255 / 0.025);
  font-size: clamp(8rem, 25vw, 21rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
}

.contact-cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.contact-cta__content h2 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

.contact-cta__content > p:not(.eyebrow) {
  max-width: 40rem;
  color: rgb(255 255 255 / 0.67);
}

.contact-cta__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 0.0625rem solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1.35rem;
  background: rgb(255 255 255 / 0.055);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(0.8rem);
  -webkit-backdrop-filter: blur(0.8rem);
  font-style: normal;
}

.contact-card > div {
  display: grid;
  gap: 0.2rem;
}

.contact-card span {
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: rgb(255 255 255 / 0.75);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--white);
}

.site-footer {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  background: #020b18;
  color: rgb(255 255 255 / 0.68);
}

.footer-grid {
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.7fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.brand--footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 30rem;
  margin: 1.2rem 0 0;
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links h2 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0;
}

.footer-links a {
  font-size: 0.84rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  min-height: 4.75rem;
  border-top: 0.0625rem solid rgb(255 255 255 / 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gold-400);
}

.noscript-message {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 100;
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--gold-400);
  color: var(--navy-950);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

[data-reveal] {
  opacity: 1;
  translate: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  translate: 0 1.2rem;
  transition: opacity 600ms ease, translate 600ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  translate: 0;
}

@keyframes spin {
  to { rotate: 360deg; }
}

@media (max-width: 64rem) {
  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    max-height: calc(100svh - var(--header-height) - 1.5rem);
    padding: 1rem;
    border: 0.0625rem solid var(--line);
    border-radius: var(--radius-md);
    overflow-y: auto;
    display: grid;
    align-items: stretch;
    gap: 0.2rem;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    translate: 0 -0.75rem;
    transition: opacity var(--transition), visibility var(--transition), translate var(--transition);
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    translate: 0;
  }

  .primary-nav > a:not(.button) {
    padding: 0.9rem 0.8rem;
    border-radius: 0.65rem;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav > a:not(.button):hover {
    background: var(--surface);
  }

  .nav-cta {
    margin-top: 0.45rem;
  }

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

  .hero__content {
    max-width: 52rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-visual {
    width: min(100%, 42rem);
  }

  .hero-visual__frame {
    min-height: 30rem;
  }

  .split-layout,
  .industries__layout,
  .why-layout,
  .contact-cta__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-panel {
    position: static;
  }

  .industries__content,
  .contact-cta__content {
    max-width: 46rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.8fr);
  }
}

@media (max-width: 48rem) {
  :root {
    --header-height: 4.5rem;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__location {
    display: none;
  }

  .topbar__links {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .topbar__links a:first-child {
    max-width: 52%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgb(3 17 38 / 0.84), rgb(3 17 38 / 0.54)),
      linear-gradient(180deg, rgb(3 17 38 / 0.1), rgb(3 17 38 / 0.42));
  }

  .hero__slide:nth-child(1) {
    object-position: 65% center;
  }

  .hero__slide:nth-child(2) {
    object-position: 63% center;
  }

  .hero__slide:nth-child(3) {
    object-position: 60% center;
  }

  .hero__slide:nth-child(4) {
    object-position: 68% center;
  }

  .hero__slide:nth-child(5) {
    object-position: 72% center;
  }

  .hero__grid {
    padding-block: 4.7rem 6rem;
    gap: 3.2rem;
  }

  .hero__actions,
  .contact-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button,
  .contact-cta__actions .button {
    width: 100%;
  }

  .hero__assurances {
    display: grid;
    gap: 0.65rem;
  }

  .hero-visual__frame {
    min-height: 25rem;
    border-radius: 1.5rem;
  }

  .hero-visual__frame::before {
    width: 18rem;
  }

  .hero-visual__frame::after {
    width: 11rem;
  }

  .hero-visual__orbit--one {
    width: 21rem;
  }

  .hero-visual__orbit--two {
    width: 14rem;
  }

  .capability-chip {
    width: min(11rem, 47%);
    padding: 0.65rem;
    gap: 0.55rem;
  }

  .capability-chip__icon {
    width: 1.9rem;
  }

  .capability-chip strong {
    font-size: 0.7rem;
  }

  .capability-chip small {
    font-size: 0.58rem;
  }

  .capability-strip {
    margin-top: -1.75rem;
  }

  .capability-strip__grid {
    grid-template-columns: 1fr;
  }

  .capability-strip article + article {
    border-top: 0.0625rem solid var(--line);
    border-left: 0;
  }

  .vision-mission-grid,
  .section-intro,
  .quality-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    align-items: start;
  }

  .service-card h3,
  .service-card > p {
    min-height: auto;
  }

  .section-intro > p {
    max-width: 42rem;
    justify-self: start;
  }

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

  .metric-grid article {
    min-height: 9.5rem;
  }

  .quality-card {
    min-height: 24rem;
  }

  .footer-links {
    gap: 1.25rem;
  }
}

@media (max-width: 31rem) {
  .topbar__links {
    justify-content: center;
  }

  .topbar__links a:first-child {
    display: none;
  }

  .brand__text {
    font-size: 1.1rem;
  }

  .hero-visual__frame {
    min-height: 22rem;
  }

  .hero-visual__brand small {
    max-width: 12rem;
    margin-inline: auto;
    line-height: 1.5;
  }

  .capability-chip--procurement {
    top: 7%;
    left: 3%;
  }

  .capability-chip--engineering {
    top: 47%;
    right: 2%;
  }

  .capability-chip--supply {
    bottom: 6%;
    left: 3%;
  }

  .industries-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid article {
    min-height: 8.75rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-block: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    translate: none;
  }
}


/* ================================================================
   Contact, legal, and form components
   ================================================================ */

.button--outline-dark {
  border-color: rgb(7 26 56 / 0.22);
  background: transparent;
  color: var(--navy-900);
}

.button--outline-dark:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.flash-stack {
  position: fixed;
  top: calc(var(--header-height) + 1rem);
  right: 0;
  left: 0;
  z-index: 90;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.flash-message {
  max-width: 34rem;
  padding: 0.9rem 1.1rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
  pointer-events: auto;
}

.flash-message--success { border-color: rgb(24 132 81 / 0.35); }
.flash-message--error { border-color: rgb(181 54 54 / 0.35); }


.inquiry-form {
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink-900);
  box-shadow: var(--shadow-lg);
}


.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  min-width: 0;
}

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

.form-field label {
  margin-bottom: 0.45rem;
  display: block;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 750;
}

.form-field label span {
  color: var(--gold-500);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.72rem 0.85rem;
  border: 0.0625rem solid #cfd7e2;
  border-radius: 0.7rem;
  background: #fbfcfe;
  color: var(--ink-900);
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.form-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #aab6c6;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 0.22rem rgb(201 149 46 / 0.14);
}

.form-field [aria-invalid="true"] {
  border-color: #b53636;
  box-shadow: 0 0 0 0.2rem rgb(181 54 54 / 0.09);
}

.form-help,
.form-error {
  display: block;
  font-size: 0.72rem;
  line-height: 1.45;
}

.form-help {
  margin-top: 0.35rem;
  color: var(--ink-600);
  text-align: right;
}

.form-error {
  min-height: 1.05rem;
  margin-top: 0.25rem;
  color: #a52f2f;
}

.form-consent {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  color: var(--ink-700);
  font-size: 0.78rem;
  cursor: pointer;
}

.form-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.18rem;
  accent-color: var(--gold-500);
}

.form-consent a {
  color: var(--navy-900);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.form-submit-row {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-submit-row button:disabled {
  opacity: 0.65;
  cursor: wait;
  translate: none;
}

.form-status {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.8rem;
}

.form-status[data-status-type="success"] { color: #12693f; }
.form-status[data-status-type="error"] { color: #a52f2f; }
.form-status[data-status-type="pending"] { color: var(--ink-700); }

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-section {
  background: linear-gradient(180deg, #f4f6f9 0%, #ffffff 100%);
}

.contact-section__intro {
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: start;
  gap: clamp(1rem, 4vw, 2rem);
}

.inquiry-form--contact {
  box-shadow: var(--shadow-sm);
}

.contact-details {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-details__header h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.contact-details__header > p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.65);
}

.contact-card--light {
  margin-top: 1.5rem;
  border-color: rgb(255 255 255 / 0.13);
  background: rgb(255 255 255 / 0.06);
  box-shadow: none;
}


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

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Legal pages */
.legal-hero {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 88% 20%, rgb(201 149 46 / 0.2), transparent 24%),
    var(--navy-950);
  color: var(--white);
}

.legal-hero__inner {
  max-width: 56rem;
}

.legal-hero h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 45rem;
  color: rgb(255 255 255 / 0.7);
}

.legal-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  color: rgb(255 255 255 / 0.58);
  font-size: 0.8rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.28fr) minmax(0, 0.72fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: 1.2rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  gap: 0.35rem;
  background: var(--surface);
}

.legal-nav h2 {
  margin-bottom: 0.5rem;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.legal-nav a {
  padding: 0.45rem 0.55rem;
  border-radius: 0.45rem;
  color: var(--ink-600);
  font-size: 0.8rem;
}

.legal-nav a:hover {
  background: var(--white);
  color: var(--navy-900);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-content section + section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.0625rem solid var(--line);
}

.legal-content h2 {
  margin-bottom: 1rem;
  color: var(--navy-900);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-content h3 {
  margin: 1.5rem 0 0.65rem;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-700);
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.5rem;
}

.legal-notice {
  margin-bottom: 2rem;
  padding: 1rem 1.1rem;
  border-left: 0.22rem solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--gold-100);
  color: var(--ink-700);
}

/* Error page */
.error-page {
  min-height: calc(100svh - var(--header-height) - 2.25rem);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgb(201 149 46 / 0.18), transparent 24%),
    var(--navy-950);
  color: var(--white);
}

.error-page__content {
  max-width: 48rem;
  padding-block: 5rem;
}

.error-code {
  display: block;
  color: var(--gold-400);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.error-page h1 {
  margin: 1.5rem 0 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.error-page p {
  max-width: 40rem;
  color: rgb(255 255 255 / 0.68);
}

.error-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 64rem) {
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }


  .legal-nav {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }

  .legal-nav h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 48rem) {
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .contact-section__intro {
    display: block;
  }

  .contact-section__intro > p {
    margin-top: 1rem;
  }
}

@media (max-width: 31rem) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .inquiry-form,
  .contact-details {
    padding: 1.1rem;
    border-radius: 1rem;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .error-actions .button {
    width: 100%;
  }
}

/* =========================================================
   CLIENT CORRECTIONS — 19 AUGUST 2026
   Integrated directly into the original PASS stylesheet.
   ========================================================= */
:root {
  --pass-navy: #071a38;
  --pass-navy-2: #0d2a55;
  --pass-blue: #174e8c;
  --pass-gold: #d3a534;
  --pass-gold-soft: #f4e8c4;
  --pass-ice: #eef4fb;
  --pass-slate: #22344d;
}

/* Integrated client correction rules. */
.brand__logo { height: 70px !important; max-width: 240px !important; }

.topbar { background: var(--pass-navy) !important; }
.topbar__links { display:flex; gap:1rem; flex-wrap:wrap; }
.topbar__links a,
.topbar__location { font-size: .95rem !important; font-weight: 700; }

.primary-nav { gap: .45rem !important; }
.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .68rem .9rem !important;
  border: 1px solid rgba(7,26,56,.18);
  border-radius: 10px;
  color: var(--pass-navy) !important;
  font-weight: 800 !important;
  transition: .2s ease;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--pass-navy);
  color: #fff !important;
  border-color: var(--pass-navy);
  transform: translateY(-1px);
}
.primary-nav .nav-cta,
.primary-nav a:last-child {
  background: var(--pass-navy);
  color: #fff !important;
}
.primary-nav .nav-cta:hover,
.primary-nav a:last-child:hover { background: var(--pass-gold); color: var(--pass-navy) !important; }

.hero .eyebrow { font-size: clamp(.95rem, 1.1vw, 1.1rem) !important; letter-spacing: .12em; }
.hero h1 { font-size: clamp(2.15rem, 4vw, 4.35rem) !important; line-height: 1.03 !important; max-width: 940px; }

.section--brand-tint,
.about-values-section { background: var(--pass-ice); }
.eyebrow { color: #9a7015; font-weight: 800; }

.services-grid--client-order { align-items: stretch; }
.service-card { overflow: hidden; }
.service-card__number,
.industry-card__number { display: none !important; }
.service-card--navy { background: var(--pass-navy) !important; color: #fff; border-color: var(--pass-navy) !important; }
.service-card--navy h3, .service-card--navy p, .service-card--navy li { color:#fff !important; }
.service-card--gold-tint { background: #fbf3de !important; border-color: #e2c46c !important; }
.service-card--blue-tint { background: #eaf2fb !important; border-color: #a9c7e7 !important; }
.service-card--slate { background: #e9edf3 !important; border-color: #bac4d2 !important; }
.service-card .icon-box { background: var(--pass-gold-soft) !important; color: var(--pass-navy) !important; }

.product-image-strip { display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:.5rem; margin-top:1.25rem; }
.product-image {
  min-height:95px;
  border-radius:10px;
  display:flex;
  align-items:flex-end;
  padding:.6rem;
  background-color:#102846;
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}
.product-image::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 20%, rgba(0,0,0,.72)); }
.product-image strong { position:relative; z-index:1; color:#fff; font-size:.75rem; line-height:1.1; }
.product-image--bearings { background-image:url("../images/products/bearings.webp"); }
.product-image--conveyor { background-image:url("../images/products/conveyor-belt.webp"); }
.product-image--pumps { background-image:url("../images/products/pumps.webp"); }
.product-image--compressors { background-image:url("../images/products/compressors.webp"); }
.product-image--instrumentation { background-image:url("../images/products/instrumentation.webp"); }

.industries-grid--image { gap:.75rem !important; }
.industry-image-card,
.industry-directory-card {
  min-height:145px;
  border-radius:14px;
  padding:1rem;
  color:#fff !important;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
  background-color:var(--pass-navy-2);
  background-size:cover;
  background-position:center;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.industry-image-card::before,
.industry-directory-card::before,
.industry-detail__visual::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(7,26,56,.18), rgba(7,26,56,.90)); }
.industry-image-card > *,
.industry-directory-card > * { position:relative; z-index:1; }
.industry-image-card h3,
.industry-directory-card h3 { color:#fff !important; margin:.35rem 0 0; }
.industry-image-card .industry-card__icon,
.industry-directory-card .industry-card__icon { width:36px; height:36px; border-radius:9px; display:grid; place-items:center; background:var(--pass-gold); color:var(--pass-navy); font-weight:900; }

.industry-cement { background-image:url("../images/industries/cement.webp"); }
.industry-mining { background-image:url("../images/industries/mining-construction.webp"); }
.industry-fmcg { background-image:url("../images/industries/fmcg.webp"); }
.industry-food { background-image:url("../images/industries/food-beverage.webp"); }
.industry-oil, .industry-oil-gas { background-image:url("../images/industries/oil-gas.webp"); }
.industry-marine { background-image:url("../images/industries/marine.webp"); }
.industry-power { background-image:url("../images/industries/power-generation.webp"); }
.industry-pharma { background-image:url("../images/industries/pharmaceutical.webp"); }

.compact-quote-layout { display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:2rem; align-items:start; }
.inquiry-form--compact { padding:1.25rem !important; }
.inquiry-form--compact textarea { min-height:110px; }
.section--quote { background:#f4f7fb; }

.about-page-grid { display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:3rem; }
.about-page-copy p { font-size:1.05rem; }
.vision-mission-grid--expanded article,
.values-grid--strong article,
.quality-card--accent { background:#eef4fb !important; border:1px solid #c9d7e8 !important; }
.values-grid--strong article:nth-child(even) { background:#f7efd7 !important; border-color:#ead18b !important; }

.quality-sustainability { background:#dfe9f6; }
.page-cta { display:flex; align-items:center; justify-content:space-between; gap:2rem; }
.section--cta { background:var(--pass-navy); color:#fff; }
.section--cta h2, .section--cta p { color:#fff; }

.contact-layout--page { align-items:start; }
.contact-details--page { position:sticky; top:110px; }
.contact-card--light { background:var(--pass-navy) !important; color:#fff !important; }
.contact-card--light a, .contact-card--light p, .contact-card--light span { color:#fff !important; }

.industry-directory { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:1rem; }
.industry-directory-card { min-height:180px; }
.industry-detail {
  display:grid;
  grid-template-columns:minmax(260px,.75fr) minmax(0,1.25fr);
  gap:2rem;
  padding:2rem 0;
  border-bottom:1px solid #d7dfeb;
  scroll-margin-top:120px;
}
.industry-detail__visual {
  min-height:320px;
  border-radius:18px;
  background-color:var(--pass-navy);
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}
.industry-detail__content h2 { margin-top:.25rem; }
.industry-detail__content h3 { margin-top:1.25rem; color:var(--pass-navy); }

.site-footer { background:#041326 !important; }
.site-footer, .site-footer p, .site-footer a, .site-footer h2 { color:#fff !important; }
.site-footer p, .site-footer a { font-weight:650 !important; font-size:.95rem !important; }
.site-footer h2 { font-weight:800 !important; }
.site-footer .brand__logo { filter:none; }

@media (max-width: 1024px) {
  .primary-nav a { width:100%; justify-content:flex-start; margin:.18rem 0; }
  .product-image-strip { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .industry-directory { grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .brand__logo { height:58px !important; max-width:205px !important; }
  .topbar__links { gap:.45rem .8rem; }
  .topbar__links a, .topbar__location { font-size:.86rem !important; }
  .hero h1 { font-size:clamp(2rem, 10vw, 3rem) !important; line-height:1.05 !important; }
  .hero .eyebrow { font-size:.93rem !important; }
  .compact-quote-layout,
  .about-page-grid,
  .industry-detail { grid-template-columns:1fr; }
  .industry-directory { grid-template-columns:1fr; }
  .industry-detail__visual { min-height:220px; }
  .contact-details--page { position:static; }
  .page-cta { align-items:flex-start; flex-direction:column; }
}

/* =========================================================
   WHY CHOOSE PASS — CLIENT FRAME CORRECTION
   Removes numbered badges and gives the attention cards
   stronger PASS navy/gold colour treatment.
   ========================================================= */

#why-pass {
  background:
    radial-gradient(circle at 8% 12%, rgb(201 149 46 / 0.08), transparent 24rem),
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

/* Make the three supporting metric frames visually distinct. */
#why-pass .metric-grid article {
  border: 0;
  box-shadow: 0 1rem 2.5rem rgb(3 17 38 / 0.12);
}

#why-pass .metric-grid article:nth-child(1) {
  background: linear-gradient(155deg, #071a38 0%, #0c2852 100%);
}

#why-pass .metric-grid article:nth-child(2) {
  background: linear-gradient(155deg, #174e8c 0%, #0c2852 100%);
}

#why-pass .metric-grid article:nth-child(3) {
  background: linear-gradient(155deg, #f7e9bd 0%, #e9cb73 100%);
}

#why-pass .metric-grid article:nth-child(1) small,
#why-pass .metric-grid article:nth-child(1) strong,
#why-pass .metric-grid article:nth-child(1) > span:not(.metric-card__icon),
#why-pass .metric-grid article:nth-child(2) small,
#why-pass .metric-grid article:nth-child(2) strong,
#why-pass .metric-grid article:nth-child(2) > span:not(.metric-card__icon) {
  color: #ffffff;
}

#why-pass .metric-grid article:nth-child(3) small,
#why-pass .metric-grid article:nth-child(3) strong,
#why-pass .metric-grid article:nth-child(3) > span:not(.metric-card__icon) {
  color: var(--navy-950);
}

#why-pass .metric-grid article:nth-child(1) .metric-card__icon,
#why-pass .metric-grid article:nth-child(2) .metric-card__icon {
  background: var(--gold-500);
  color: var(--navy-950) !important;
}

#why-pass .metric-grid article:nth-child(3) .metric-card__icon {
  background: var(--navy-900);
  color: #ffffff !important;
}

/* Right-side attention frames: no numbers, strong branded contrast. */
#why-pass .advantages-grid--attention {
  gap: 0.9rem;
}

#why-pass .advantages-grid--attention article {
  min-height: 7.25rem;
  padding: 1.3rem 1.45rem;
  border: 1px solid rgb(201 149 46 / 0.72);
  border-radius: 1.15rem;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgb(23 78 140 / 0.38), transparent 18rem),
    linear-gradient(135deg, #071a38 0%, #0b244a 100%);
  box-shadow: 0 1rem 2.4rem rgb(3 17 38 / 0.14);
}

#why-pass .advantages-grid--attention article:hover {
  border-color: var(--gold-400);
  background:
    radial-gradient(circle at 100% 0%, rgb(23 78 140 / 0.5), transparent 18rem),
    linear-gradient(135deg, #0a2145 0%, #103564 100%);
  box-shadow: 0 1.25rem 2.8rem rgb(3 17 38 / 0.22);
}

#why-pass .advantages-grid--attention .advantage-icon {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 0.7rem 1.5rem rgb(201 149 46 / 0.2);
}

#why-pass .advantages-grid--attention .advantage-icon svg {
  width: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#why-pass .advantages-grid--attention h3 {
  margin-bottom: 0.35rem;
  color: var(--gold-400);
  font-size: 1.05rem;
}

#why-pass .advantages-grid--attention p {
  color: rgb(255 255 255 / 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 48rem) {
  #why-pass .metric-grid {
    grid-template-columns: 1fr;
  }

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

  #why-pass .advantages-grid--attention article {
    min-height: auto;
    padding: 1.15rem;
  }
}


/* =========================================================
   INDUSTRIES CARDS — CLIENT IMAGE CARD CORRECTION
   - no numbers
   - keep gold icon box
   - use representative background images on cards
   ========================================================= */

.industries-grid--image {
  gap: 1rem !important;
}

.industry-image-card,
.industry-directory-card {
  min-height: 185px;
  padding: 1.1rem 1.1rem 1.2rem;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid rgba(201,149,46,.12);
  background-color: var(--pass-navy-2);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.industry-image-card::before,
.industry-directory-card::before,
.industry-detail__visual::before {
  background:
    linear-gradient(180deg, rgba(7,26,56,.35) 0%, rgba(7,26,56,.22) 28%, rgba(7,26,56,.88) 100%);
}

.industry-image-card::after,
.industry-directory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(7,26,56,.18), rgba(7,26,56,0) 42%);
}

.industry-image-card > *,
.industry-directory-card > * {
  position: relative;
  z-index: 1;
}

.industry-image-card h3,
.industry-directory-card h3 {
  margin-top: auto;
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  text-wrap: balance;
}

.industry-directory-card span:last-child {
  margin-top: .5rem;
  color: rgba(255,255,255,.84);
  font-size: .9rem;
}

.industry-image-card .industry-card__icon,
.industry-directory-card .industry-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: .8rem;
  display: grid;
  place-items: center;
  background: var(--pass-gold);
  color: var(--pass-navy);
  font-weight: 900;
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.18);
}

@media (max-width: 48rem) {
  .industry-image-card,
  .industry-directory-card {
    min-height: 165px;
  }
}


/* =========================================================
   HOMEPAGE REFINEMENTS — 19 AUGUST 2026
   ========================================================= */

/* Keep the contact/location strip visible when the page first loads.
   It remains in normal document flow, so it naturally scrolls away
   while the sticky main header keeps its existing behaviour. */
.topbar {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Vertically centre the PrimeAxis/About copy with the heading column. */
.split-layout--about {
  align-items: center;
}

.split-layout--about .about-copy {
  align-self: center;
}

/* Homepage industry cards:
   icon + title stay near the top, with a clear click affordance below. */
#industries .industry-image-card {
  justify-content: flex-start;
  min-height: 185px;
}

#industries .industry-image-card .industry-card__icon {
  flex: 0 0 auto;
}

#industries .industry-image-card h3 {
  margin: .7rem 0 0;
  max-width: 100%;
}

#industries .industry-image-card .industry-card__link {
  margin-top: auto;
  padding-top: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.92);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color var(--transition), gap var(--transition);
}

#industries .industry-image-card:hover .industry-card__link {
  color: var(--gold-400);
  gap: .55rem;
}

/* Product image preview strip has been removed from the homepage card. */
#services .service-card--navy .product-image-strip {
  display: none !important;
}

@media (max-width: 48rem) {
  .split-layout--about {
    align-items: start;
  }

  #industries .industry-image-card {
    min-height: 165px;
  }
}


/* =========================================================
   ABOUT HOMEPAGE ALIGNMENT — 19 AUGUST 2026
   Vertically aligns the centre of the left About heading
   with the centre of the right PrimeAxis text block.
   ========================================================= */

#about .split-layout--about {
  align-items: center !important;
}

#about .split-layout--about > .section-heading,
#about .split-layout--about > .about-copy {
  align-self: center !important;
}

#about .split-layout--about > .about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 48rem) {
  #about .split-layout--about {
    align-items: start !important;
  }

  #about .split-layout--about > .section-heading,
  #about .split-layout--about > .about-copy {
    align-self: stretch !important;
  }
}


/* =========================================================
   ABOUT PAGE — WHO WE ARE VERTICAL ALIGNMENT
   Vertically centres the left heading block with the right
   company-description block on desktop.
   ========================================================= */

.about-page-grid {
  align-items: center !important;
}

.about-page-grid > div:first-child,
.about-page-grid > .about-page-copy {
  align-self: center !important;
}

.about-page-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 48rem) {
  .about-page-grid {
    align-items: start !important;
  }

  .about-page-grid > div:first-child,
  .about-page-grid > .about-page-copy {
    align-self: stretch !important;
  }
}


/* =========================================================
   ABOUT PAGE BALANCED TWO-COLUMN ALIGNMENT — FINAL FIX
   The left heading is much taller than the right copy. The
   right copy is centred inside the same grid row on desktop.
   ========================================================= */

.about-page-grid--balanced {
  display: grid !important;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) !important;
  align-items: center !important;
  column-gap: clamp(3rem, 7vw, 7rem);
}

.about-page-grid--balanced > :first-child {
  align-self: center !important;
}

.about-page-grid--balanced > .about-page-copy {
  align-self: center !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center !important;
  margin-block: auto;
}

.about-page-grid--balanced > .about-page-copy > :first-child {
  margin-top: 0;
}

.about-page-grid--balanced > .about-page-copy > :last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .about-page-grid--balanced {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    row-gap: 2rem;
  }

  .about-page-grid--balanced > :first-child,
  .about-page-grid--balanced > .about-page-copy {
    align-self: stretch !important;
    margin-block: 0;
  }
}


/* =========================================================
   WHY CHOOSE PASS — ATTENTION FRAME COLOUR UPDATE
   Client request: the six frames must attract attention and
   must not remain white-on-white.
   ========================================================= */

#why-pass .advantages-grid.advantages-grid--attention {
  gap: 0.95rem;
}

#why-pass .advantages-grid.advantages-grid--attention > article {
  min-height: 7.4rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(221, 180, 91, 0.72) !important;
  border-radius: 1.15rem;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 78, 140, 0.34), transparent 17rem),
    linear-gradient(135deg, #071a38 0%, #0b2b55 100%) !important;
  box-shadow: 0 1rem 2.5rem rgba(3, 17, 38, 0.16);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

#why-pass .advantages-grid.advantages-grid--attention > article:nth-child(even) {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 149, 46, 0.14), transparent 16rem),
    linear-gradient(135deg, #0c2852 0%, #123d73 100%) !important;
}

#why-pass .advantages-grid.advantages-grid--attention > article:hover {
  transform: translateY(-0.2rem);
  border-color: #ddb45b !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 149, 46, 0.18), transparent 16rem),
    linear-gradient(135deg, #0b244a 0%, #174e8c 100%) !important;
  box-shadow: 0 1.25rem 2.8rem rgba(3, 17, 38, 0.23);
}

#why-pass .advantages-grid.advantages-grid--attention .advantage-icon {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 3.25rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #f0c45e 0%, #c9952e 100%) !important;
  color: #071a38 !important;
  box-shadow: 0 0.75rem 1.5rem rgba(201, 149, 46, 0.22);
}

#why-pass .advantages-grid.advantages-grid--attention .advantage-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#why-pass .advantages-grid.advantages-grid--attention h3 {
  margin-bottom: 0.35rem;
  color: #f0c45e !important;
  font-size: 1.05rem;
}

#why-pass .advantages-grid.advantages-grid--attention p {
  color: rgba(255,255,255,.78) !important;
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 48rem) {
  #why-pass .advantages-grid.advantages-grid--attention > article {
    min-height: auto;
    padding: 1.15rem;
  }
}


/* =========================================================
   AUGUST 2026 ROUND OF UPDATES
   - remove top header strip
   - stronger eyebrow readability
   - add services slider
   - hero/page visual refinements
   ========================================================= */

.topbar { display: none !important; }

body { overflow-x: hidden; }

.site-header { top: 0 !important; }

.hero,
.legal-hero { margin-top: 0 !important; }

.hero .eyebrow,
#industries .eyebrow,
#about .eyebrow,
.legal-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .88rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.24);
  box-shadow: 0 .45rem 1.2rem rgba(0,0,0,.08);
}

#about .eyebrow,
.section--brand-tint .section-heading .eyebrow {
  background: rgba(211,165,52,.14);
  border-color: rgba(211,165,52,.26);
  color: #8a6110 !important;
  text-shadow: none;
}

.industries__content .eyebrow--light,
.hero .eyebrow--light,
.legal-hero .eyebrow--light {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  color: #fff !important;
}

/* Contact forms: more compact width and height */
.section--quote .container.compact-quote-layout {
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  gap: 1.4rem;
}

.inquiry-form--compact {
  max-width: 650px;
  justify-self: end;
  padding: 1rem 1rem 1.05rem !important;
}

.inquiry-form--compact .form-grid {
  gap: .75rem;
}

.inquiry-form--compact textarea {
  min-height: 96px !important;
}

.contact-layout--page {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .8fr);
  gap: 1.5rem;
  align-items: start;
}

.inquiry-form--contact {
  max-width: 760px;
  padding: 1.2rem 1.2rem 1.1rem !important;
}

.inquiry-form--contact .form-grid {
  gap: .8rem;
}

.inquiry-form--contact textarea {
  min-height: 132px;
}

/* Home services slider */
.services-carousel {
  position: relative;
  padding-inline: clamp(0.4rem, 3vw, 4rem);
}

.services-carousel__viewport {
  overflow: hidden;
  border-radius: 1.6rem;
}

.services-grid--slider-track {
  display: flex !important;
  gap: 0 !important;
  transition: transform .55s ease;
  will-change: transform;
}

.services-grid--slider-track .service-card {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 475px;
  padding: 2rem 2rem 1.8rem;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 1.2rem 2.7rem rgba(5, 15, 30, .15);
  background-size: cover !important;
  background-position: center !important;
  isolation: isolate;
}

.services-grid--slider-track .service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,56,.38) 0%, rgba(7,26,56,.62) 38%, rgba(7,26,56,.92) 100%);
  z-index: 0;
}

.services-grid--slider-track .service-card > * {
  position: relative;
  z-index: 1;
}

.services-grid--slider-track .service-card--navy {
  background-image: url('../images/services/service-industrial-products.webp') !important;
}

.services-grid--slider-track .service-card--gold-tint {
  background-image: url('../images/services/service-procurement.webp') !important;
}

.services-grid--slider-track .service-card--blue-tint {
  background-image: url('../images/services/service-automation.webp') !important;
}

.services-grid--slider-track .service-card--slate {
  background-image: url('../images/services/service-engineering.webp') !important;
}

.services-grid--slider-track .service-card h3,
.services-grid--slider-track .service-card > p,
.services-grid--slider-track .service-card li {
  color: #fff !important;
}

.services-grid--slider-track .service-card .icon-box {
  background: rgba(244,232,196,.94) !important;
}

.services-grid--slider-track .check-list li {
  border-bottom-color: rgba(255,255,255,.14);
}

.services-carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7,26,56,.92);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 .8rem 1.8rem rgba(7,26,56,.18);
}

.services-carousel__button:hover {
  background: var(--pass-gold);
  color: var(--pass-navy);
}

.services-carousel__button--prev { left: 0; }
.services-carousel__button--next { right: 0; }

.services-carousel__dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1rem;
}

.services-carousel__dot {
  width: .8rem;
  height: .8rem;
  border-radius: 999px;
  border: 0;
  background: rgba(7,26,56,.2);
  cursor: pointer;
}

.services-carousel__dot.is-active {
  width: 2rem;
  background: var(--pass-gold);
}

/* Contact page hero with image on the right */
.contact-page-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(7,26,56,.98), rgba(12,40,82,.9));
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 1.5rem;
  align-items: center;
}

.contact-hero-copy {
  max-width: 44rem;
}

.contact-hero-visual {
  min-height: 340px;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(7,26,56,.12), rgba(7,26,56,.52)),
    url('../images/pages/contact-hero-side.webp') center/cover no-repeat;
  box-shadow: 0 1.2rem 2.8rem rgba(0,0,0,.18);
}

/* Industries hero background */
.industries-page-hero--visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7,26,56,.62), rgba(7,26,56,.82)),
    url('../images/pages/industries-hero-bg.webp') center/cover no-repeat;
}

/* About hero logo background */
.about-hero--logo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7,26,56,.97), rgba(12,40,82,.93));
}

.about-hero--logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/logo.jpeg') center/38% auto no-repeat;
  opacity: .11;
  pointer-events: none;
}

.about-hero--logo .legal-hero__inner,
.industries-page-hero--visual .legal-hero__inner {
  position: relative;
  z-index: 1;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-hero-grid,
  .contact-layout--page,
  .section--quote .container.compact-quote-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero-visual {
    min-height: 240px;
  }

  .services-carousel {
    padding-inline: 0;
  }

  .services-carousel__button {
    display: none;
  }

  .services-grid--slider-track .service-card {
    min-height: 520px;
    padding: 1.5rem 1.2rem;
  }

  .inquiry-form--compact,
  .inquiry-form--contact {
    max-width: none;
    justify-self: stretch;
  }
}


/* =========================================================
   21 AUGUST 2026 — OVERFLOW SERVICES / CONTACT / FOOTER
   ========================================================= */

/* Products & Services becomes a full-bleed, image-led horizontal gallery.
   The next card deliberately remains visible so visitors know they can swipe. */
#services {
  overflow: hidden;
}

#services .services-carousel {
  --service-edge: max(1rem, calc((100vw - var(--container)) / 2 + 1rem));
  width: 100vw;
  max-width: none;
  margin-top: .5rem;
  margin-left: calc(50% - 50vw);
  padding-inline: 0 !important;
  position: relative;
}

#services .services-carousel__viewport {
  width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: var(--service-edge);
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  border-radius: 0 !important;
}

#services .services-carousel__viewport::-webkit-scrollbar {
  display: none;
}

#services .services-grid--slider-track {
  width: max-content;
  min-width: 100%;
  display: flex !important;
  gap: clamp(.9rem, 1.7vw, 1.4rem) !important;
  padding:
    .45rem
    var(--service-edge)
    1.4rem
    var(--service-edge);
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

#services .services-grid--slider-track .service-card {
  flex: 0 0 clamp(36rem, 72vw, 58rem) !important;
  min-width: 0 !important;
  min-height: clamp(31rem, 48vw, 38rem);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  justify-content: flex-end;
  padding: clamp(1.55rem, 3vw, 2.6rem) !important;
  border-radius: 1.45rem !important;
  box-shadow: 0 1.25rem 3.2rem rgba(4, 19, 38, .19);
  background-size: cover !important;
  background-position: center !important;
}

#services .services-grid--slider-track .service-card::before {
  background:
    linear-gradient(
      180deg,
      rgba(7, 26, 56, .16) 0%,
      rgba(7, 26, 56, .32) 28%,
      rgba(7, 26, 56, .90) 72%,
      rgba(4, 19, 38, .97) 100%
    ) !important;
}

#services .services-grid--slider-track .service-card__top {
  margin-bottom: 1rem;
}

#services .services-grid--slider-track .service-card h3 {
  min-height: auto;
  max-width: 19ch;
  margin-bottom: .7rem;
  color: #fff !important;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

#services .services-grid--slider-track .service-card > p {
  min-height: auto;
  max-width: 48rem;
  margin-bottom: 0;
  color: rgba(255,255,255,.88) !important;
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
}

#services .services-grid--slider-track .check-list {
  max-width: 50rem;
  margin-top: 1rem;
  padding-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem 1.5rem;
  border-top-color: rgba(255,255,255,.2);
  color: #fff;
}

#services .services-grid--slider-track .check-list li {
  color: rgba(255,255,255,.93) !important;
}

#services .services-grid--slider-track .check-list li::before {
  background: var(--gold-400);
  box-shadow: 0 0 0 .18rem rgba(221,180,91,.18);
}

#services .services-carousel__button {
  z-index: 4;
  top: calc(50% + 1rem);
}

#services .services-carousel__button--prev {
  left: max(.6rem, calc((100vw - var(--container)) / 2 - 1.2rem));
}

#services .services-carousel__button--next {
  right: max(.6rem, calc((100vw - var(--container)) / 2 - 1.2rem));
}

#services .services-carousel__dots {
  margin-top: .35rem;
}

/* Homepage contact form now has the same fields as Contact Us,
   but uses tighter spacing to keep the section compact. */
.section--quote-compact {
  padding-block: clamp(3.25rem, 5.5vw, 5rem) !important;
}

.compact-quote-layout--centered {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
  align-items: center !important;
  gap: clamp(1.5rem, 4vw, 3.2rem) !important;
}

.compact-quote-layout--centered .compact-quote-copy {
  align-self: center !important;
  margin-block: auto;
}

.compact-quote-layout--centered .compact-quote-copy > :last-child {
  margin-bottom: 0;
}

.inquiry-form--home-contact {
  width: 100%;
  max-width: 680px !important;
  padding: .9rem 1rem .95rem !important;
  justify-self: end;
}

.inquiry-form--home-contact .form-grid {
  gap: .55rem .75rem !important;
}

.inquiry-form--home-contact .form-field label {
  margin-bottom: .28rem;
}

.inquiry-form--home-contact .form-field input,
.inquiry-form--home-contact .form-field select,
.inquiry-form--home-contact .form-field textarea {
  min-height: 2.75rem;
  padding: .58rem .72rem;
}

.inquiry-form--home-contact .form-field textarea {
  min-height: 5.8rem !important;
}

.inquiry-form--home-contact .form-help {
  margin-top: .18rem;
}

.inquiry-form--home-contact .form-error:empty {
  display: none;
}

.inquiry-form--home-contact .form-error:not(:empty) {
  min-height: 0;
  margin-top: .16rem;
}

.inquiry-form--home-contact .form-consent {
  margin-top: .65rem;
}

.inquiry-form--home-contact .form-submit-row {
  margin-top: .7rem;
}

/* Keep the dedicated Contact Us form compact as well. */
.inquiry-form--contact {
  padding: 1rem 1.05rem !important;
}

.inquiry-form--contact .form-grid {
  gap: .65rem .8rem !important;
}

.inquiry-form--contact .form-field label {
  margin-bottom: .3rem;
}

.inquiry-form--contact .form-field input,
.inquiry-form--contact .form-field select,
.inquiry-form--contact .form-field textarea {
  min-height: 2.85rem;
  padding: .62rem .75rem;
}

.inquiry-form--contact textarea {
  min-height: 7.5rem !important;
}

.inquiry-form--contact .form-error:empty {
  display: none;
}

/* Footer direct contact details below the PASS capability line. */
.footer-contact-stack {
  margin-top: 1rem;
  display: grid;
  gap: .42rem;
  max-width: 31rem;
  color: rgba(255,255,255,.78);
  font-style: normal;
}

.site-footer .footer-contact-stack span,
.site-footer .footer-contact-stack a {
  display: block;
  margin: 0;
  color: rgba(255,255,255,.78) !important;
  font-size: .9rem !important;
  font-weight: 550 !important;
  line-height: 1.5;
}

.site-footer .footer-contact-stack a:hover {
  color: var(--gold-400) !important;
}

@media (max-width: 760px) {
  #services .services-carousel {
    --service-edge: .75rem;
  }

  #services .services-grid--slider-track .service-card {
    flex-basis: 88vw !important;
    min-height: 36rem;
    padding: 1.35rem 1.15rem !important;
  }

  #services .services-grid--slider-track .check-list {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  #services .services-grid--slider-track .service-card h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .compact-quote-layout--centered {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .inquiry-form--home-contact {
    max-width: none !important;
    justify-self: stretch;
  }
}


/* =========================================================
   21 AUGUST 2026 — PRODUCTS & SERVICES REFERENCE CARD STYLE
   Only the homepage Products & Services presentation changes.
   ========================================================= */

#services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(23,78,140,.18), transparent 28rem),
    linear-gradient(180deg, #041326 0%, #071a38 100%) !important;
  color: #fff;
}

#services .section-intro {
  margin-bottom: clamp(1.5rem, 3vw, 2.3rem);
}

#services .section-intro .eyebrow {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--gold-400) !important;
  text-shadow: none !important;
}

#services .section-intro h2 {
  color: #fff !important;
}

#services .section-intro > p {
  color: rgba(255,255,255,.68) !important;
}

/* Full-width swipe area with part of the next card visible. */
#services .services-carousel {
  --service-edge: max(1rem, calc((100vw - var(--container)) / 2));
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding: 0 !important;
}

#services .services-carousel__viewport {
  width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden;
  border-radius: 0 !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: var(--service-edge);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

#services .services-carousel__viewport::-webkit-scrollbar {
  display: none;
}

#services .services-grid--slider-track {
  display: flex !important;
  width: max-content;
  min-width: 100%;
  gap: .55rem !important;
  padding:
    .25rem
    var(--service-edge)
    1rem
    var(--service-edge);
  transform: none !important;
  transition: none !important;
}

/* Card silhouette like the supplied reference:
   photograph on top, navy copy panel below. */
#services .services-grid--slider-track .service-card {
  position: relative;
  flex: 0 0 clamp(19rem, 23vw, 21.5rem) !important;
  min-width: 0 !important;
  min-height: 34rem !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start !important;
  border: 1px solid rgba(255,255,255,.075) !important;
  border-radius: .9rem !important;
  overflow: hidden;
  background: #082543 !important;
  box-shadow: 0 1rem 2.3rem rgba(0,0,0,.17);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
}

/* Disable previous full-card overlays/background treatment. */
#services .services-grid--slider-track .service-card::before,
#services .services-grid--slider-track .service-card::after {
  display: none !important;
}

#services .service-card__image {
  flex: 0 0 12.5rem;
  min-height: 12.5rem;
  background-color: #102846;
  background-size: cover;
  background-position: center;
}

/* Matched service imagery already included in the latest package. */
#services .service-card--navy .service-card__image {
  background-image: url("../images/services/service-industrial-products-clean.webp");
}

#services .service-card--gold-tint .service-card__image {
  background-image: url("../images/services/service-procurement-clean.webp");
}

#services .service-card--blue-tint .service-card__image {
  background-image: url("../images/services/service-automation.webp");
}

#services .service-card--slate .service-card__image {
  background-image: url("../images/services/service-engineering-clean.webp");
}

#services .service-card__body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  padding: 1.15rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, #0a2a4c 0%, #071f39 100%);
}

/* Gold circular icon overlaps the image/body boundary. */
#services .service-card__body .service-card__top {
  position: absolute;
  top: -1.55rem;
  left: 1rem;
  margin: 0 !important;
}

#services .service-card__body .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 50% !important;
  border: .28rem solid #082543;
  background: var(--gold-400) !important;
  color: var(--navy-950) !important;
  box-shadow: 0 .55rem 1.2rem rgba(0,0,0,.2);
}

#services .service-card__body .icon-box svg {
  width: 1.3rem;
}

#services .service-card__body h3 {
  min-height: auto !important;
  margin: .45rem 0 .65rem !important;
  color: #fff !important;
  font-size: clamp(1.1rem, 1.55vw, 1.28rem) !important;
  line-height: 1.22;
}

#services .service-card__body > p {
  min-height: auto !important;
  margin: 0 0 .8rem !important;
  color: rgba(255,255,255,.82) !important;
  font-size: .88rem !important;
  line-height: 1.55;
}

#services .service-card__body .check-list {
  margin: auto 0 0 !important;
  padding: .8rem 0 0 !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: .34rem !important;
  color: rgba(255,255,255,.82) !important;
  font-size: .78rem !important;
  line-height: 1.35;
}

#services .service-card__body .check-list li {
  color: rgba(255,255,255,.82) !important;
  padding-left: 1rem;
}

#services .service-card__body .check-list li::before {
  top: .42rem;
  width: .32rem;
  background: var(--gold-400) !important;
  box-shadow: none !important;
}

/* Reference-style round controls at the upper right of the gallery. */
#services .services-carousel__button {
  top: -4rem !important;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(7,26,56,.72) !important;
  color: #fff !important;
  box-shadow: none;
}

#services .services-carousel__button:hover {
  border-color: var(--gold-400);
  background: var(--gold-400) !important;
  color: var(--navy-950) !important;
}

#services .services-carousel__button--prev {
  left: auto !important;
  right: calc(var(--service-edge) + 3.2rem) !important;
}

#services .services-carousel__button--next {
  right: var(--service-edge) !important;
}

/* Turn the existing dot control into the long reference-style progress rail. */
#services .services-carousel__dots {
  width: min(var(--container), calc(100% - 2rem));
  height: .38rem;
  margin: .2rem auto 0 !important;
  display: flex;
  gap: 0 !important;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
}

#services .services-carousel__dot {
  flex: 1 1 0;
  width: auto !important;
  height: 100% !important;
  border-radius: 0 !important;
  background: transparent !important;
  transition: background-color .25s ease;
}

#services .services-carousel__dot.is-active {
  width: auto !important;
  background: var(--gold-400) !important;
}

/* Hover affordance without changing the supplied layout. */
#services .service-card:hover {
  transform: translateY(-.22rem);
  border-color: rgba(221,180,91,.35) !important;
  box-shadow: 0 1.3rem 2.8rem rgba(0,0,0,.23);
}

@media (max-width: 900px) {
  #services .services-carousel {
    --service-edge: 1rem;
  }

  #services .services-carousel__button {
    display: none !important;
  }

  #services .services-grid--slider-track .service-card {
    flex-basis: clamp(18rem, 78vw, 21rem) !important;
    min-height: 33rem !important;
  }

  #services .service-card__image {
    flex-basis: 11.5rem;
    min-height: 11.5rem;
  }
}

@media (max-width: 560px) {
  #services .section-intro {
    display: block;
  }

  #services .section-intro > p {
    margin-top: 1rem;
  }

  #services .services-carousel {
    --service-edge: .75rem;
  }

  #services .services-grid--slider-track .service-card {
    flex-basis: 84vw !important;
    min-height: 32.5rem !important;
  }

  #services .service-card__body {
    padding: 1.05rem 1rem 1.15rem;
  }

  #services .services-carousel__dots {
    width: calc(100% - 1.5rem);
  }
}


/* =========================================================
   21 AUGUST 2026 — MOTION & INTERACTION LAYER
   Motion is intentionally subtle and respects reduced-motion.
   ========================================================= */

/* Smoother page feel */
html {
  scroll-behavior: smooth;
}

/* Stronger reveal animation while keeping the existing data-reveal system. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.35rem) scale(.985);
  filter: blur(.18rem);
  transition:
    opacity .72s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms),
    transform .72s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms),
    filter .72s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Header / navigation micro-interactions */
.site-header {
  transition:
    box-shadow .28s ease,
    background-color .28s ease,
    backdrop-filter .28s ease;
}

.brand__logo {
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
}

.brand:hover .brand__logo {
  transform: scale(1.035);
}

.primary-nav a {
  position: relative;
  overflow: hidden;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: .75rem;
  bottom: .34rem;
  left: .75rem;
  height: .13rem;
  border-radius: 999px;
  background: var(--pass-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Hero image motion */
.hero__slide {
  transform: scale(1.025);
  transform-origin: center;
  will-change: transform, opacity;
}

.hero__slide.is-active.is-animating {
  animation: heroKenBurns 7s ease-out both;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.085) translate3d(-.65%, -.35%, 0);
  }
}

.hero__content > * {
  animation: heroContentIn .72s cubic-bezier(.22,.61,.36,1) both;
}

.hero__content > :nth-child(1) { animation-delay: .08s; }
.hero__content > :nth-child(2) { animation-delay: .16s; }
.hero__content > :nth-child(3) { animation-delay: .24s; }
.hero__content > :nth-child(4) { animation-delay: .32s; }
.hero__content > :nth-child(5) { animation-delay: .40s; }
.hero__content > :nth-child(6) { animation-delay: .48s; }

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero dots pulse gently when active */
.hero-slider-dot {
  transition:
    width .28s ease,
    transform .28s ease,
    background-color .28s ease,
    opacity .28s ease;
}

.hero-slider-dot.is-active {
  animation: heroDotPulse 2.2s ease-in-out infinite;
}

@keyframes heroDotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

/* Button movement */
.button {
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    background-color .24s ease,
    border-color .24s ease,
    color .24s ease;
}

.button:hover {
  transform: translateY(-.15rem);
  box-shadow: 0 .7rem 1.5rem rgba(3,17,38,.14);
}

.button svg {
  transition: transform .24s ease;
}

.button:hover svg {
  transform: translateX(.22rem);
}

/* Products & Services motion */
#services .service-card {
  --motion-x: 0deg;
  --motion-y: 0deg;
  transform:
    perspective(1100px)
    rotateX(var(--motion-y))
    rotateY(var(--motion-x))
    translateY(0);
  transform-style: preserve-3d;
  transition:
    transform .36s cubic-bezier(.2,.7,.2,1),
    border-color .3s ease,
    box-shadow .3s ease;
}

#services .service-card:hover {
  transform:
    perspective(1100px)
    rotateX(var(--motion-y))
    rotateY(var(--motion-x))
    translateY(-.38rem);
}

#services .service-card__image {
  transition:
    transform .7s cubic-bezier(.2,.7,.2,1),
    filter .7s ease;
}

#services .service-card:hover .service-card__image {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.025);
}

#services .service-card__body .icon-box {
  transition:
    transform .38s cubic-bezier(.2,.7,.2,1),
    box-shadow .38s ease;
}

#services .service-card:hover .icon-box {
  transform: translateY(-.15rem) rotate(-4deg) scale(1.055);
  box-shadow: 0 .8rem 1.6rem rgba(0,0,0,.24);
}

#services .services-carousel__button {
  transition:
    transform .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease;
}

#services .services-carousel__button:hover {
  transform: translateY(-50%) scale(1.08);
}

/* Industry cards: subtle image zoom and arrow movement */
#industries .industry-image-card {
  --motion-x: 0deg;
  --motion-y: 0deg;
  transform:
    perspective(900px)
    rotateX(var(--motion-y))
    rotateY(var(--motion-x));
  transition:
    transform .34s cubic-bezier(.2,.7,.2,1),
    box-shadow .34s ease,
    border-color .34s ease;
}

#industries .industry-image-card:hover {
  transform:
    perspective(900px)
    rotateX(var(--motion-y))
    rotateY(var(--motion-x))
    translateY(-.28rem);
  box-shadow: 0 1.2rem 2.5rem rgba(0,0,0,.22);
}

#industries .industry-card__icon {
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}

#industries .industry-image-card:hover .industry-card__icon {
  transform: scale(1.07) rotate(-3deg);
}

#industries .industry-card__link span {
  display: inline-block;
  transition: transform .25s ease;
}

#industries .industry-image-card:hover .industry-card__link span {
  transform: translateX(.3rem);
}

/* Why PASS cards */
#why-pass .advantages-grid--attention article {
  --motion-x: 0deg;
  --motion-y: 0deg;
  transform:
    perspective(900px)
    rotateX(var(--motion-y))
    rotateY(var(--motion-x));
  transition:
    transform .32s cubic-bezier(.2,.7,.2,1),
    box-shadow .32s ease,
    border-color .32s ease;
}

#why-pass .advantages-grid--attention article:hover {
  transform:
    perspective(900px)
    rotateX(var(--motion-y))
    rotateY(var(--motion-x))
    translateY(-.22rem);
}

#why-pass .advantage-icon,
#why-pass .metric-card__icon {
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
}

#why-pass article:hover .advantage-icon,
#why-pass .metric-grid article:hover .metric-card__icon {
  transform: translateY(-.12rem) scale(1.06);
}

/* About / value / quality cards */
.vision-mission-grid article,
.values-grid article,
.quality-card {
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.vision-mission-grid article:hover,
.values-grid article:hover,
.quality-card:hover {
  transform: translateY(-.28rem);
  box-shadow: 0 1rem 2.4rem rgba(7,26,56,.12);
}

/* Contact hero visual: gentle floating motion */
.contact-hero-visual {
  animation: contactVisualFloat 6s ease-in-out infinite;
}

@keyframes contactVisualFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-.45rem); }
}

/* Footer links */
.site-footer a {
  transition:
    color .22s ease,
    transform .22s ease;
}

.site-footer a:hover {
  transform: translateX(.16rem);
}

/* Disable non-essential motion when the visitor requests reduced motion. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  #services .service-card,
  #industries .industry-image-card,
  #why-pass .advantages-grid--attention article {
    transform: none !important;
  }
}


/* =========================================================
   21 AUGUST 2026 — STRONGER SCROLL REVEAL + GOLD HOVER
   The gold hover tone matches the footer phone-number hover.
   ========================================================= */

/* More pronounced scroll reveal */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(2.6rem) scale(.965);
  filter: blur(.32rem);
  transition:
    opacity .95s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms),
    transform .95s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms),
    filter .95s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Give cards a slightly stronger entrance while preserving their hover transforms. */
.reveal-ready #services [data-reveal],
.reveal-ready #industries [data-reveal],
.reveal-ready #why-pass [data-reveal] {
  transform: translateY(3rem) scale(.955);
}

.reveal-ready #services [data-reveal].is-visible,
.reveal-ready #industries [data-reveal].is-visible,
.reveal-ready #why-pass [data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

/* Use the same gold hover colour as the footer phone number. */
a:not(.button):hover {
  color: var(--gold-400) !important;
}

/* Header links keep their boxed styling, but the hover colour becomes gold. */
.primary-nav a:hover,
.primary-nav a[aria-current="page"]:hover {
  color: var(--gold-400) !important;
  border-color: var(--gold-400) !important;
}

/* Text links and inline arrows */
.text-link:hover,
.text-link--light:hover,
.footer-links a:hover,
.footer-bottom__links a:hover,
.footer-contact-stack a:hover,
.contact-card a:hover,
.contact-details a:hover {
  color: var(--gold-400) !important;
}

/* Buttons: gold becomes the visible hover treatment while keeping contrast readable. */
.button:hover,
.button--primary:hover,
.button--outline-light:hover,
.button--gold:hover {
  background: var(--gold-400) !important;
  border-color: var(--gold-400) !important;
  color: var(--navy-950) !important;
}

.button:hover svg,
.button--primary:hover svg,
.button--outline-light:hover svg,
.button--gold:hover svg {
  color: var(--navy-950) !important;
  stroke: currentColor;
}

/* Carousel and compact circular controls also use the same hover colour. */
.services-carousel__button:hover,
.hero-arrow:hover,
.slider-arrow:hover,
.carousel-arrow:hover {
  background: var(--gold-400) !important;
  border-color: var(--gold-400) !important;
  color: var(--navy-950) !important;
}

/* Keep reduced-motion behaviour fully accessible. */
@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal],
  .reveal-ready #services [data-reveal],
  .reveal-ready #industries [data-reveal],
  .reveal-ready #why-pass [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* =========================================================
   21 AUGUST 2026 — HERO SLIDER CONTROLS RESTORED
   ========================================================= */

.hero-slider-dots {
  position: relative;
  z-index: 8;
  margin-top: 2rem !important;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: .55rem !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hero-slider-dot {
  display: block !important;
  flex: 0 0 auto;
  width: 2.75rem !important;
  height: .3rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(255,255,255,.48) !important;
  cursor: pointer;
  transform: none;
  animation: none !important;
  transition:
    width .28s ease,
    background-color .28s ease,
    transform .22s ease !important;
}

.hero-slider-dot:hover {
  background: var(--gold-400) !important;
  transform: translateY(-.08rem) !important;
}

.hero-slider-dot.is-active {
  width: 4.25rem !important;
  background: var(--gold-400) !important;
  transform: none !important;
}

@media (max-width: 600px) {
  .hero-slider-dots {
    gap: .4rem !important;
  }

  .hero-slider-dot {
    width: 1.75rem !important;
  }

  .hero-slider-dot.is-active {
    width: 2.8rem !important;
  }
}


/* =========================================================
   21 AUGUST 2026 — CONTACT ICONS / SECURE UPLOAD / SERVICE CLEANUP
   ========================================================= */

/* Products & Services stays swipeable/overflowing, but there are no arrows
   and no progress rail because the card count is small. */
#services .services-carousel__button,
#services .services-carousel__dots {
  display: none !important;
}

#services .services-grid--slider-track {
  padding-bottom: .45rem !important;
}

#services .services-carousel__viewport {
  cursor: grab;
}

#services .services-carousel__viewport:active {
  cursor: grabbing;
}

/* Contact-focused hero visual: communication/network image plus subtle motion. */
.contact-hero-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 35%, rgba(221,180,91,.10), transparent 18rem),
    url("../images/pages/contact-hero-side.webp") center/cover no-repeat !important;
  border: 1px solid rgba(255,255,255,.10);
}

.contact-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,26,56,.30), transparent 38%),
    radial-gradient(circle at 65% 50%, transparent, rgba(7,26,56,.18));
  pointer-events: none;
}

/* Shared contact icon style */
.contact-icon {
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 2.45rem;
  display: grid;
  place-items: center;
  border-radius: .72rem;
  background: rgba(221,180,91,.13);
  color: var(--gold-400);
  border: 1px solid rgba(221,180,91,.20);
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Direct Contact Details */
.contact-card--icons {
  display: grid;
  gap: .85rem;
}

.contact-card--icons > .contact-detail-row {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .8rem;
  align-items: start;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.contact-card--icons > .contact-detail-row:last-child {
  border-bottom: 0;
}

.contact-detail-row > div {
  min-width: 0;
}

.contact-card--icons .contact-detail-row > div > span {
  display: block;
  margin-bottom: .24rem;
  color: rgba(255,255,255,.72) !important;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card--icons .contact-detail-row p,
.contact-card--icons .contact-detail-row a {
  margin: 0;
  line-height: 1.55;
}

.contact-card--icons .contact-detail-row a {
  display: block;
}

/* Footer stacked contact information with icons */
.footer-contact-stack {
  gap: .68rem !important;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .7rem;
  align-items: center;
}

.footer-contact-row .contact-icon {
  width: 2rem;
  height: 2rem;
  flex-basis: 2rem;
  border-radius: .6rem;
}

.footer-contact-row .contact-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-contact-row > span,
.footer-contact-row > a,
.footer-contact-row__links a {
  margin: 0 !important;
}

.footer-contact-row__links {
  display: grid;
  gap: .18rem;
}

/* Upload field */
.field-optional {
  color: var(--slate-500);
  font-size: .78em;
  font-weight: 600;
}

.form-field--file input[type="file"] {
  min-height: auto !important;
  padding: .42rem .5rem !important;
  background: #f8fafc;
  border-style: dashed;
}

.form-field--file input[type="file"]::file-selector-button {
  margin-right: .75rem;
  padding: .55rem .72rem;
  border: 0;
  border-radius: .55rem;
  background: var(--navy-900);
  color: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition:
    background-color .22s ease,
    color .22s ease,
    transform .22s ease;
}

.form-field--file input[type="file"]::file-selector-button:hover {
  background: var(--gold-400);
  color: var(--navy-950);
  transform: translateY(-.05rem);
}

/* Keep both forms compact even with the added fields. */
.inquiry-form--home-contact .form-grid,
.inquiry-form--contact .form-grid {
  align-items: start;
}

.inquiry-form--home-contact .form-field--file,
.inquiry-form--contact .form-field--file {
  margin-top: -.1rem;
}

@media (max-width: 640px) {
  .footer-contact-row {
    align-items: start;
  }

  .contact-icon {
    width: 2.2rem;
    height: 2.2rem;
    flex-basis: 2.2rem;
  }
}


/* =========================================================
   21 AUGUST 2026 — STATIC SERVICES / HQ AUTOMATION / HERO FIX
   ========================================================= */

/* Products & Services is now a normal static card grid.
   No swipe, drag, horizontal scrolling, arrows, or progress controls. */
#services .services-carousel--static {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#services .services-carousel--static .services-carousel__viewport {
  width: 100% !important;
  overflow: visible !important;
  cursor: default !important;
  scroll-snap-type: none !important;
  scroll-padding: 0 !important;
  touch-action: auto !important;
}

#services .services-carousel--static .services-grid--static {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  padding: 0 !important;
  transform: none !important;
}

#services .services-carousel--static .service-card {
  width: 100% !important;
  min-width: 0 !important;
  flex: initial !important;
  min-height: 34rem !important;
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
}

/* New full-resolution Automation & Digital Solutions image.
   New filename prevents the old blurry asset from being served from cache. */
#services .service-card--blue-tint .service-card__image {
  background-image: url("../images/services/service-automation-hq.webp") !important;
  background-position: 48% center !important;
}

/* Contact Us hero: force the new contact/communication visual with a new filename. */
.contact-hero-visual {
  background:
    linear-gradient(90deg, rgba(7,26,56,.16), rgba(7,26,56,.03)),
    url("../images/pages/contact-hero-communication-20260821.webp") center/cover no-repeat !important;
}

/* Footer only: contact icons are perfectly centred inside circular containers. */
.site-footer .footer-contact-row .contact-icon {
  width: 2.15rem !important;
  height: 2.15rem !important;
  min-width: 2.15rem !important;
  flex: 0 0 2.15rem !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  place-items: center !important;
  border-radius: 50% !important;
  line-height: 0 !important;
  box-sizing: border-box;
}

.site-footer .footer-contact-row .contact-icon svg {
  display: block !important;
  width: 1.05rem !important;
  height: 1.05rem !important;
  margin: 0 auto !important;
  flex: 0 0 auto;
  transform: none !important;
}

/* Do not apply the circular footer treatment to the Contact Us details panel. */
.contact-card--icons .contact-icon {
  border-radius: .72rem;
}

@media (max-width: 1024px) {
  #services .services-carousel--static .services-grid--static {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #services .services-carousel--static .service-card {
    min-height: 33rem !important;
  }
}

@media (max-width: 620px) {
  #services .services-carousel--static .services-grid--static {
    grid-template-columns: 1fr !important;
  }

  #services .services-carousel--static .service-card {
    min-height: 31rem !important;
  }
}


/* =========================================================
   21 AUGUST 2026 — CONTACT US HERO FULL BACKGROUND IMAGE
   ========================================================= */

.contact-page-hero--background {
  position: relative;
  overflow: hidden;
  min-height: clamp(30rem, 58vw, 43rem);
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(4,19,38,.94) 0%,
      rgba(4,19,38,.82) 38%,
      rgba(7,26,56,.46) 68%,
      rgba(7,26,56,.24) 100%
    ),
    url("../images/pages/contact-hero-communication-20260821.webp")
      center / cover no-repeat !important;
}

.contact-page-hero--background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,17,38,.12), rgba(3,17,38,.30)),
    radial-gradient(circle at 72% 48%, rgba(23,78,140,.10), transparent 26rem);
  pointer-events: none;
}

.contact-page-hero--background .legal-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-hero-copy--background {
  max-width: var(--container);
}

.contact-page-hero--background .contact-hero-copy {
  display: block !important;
}

.contact-page-hero--background h1 {
  max-width: 13ch;
  color: #fff !important;
  text-shadow: 0 .2rem .8rem rgba(0,0,0,.22);
}

.contact-page-hero--background p:not(.eyebrow) {
  max-width: 48rem;
  color: rgba(255,255,255,.82) !important;
}

/* The former separate right-side visual is no longer used in the hero. */
.contact-page-hero--background .contact-hero-visual {
  display: none !important;
}

@media (max-width: 760px) {
  .contact-page-hero--background {
    min-height: 34rem;
    background:
      linear-gradient(
        180deg,
        rgba(4,19,38,.88) 0%,
        rgba(4,19,38,.68) 58%,
        rgba(4,19,38,.78) 100%
      ),
      url("../images/pages/contact-hero-communication-20260821.webp")
        62% center / cover no-repeat !important;
  }

  .contact-page-hero--background h1 {
    max-width: 10ch;
  }

  .contact-page-hero--background p:not(.eyebrow) {
    max-width: 32rem;
  }
}


/* =========================================================
   21 AUGUST 2026 — PRODUCTS & SERVICES ICONS REMOVED
   ========================================================= */

#services .service-card__body {
  padding-top: 1.15rem !important;
}

#services .service-card__body h3 {
  margin-top: 0 !important;
}

/* Safety: if any old service icon markup is cached or reintroduced,
   keep it hidden in the Products & Services section. */
#services .service-card__top,
#services .service-card .icon-box {
  display: none !important;
}


/* =========================================================
   21 AUGUST 2026 — CLEAN SERVICE IMAGES + FIXED TEXTAREAS
   ========================================================= */

/* The old service-card badges were baked into the original image pixels.
   The cards now use clean cropped image files with no gold badges. */
#services .service-card--navy .service-card__image {
  background-image: url("../images/services/service-industrial-products-clean.webp") !important;
}

#services .service-card--gold-tint .service-card__image {
  background-image: url("../images/services/service-procurement-clean.webp") !important;
}

#services .service-card--slate .service-card__image {
  background-image: url("../images/services/service-engineering-clean.webp") !important;
}

/* Prevent users from dragging the textarea border to enlarge the box.
   The textarea still accepts Enter/new lines and scrolls internally if needed. */
.inquiry-form textarea {
  resize: none !important;
  overflow-y: auto;
  white-space: pre-wrap;
}

/* Explicitly keep both contact-form message fields fixed in size. */
#quote-message,
#contact-message {
  resize: none !important;
  overflow-y: auto;
}


/* =========================================================
   21 AUGUST 2026 — DEFINITIVE SERVICE BADGE REMOVAL
   Service images are now real <img> elements with unique
   filenames. No service image uses a CSS background anymore.
   ========================================================= */

#services .service-card__image {
  position: relative;
  overflow: hidden;
  background: none !important;
  background-image: none !important;
}

#services .service-card--navy .service-card__image,
#services .service-card--gold-tint .service-card__image,
#services .service-card--blue-tint .service-card__image,
#services .service-card--slate .service-card__image {
  background: none !important;
  background-image: none !important;
}

#services .service-card__image::before,
#services .service-card__image::after {
  content: none !important;
  display: none !important;
}

#services .service-card__image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  margin: 0;
  padding: 0;
}

#services .service-card:hover .service-card__image > img {
  transform: scale(1.045);
}

#services .service-card__image > img {
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}

/* The old icon elements and any possible pseudo-icon remnants
   are force-disabled inside Products & Services. */
#services .service-card__top,
#services .icon-box,
#services .service-card__body::before,
#services .service-card__body::after {
  display: none !important;
  content: none !important;
}

/* Contact-form message boxes:
   fixed border/size, but Enter still creates new lines naturally. */
#quote-message,
#contact-message {
  resize: none !important;
  overflow-y: auto !important;
  white-space: pre-wrap !important;
}


/* =========================================================
   21 AUGUST 2026 — FINAL NO-YELLOW-BADGE SERVICE CARD FIX
   ========================================================= */

/* No icon/badge element is allowed anywhere inside the homepage service cards. */
#services .service-card__top,
#services .service-card .icon-box,
#services .service-card [class*="icon-box"],
#services .service-card__image::before,
#services .service-card__image::after,
#services .service-card__body::before,
#services .service-card__body::after {
  display: none !important;
  content: none !important;
}

/* The image region is image-only, exactly like the Automation card. */
#services .service-card__image {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  background-image: none !important;
}

#services .service-card__image > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* Remove any reserved/overlap spacing that belonged to the old circular badge. */
#services .service-card__body {
  padding-top: 1.15rem !important;
}

#services .service-card__body h3 {
  margin-top: 0 !important;
}


/* =========================================================
   21 AUGUST 2026 — ABSOLUTELY FIXED CONTACT TEXTAREAS
   ========================================================= */

#quote-message {
  resize: none !important;
  width: 100% !important;
  height: 96px !important;
  min-height: 96px !important;
  max-height: 96px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  white-space: pre-wrap !important;
  box-sizing: border-box !important;
}

#contact-message {
  resize: none !important;
  width: 100% !important;
  height: 128px !important;
  min-height: 128px !important;
  max-height: 128px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  white-space: pre-wrap !important;
  box-sizing: border-box !important;
}

/* Keep the browser's resize affordance disabled even if older textarea rules
   elsewhere in the stylesheet specify resize: vertical. */
.inquiry-form textarea,
.inquiry-form--contact textarea,
.inquiry-form--home-contact textarea {
  resize: none !important;
}


/* =========================================================
   21 AUGUST 2026 — MULTI ATTACHMENT PREVIEW + CONTACT HERO SPLIT
   ========================================================= */

.contact-page-hero--split {
  min-height: auto !important;
  padding-block: clamp(4.4rem, 7vw, 6.8rem) !important;
  background:
    radial-gradient(circle at 86% 12%, rgba(23,78,140,.20), transparent 25rem),
    linear-gradient(135deg, #071a38 0%, #0c2852 100%) !important;
}

.contact-page-hero--split::before,
.contact-page-hero--split::after {
  content: none !important;
  display: none !important;
}

.contact-hero-grid--split {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, .82fr) !important;
  gap: clamp(2rem, 5vw, 5rem) !important;
  align-items: center !important;
}

.contact-page-hero--split .contact-hero-copy {
  max-width: 46rem;
}

.contact-page-hero--split h1 {
  max-width: 12ch !important;
  color: #fff !important;
}

.contact-page-hero--split .contact-hero-copy > p:not(.eyebrow) {
  max-width: 43rem;
  color: rgba(255,255,255,.78) !important;
}

.contact-hero-visual--right {
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.45rem;
  background: #061a35 !important;
  animation: contactVisualFloat 6s ease-in-out infinite;
}

.contact-hero-visual--right::before,
.contact-hero-visual--right::after {
  content: none !important;
  display: none !important;
}

.contact-hero-visual--right > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.attachment-preview-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: .7rem;
  margin-top: .75rem;
}

.attachment-preview-list:empty {
  display: none;
}

.attachment-preview-item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: .7rem;
  align-items: center;
  padding: .55rem;
  border: 1px solid #d7dfeb;
  border-radius: .85rem;
  background: #fff;
}

.attachment-preview-item__visual {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: .65rem;
  background: #edf2f8;
}

.attachment-preview-item__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attachment-preview-item__filetype {
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .05em;
}

.attachment-preview-item__info {
  min-width: 0;
  display: grid;
  gap: .18rem;
  padding-right: 1.65rem;
}

.attachment-preview-item__info strong {
  overflow: hidden;
  color: var(--navy-900);
  font-size: .78rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment-preview-item__info small {
  color: #66758a;
  font-size: .72rem;
}

.attachment-preview-item__remove {
  position: absolute;
  top: .38rem;
  right: .38rem;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
}

.attachment-preview-item__remove:hover {
  background: var(--gold-400);
  color: var(--navy-950);
  transform: scale(1.06);
}

@media (max-width: 760px) {
  .contact-hero-grid--split {
    grid-template-columns: 1fr !important;
    gap: 1.6rem !important;
  }

  .contact-page-hero--split h1 {
    max-width: 11ch !important;
  }

  .contact-hero-visual--right {
    aspect-ratio: 16 / 9;
  }

  .attachment-preview-list {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   HOMEPAGE INDUSTRIES SERVED — BORDER REMOVED
   Only the outer border/glow of the homepage industry cards is removed.
   ========================================================= */

#industries .industry-image-card,
#industries .industry-image-card:hover {
  border: none !important;
  border-color: transparent !important;
}

/* Hide any leftover glow element if it is still present in index.php. */
#industries .industry-card__glow {
  display: none !important;
}


/* =========================================================
   21 AUGUST 2026 — FOOTER NAVIGATION ICONS
   Adds contact-style icon containers to Company, Capabilities,
   and Legal links on every page.
   ========================================================= */

.site-footer .footer-links > div {
  gap: .72rem !important;
}

.site-footer .footer-links h2 {
  margin-bottom: .35rem !important;
}

/* Each footer navigation item now mirrors the contact-information icon treatment. */
.site-footer .footer-links .footer-nav-link {
  display: grid !important;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  align-items: center;
  gap: .72rem;
  width: fit-content;
  max-width: 100%;
  color: rgba(255,255,255,.92) !important;
  line-height: 1.25;
  transition:
    color .22s ease,
    transform .22s ease;
}

.site-footer .footer-links .footer-nav-link:hover {
  color: var(--gold-400) !important;
  transform: translateX(.14rem);
}

.site-footer .footer-nav-icon {
  width: 2.35rem;
  height: 2.35rem;
  min-width: 2.35rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(221,180,91,.28);
  border-radius: .72rem;
  background: rgba(255,255,255,.075);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 .35rem .85rem rgba(0,0,0,.10);
  transition:
    border-color .22s ease,
    background-color .22s ease,
    color .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.site-footer .footer-nav-icon svg {
  width: 1.18rem;
  height: 1.18rem;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .footer-nav-link:hover .footer-nav-icon {
  border-color: rgba(221,180,91,.65);
  background: rgba(201,149,46,.14);
  color: var(--gold-400);
  transform: scale(1.04);
  box-shadow:
    0 0 .65rem rgba(201,149,46,.16),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.site-footer .footer-nav-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Keep the three footer navigation columns balanced with the added icons. */
@media (min-width: 64.01rem) {
  .site-footer .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(1.5rem, 3vw, 2.75rem) !important;
  }
}

@media (max-width: 48rem) {
  .site-footer .footer-nav-icon {
    width: 2.2rem;
    height: 2.2rem;
    min-width: 2.2rem;
  }

  .site-footer .footer-links .footer-nav-link {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: .65rem;
  }
}


/* =========================================================
   21 AUGUST 2026 — FOOTER NAV WIDTH + ROUND ICONS
   - gives Company / Capabilities / Legal more horizontal room
   - prevents words from breaking in the middle
   - makes the footer navigation icon containers circular
   ========================================================= */

/* Give the footer more usable horizontal space without changing
   the width of the rest of the website. */
.site-footer > .container,
.site-footer .footer-grid.container {
  width: min(calc(100% - 2rem), 88rem) !important;
}

/* Allocate more of the footer width to the navigation columns. */
@media (min-width: 64.01rem) {
  .site-footer .footer-grid {
    grid-template-columns: minmax(15rem, .62fr) minmax(0, 1.38fr) !important;
    gap: clamp(2.5rem, 5vw, 5rem) !important;
  }

  .site-footer .footer-links {
    grid-template-columns: repeat(3, minmax(12.5rem, 1fr)) !important;
    column-gap: clamp(2rem, 3vw, 3.25rem) !important;
    row-gap: 1.5rem !important;
  }

  .site-footer .footer-links > div {
    min-width: 0;
  }

  .site-footer .footer-links .footer-nav-link {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 2.5rem minmax(0, 1fr) !important;
    gap: .8rem !important;
  }

  /* Keep complete words together. */
  .site-footer .footer-nav-label {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }
}

/* Circular icon containers, matching the contact-information visual language. */
.site-footer .footer-nav-icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
  min-width: 2.5rem !important;
  flex: 0 0 2.5rem !important;
  border-radius: 50% !important;
}

/* Keep the SVG perfectly centred in the circle. */
.site-footer .footer-nav-icon svg {
  width: 1.2rem !important;
  height: 1.2rem !important;
  margin: auto !important;
}

/* On medium widths, let the footer navigation use the full row
   before stacking further down on small screens. */
@media (min-width: 48.01rem) and (max-width: 78rem) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .site-footer .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem 2rem !important;
  }

  .site-footer .footer-nav-label {
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}

/* Mobile stays responsive while retaining circular icons. */
@media (max-width: 48rem) {
  .site-footer .footer-nav-icon {
    width: 2.3rem !important;
    height: 2.3rem !important;
    min-width: 2.3rem !important;
    flex-basis: 2.3rem !important;
    border-radius: 50% !important;
  }

  .site-footer .footer-links .footer-nav-link {
    grid-template-columns: 2.3rem minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: none !important;
  }

  .site-footer .footer-nav-label {
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }
}
