/* ================================================================
   SUPREME MACHINED PRODUCTS — Website CSS
   NeoWork Studios | May 2026
   ================================================================ */

/* ------------------------------------------------------------------
   RESET & VARIABLES
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C8102E;
  --red-dark:   #9B0B22;
  --red-light:  #E8203E;
  --charcoal:   #1A1A1A;
  --dark:       #111111;
  --mid:        #2D2D2D;
  --silver:     #8A8A8A;
  --light:      #F5F5F5;
  --white:      #FFFFFF;
  --border:     #E0E0E0;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 64px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ------------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);  font-size: clamp(28px, 4vw, 48px);
  color: var(--charcoal);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.section-title.white { color: var(--white); }

.section-desc {
  font-size: 17px;
  color: var(--silver);
  max-width: 560px;
  line-height: 1.8;
}

.section-desc.white { color: rgba(255,255,255,0.7); }

/* ------------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--mid);
  transform: translateY(-2px);
}

.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------------
   NAVIGATION
   ------------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.transparent { background: transparent; }
.nav.solid {
  background: var(--charcoal);
  box-shadow: 0 1px 0 rgba(200,16,46,0.7), 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img.logo-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-logo img.logo-text {
  height: 28px;
  object-fit: contain;
  max-width: 180px;
  opacity: 1;
  transform: translateX(0);
  transition: max-width 0.42s cubic-bezier(0.4, 0, 0.2, 1),
              opacity    0.32s cubic-bezier(0.4, 0, 0.2, 1),
              transform  0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: max-width, opacity, transform;
  display: block;
  overflow: hidden;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { left: 16px; right: 16px; }
.nav-link.active { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  margin-left: 8px;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-topbar {
  background: rgba(0,0,0,0.3);
  padding: 5px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  max-height: 30px;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
/* Collapse topbar when nav is solid (user has scrolled) */
.nav.solid .nav-topbar {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.nav-topbar a {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-topbar a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  padding: 12px 32px;
  text-align: center;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--red); }
.mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ------------------------------------------------------------------
   PAGE HEADER (inner pages)
   ------------------------------------------------------------------ */
.page-header {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(200,16,46,0.4) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-header-content h1 {
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red); }

/* ------------------------------------------------------------------
   PRELOADER
   ------------------------------------------------------------------ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo img {
  height: 80px;
  animation: preloaderPulse 2s ease-in-out infinite;
  filter: brightness(0) invert(1);
}
.preloader-counter {
  position: absolute;
  top: 40px;
  right: 48px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.preloader-label {
  position: absolute;
  bottom: 40px;
  left: 48px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}
.preloader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.preloader-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width 0.1s linear;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.93); }
}

/* ------------------------------------------------------------------
   HERO (homepage) — Editorial
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

/* Dark gradient — covers photo, fades right so 3D model shows */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.97) 0%,
    rgba(10,10,10,0.88) 42%,
    rgba(0,0,0,0.18) 72%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}

/* Floating 3D shift lever canvas — right side, above gradient */
.hero-3d-canvas {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 680px);
  height: min(58vw, 680px);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  animation: heroCanvasFade 1.6s ease 1.0s forwards;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
}

/* Content anchors to the bottom of the viewport */
.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px 108px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* Massive editorial headline — FlightStory/Tresmares style */
.hero-title {
  font-size: clamp(72px, 10.5vw, 150px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.90;
  letter-spacing: -0.045em;
  margin-bottom: 48px;
  /* No max-width — full bleed, 3D canvas sits on top */
  opacity: 0;
  animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.hero-title .hero-red {
  color: var(--red);
}

/* Desc + CTA row */
.hero-bottom-row {
  display: flex;
  align-items: flex-end;
  gap: 56px;
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.9;
  max-width: 340px;
  margin: 0;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Corner-anchored labels (Duyu-style) */
.hero-corner {
  position: absolute;
  z-index: 5;
  bottom: 44px;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroReveal 1s ease 1.0s forwards;
}
.hero-corner--left  { left: 56px; }
.hero-corner--right {
  right: 56px;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.hero-corner-sep { color: rgba(255,255,255,0.10); }
.hero-corner-badge {
  border: 1px solid rgba(255,255,255,0.10);
  padding: 5px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.22);
  font-size: 9px;
  font-family: var(--font-head);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroReveal 1s ease 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85) translateY(-4px); }
  50%       { opacity: 1;    transform: scaleY(1)    translateY(0);    }
}

/* ------------------------------------------------------------------
   HERO STATS STRIP — editorial numbers row
   ------------------------------------------------------------------ */
.hero-stats-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.hero-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: stretch;
}

.hero-stat-item {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hero-stat-item--cert {
  margin-left: auto;
  align-items: flex-end;
}

.hero-stats-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }

.hero-stat-lbl {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}

.hero-stat-cert {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 2px;
}

/* ------------------------------------------------------------------
   MARQUEE STRIP
   ------------------------------------------------------------------ */
.marquee-strip {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------------------------------------------------------------------
   SECTIONS — BASE
   ------------------------------------------------------------------ */
.section { padding: 120px 0; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--charcoal); }
.section-darker { background: var(--dark); }
.section-light { background: var(--light); }

.section-header {
  margin-bottom: 64px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ------------------------------------------------------------------
   ABOUT SECTION — Full-height split with parallax image
   ------------------------------------------------------------------ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--white);
}

.about-visual {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.about-visual-img {
  position: absolute;
  inset: -15% 0;
  will-change: transform;
}
.about-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-visual-year {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: var(--font-head);
  font-size: clamp(80px, 8vw, 120px);
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

.about-body {
  padding: clamp(60px, 8vw, 120px) clamp(48px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.about-headline {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.about-lead {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 40px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-pillar-head {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.about-pillar-body {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.5;
}

/* ------------------------------------------------------------------
   PRODUCTS SECTION — 2×2 editorial full-bleed panels
   ------------------------------------------------------------------ */
.products-section {
  background: var(--light);
}

.products-section-header {
  padding-top: 120px;
  padding-bottom: 72px;
}

.products-section-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.products-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--border);
}

.product-panel {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--dark);
}

.product-panel-img {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-panel:hover .product-panel-img img {
  transform: scale(1.06);
}

.product-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.05) 100%
  );
  transition: background 0.4s ease;
}
.product-panel:hover .product-panel-overlay {
  background: linear-gradient(
    to top,
    rgba(160, 8, 30, 0.85) 0%,
    rgba(0,0,0,0.50) 60%,
    rgba(0,0,0,0.10) 100%
  );
}

.product-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 44px;
  z-index: 2;
}

.product-panel-num {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.product-panel h3 {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.product-panel-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  transition: color 0.3s ease, gap 0.3s ease;
}
.product-panel:hover .product-panel-arrow {
  color: var(--white);
  gap: 14px;
}
.product-panel:hover .product-panel-num { color: rgba(255,255,255,0.7); }

.products-cta-row {
  padding: 64px 32px;
  display: flex;
  justify-content: center;
}

/* ------------------------------------------------------------------
   DISCOVER OUR DIFFERENCE — 3-column image cards (Price & Pierce)
   ------------------------------------------------------------------ */
.difference-section {
  padding: 120px 0;
}

.difference-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 72px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}

.difference-card {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.difference-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.difference-card-img > div { /* parallax wrapper */
  position: absolute;
  inset: -15% 0;
  will-change: transform;
}
.difference-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.difference-card:hover .difference-card-img img {
  transform: scale(1.06);
}

.difference-card-content {
  padding: 36px 36px 44px;
  flex: 1;
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.difference-card:hover .difference-card-content {
  border-top-color: var(--red);
}

.difference-card-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.difference-card-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

/* ------------------------------------------------------------------
   INDUSTRIES (cleaned up, kept for homepage)
   ------------------------------------------------------------------ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.industry-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.industry-card-bg {
  position: absolute;
  inset: 0;
}

.industry-card-content {
  position: relative;
  z-index: 2;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.industry-card:hover .industry-icon {
  border-color: var(--red);
  background: rgba(200,16,46,0.15);
}
.industry-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  stroke-width: 1.5;
}

.industry-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 12px;
  margin-top: auto;
  padding-top: 40px;
}

.industry-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.7;
}

/* ------------------------------------------------------------------
   CTA SIMPLE — Price & Pierce "Can we help? Let's talk." style
   ------------------------------------------------------------------ */
.cta-simple {
  background: var(--dark);
  padding: 160px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-simple-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.cta-simple-title {
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
}

.cta-simple-link {
  color: var(--red);
  text-decoration: none;
  transition: color 0.3s ease;
}
.cta-simple-link:hover { color: var(--red-light); }

.cta-simple-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* Keep old CTA banner for other pages */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ------------------------------------------------------------------
   PARALLAX SHOWCASE SECTIONS
   ------------------------------------------------------------------ */
.parallax-showcase {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0a0a0a;
}

.parallax-showcase .parallax-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: none;
}

.parallax-showcase .parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.parallax-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 680px;
}

.parallax-inner.reverse {
  direction: rtl;
}
.parallax-inner.reverse > * { direction: ltr; }

.parallax-text { align-self: center; }

.parallax-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.parallax-label::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.parallax-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.parallax-title em {
  color: var(--red);
  font-style: normal;
}

.parallax-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 480px;
}

.parallax-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.parallax-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.parallax-stat-num span { color: var(--red); }
.parallax-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  font-family: var(--font-head);
}

/* 3D Asset Container */
.parallax-asset-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 440px;
  height: 440px;
  min-width: 260px;
  flex-shrink: 0;
}

/* Three.js canvas */
.parallax-3d-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  animation: canvasFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.75))
          drop-shadow(0 0 50px rgba(200,16,46,0.18));
}

@keyframes canvasFloat {
  0%,  100% { transform: translateY(0px); }
  45%        { transform: translateY(-18px); }
}

.parallax-asset-glow {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(200,16,46,0.28) 0%,
    rgba(200,16,46,0.06) 50%,
    transparent 75%);
  animation: glowPulse 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

.parallax-asset-svg {
  width: 420px;
  height: 420px;
  max-width: 90%;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.7))
          drop-shadow(0 0 50px rgba(200,16,46,0.2));
  animation: floatAsset 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatAsset {
  0%,  100% { transform: translateY(0px)    rotateY(-6deg) rotateX(3deg); }
  30%        { transform: translateY(-18px)  rotateY(3deg)  rotateX(-2deg); }
  70%        { transform: translateY(-10px)  rotateY(6deg)  rotateX(2deg); }
}

.parallax-asset-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,16,46,0.2);
  animation: ringExpand 3.5s ease-out infinite;
}
.parallax-asset-ring:nth-child(2) { animation-delay: 1.2s; }
.parallax-asset-ring:nth-child(3) { animation-delay: 2.4s; }

@keyframes ringExpand {
  0%   { opacity: 0.7; transform: scale(0.8); }
  100% { opacity: 0;   transform: scale(1.6); }
}

/* Scroll indicator line on parallax */
.parallax-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.5), transparent);
  z-index: 3;
}

@media (max-width: 900px) {
  .parallax-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px;
    min-height: auto;
  }
  .parallax-inner.reverse { direction: ltr; }
  .parallax-label { justify-content: center; }
  .parallax-asset-svg { width: 280px; height: 280px; }
  .parallax-stats { justify-content: center; }
}

/* ------------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  /* hero-right removed */
  .hero-stat.featured { grid-column: span 2; }
  /* about-strip-inner removed */
  .about-strip-image::before { display: none; }
  /* products-grid removed */
  .cap-cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .product-section { grid-template-columns: 1fr; }
  .product-section:nth-child(even) { direction: ltr; }
  .product-section-image { height: 300px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-topbar { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .hero-content { padding: 0 24px 96px; }
  .hero-title { font-size: clamp(52px, 13vw, 90px); }
  .hero-corner { display: none; }
  .hero-3d-canvas { width: 90vw; height: 90vw; right: -20%; opacity: 0.35 !important; }
  .hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-stats-inner { padding: 0 20px; flex-wrap: wrap; }
  .hero-stat-item { padding: 24px 20px; }
  .hero-stat-item--cert { margin-left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cap-cards-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .careers-intro-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .industries-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .capabilities-intro-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .suppliers-grid { grid-template-columns: 1fr; }
  .product-specs { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}

/* ==================================================================
   SCROLL ANIMATIONS — IntersectionObserver trigger classes
   ================================================================== */
/* Engineering-grade motion: short distance, snappy easing, decisive timing */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible,
.fade-in.visible,
.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delay helpers — tighter cadence */
.delay-1 { transition-delay: 0.06s !important; }
.delay-2 { transition-delay: 0.12s !important; }
.delay-3 { transition-delay: 0.20s !important; }
.delay-4 { transition-delay: 0.5s !important; }

/* ==================================================================
   HERO ANIMATION KEYFRAMES
   ================================================================== */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroCanvasFade {
  from { opacity: 0; }
  to   { opacity: 0.85; }
}
@keyframes heroImageFade {
  from { opacity: 0; }
  to   { opacity: 0.35; }
}

/* ==================================================================
   FOOTER
   ================================================================== */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social-link:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.footer-links-group {}

.footer-links-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s;
  display: block;
}
.footer-link:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-contact-text a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badge {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 3px;
}

/* ==================================================================
   STATS SECTION
   ================================================================== */
.stats-section {
  background: var(--charcoal);
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.stat-item {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--red);
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ==================================================================
   CTA BANNER (other pages)
   ================================================================== */
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-text {}

.cta-banner-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-banner-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ==================================================================
   CAPABILITIES PAGE
   ================================================================== */
.capabilities-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  text-align: center;
}

.capabilities-intro {
  padding: 100px 0;
  background: var(--charcoal);
}

.capabilities-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.capabilities-intro-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.capabilities-intro-text {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 20px;
}

.cap-cards-section {
  background: var(--dark);
  padding: 100px 0;
}

.cap-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.cap-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 40px 32px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}
.cap-card:hover {
  border-color: rgba(200,16,46,0.35);
  background: rgba(200,16,46,0.04);
  transform: translateY(-4px);
}

.cap-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,16,46,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--red);
  flex-shrink: 0;
}

.cap-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cap-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* Certifications */
.certs-section {
  background: var(--charcoal);
  padding: 100px 0;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.cert-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.cert-card:hover {
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-4px);
}

.cert-card-logo {
  height: 48px;
  max-width: 120px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.cert-card:hover .cert-card-logo { opacity: 1; }

.cert-card-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.cert-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* ==================================================================
   PRODUCTS PAGE
   ================================================================== */
.products-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  text-align: center;
}

/* Product detail page gallery */
.gallery-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 16px;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.gallery-thumb {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s, opacity 0.25s;
  opacity: 0.6;
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--red);
  opacity: 1;
}

/* ==================================================================
   CONTACT PAGE
   ================================================================== */
.contact-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  text-align: center;
}

.contact-section {
  background: var(--charcoal);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info {}

.contact-info-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.contact-info-text {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,16,46,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.contact-detail-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.contact-detail-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
.contact-detail-value a:hover { color: var(--white); }

.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 48px 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.07);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-select option { background: #1a1a1a; color: var(--white); }
.form-textarea { resize: vertical; min-height: 140px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  align-self: flex-start;
}
.form-submit:hover { background: #a50d25; transform: translateY(-2px); }

/* ==================================================================
   CAREERS PAGE
   ================================================================== */
.careers-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  text-align: center;
}

.careers-intro {
  background: var(--charcoal);
  padding: 100px 0;
}

.careers-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.careers-intro-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.careers-intro-text {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 20px;
}

.values-section {
  background: var(--dark);
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 40px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover {
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-4px);
}

.value-card-icon {
  color: var(--red);
  margin-bottom: 20px;
}

.value-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.value-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

.openings-section {
  background: var(--charcoal);
  padding: 100px 0;
}

.job-listing {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.job-listing:hover { border-color: rgba(200,16,46,0.3); }

.job-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.job-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ==================================================================
   SUPPLIERS PAGE
   ================================================================== */
.suppliers-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  text-align: center;
}

.suppliers-section {
  background: var(--charcoal);
  padding: 100px 0;
}

.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.supplier-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.supplier-card:hover {
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-3px);
}

.supplier-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.supplier-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ==================================================================
   LOCATIONS PAGE
   ================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.location-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.location-card:hover {
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-3px);
}

.location-card-map {
  height: 200px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.location-card-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.location-card-body { padding: 28px 28px; }

.location-card-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.location-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ==================================================================
   PAGE HERO (generic reusable)
   ================================================================== */
.page-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,16,46,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ==================================================================
   SECTION HEADERS (shared)
   ================================================================== */
.section-header {
  margin-bottom: 16px;
}

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-title.centered { text-align: center; }

.section-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 600px;
}
.section-subtitle.centered { text-align: center; margin: 0 auto; }

/* ==================================================================
   ABOUT PAGE extras
   ================================================================== */
.about-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  text-align: center;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.about-feature {
  padding: 32px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
}
.about-feature:hover {
  border-color: rgba(200,16,46,0.25);
  transform: translateY(-3px);
}

.about-feature-icon {
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.about-feature-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.about-feature-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}


/* ==================================================================
   PAGE HEADER (inner pages hero)
   ================================================================== */
.page-header {
  background: var(--dark);
  padding: 148px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,16,46,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

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

/* ==================================================================
   FOOTER column titles & contact detail (page variant)
   ================================================================== */
.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-detail svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-detail span,
.footer-contact-detail a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.25s;
}
.footer-contact-detail a:hover { color: var(--white); }

/* ==================================================================
   GLOBAL SECTION (shared dark section wrapper)
   ================================================================== */
.global-section {
  background: var(--charcoal);
  padding: 100px 0;
}

/* ==================================================================
   ABOUT STRIP (legacy — keep layout from breaking)
   ================================================================== */
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ==================================================================
   CAPABILITIES LIST items
   ================================================================== */
.capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cap-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  transition: border-color 0.3s, background 0.3s;
}
.cap-item:hover {
  border-color: rgba(200,16,46,0.25);
  background: rgba(200,16,46,0.03);
}

.cap-item-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.cap-item-text {}

.cap-item-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cap-item-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ==================================================================
   CAREERS — benefits & openings
   ================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
}
.benefit-card:hover {
  border-color: rgba(200,16,46,0.25);
  transform: translateY(-3px);
}

.benefit-icon {
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.benefit-text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.benefit-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.openings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.opening-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: border-color 0.3s;
  flex-wrap: wrap;
}
.opening-card:hover { border-color: rgba(200,16,46,0.3); }

.opening-info {}

.opening-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.opening-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.opening-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 3px;
}

/* ==================================================================
   PRODUCTS PAGE — gallery & detail
   ================================================================== */
.product-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-nav-link {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.product-nav-link:hover,
.product-nav-link.active {
  color: var(--white);
  border-color: var(--red);
  background: rgba(200,16,46,0.1);
}

.product-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 16px;
}

.gallery-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200,16,46,0.12);
  border: 1px solid rgba(200,16,46,0.25);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.material-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.material-tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ==================================================================
   CONTACT — map
   ================================================================== */
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
  filter: grayscale(100%) invert(90%);
}


/* ==================================================================
   COLOUR FIXES — missing / overridden selectors
   ================================================================== */

/* Stats section — about.html uses .stat-number / .stat-divider */
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-divider {
  width: 32px;
  height: 2px;
  background: var(--red);
  margin: 10px auto;
}
/* Also keep .stat-num in sync */
.stat-num { color: var(--white); }

/* Quality / certs section on light background (about.html) */
.quality-section {
  background: var(--light);
  padding: 100px 0;
}
.quality-section .cert-card {
  background: var(--white);
  border: 1px solid var(--border);
}
.quality-section .cert-card:hover {
  border-color: var(--red);
}
.quality-section .cert-card h4 {
  color: var(--charcoal);
  font-size: 16px;
  margin-bottom: 8px;
}
.quality-section .cert-card p {
  color: var(--silver);
  font-size: 14px;
  line-height: 1.7;
}
.cert-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,16,46,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--red);
}
.cert-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.quality-section .certs-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
}

/* CTA Banner — h2 invisible on red background */
.cta-banner h2,
.cta-banner .cta-banner-title {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.cta-banner h2 em,
.cta-banner em {
  color: rgba(255,255,255,0.7);
  font-style: normal;
}

/* Cap-item text — used on dark backgrounds */
.cap-item-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  font-family: var(--font-head);
}
.cap-item-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* Location cards — inside .global-section (dark background) */
.location-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font-head);
}
.location-card-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.location-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* Section with dark background — default text needs to be light */
.section-dark .section-title,
.section-darker .section-title,
.parallax-showcase .section-title,
.global-section .section-title,
.careers-intro .section-title,
.capabilities-intro .section-title,
.stats-section .section-title,
.openings-section .section-title,
.values-section .section-title {
  color: var(--white);
}
.section-dark .section-desc,
.section-darker .section-desc,
.global-section .section-desc,
.careers-intro .section-desc,
.capabilities-intro .section-desc,
.stats-section .section-desc,
.openings-section .section-desc,
.values-section .section-desc {
  color: rgba(255,255,255,0.6);
}
.section-dark .section-label,
.section-darker .section-label {
  color: var(--red);
}

/* careers-intro image */
.careers-intro-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.careers-intro-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

/* Page header h1 & breadcrumb (always on dark background) */
.page-header h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

/* Section on white background — ensure charcoal text */
.section h2,
.section h3,
.section-light h2,
.section-light h3 {
  color: var(--charcoal);
}
.section p,
.section-light p {
  color: var(--silver);
}

/* Supplier page intro section text */
.section .section-title { color: var(--charcoal); }
.section .section-desc  { color: var(--silver); }

/* ==================================================================
   PRODUCTS PAGE — full-bleed split layout
   ================================================================== */
.products-intro {
  background: var(--charcoal);
  padding: 64px 0;
  text-align: center;
}

.product-section {
  display: flex;
  min-height: 580px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.product-section.alt {
  flex-direction: row-reverse;
  background: var(--light);
}

/* Image — fills its half edge-to-edge */
.product-section-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.product-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.product-section:hover .product-section-image img {
  transform: scale(1.03);
}

/* Thumbnail strip over image */
.product-gallery-strip {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.product-gallery-strip .gallery-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  flex-shrink: 0;
  display: block;
}
.product-gallery-strip .gallery-thumb.active,
.product-gallery-strip .gallery-thumb:hover {
  opacity: 1;
  border-color: var(--red);
}

/* Content — contained with clean padding */
.product-section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  max-width: 640px;
}
.product-section.alt .product-section-content {
  margin-left: auto;
}

/* Product sub-nav */
.product-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 76px;
  z-index: 100;
}
.product-subnav-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding: 0 32px;
  max-width: 1264px;
  margin: 0 auto;
  gap: 0;
}
.product-subnav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.product-subnav-link:hover,
.product-subnav-link.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.product-subnav-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Product badge */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,16,46,0.07);
  color: var(--red);
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-head);
  margin-bottom: 16px;
  border: 1px solid rgba(200,16,46,0.18);
}

/* Spec table */
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 28px;
  border: 1px solid var(--border);
  border-right: none;
  border-bottom: none;
}
.spec-item {
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spec-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 3px;
}
.spec-value {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}

/* Tag cloud */
.tag-group-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.material-tag {
  background: var(--charcoal);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .product-section,
  .product-section.alt { flex-direction: column; min-height: auto; }
  .product-section-image { flex: 0 0 300px; width: 100%; }
  .product-section-content { padding: 48px 24px; max-width: 100%; }
  .product-section.alt .product-section-content { margin-left: 0; }
}

/* ==================================================================
   CAPABILITIES PAGE — page-specific
   ================================================================== */
.process-steps {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 56px;
  border: 1px solid var(--border);
}
.process-step {
  flex: 1;
  min-width: 140px;
  padding: 28px 20px;
  text-align: center;
  background: var(--white);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--light); }
.process-step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 12px;
}
.process-step-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--red);
}
.process-step-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.process-step-desc {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.6;
}
.equipment-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 14px;
}
.equipment-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
}
.equipment-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  vertical-align: top;
}
.equipment-table tr:last-child td { border-bottom: none; }
.equipment-table tr:nth-child(even) td { background: var(--light); }
.equipment-table tr:hover td { background: rgba(200,16,46,0.04); }

/* ==================================================================
   CAREERS PAGE — page-specific
   ================================================================== */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.benefit-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.benefit-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,16,46,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.benefit-item-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.benefit-item-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.65;
}
.opening-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: border-color 0.2s, border-left-color 0.2s;
  flex-wrap: wrap;
}
.opening-card:hover {
  border-color: var(--border);
  border-left-color: var(--red);
}
.opening-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.opening-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.opening-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  background: var(--light);
  padding: 3px 8px;
}

/* ==================================================================
   CONTACT PAGE — page-specific
   ================================================================== */
.contact-section {
  background: var(--white);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,16,46,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-detail-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 3px;
}
.contact-detail-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}
.contact-detail-text a { color: inherit; text-decoration: none; }
.contact-detail-text a:hover { color: var(--red); }
.contact-form-wrap {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 48px 40px;
}
.form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.form-subtitle {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--charcoal);
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--red); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--silver); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--silver); margin-top: 8px; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 20px; }
}

/* ==================================================================
   PRODUCTS PAGE — intro banner
   ================================================================== */
.products-intro {
  background: var(--charcoal);
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.products-intro-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.products-intro-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  margin-top: 10px;
}
.products-intro-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 600px;
}
.product-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ==================================================================
   BUTTON VARIANTS
   ================================================================== */
/* Ghost button — for dark CTA banner secondary actions */
.btn-ghost {
  background: rgba(0,0,0,0.25);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* ==================================================================
   ABOUT PAGE — timeline + leadership
   ================================================================== */
.timeline {
  padding: 100px 0;
  background: var(--light);
}
.timeline-inner {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 0;
  align-items: start;
  margin-top: 56px;
}
.timeline-line {
  background: linear-gradient(to bottom, var(--red) 0%, rgba(200,16,46,0.15) 100%);
  min-height: 600px;
  position: relative;
}
.timeline-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--light), 0 0 0 5px var(--red);
}
.timeline-left  { padding-right: 52px; }
.timeline-right { padding-left: 52px; }
.timeline-item {
  margin-bottom: 24px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 28px;
  right: -6px;
  width: 10px;
  height: 10px;
  background: var(--border);
  border-radius: 50%;
  transition: background 0.2s ease;
}
.timeline-right .timeline-item::before { left: -6px; right: auto; }
.timeline-item:hover { border-left-color: var(--red); box-shadow: 4px 0 0 var(--red), var(--shadow-sm); }
.timeline-item:hover::before { background: var(--red); }
.timeline-year {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.timeline-item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.timeline-item p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.75;
  margin: 0;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-grid img {
  width: 100%;
  object-fit: cover;
}
.about-img-grid img:nth-child(2) { margin-top: 32px; }
.about-img-grid img:nth-child(3) { grid-column: span 2; height: 180px; }
@media (max-width: 768px) {
  .timeline-inner { grid-template-columns: 1fr; }
  .timeline-line  { display: none; }
  .timeline-left,
  .timeline-right { padding: 0; }
  .about-img-grid { grid-template-columns: 1fr; }
  .about-img-grid img:nth-child(2) { margin-top: 0; }
  .about-img-grid img:nth-child(3) { grid-column: span 1; }
}

/* ==================================================================
   CAPABILITIES PAGE — process flow + equipment table overrides
   ================================================================== */
.process-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  flex: 1;
  min-width: 140px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.process-step:hover { border-color: var(--red); z-index: 1; }
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--red);
  z-index: 2;
  font-weight: 700;
}
.process-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.process-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.process-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--red); stroke-width: 2; }
.process-step h4 { font-size: 13px; font-weight: 700; color: var(--charcoal); font-family: var(--font-head); }

/* Equipment table — capabilities page specific */
.capabilities-page .equipment-table th { background: var(--red); }
.equipment-table td:first-child { font-weight: 600; }

/* Materials dark grid */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.dark-cap-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 768px) {
  .process-flow { flex-direction: column; }
  .process-step::after { display: none; }
}

/* ==================================================================
   CONTACT PAGE — section layouts
   ================================================================== */
.contact-section-wrap { padding: 60px 0 80px; }
.contact-left-top { margin-top: 60px; display: block; }
.contact-form-side { padding-top: 60px; }
.contact-quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.contact-stat-box {
  padding: 20px;
  background: var(--charcoal);
  text-align: center;
}
.contact-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
}
.contact-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-careers-banner {
  background: var(--light);
  padding: 60px 0;
  text-align: center;
}
.contact-careers-banner h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-family: var(--font-head);
  margin-bottom: 12px;
}
.contact-careers-banner p {
  color: var(--silver);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(46,125,50,0.1);
  border: 1px solid rgba(46,125,50,0.3);
  margin-top: 24px;
}
.form-success svg { width: 48px; height: 48px; stroke: #2E7D32; fill: none; stroke-width: 1.5; margin: 0 auto 16px; display:block; }
.form-success h3 { font-size: 20px; color: #2E7D32; margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: var(--silver); }

/* ==================================================================
   CAREERS PAGE — benefits + local section
   ================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.benefit-item:hover .benefit-icon { background: var(--red); }
.benefit-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--red); stroke-width: 2; transition: stroke 0.2s; }
.benefit-item:hover .benefit-icon svg { stroke: var(--white); }
.benefit-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; font-family: var(--font-head); }
.benefit-text p  { font-size: 13px; color: var(--silver); line-height: 1.6; }
.careers-local-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.careers-local-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.careers-local-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.8);
}
@media (max-width: 768px) {
  .benefits-grid      { grid-template-columns: 1fr; }
  .careers-local-inner { grid-template-columns: 1fr; }
}

/* Contact heading */
.contact-heading {
  font-size: clamp(24px, 3vw, 40px);
  font-family: var(--font-head);
  margin-bottom: 16px;
}

/* ==================================================================
   CAREERS — tag pill aliases + opening info
   ================================================================== */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  background: var(--light);
  padding: 3px 10px;
  font-family: var(--font-head);
}
.tag.red {
  background: rgba(200,16,46,0.1);
  color: var(--red);
}
.opening-info h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.opening-info p {
  font-size: 13px;
  color: var(--silver);
}

/* ==================================================================
   SUPPLIERS PAGE — supplier cards grid
   ================================================================== */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.supplier-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: border-top-color 0.2s, box-shadow 0.2s;
}
.supplier-card:hover {
  border-top-color: var(--red);
  box-shadow: var(--shadow-md);
}
.supplier-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.supplier-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .suppliers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .suppliers-grid { grid-template-columns: 1fr; }
}

/* ==================================================================
   SHARED DARK GRID — sourcing grid used on suppliers + capabilities
   ================================================================== */
.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

/* ==================================================================
   CAREERS — dark "Don't See Your Role" card variant
   ================================================================== */
.opening-card-dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.opening-card-dark .opening-info h3 { color: var(--white); }
.opening-card-dark .opening-info p   { color: rgba(255,255,255,0.5); }
