:root {
  --red: #d71920;
  --black: #111111;
  --steel: #6b7280;
  --light: #f8fafc;
  --line: #e5e7eb;
  --white: #ffffff;
  --ink: #1f2937;
  --shadow: 0 24px 70px rgba(17, 17, 17, .14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .3s ease, border .3s ease, box-shadow .3s ease;
}

.site-header.scrolled,
.site-header.inner {
  background: rgba(17, 17, 17, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 900;
}

.brand-logo {
  width: 142px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .42));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav-links a {
  position: relative;
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}

.nav-links a:hover:after {
  right: 0;
}

.nav-links a.active {
  color: #fff;
}

.nav-links a.active:after {
  right: 0;
}

.nav-links .nav-cta {
  padding: 11px 14px;
  background: var(--red);
  color: #fff;
}

.nav-links .nav-cta:after {
  content: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(215, 25, 32, .25);
}

.btn.dark {
  background: var(--black);
}

.btn.ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
}

.btn.light {
  background: #fff;
  color: var(--black);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 136px 0 42px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #111;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .45) 52%, rgba(0, 0, 0, .18)), linear-gradient(0deg, rgba(17, 17, 17, .98), transparent 42%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  to {
    transform: scale(1.12);
  }
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eyebrow:before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: 96px;
  line-height: .92;
  letter-spacing: 0;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

h3 {
  color: var(--black);
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, .86);
  font-size: 24px;
  line-height: 1.35;
}

.section-lead {
  max-width: 760px;
  color: var(--steel);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 46px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
}

.proof {
  min-height: 118px;
  padding: 22px;
  background: rgba(17, 17, 17, .56);
  backdrop-filter: blur(14px);
}

.proof strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.proof span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

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

.dark-section {
  background: var(--black);
  color: #fff;
}

.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.dark-section .section-lead {
  color: rgba(255, 255, 255, .72);
}

.company-grid,
.services-grid,
.industries-grid,
.stats-grid,
.page-grid,
.product-grid {
  display: grid;
  gap: 22px;
}

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

.company-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.company-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .55s ease, opacity .55s ease;
}

.company-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .16) 70%);
}

.company-card:hover img {
  transform: scale(1.08);
  opacity: .9;
}

.company-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: #fff;
}

.company-content h3 {
  color: #fff;
  font-size: 29px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}

.tag-list span {
  padding: 6px 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 800;
}

.tag-list.dark span {
  background: #fff;
  border-color: var(--line);
  color: var(--black);
}

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

.industry-card,
.service-card,
.stat-card,
.product-card,
.contact-card,
.showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(17, 17, 17, .06);
}

.industry-card {
  min-height: 170px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 25, 32, .45);
  background: #fff;
}

.industry-card i,
.service-card i,
.product-card i {
  color: var(--red);
  font-size: 25px;
}

.industry-card strong {
  color: var(--black);
  font-size: 18px;
  line-height: 1.1;
}

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

.division-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.division-card {
  min-height: 510px;
}

.capability-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: 110px;
}

.capability-panel {
  padding: 34px;
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow);
}

.capability-panel h3 {
  color: #fff;
  font-size: 34px;
}

.capability-panel p {
  color: rgba(255, 255, 255, .74);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  padding: 12px 13px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.capability-list.dark li {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .86);
}

.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black);
  color: #fff;
}

.split-showcase img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.split-copy {
  padding: 48px;
  display: grid;
  align-content: center;
}

.split-copy h2,
.split-copy h3 {
  color: #fff;
}

.split-copy p {
  color: rgba(255, 255, 255, .72);
}

.entity-note {
  padding: 22px;
  border-left: 4px solid var(--red);
  background: #fff;
  box-shadow: 0 12px 36px rgba(17, 17, 17, .06);
}

.entity-note strong {
  display: block;
  color: var(--black);
  font-size: 18px;
}

.parts-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.parts-image {
  min-height: 360px;
  background: var(--black);
  overflow: hidden;
}

.parts-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.brand-marquee {
  display: grid;
  gap: 14px;
}

.facility-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}

.facility-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--black);
}

.facility-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.facility-info {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(17, 17, 17, .06);
}

.facility-info address {
  color: var(--black);
  font-style: normal;
  font-weight: 900;
}

.premium-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.intro-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.intro-media.facility-photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.intro-media.facility-photo img {
  min-height: 0;
}

.intro-panel {
  padding: 46px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(17, 17, 17, .08);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-block {
  min-height: 340px;
  padding: 30px;
  display: grid;
  align-content: end;
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.feature-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  transition: transform .5s ease, opacity .5s ease;
}

.feature-block:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .12));
}

.feature-block:hover img {
  transform: scale(1.06);
  opacity: .58;
}

.feature-block > *:not(img) {
  position: relative;
  z-index: 1;
}

.feature-block h3 {
  color: #fff;
  font-size: 28px;
}

.page-nav-band {
  background: var(--black);
  color: #fff;
  padding: 24px 0;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.page-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-nav a:hover {
  border-color: var(--red);
  color: #fff;
}

.premium-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow);
}

.premium-cta h2 {
  color: #fff;
}

.premium-cta p {
  color: rgba(255, 255, 255, .72);
}

.service-card,
.product-card {
  min-height: 250px;
  padding: 28px;
  transition: transform .28s ease, box-shadow .28s ease;
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card p,
.product-card p,
.showcase-card p {
  color: var(--steel);
}

.text-link {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.stat-card {
  padding: 34px 28px;
  background: var(--black);
  color: #fff;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 54px;
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.logo-marquee {
  display: flex;
  gap: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
}

.logo-belt {
  min-width: max-content;
  display: flex;
  gap: 14px;
  animation: logoMarquee 34s linear infinite;
}

.logo-track {
  min-width: max-content;
  display: flex;
  gap: 14px;
}

.logo-marquee:hover .logo-belt,
.logo-marquee:focus-within .logo-belt {
  animation-play-state: paused;
}

.logo-track .logo-tile {
  flex: 0 0 292px;
}

.logo-tile {
  min-height: 116px;
  padding: 24px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  filter: grayscale(1);
  transition: filter .25s ease, transform .25s ease, box-shadow .25s ease;
}

.logo-tile:hover {
  filter: grayscale(0);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17, 17, 17, .08);
}

.logo-tile img {
  max-height: 54px;
  object-fit: contain;
}

.logo-wordmark {
  color: #4f4f4f;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-style: italic;
}

@keyframes logoMarquee {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .logo-marquee::-webkit-scrollbar {
    display: none;
  }

  .logo-belt {
    animation: none;
  }

  .logo-track[aria-hidden="true"] {
    display: none;
  }

  .logo-track .logo-tile {
    scroll-snap-align: center;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #111;
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: .82;
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 10px;
  background: rgba(17, 17, 17, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.emergency {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.emergency:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(215, 25, 32, .92), rgba(215, 25, 32, .1) 42%, transparent), url("../wp-content/uploads/2024/09/Bottom-new-2.png") center/cover;
  opacity: .42;
}

.emergency .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.emergency h2 {
  color: #fff;
}

.contact-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  padding: 34px;
}

.quick-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 15px;
  color: var(--black);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(215, 25, 32, .16);
  border-color: var(--red);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.contact-list a,
.contact-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--black);
  font-weight: 800;
}

.contact-list i {
  color: var(--red);
}

.map {
  min-height: 280px;
  width: 100%;
  border: 0;
  filter: grayscale(.35);
}

.site-footer {
  padding: 48px 0;
  background: #080808;
  color: rgba(255, 255, 255, .72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 16px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 10px;
}

.float-actions a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(17, 17, 17, .28);
}

.float-actions a.whatsapp {
  background: #16a34a;
}

.page-hero {
  min-height: 72svh;
  padding: 144px 0 70px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .35)), linear-gradient(0deg, rgba(17, 17, 17, .9), transparent 50%);
  z-index: 1;
}

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

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 980px;
}

.page-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.feature-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--black);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.feature-panel {
  padding: 30px;
  background: var(--black);
  color: #fff;
}

.feature-panel h3 {
  color: #fff;
}

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

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.showcase-card {
  overflow: hidden;
}

.showcase-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.showcase-pair figure {
  position: relative;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
}

.showcase-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-pair figcaption {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 8px;
  background: rgba(17, 17, 17, .78);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-card div:last-child {
  padding: 24px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
}

.process-step {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, .04);
}

.process-step span {
  color: var(--red);
  font-weight: 950;
  font-size: 13px;
}

.process-step h3 {
  margin: 18px 0 10px;
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 84vh;
  width: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 48px;
  }

  .lead {
    font-size: 21px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 80;
    flex: 0 0 auto;
  }

  .brand {
    position: relative;
    z-index: 80;
  }

  .site-header {
    height: 78px;
    background: rgba(17, 17, 17, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  body.nav-open .site-header {
    height: 100dvh;
    min-height: 100vh;
    background: #0b0b0b;
    overflow-y: auto;
    box-shadow: none;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    min-height: calc(100dvh - 78px);
    padding: 20px 22px 30px;
    display: flex;
    flex-direction: column;
    align-content: start;
    align-items: stretch;
    gap: 10px;
    background: #0b0b0b;
    transform: translateX(100%);
    transition: transform .3s ease;
    font-size: 13px;
    overflow-y: auto;
    z-index: 70;
  }

  body.nav-open .nav-links {
    transform: none;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .9);
    line-height: 1.15;
  }

  .nav-links a:after {
    content: none;
  }

  .nav-links a.active {
    border-color: rgba(215, 25, 32, .65);
    background: rgba(215, 25, 32, .12);
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    border-color: var(--red);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-toggle span {
    transition: transform .22s ease, opacity .22s ease;
  }

  .proof-strip,
  .company-grid,
  .division-grid,
  .services-grid,
  .industries-grid,
  .stats-grid,
  .logo-grid,
  .contact-wrap,
  .footer-grid,
  .page-grid,
  .product-grid,
  .showcase-grid,
  .process,
  .capability-layout,
  .facility-grid,
  .parts-strip,
  .split-showcase,
  .premium-intro,
  .feature-row,
  .premium-cta {
    grid-template-columns: 1fr 1fr;
  }

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

  .sticky-panel {
    position: static;
  }

  .company-card {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .stat-card strong {
    font-size: 42px;
  }

  .nav-shell,
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand-logo {
    width: 112px;
  }

  .hero,
  .page-hero {
    padding-top: 112px;
  }

  section {
    padding: 68px 0;
  }

  .section-head,
  .emergency .container {
    display: block;
  }

  .proof-strip,
  .company-grid,
  .division-grid,
  .services-grid,
  .industries-grid,
  .stats-grid,
  .logo-grid,
  .contact-wrap,
  .footer-grid,
  .page-grid,
  .product-grid,
  .showcase-grid,
  .process,
  .field-grid,
  .capability-layout,
  .facility-grid,
  .parts-strip,
  .split-showcase,
  .capability-list,
  .premium-intro,
  .feature-row,
  .premium-cta {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .capability-panel,
  .facility-info,
  .intro-panel,
  .premium-cta {
    padding: 28px;
  }

  .intro-media,
  .intro-media img {
    min-height: 360px;
  }

  .proof {
    min-height: 96px;
  }

  .company-card {
    min-height: 430px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .logo-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
  }

  .logo-grid::-webkit-scrollbar {
    display: none;
  }

  .logo-grid .logo-tile {
    min-width: 76%;
    min-height: 128px;
    scroll-snap-align: center;
  }

  .logo-track .logo-tile {
    flex-basis: clamp(178px, 48vw, 230px);
    min-height: 112px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, .04);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-row: span 1;
  }

  .showcase-pair {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .feature-image img {
    min-height: 360px;
  }

  .float-actions {
    right: 12px;
    bottom: 12px;
  }
}
