:root {
  --furnace-navy: #0a1b2a;
  --deep-navy: #06121c;
  --boiler-blue: #12456f;
  --gauge-cyan: #3fb3e3;
  --ember-copper: #c6522a;
  --copper-light: #e9794e;
  --mill-grey: #8b939c;
  --steel-grey: #d7dee4;
  --plate-white: #f4f6f8;
  --pure-white: #ffffff;
  --ink: #132433;
  --success: #1f9d70;
  --shadow-sm: 0 12px 36px rgba(6, 18, 28, 0.1);
  --shadow-lg: 0 30px 90px rgba(6, 18, 28, 0.28);
  --radius: 4px;
  --container: min(1200px, calc(100% - 40px));
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --body: "IBM Plex Sans", Inter, Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--plate-white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  background: #d8dfe5;
}

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

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

button,
[role="button"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gauge-cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--pure-white);
  color: var(--furnace-navy);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section--compact {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

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

.section--white {
  background: var(--pure-white);
}

.section--dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(63, 179, 227, 0.1), transparent 34rem),
    radial-gradient(circle at 85% 90%, rgba(198, 82, 42, 0.1), transparent 30rem),
    var(--furnace-navy);
  color: var(--pure-white);
}

.section--blueprint {
  background-image:
    linear-gradient(rgba(63, 179, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 179, 227, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--boiler-blue);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: var(--gauge-cyan);
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  color: var(--furnace-navy);
  font-family: var(--display);
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-transform: uppercase;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.hero h1,
.hero h2,
.hero h3 {
  color: var(--pure-white);
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.75rem);
}

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

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.lead {
  max-width: 72ch;
  color: #435568;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.section--dark .lead {
  color: #c7d3dc;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center .lead {
  margin-inline: auto;
}

.kicker {
  color: var(--ember-copper);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.muted {
  color: #657383;
}

.section--dark .muted {
  color: #aebcc7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ember-copper);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  margin-left: 0.55rem;
  content: "→";
  transition: transform 0.2s ease;
}

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

/* Header and navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--pure-white);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 18, 28, 0.84), rgba(6, 18, 28, 0.15));
  content: "";
  transition: opacity 0.3s ease;
}

.site-header.scrolled::before,
.site-header.menu-active::before {
  background: rgba(6, 18, 28, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gauge-cyan), var(--ember-copper));
}

.header-inner {
  display: flex;
  width: min(1400px, calc(100% - 32px));
  min-height: 82px;
  margin-inline: auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 52px;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--deep-navy);
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--display);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-tag {
  margin-top: 0.3rem;
  color: #c2d0db;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(0.7rem, 1.2vw, 1.35rem);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #eaf0f4;
  font-family: var(--mono);
  font-size: clamp(0.61rem, 0.72vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ember-copper);
  content: "";
  transition: transform 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.phone-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--pure-white);
  font-family: var(--mono);
  font-size: 0.72rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(10, 27, 42, 0.5);
  color: var(--pure-white);
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  visibility: hidden;
  transform: translateX(100%);
  background:
    linear-gradient(rgba(63, 179, 227, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 179, 227, 0.06) 1px, transparent 1px),
    var(--deep-navy);
  background-size: 44px 44px;
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.42s;
}

.mobile-menu.open {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-inner {
  display: grid;
  width: min(620px, 100%);
  min-height: 100%;
  margin-left: auto;
  padding: 1.1rem clamp(1.25rem, 6vw, 3rem) calc(1.5rem + env(safe-area-inset-bottom));
  grid-template-rows: auto 1fr auto;
  background: rgba(10, 27, 42, 0.93);
}

.mobile-menu-top {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--pure-white);
  place-items: center;
}

.mobile-nav {
  display: grid;
  align-content: center;
  gap: 0.25rem;
}

.mobile-nav a {
  display: flex;
  min-height: 56px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  font-family: var(--display);
  font-size: clamp(1.25rem, 6vw, 2.1rem);
  text-transform: uppercase;
}

.mobile-nav a[aria-current="page"] {
  color: var(--copper-light);
}

.mobile-menu-actions {
  display: grid;
  padding-top: 1rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mobile-menu-actions a {
  display: grid;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--pure-white);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  place-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--ember-copper);
  color: var(--pure-white);
  box-shadow: 0 12px 30px rgba(198, 82, 42, 0.28);
}

.btn--primary:hover {
  background: #a94120;
  box-shadow: 0 18px 42px rgba(198, 82, 42, 0.4);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pure-white);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--pure-white);
  color: var(--furnace-navy);
}

.btn--dark {
  background: var(--furnace-navy);
  color: var(--pure-white);
}

.btn--outline {
  border-color: var(--boiler-blue);
  background: transparent;
  color: var(--boiler-blue);
}

.btn--small {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  font-size: 0.66rem;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 68vh;
  overflow: hidden;
  align-items: end;
  background: var(--deep-navy);
  color: var(--pure-white);
}

.hero--home {
  min-height: 100svh;
}

.hero-media,
.hero-scrim,
.hero-grid,
.hero-glow,
.hero-embers {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -5;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.12) brightness(0.82);
  transform: scale(1.01);
  animation: ken-burns 22s ease-in-out infinite alternate;
}

.hero-scrim {
  z-index: -4;
  background: linear-gradient(100deg, rgba(6, 18, 28, 0.97) 0%, rgba(10, 27, 42, 0.91) 42%, rgba(10, 27, 42, 0.6) 72%, rgba(10, 27, 42, 0.38) 100%);
}

.hero-grid {
  z-index: -3;
  background-image:
    linear-gradient(rgba(63, 179, 227, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 179, 227, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 88%);
  animation: grid-drift 18s linear infinite;
}

.hero-glow {
  z-index: -2;
  background:
    radial-gradient(circle at 20% 72%, rgba(198, 82, 42, 0.2), transparent 23rem),
    radial-gradient(circle at 80% 20%, rgba(63, 179, 227, 0.13), transparent 27rem);
  animation: glow-pulse 7s ease-in-out infinite alternate;
}

.hero-embers {
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ember {
  position: absolute;
  bottom: -12px;
  width: var(--size, 3px);
  height: var(--size, 3px);
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 10px rgba(233, 121, 78, 0.8);
  opacity: 0;
  animation: ember-rise var(--duration, 8s) linear var(--delay, 0s) infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin-inline: auto;
  padding: clamp(9rem, 18vh, 13rem) 0 clamp(4rem, 9vh, 7rem);
}

.hero-content-inner {
  max-width: 940px;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 1.35rem;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 0;
  color: #d8e1e8;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

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

.hero-badges {
  display: flex;
  margin-top: clamp(2rem, 5vh, 3.5rem);
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badge {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(63, 179, 227, 0.45);
  background: rgba(10, 27, 42, 0.55);
  color: #eaf7fd;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 1.6rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #ccd6de;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  width: 1px;
  height: 68px;
  background: linear-gradient(var(--gauge-cyan), transparent);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

.breadcrumb {
  border-bottom: 1px solid #d7dee4;
  background: var(--pure-white);
}

.breadcrumb .container {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 0.5rem;
  color: #617080;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--ember-copper);
}

/* Signature frames and motion */
.corner-frame {
  position: relative;
}

.corner-frame::before,
.corner-frame::after {
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-color: var(--gauge-cyan);
  border-style: solid;
  content: "";
  pointer-events: none;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.corner-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.corner-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.corner-frame:hover::before,
.corner-frame:hover::after {
  width: 46px;
  height: 46px;
  border-color: var(--ember-copper);
}

.weld-seam {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  height: 2px;
  margin: 0 auto;
  overflow: visible;
  background: linear-gradient(90deg, transparent, var(--ember-copper) 16%, var(--gauge-cyan) 50%, var(--ember-copper) 84%, transparent);
  transform-origin: left;
}

.weld-seam::after {
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 12px var(--copper-light), 0 0 28px rgba(233, 121, 78, 0.65);
  content: "";
  animation: weld-spark 3.4s ease-in-out infinite;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal="left"] {
  transform: translateX(-28px);
}

.motion-ready [data-reveal="right"] {
  transform: translateX(28px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready [data-hero-reveal] {
  opacity: 0;
  transform: translateY(32px);
  animation: hero-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--hero-delay, 0.1s);
}

/* Grids, cards and data surfaces */
.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2.5rem, 7vw, 6rem);
}

.split--top {
  align-items: start;
}

.image-frame {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--furnace-navy);
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-frame:hover img {
  transform: scale(1.045);
}

.image-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(6, 18, 28, 0.85);
  color: var(--pure-white);
  font-family: var(--mono);
  font-size: 0.67rem;
  line-height: 1.5;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

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

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

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

.industrial-card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid #d5dde4;
  background: var(--pure-white);
  box-shadow: 0 14px 40px rgba(6, 18, 28, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.industrial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 82, 42, 0.65);
  box-shadow: 0 22px 54px rgba(6, 18, 28, 0.13);
}

.section--dark .industrial-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.card-number {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--ember-copper);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(63, 179, 227, 0.55);
  color: var(--gauge-cyan);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  place-items: center;
}

.industrial-card p:last-child {
  margin-bottom: 0;
}

.tag-list {
  display: flex;
  margin: 1.2rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.tag,
.tag-list li {
  display: inline-flex;
  min-height: 34px;
  padding: 0.45rem 0.65rem;
  border: 1px solid #ccd6de;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  color: #33485b;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section--dark .tag,
.section--dark .tag-list li {
  border-color: rgba(63, 179, 227, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: #d8e6ee;
}

.check-list {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  gap: 0.8rem;
  list-style: none;
}

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

.check-list li::before {
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--gauge-cyan);
  content: "";
  transform: rotate(45deg);
}

.spec-sheet {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(63, 179, 227, 0.35);
  background:
    linear-gradient(rgba(63, 179, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 179, 227, 0.05) 1px, transparent 1px),
    var(--furnace-navy);
  background-size: 28px 28px;
  color: var(--pure-white);
  box-shadow: var(--shadow-lg);
}

.spec-row {
  display: grid;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 42% 58%;
  gap: 1rem;
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-key {
  color: var(--gauge-cyan);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-value {
  color: var(--pure-white);
  font-weight: 600;
}

/* Stats */
.stats-band {
  background: var(--deep-navy);
  color: var(--pure-white);
}

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

.stat {
  position: relative;
  padding: 2rem 1rem;
  text-align: center;
}

.stat:not(:last-child)::after {
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: rgba(63, 179, 227, 0.25);
  content: "";
}

.stat-value {
  display: block;
  color: var(--copper-light);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 0.65rem;
  color: #b9c7d1;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Products and photo cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  align-items: end;
  background: var(--furnace-navy);
  color: var(--pure-white);
  box-shadow: var(--shadow-sm);
}

.product-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.product-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 18, 28, 0.04), rgba(6, 18, 28, 0.96) 82%);
  content: "";
}

.product-card:hover > img {
  transform: scale(1.055);
  filter: saturate(1.1);
}

.product-card-content {
  position: relative;
  z-index: 2;
  padding: 1.4rem;
}

.product-card-content h3 {
  margin-bottom: 0.6rem;
}

.product-card-content p {
  margin: 0;
  color: #cfdae2;
  font-size: 0.92rem;
}

.product-feature {
  display: grid;
  overflow: hidden;
  border: 1px solid #d4dde4;
  background: var(--pure-white);
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  box-shadow: var(--shadow-sm);
}

.product-feature + .product-feature {
  margin-top: 1.2rem;
}

.product-feature:nth-child(even) .product-feature-media {
  order: 2;
}

.product-feature-media {
  min-height: 360px;
  overflow: hidden;
  background: var(--furnace-navy);
}

.product-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-feature:hover img {
  transform: scale(1.045);
}

.product-feature-copy {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.product-feature-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.product-feature-copy p:last-child {
  margin-bottom: 0;
}

/* Service blocks */
.service-stack {
  display: grid;
  gap: 1.25rem;
}

.service-block {
  display: grid;
  overflow: hidden;
  border: 1px solid #d5dde4;
  background: var(--pure-white);
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1.54fr);
  box-shadow: var(--shadow-sm);
}

.service-block:nth-child(even) {
  background: var(--furnace-navy);
  color: var(--pure-white);
}

.service-block:nth-child(even) h2 {
  color: var(--pure-white);
}

.service-number-panel {
  position: relative;
  display: grid;
  min-height: 300px;
  overflow: hidden;
  background: var(--boiler-blue);
  color: var(--pure-white);
  place-items: center;
}

.service-number-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 35px 35px;
  content: "";
}

.service-number {
  position: relative;
  color: var(--pure-white);
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 1;
  opacity: 0.9;
}

.service-copy {
  padding: clamp(1.8rem, 5vw, 3.5rem);
}

.service-copy h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

/* Leadership */
.management-grid {
  display: grid;
  gap: 1.15rem;
}

.management-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d3dce4;
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.management-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 4px;
  background: linear-gradient(180deg, var(--gauge-cyan), var(--ember-copper));
  content: "";
}

.management-card:hover {
  transform: translateY(-4px);
  border-color: var(--gauge-cyan);
  box-shadow: var(--shadow-lg);
}

/* identity panel — typographic, no photograph */
.management-id {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem 1.6rem;
  background:
    radial-gradient(circle at 24% 16%, rgba(63, 179, 227, 0.2), transparent 58%),
    var(--furnace-navy);
  color: var(--pure-white);
}

.management-id::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(63, 179, 227, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 179, 227, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  pointer-events: none;
}

.management-id > * {
  position: relative;
  z-index: 1;
}

.management-id-head h3 {
  margin-bottom: 0.3rem;
  color: var(--pure-white);
  font-size: 1.16rem;
  line-height: 1.22;
}

.management-id .designation {
  margin-bottom: 0;
  color: var(--copper-light);
}

.management-facts {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.management-facts dt {
  color: var(--gauge-cyan);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.management-facts dd {
  margin: 0.15rem 0 0;
  color: #dbe4ec;
  font-size: 0.9rem;
  line-height: 1.45;
}

.management-id .management-contact {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: 0.84rem;
}

.management-id .management-contact a {
  color: var(--pure-white);
  border-bottom: 1px solid rgba(63, 179, 227, 0.6);
}

.management-id .management-contact a:hover {
  color: var(--gauge-cyan);
}

/* body copy — maximum legibility */
.management-copy {
  padding: 1.85rem 1.95rem;
}

.management-copy p {
  margin-bottom: 0.95rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.72;
}

.management-copy p:last-child {
  margin-bottom: 0;
}

.management-quote {
  padding-left: 1rem;
  border-left: 3px solid var(--ember-copper);
}

.management-quote strong {
  color: var(--boiler-blue);
}

.management-units {
  padding: 0.9rem 1.05rem;
  border: 1px dashed #c6d2dc;
  background: var(--plate-white);
  font-size: 0.93rem;
}

.management-units strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--boiler-blue);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.experience-bar {
  position: relative;
  height: 5px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.16);
}

.experience-bar::after {
  position: absolute;
  inset: 0;
  width: var(--bar, 70%);
  border-radius: 5px;
  background: linear-gradient(90deg, var(--gauge-cyan), var(--ember-copper));
  content: "";
}

/* Marquees */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee + .marquee {
  margin-top: 1rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 38s linear infinite;
}

.marquee--reverse .marquee-track {
  animation-direction: reverse;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.industry-tile {
  --industry-image: none;
  position: relative;
  display: flex;
  width: 230px;
  min-height: 130px;
  overflow: hidden;
  align-items: end;
  background: var(--boiler-blue);
  isolation: isolate;
}

.industry-tile::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 22, 34, 0.08) 0%, rgba(5, 22, 34, 0.88) 100%),
    radial-gradient(circle at 80% 20%, rgba(63, 179, 227, 0.2), transparent 42%);
  content: "";
  z-index: 1;
}

.industry-tile::after {
  position: absolute;
  inset: 0;
  background-image: var(--industry-image);
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.01);
  transition: filter 420ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.industry-tile:hover::after {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.08);
}

.industry-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: 2rem;
  text-shadow: 0 2px 14px rgba(5, 22, 34, 0.62);
  z-index: 2;
}

.industry-tile strong {
  position: relative;
  padding: 1rem;
  color: var(--pure-white);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(5, 22, 34, 0.95);
  z-index: 2;
}

.industry-sugar { --industry-image: url("https://images.unsplash.com/photo-1752010102949-083b83957fda?auto=format&fit=crop&w=640&h=360&q=80"); }
.industry-power { --industry-image: url("https://images.unsplash.com/photo-1722071954834-39066c394c8e?auto=format&fit=crop&w=640&h=360&q=80"); }
.industry-cement { --industry-image: url("https://images.unsplash.com/photo-1745488463316-b55c68099e9f?auto=format&fit=crop&w=640&h=360&q=80"); }
.industry-smelters { --industry-image: url("https://images.unsplash.com/photo-1613970351372-9804e380bd09?auto=format&fit=crop&w=640&h=360&q=80"); }
.industry-refinery { --industry-image: url("https://images.unsplash.com/photo-1786532852011-443cba5dc9fe?auto=format&fit=crop&w=640&h=360&q=80"); }
.industry-paper { --industry-image: url("https://images.unsplash.com/photo-1597165826924-f0e9fb81762e?auto=format&fit=crop&w=640&h=360&q=80"); }
.industry-chemical { --industry-image: url("https://images.unsplash.com/photo-1785147102271-f8a84c4d2c35?auto=format&fit=crop&w=640&h=360&q=80"); }
.industry-food { --industry-image: url("https://images.unsplash.com/photo-1651525670114-2b8117390b28?auto=format&fit=crop&w=640&h=360&q=80"); }
.industry-pharma { --industry-image: url("https://images.unsplash.com/photo-1760074032649-0243993135b6?auto=format&fit=crop&w=640&h=360&q=80"); }
.industry-explosive { --industry-image: url("https://images.unsplash.com/photo-1776012203102-a024822685cc?auto=format&fit=crop&w=640&h=360&q=80"); }

/* Facility and machinery */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.facility-card {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
}

.facility-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.facility-card p {
  margin-bottom: 0;
  color: #bccbd6;
  font-size: 0.93rem;
}

.filters {
  display: flex;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-chip {
  min-height: 42px;
  padding: 0.62rem 0.85rem;
  border: 1px solid #c9d4dc;
  background: var(--pure-white);
  color: #3e5163;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active,
.filter-chip[aria-pressed="true"] {
  border-color: var(--ember-copper);
  background: var(--ember-copper);
  color: var(--pure-white);
}

.search-field {
  width: min(100%, 480px);
  min-height: 48px;
  margin-bottom: 1.3rem;
  padding: 0.75rem 1rem;
  border: 1px solid #bdc9d2;
  border-radius: 0;
  background: var(--pure-white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #cad4dc;
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 0.76rem;
}

.data-table th {
  padding: 1rem;
  border-bottom: 2px solid var(--ember-copper);
  background: var(--furnace-navy);
  color: var(--pure-white);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.data-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #dce3e8;
  vertical-align: top;
}

.data-table tbody tr {
  transition: background 0.2s ease;
}

.data-table tbody tr:hover {
  background: #eef6fa;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tr[hidden] {
  display: none;
}

.result-count {
  margin: 0 0 0.8rem;
  color: #617080;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

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

.test-card {
  position: relative;
  padding: 1.4rem;
  border-left: 3px solid var(--gauge-cyan);
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
}

.test-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--furnace-navy);
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}

.test-status {
  color: var(--ember-copper);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: var(--furnace-navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(transparent, rgba(6, 18, 28, 0.94));
  color: var(--pure-white);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

/* Clients */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.client-card {
  position: relative;
  display: flex;
  min-height: 150px;
  padding: 1.25rem;
  border: 1px solid #d3dce4;
  align-items: end;
  background: var(--pure-white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--gauge-cyan);
  box-shadow: var(--shadow-sm);
}

.client-register-section {
  border-top: 1px solid rgba(63, 179, 227, 0.16);
}

.client-register-section .filter-chip {
  border-color: rgba(63, 179, 227, 0.3);
  background: rgba(255, 255, 255, 0.055);
  color: #dce8ef;
}

.client-register-section .filter-chip:hover,
.client-register-section .filter-chip.active,
.client-register-section .filter-chip[aria-pressed="true"] {
  border-color: var(--ember-copper);
  background: var(--ember-copper);
  color: var(--pure-white);
}

.client-register-section .client-card {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 88% 12%, rgba(63, 179, 227, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.client-register-section .client-card:hover {
  border-color: var(--gauge-cyan);
  background:
    radial-gradient(circle at 88% 12%, rgba(63, 179, 227, 0.2), transparent 46%),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.client-register-section .client-index {
  color: var(--gauge-cyan);
}

.client-register-section .client-location {
  color: #aebdc8;
}

.client-card[hidden] {
  display: none;
}

.client-index {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  color: #a7b4be;
  font-family: var(--mono);
  font-size: 0.65rem;
}

.client-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.client-location {
  margin-top: 0.35rem;
  color: #657383;
  font-family: var(--mono);
  font-size: 0.63rem;
  text-transform: uppercase;
}

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

.sector-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 80% 15%, rgba(63, 179, 227, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 55%);
  isolation: isolate;
}

.sector-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6, 18, 28, 0.2) 0%, rgba(6, 18, 28, 0.94) 100%),
    var(--industry-image, linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent));
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(0.84) contrast(1.05);
  transform: scale(1.01);
  transition: filter 420ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.sector-card:hover::before {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.08);
}

.sector-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(198, 82, 42, 0.48);
  border-radius: 50%;
  content: "";
  animation: orbit-pulse 5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.sector-code {
  position: relative;
  color: var(--gauge-cyan);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-shadow: 0 2px 12px rgba(6, 18, 28, 0.94);
  z-index: 2;
}

.sector-card h3 {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  left: 1.2rem;
  margin: 0;
  font-size: 1rem;
  text-shadow: 0 2px 14px rgba(6, 18, 28, 0.96);
  z-index: 2;
}

/* Contact */
.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-stack {
  display: grid;
  gap: 0.8rem;
}

.contact-card {
  padding: 1.35rem;
  border: 1px solid #d0dae2;
  background: var(--pure-white);
}

.contact-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.contact-card p,
.contact-card address {
  margin: 0;
  color: #4f6070;
  font-style: normal;
}

.contact-card a {
  color: var(--boiler-blue);
  font-weight: 700;
}

.contact-form {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(63, 179, 227, 0.35);
  background: var(--furnace-navy);
  color: var(--pure-white);
  box-shadow: var(--shadow-lg);
}

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

.form-field {
  display: grid;
  gap: 0.35rem;
}

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

.form-field label {
  color: #cfdae2;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  color: var(--pure-white);
}

.form-field select option {
  color: var(--ink);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9eb0bd;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gauge-cyan);
  outline: 2px solid rgba(63, 179, 227, 0.2);
}

.form-note,
.form-status {
  margin: 0.9rem 0 0;
  color: #b9c9d4;
  font-size: 0.82rem;
}

.form-status {
  min-height: 1.4rem;
  color: #8ee1bf;
  font-family: var(--mono);
}

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

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

.map-card {
  overflow: hidden;
  border: 1px solid #cad4dc;
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.7) contrast(1.05);
}

.map-card-copy {
  padding: 1.1rem;
}

.map-card-copy h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.map-card-copy p {
  margin: 0;
  color: #5d6c7a;
}

/* CTA and footer */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background:
    linear-gradient(100deg, rgba(6, 18, 28, 0.97), rgba(10, 27, 42, 0.86)),
    url("assets/hero-studded.webp") center / cover;
  color: var(--pure-white);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(198, 82, 42, 0.26), transparent 34rem);
  content: "";
}

.cta-inner {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
}

.cta-inner h2 {
  margin-bottom: 0.8rem;
  color: var(--pure-white);
}

.cta-inner p {
  max-width: 720px;
  margin: 0;
  color: #cbd7df;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.site-footer {
  padding: 4.5rem 0 1.25rem;
  background: var(--deep-navy);
  color: #bdcbd5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

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

.footer-brand p {
  max-width: 38ch;
  margin: 1.2rem 0 0;
  color: #9fb0bd;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--pure-white);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.45rem;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: #b5c4cf;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gauge-cyan);
}

.footer-address {
  margin-bottom: 1rem;
  color: #aebdc8;
  font-size: 0.86rem;
  font-style: normal;
}

.social-links {
  display: flex;
  margin-top: 1.2rem;
  gap: 0.5rem;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--pure-white);
  font-family: var(--mono);
  font-size: 0.66rem;
  place-items: center;
}

.social-links a:hover {
  border-color: var(--ember-copper);
  background: var(--ember-copper);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
}

.footer-bottom {
  display: flex;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #8193a1;
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 58px;
  height: 58px;
  border: 3px solid var(--pure-white);
  border-radius: 50%;
  background: #1fa463;
  color: var(--pure-white);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  place-items: center;
  box-shadow: 0 14px 34px rgba(6, 18, 28, 0.32);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.mobile-action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: none;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--deep-navy);
  box-shadow: 0 -10px 30px rgba(6, 18, 28, 0.25);
}

.mobile-action-bar a {
  display: grid;
  min-height: 58px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--pure-white);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  place-items: center;
}

.mobile-action-bar a:nth-child(2) {
  background: #157e4a;
}

.mobile-action-bar a:last-child {
  border-right: 0;
  background: var(--ember-copper);
}

.notice {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gauge-cyan);
  background: #e7f4fa;
  color: #294255;
}

.notice strong {
  color: var(--furnace-navy);
}

/* Keyframes */
@keyframes ken-burns {
  to { transform: scale(1.09); }
}

@keyframes grid-drift {
  to { background-position: 58px 58px; }
}

@keyframes glow-pulse {
  to { opacity: 0.68; transform: scale(1.04); }
}

@keyframes ember-rise {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.6); }
  12% { opacity: 0.9; }
  82% { opacity: 0.65; }
  100% { opacity: 0; transform: translate3d(var(--drift, 30px), -105vh, 0) scale(1.35); }
}

@keyframes hero-reveal {
  to { opacity: 1; transform: none; }
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.25; transform: scaleY(0.45); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes weld-spark {
  0% { left: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: calc(100% - 10px); opacity: 0; }
}

@keyframes marquee {
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

@keyframes orbit-pulse {
  to { transform: scale(1.18) rotate(12deg); opacity: 0.45; }
}

/* Responsive */
@media (max-width: 1320px) {
  .header-actions .phone-link {
    display: none;
  }

  .desktop-nav {
    gap: 0.72rem;
  }
}

@media (max-width: 1100px) and (min-width: 1025px) {
  .brand-tag {
    display: none;
  }

  .brand-name {
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-actions .phone-link,
  .header-actions .btn {
    display: none;
  }

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

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

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

  .stat:nth-child(3)::after,
  .stat:nth-child(6)::after {
    display: none;
  }

  .stat:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(63, 179, 227, 0.16);
  }

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

@media (max-width: 900px) {
  .split,
  .contact-grid,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .product-grid,
  .facility-grid,
  .testing-grid,
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .management-card {
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
  }

  .product-feature,
  .service-block {
    grid-template-columns: 1fr;
  }

  .product-feature:nth-child(even) .product-feature-media {
    order: 0;
  }

  .service-number-panel {
    min-height: 170px;
  }

  .service-number {
    font-size: 5rem;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100% - 28px, 1200px);
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .section {
    padding: 4.5rem 0;
  }

  .header-inner {
    width: calc(100% - 22px);
    min-height: 72px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-name {
    font-size: 0.8rem;
  }

  .brand-tag {
    display: none;
  }

  .hero {
    min-height: 72svh;
  }

  .hero--home {
    min-height: 94svh;
  }

  .hero-content {
    padding-top: 8.5rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .cards-grid,
  .cards-grid--2,
  .cards-grid--4,
  .product-grid,
  .facility-grid,
  .testing-grid,
  .client-grid,
  .sector-grid,
  .gallery-grid,
  .map-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 370px;
  }

  .management-card {
    grid-template-columns: 1fr;
  }

  .management-id {
    padding: 1.5rem 1.35rem;
  }

  .management-copy {
    padding: 1.5rem 1.35rem;
  }

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

  .stat:nth-child(3)::after {
    display: block;
  }

  .stat:nth-child(even)::after {
    display: none;
  }

  .stat:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(63, 179, 227, 0.16);
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .data-table tr {
    margin-bottom: 0.8rem;
    padding: 0.8rem 1rem;
    border: 1px solid #cad4dc;
    background: var(--pure-white);
    box-shadow: 0 8px 24px rgba(6, 18, 28, 0.05);
  }

  .data-table td {
    display: grid;
    padding: 0.45rem 0;
    border: 0;
    grid-template-columns: 38% 62%;
    gap: 0.6rem;
  }

  .data-table td::before {
    color: var(--boiler-blue);
    content: attr(data-label);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 420px) {
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .stat::after {
    display: none !important;
  }

  .stat:not(:last-child) {
    border-bottom: 1px solid rgba(63, 179, 227, 0.16);
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

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

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

@media print {
  .site-header,
  .mobile-menu,
  .floating-whatsapp,
  .mobile-action-bar,
  .scroll-cue,
  .hero-embers {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-content {
    padding: 3rem 0;
  }
}

/* ── Product enquiry actions (Products 05-13) ───────────────── */
.product-actions{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.15rem;}
.btn--sm{padding:.6rem 1rem;font-size:.78rem;letter-spacing:.06em;}
.btn--wa{
  display:inline-flex;align-items:center;gap:.5rem;
  background:#25D366;border:1px solid #25D366;color:#062b16;font-weight:700;
}
.btn--wa:hover,.btn--wa:focus-visible{background:#1eb85a;border-color:#1eb85a;color:#04220f;}
.btn--wa svg{flex:0 0 auto;}
@media (max-width:520px){
  .product-actions{flex-direction:column;align-items:stretch;}
  .product-actions .btn{justify-content:center;text-align:center;}
}

/* ── Management direct contact line ─────────────────────────── */
.management-contact{margin-top:.9rem;font-size:.85rem;}
.management-contact a{font-weight:700;}

/* ── Contact card role label ────────────────────────────────── */
.contact-role{display:block;font-size:.78rem;opacity:.72;margin-top:.15rem;}

/* ── Products 05-13: stacked layout so the added copy stays legible ── */
.product-grid .product-card{
  flex-direction:column;align-items:stretch;min-height:0;
}
.product-grid .product-card > img{
  position:static;inset:auto;width:100%;height:230px;object-fit:cover;
}
.product-grid .product-card::before{
  inset:0 0 auto 0;height:230px;
  background:linear-gradient(180deg,rgba(6,18,28,0) 55%,rgba(6,18,28,.55));
  pointer-events:none;
}
.product-grid .product-card-content{
  flex:1;display:flex;flex-direction:column;
  background:var(--furnace-navy);padding:1.4rem;
}
.product-grid .product-card-content p{margin-bottom:.7rem;line-height:1.62;}
.product-grid .product-card-content .tag-list{margin-bottom:0;}
.product-grid .product-actions{margin-top:auto;padding-top:1.15rem;}
@media (max-width:640px){
  .product-grid .product-card > img,
  .product-grid .product-card::before{height:200px;}
}

/* Work Gallery */
.gallery-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-item { aspect-ratio: 4 / 3; min-height: 0; cursor: zoom-in; }
.gallery-item[hidden] { display: none; }
.gallery-item:focus-visible { outline: 2px solid var(--ember-orange, #E2571E); outline-offset: 3px; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.gallery-filters .gallery-filter {
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(10, 27, 42, 0.24);
  background: transparent;
  color: inherit;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.gallery-filters .gallery-filter:hover { border-color: var(--furnace-navy, #0A1B2A); }
.gallery-filters .gallery-filter.is-active {
  background: var(--furnace-navy, #0A1B2A);
  border-color: var(--furnace-navy, #0A1B2A);
  color: #fff;
}
.gallery-empty { margin-top: 1.5rem; font-family: var(--mono); font-size: 0.8rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(6, 18, 28, 0.94);
}
.lightbox[hidden] { display: none; }
.lightbox-figure { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.lightbox-figure img { max-width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox-figure figcaption {
  margin-top: 0.85rem;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lightbox-close, .lightbox-nav {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.5rem;
}
.lightbox-nav { width: 2.8rem; height: 3.6rem; font-size: 2rem; flex: 0 0 auto; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }

@media (max-width: 900px) {
  .gallery-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .gallery-grid, .gallery-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lightbox { padding: 0.75rem; }
  .lightbox-nav { width: 2.2rem; height: 3rem; font-size: 1.6rem; }
}
@media (max-width: 420px) {
  .gallery-grid, .gallery-grid--four { grid-template-columns: 1fr; }
}

@media (max-width: 768px) and (min-width: 421px) {
  .gallery-grid, .gallery-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Management — identity panel without initials badge */
.management-id {
  justify-content: flex-start;
  padding-top: 1.95rem;
}

.management-id-head h3 {
  font-size: 1.28rem;
}

.management-id-head {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(63, 179, 227, 0.22);
}

/* "Units undertaken" — label separated from its list */
.management-units {
  padding: 1.05rem 1.15rem;
  border: 1px solid #ccd7e0;
  border-left: 3px solid var(--ember-copper);
  background: var(--plate-white);
}

.management-units strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--boiler-blue);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.management-units ul {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.management-units li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.55;
}

.management-units li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--ember-copper);
  content: "";
}

/* ==========================================================
   Management section — full styling pass
   ========================================================== */

/* card shell */
.management-card {
  border-color: #cdd8e1;
}

.management-card:hover /* identity panel */
.management-id {
  justify-content: flex-start;
  gap: 1.15rem;
  padding: 2.1rem 1.7rem;
}

/* large outlined number replaces the removed pill */
.management-id-head {
  padding-bottom: 1.05rem;
  border-bottom: 1px solid rgba(63, 179, 227, 0.22);
}

.management-id-head h3 {
  margin-bottom: 0.38rem;
  color: var(--pure-white);
  font-size: 1.3rem;
  line-height: 1.2;
}

.management-id .designation {
  margin-bottom: 0;
  color: var(--copper-light);
  font-size: 0.7rem;
}

/* fact rows */
.management-facts {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.management-facts > div {
  padding-left: 0.75rem;
  border-left: 2px solid rgba(63, 179, 227, 0.35);
}

.management-facts dt {
  color: var(--gauge-cyan);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.management-facts dd {
  margin: 0.22rem 0 0;
  color: var(--pure-white);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.experience-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.14);
}

/* phone / whatsapp */
.management-id .management-contact {
  margin: 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
}

.management-id .management-contact a {
  color: var(--pure-white);
  border-bottom: 1px solid rgba(63, 179, 227, 0.55);
}

.management-id .management-contact a:hover {
  color: var(--gauge-cyan);
  border-color: var(--gauge-cyan);
}

/* biography column */
.management-copy {
  position: relative;
  padding: 2rem 2.1rem;
}

.management-copy-label {
  margin-bottom: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #e0e7ec;
  color: var(--mill-grey);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.management-copy p {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.74;
}

.management-copy p:last-child {
  margin-bottom: 0;
}

/* pull quote */
.management-quote {
  margin-top: 1.25rem;
  padding: 1.05rem 1.2rem;
  border: 1px solid #e3d3c9;
  border-left: 3px solid var(--ember-copper);
  background: #fdf7f3;
}

.management-quote strong {
  color: var(--boiler-blue);
}

/* units undertaken */
.management-units {
  margin-top: 1.25rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #ccd7e0;
  border-left: 3px solid var(--gauge-cyan);
  background: var(--plate-white);
}

.management-units strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--boiler-blue);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.management-units ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.management-units li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.55;
}

.management-units li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--ember-copper);
  content: "";
}

@media (max-width: 720px) {
  .management-id,
  .management-copy {
    padding: 1.5rem 1.35rem;
  }
  .management-id-head h3 {
    font-size: 1.15rem;
  }
}
