:root {
  --navy: #061a34;
  --blue: #0b4fb3;
  --royal: #1368d8;
  --sky: #e8f2ff;
  --light: #f5f7fb;
  --white: #ffffff;
  --text: #243044;
  --muted: #64748b;
  --green: #19b86a;
  --dark: #04111f;
  --shadow: 0 20px 55px rgba(5, 26, 52, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 79, 179, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 79, 179, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.12;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13, 46, 82, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.scrolled {
  box-shadow: 0 14px 36px rgba(4, 17, 31, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(19, 104, 216, 0.28);
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  font-weight: 700;
  color: #24344f;
}

.menu a {
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s ease;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  border: 0;
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: var(--sky);
  border-radius: 8px;
  font-size: 1.1rem;
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, rgba(4, 17, 31, 0.9), rgba(9, 61, 133, 0.58)),
    var(--hero-image) center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(25, 184, 106, 0.34), transparent 28%),
    linear-gradient(90deg, rgba(4, 17, 31, 0.92), rgba(4, 17, 31, 0.22));
}

.hero::after,
.page-hero::after,
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.13) 50%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 76px);
  mix-blend-mode: screen;
  opacity: 0.42;
  animation: factorySweep 7s linear infinite;
}

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

.hero h1,
.hero p {
  color: var(--white);
}

.hero p {
  max-width: 760px;
  margin-top: 22px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--royal));
  box-shadow: 0 18px 36px rgba(19, 104, 216, 0.32);
  animation: pulseGlow 2.6s infinite;
}

.btn-green {
  color: var(--white);
  background: linear-gradient(135deg, #13a95f, var(--green));
  box-shadow: 0 18px 36px rgba(25, 184, 106, 0.3);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 16px;
  max-width: 650px;
  margin-top: 48px;
}

.stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-family: "Montserrat", Arial, sans-serif;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.floating-bag {
  position: absolute;
  right: 9%;
  bottom: 12%;
  width: 136px;
  height: 168px;
  border: 2px solid rgba(255, 255, 255, 0.44);
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(25, 184, 106, 0.18));
  z-index: 1;
  animation: floatBag 5s ease-in-out infinite;
}

.floating-bag::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 32px;
  width: 70px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.44);
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
}

.strip-grid,
.product-grid,
.why-grid,
.contact-grid,
.value-grid,
.service-grid {
  display: grid;
  gap: 24px;
}

.strip-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: -72px;
  position: relative;
  z-index: 4;
}

.strip-card,
.product-card,
.why-card,
.testimonial-card,
.contact-card,
.service-card,
.value-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card::before,
.service-card::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(19, 104, 216, 0.12);
  border-radius: inherit;
}

.product-card::after,
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 52%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  opacity: 0;
}

.product-card:hover::after,
.service-card:hover::after {
  animation: cardScan 0.95s ease;
  opacity: 1;
}

.strip-card:hover,
.product-card:hover,
.why-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.service-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(5, 26, 52, 0.2);
}

.strip-card figure {
  height: 180px;
  overflow: hidden;
}

.strip-card img,
.product-card img,
.gallery-item img,
.why-card img,
.service-card img {
  transition: transform 0.55s ease;
}

.strip-card:hover img,
.product-card:hover img,
.gallery-item:hover img,
.why-card:hover img,
.service-card:hover img {
  transform: scale(1.08);
}

.strip-card h3 {
  padding: 18px;
  font-size: 1rem;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack .main-image {
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quality-badge {
  position: absolute;
  right: -24px;
  bottom: 36px;
  max-width: 220px;
  padding: 22px;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 24px 44px rgba(6, 26, 52, 0.24);
}

.quality-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #334155;
  font-weight: 600;
}

.check-list i {
  margin-top: 5px;
  color: var(--green);
}

.products-dark {
  background: linear-gradient(135deg, var(--navy), #082a5c 70%, #073066);
}

.products-dark h2,
.products-dark h3,
.products-dark .section-heading p {
  color: var(--white);
}

.products-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.products-dark p,
.products-dark .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

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

.product-card figure {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-card figure::after,
.service-card figure::after,
.strip-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 17, 31, 0.44));
}

.product-body {
  padding: 24px;
}

.product-body p {
  margin-bottom: 18px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  margin-bottom: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 20px;
  list-style: none;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #43536a;
  font-size: 0.9rem;
  font-weight: 700;
}

.spec-list i {
  color: var(--green);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 112px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-column: span 3;
  grid-row: span 2;
  background: var(--navy);
}

.gallery-item.tall {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-item.wide {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-item.feature {
  grid-column: span 6;
  grid-row: span 4;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 17, 31, 0.86));
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}

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

.why-card figure {
  height: 260px;
  overflow: hidden;
}

.why-card div,
.service-card div {
  padding: 24px;
}

.why-card i,
.service-card i,
.value-card i,
.contact-card i {
  color: var(--green);
  font-size: 1.7rem;
  margin-bottom: 14px;
}

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

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

.testimonial-card {
  padding: 32px;
}

.stars {
  color: #f5b301;
  margin-bottom: 16px;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
}

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

.contact-card {
  padding: 26px;
  min-height: 190px;
}

.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, rgba(6, 26, 52, 0.96), rgba(12, 76, 163, 0.9)),
    var(--cta-image) center/cover no-repeat;
}

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

.cta h2,
.cta p {
  color: var(--white);
}

.enquiry {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(4, 17, 31, 0.22);
}

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

input,
textarea,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d8e1ef;
  border-radius: 8px;
  padding: 0 15px;
  font: inherit;
  color: var(--text);
  background: #f8fbff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 4px rgba(19, 104, 216, 0.12);
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1fr 1fr;
  gap: 34px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer a:hover {
  color: var(--green);
}

.footer-bottom {
  margin-top: 48px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.floating-actions {
  position: fixed;
  inset: auto 22px 22px 22px;
  z-index: 1200;
  pointer-events: none;
}

.float-btn {
  position: absolute;
  bottom: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.35rem;
  pointer-events: auto;
  box-shadow: 0 16px 32px rgba(4, 17, 31, 0.28);
  animation: floatPulse 2.4s infinite;
}

.float-call {
  left: 0;
  background: var(--blue);
}

.float-whatsapp {
  right: 0;
  background: #25d366;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: linear-gradient(110deg, rgba(4, 17, 31, 0.9), rgba(11, 79, 179, 0.46)),
    var(--page-image) center/cover no-repeat;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

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

.value-card {
  padding: 28px;
}

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

.service-card figure {
  height: 240px;
  overflow: hidden;
}

.info-band {
  padding: 54px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.info-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.info-band h2,
.info-band p {
  color: var(--white);
}

.map-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(6, 26, 52, 0.86), rgba(19, 104, 216, 0.68)),
    url("../images/pp-hero-factory.png") center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.factory-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.flow-step {
  position: relative;
  min-height: 126px;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.flow-step::after {
  content: "";
  position: absolute;
  left: -50%;
  top: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(25, 184, 106, 0.35), transparent);
  animation: conveyorMove 3.4s ease-in-out infinite;
}

.flow-step strong {
  display: block;
  font-size: 1.35rem;
  color: var(--white);
}

.flow-step span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.map-panel h3,
.map-panel p {
  color: var(--white);
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 18px 36px rgba(19, 104, 216, 0.32);
  }
  50% {
    box-shadow: 0 18px 46px rgba(25, 184, 106, 0.45);
  }
}

@keyframes floatBag {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-22px) rotate(3deg);
  }
}

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

@keyframes factorySweep {
  from {
    background-position: -520px 0, 0 0;
  }
  to {
    background-position: 520px 0, 152px 0;
  }
}

@keyframes cardScan {
  from {
    left: -70%;
  }
  to {
    left: 120%;
  }
}

@keyframes conveyorMove {
  0% {
    transform: translateX(0) skewX(-18deg);
  }
  100% {
    transform: translateX(370%) skewX(-18deg);
  }
}

@media (max-width: 1100px) {
  .strip-grid,
  .contact-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.feature {
    grid-column: span 3;
    grid-row: span 3;
  }

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

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 22px;
    background: var(--white);
    box-shadow: 0 28px 40px rgba(4, 17, 31, 0.12);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    display: block;
    padding: 14px 0;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-stats,
  .about-wrap,
  .enquiry,
  .testimonial-grid,
  .footer-grid,
  .info-band .container {
    grid-template-columns: 1fr;
  }

  .quality-badge {
    right: 18px;
  }

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

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .logo {
    font-size: 0.86rem;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 760px;
    align-items: start;
    padding: 64px 0 72px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 26px;
  }

  .stat {
    padding: 11px 9px;
  }

  .stat strong {
    font-size: 1.24rem;
  }

  .stat span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .strip-grid,
  .product-grid,
  .why-grid,
  .contact-grid,
  .value-grid,
  .service-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.feature {
    grid-column: auto;
    grid-row: span 1;
  }

  .strip-grid {
    margin-top: -44px;
  }

  .strip-card figure,
  .product-card figure,
  .service-card figure,
  .why-card figure {
    height: 230px;
  }

  .image-stack .main-image {
    height: 390px;
  }

  .factory-flow {
    grid-template-columns: 1fr;
  }
}
