:root {
  --bg: #f3f6fa;
  --bg-elevated: #ffffff;
  --surface: #e7eef6;
  --ink: #101820;
  --muted: #5b6b7c;
  --steel: #243447;
  --accent: #0b6e7a;
  --accent-soft: #14919f;
  --accent-wash: rgba(11, 110, 122, 0.1);
  --line: rgba(16, 24, 32, 0.1);
  --shadow: 0 16px 36px rgba(16, 40, 64, 0.08);
  --font-display: "Oswald", sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1320px;
  --header-h: 5.25rem;
  --pad-x: clamp(1rem, 4vw, 2.75rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: var(--header-h);
  padding: 0.65rem var(--pad-x);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 40, 64, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  z-index: 2;
}

.brand-logo {
  height: clamp(3.1rem, 6.5vw, 4.35rem);
  width: auto;
  max-width: min(72vw, 24rem);
  object-fit: contain;
}

.nav-toggle {
  position: relative;
  z-index: 80;
  display: grid;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  place-content: center;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop nav stays in header */
.nav--desktop {
  display: none;
}

/* Mobile full-screen menu (outside header so fixed positioning works) */
.nav--mobile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: calc(var(--header-h) + 1.5rem) 1.35rem 2rem;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav--mobile.is-open {
  transform: translateX(0);
}

.nav--mobile a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--steel);
  padding: 0.95rem 0.25rem;
  border-bottom: 1px solid var(--line);
}

.nav--mobile a:hover {
  color: var(--accent);
}

.nav--mobile .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.95rem 1.15rem !important;
  border-bottom: none !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.nav--desktop a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.35rem 0;
}

.nav--desktop a:hover {
  color: var(--accent);
}

.nav--desktop .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-left: 0.35rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: clamp(28rem, calc(92svh - var(--header-h)), 40rem);
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad-x) clamp(2.4rem, 5vw, 3.25rem);
  overflow: hidden;
  background: var(--bg-elevated);
}

.hero-media,
.hero-slide,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s ease, transform 8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-veil {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(244, 247, 251, 0.78) 42%,
      rgba(244, 247, 251, 0.94) 100%
    ),
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(244, 247, 251, 0.55) 55%,
      rgba(244, 247, 251, 0.2) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

.hero-anim {
  opacity: 0;
  animation: riseIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8.5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--steel);
  max-width: 32rem;
  margin-bottom: 0.85rem;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  max-width: 34rem;
  margin-bottom: 1.45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: var(--pad-x);
  right: auto;
  bottom: 1.15rem;
  display: flex;
  gap: 0.45rem;
}

.hero-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border: none;
  background: rgba(16, 24, 32, 0.22);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dots button.is-active {
  background: var(--accent);
  transform: scaleX(1.7);
}

/* ——— Highlights strip ——— */
.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #eef3f8 0%, #e6eef5 100%);
}

.strip-item {
  padding: 0.85rem var(--pad-x);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-item:nth-child(2n) {
  border-right: none;
}

.strip-item:last-child {
  border-bottom: none;
}

.strip-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.15;
}

.strip-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ——— Sections ——— */
.section {
  padding: clamp(1.85rem, 4.5vw, 3rem) var(--pad-x);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 56rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  max-width: 18ch;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.center-title {
  max-width: none;
  text-align: center;
}

.section-lead {
  font-size: clamp(0.98rem, 2.2vw, 1.05rem);
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 0.85rem;
}

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

/* About */
.about {
  background:
    radial-gradient(ellipse 50% 55% at 0% 40%, var(--accent-wash), transparent 55%),
    var(--bg-elevated);
}

.about-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
  min-height: 16rem;
}

.about-photo {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.about-photo--main {
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
}

.about-photo--side {
  aspect-ratio: 1 / 1;
  align-self: end;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-visual:hover .about-photo img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  max-width: 10.5rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--accent);
}

.about-badge-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel);
  line-height: 1.3;
}

.about-copy .section-title {
  max-width: 14ch;
}

.about-copy .section-lead {
  margin-bottom: 0.75rem;
}

.about-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.2rem 0 1rem;
}

.about-specs span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 0.35rem 0.7rem;
  border-bottom: 2px solid rgba(11, 110, 122, 0.35);
}

.about-materials-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.material-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.material-list li {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--steel);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.material-list li:hover {
  border-color: rgba(11, 110, 122, 0.35);
  color: var(--accent);
  background: #fff;
}

/* Quality */
.quality {
  background: linear-gradient(120deg, #edf4f7 0%, #ffffff 48%, #eef3f8 100%);
  border-block: 1px solid var(--line);
}

.quality-layout {
  display: grid;
  gap: 1rem;
}

.quality-quote {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--steel);
  max-width: 36rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.1rem;
}

/* Products zigzag */
.products {
  background: var(--bg);
}

.section-heading {
  text-align: center;
  margin-bottom: 0.35rem;
}

.section-heading .eyebrow {
  text-align: center;
}

.section-heading .section-title {
  max-width: 22ch;
  margin-inline: auto;
  text-align: center;
  line-height: 1.08;
}

.deliver-row {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.deliver-row:first-of-type {
  margin-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.deliver-media {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.deliver-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.deliver-row:hover .deliver-media img {
  transform: scale(1.03);
}

.deliver-index {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.deliver-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.deliver-copy p {
  color: var(--muted);
  font-size: clamp(0.96rem, 2.1vw, 1.02rem);
  max-width: 36rem;
}

/* Uses grid */
.industries {
  background: var(--bg-elevated);
}

.industry-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.industry-photo-grid li {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #d9e2ec;
}

.industry-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.industry-photo-grid li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 34, 0.82) 0%,
    rgba(10, 22, 34, 0.2) 55%,
    rgba(10, 22, 34, 0.05) 100%
  );
  pointer-events: none;
}

.industry-photo-grid span {
  position: absolute;
  z-index: 1;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 2.2vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
  text-align: center;
}

.industry-photo-grid li:hover img {
  transform: scale(1.05);
}

/* Contact — full-bleed band */
.contact {
  padding: clamp(1.85rem, 4.5vw, 3rem) var(--pad-x);
  background:
    radial-gradient(ellipse 50% 70% at 100% 40%, var(--accent-wash), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
  border-top: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  gap: 1.35rem;
  align-items: stretch;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.contact-copy {
  max-width: none;
}

.contact-copy .section-title {
  max-width: none;
}

.contact-grid {
  display: grid;
  gap: 1.15rem;
  margin: 0.85rem 0 0;
}

.contact-block h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.contact-block p {
  color: var(--muted);
  font-size: 1.05rem;
  word-break: break-word;
}

.contact-block a {
  color: var(--steel);
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-block a:hover {
  color: var(--accent);
}

.contact-map-link {
  display: inline-block;
}

.contact-map-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.contact-logo {
  display: grid;
  place-items: center;
  min-height: 12rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: transparent;
  border: none;
  order: -1;
}

.contact-logo img {
  width: min(100%, 20rem);
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(16, 40, 64, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(16, 24, 32, 0.16);
  color: var(--steel);
  background: rgba(255, 255, 255, 0.8);
}

.btn-ghost:hover {
  border-color: rgba(16, 24, 32, 0.28);
  background: #fff;
}

.btn-whatsapp {
  gap: 0.45rem;
  color: #fff;
  background: #1fa855;
}

.btn-whatsapp:hover {
  background: #18964a;
}

.btn-icon {
  flex-shrink: 0;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  color: #fff;
  background: #1fa855;
  border: none;
  box-shadow: 0 10px 24px rgba(31, 168, 85, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
  animation: whatsappIn 0.7s ease 1.2s both, whatsappPulse 2.4s ease 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #18964a;
  animation-play-state: paused;
}

@media (max-width: 420px) {
  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 3.15rem;
    height: 3.15rem;
  }
}

/* Footer */
.site-footer {
  width: 100%;
  padding: 0 var(--pad-x);
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.35rem 0;
}

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

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateX(0);
}

.industry-photo-grid li {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-photo-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(16, 40, 64, 0.14);
}

.deliver-row {
  transition: background 0.3s ease;
}

.deliver-row:hover {
  background: rgba(255, 255, 255, 0.55);
}

.material-list li {
  transition: transform 0.25s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.material-list li:hover {
  transform: translateY(-2px);
}

.about-badge {
  animation: badgePop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.strip-item {
  transition: background 0.25s ease;
}

.strip-item:hover {
  background: rgba(255, 255, 255, 0.55);
}

.nav--desktop a {
  position: relative;
  transition: color 0.2s ease;
}

.nav--desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav--desktop a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(31, 168, 85, 0.35);
  }
  50% {
    box-shadow: 0 10px 24px rgba(31, 168, 85, 0.35), 0 0 0 10px rgba(31, 168, 85, 0.12);
  }
}

/* ——— Small phones ——— */
@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .industry-photo-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-photo--main {
    grid-row: auto;
    aspect-ratio: 16 / 11;
  }

  .about-photo--side {
    display: none;
  }
}

/* ——— Tablet+ ——— */
@media (min-width: 640px) {
  .hero-veil {
    background:
      linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(244, 247, 251, 0.86) 38%,
        rgba(244, 247, 251, 0.35) 68%,
        rgba(244, 247, 251, 0.15) 100%
      ),
      linear-gradient(to top, rgba(244, 247, 251, 0.7) 0%, transparent 42%);
  }

  .hero-dots {
    left: auto;
    right: var(--pad-x);
    bottom: 1.4rem;
  }

  .contact-logo {
    order: 0;
  }
}

@media (min-width: 720px) {
  .about-layout {
    grid-template-columns: 1.05fr 1.15fr;
    gap: 2.25rem;
  }

  .about-copy .section-title {
    max-width: 16ch;
  }

  .about-copy .section-lead {
    max-width: 40rem;
  }

  .about-visual {
    gap: 0.9rem;
  }

  .about-badge {
    left: 1rem;
    bottom: 1rem;
    max-width: 11.5rem;
  }

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

  .strip-item {
    border-bottom: none;
    padding: 1rem 1.15rem;
  }

  .strip-item:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-right: none;
  }

  .deliver-row {
    grid-template-columns: 1.05fr 1fr;
    gap: 1.75rem;
    padding: 1.5rem 0;
  }

  .deliver-row--reverse .deliver-media {
    order: 2;
  }

  .industry-photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 2rem;
  }

  .quality-layout {
    grid-template-columns: 1fr 1.15fr;
    align-items: end;
    gap: 1.25rem;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.9fr);
    gap: 2rem;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .nav--mobile {
    display: none !important;
  }

  .nav--desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem 1.25rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }
}

@media (min-width: 1200px) {
  .contact-logo img {
    width: min(100%, 24rem);
  }
}

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

  .hero-anim,
  .hero-slide,
  .reveal,
  .about-badge,
  .whatsapp-float,
  .deliver-media img,
  .industry-photo-grid img {
    animation: none !important;
    transition: none !important;
  }

  .hero-anim,
  .reveal,
  .about-badge,
  .whatsapp-float {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .industry-photo-grid li:hover,
  .industry-photo-grid li:hover img,
  .deliver-row:hover .deliver-media img,
  .about-visual:hover .about-photo img,
  .material-list li:hover,
  .whatsapp-float:hover {
    transform: none;
    box-shadow: none;
  }
}
