:root {
  --navy: #062958;
  --teal: #07849b;
  --orange: #fb620e;
  --ink: #082553;
  --muted: #496078
}

* {
  box-sizing: border-box
}

html, body {
  margin: 0
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff
}

.site-header {
  height: 108px;
  padding: 0 max(6vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9e0e6;
  background: #fff
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px
}

.brand img {
  width: 68px;
  height: auto
}

nav {
  align-self: stretch;
  display: flex;
  gap: 55px;
  align-items: center
}

nav a {
  position: relative;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none
}

nav a.active:after {
  content: "";
  position: absolute;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
  left: 0;
  right: 0;
  bottom: -22px
}

.menu {
  display: none;
  border: 0;
  background: none;
  width: 48px;
  padding: 5px
}

.menu span {
  height: 4px;
  border-radius: 4px;
  background: var(--ink);
  display: block;
  margin: 7px 0
}

.hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 390px;
  background: var(--teal);
  overflow: hidden
}

.hero-copy {
  padding: 45px 3vw 38px 7vw;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #fff 76%, #f0f4f8 76%)
}

h1 {
  font-size: clamp(36px, 3.25vw, 56px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  margin: 0 0 20px
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 530px;
  margin: 0
}

.hero-copy i {
  display: block;
  width: 68px;
  height: 3px;
  background: var(--orange);
  margin: 22px 0
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  padding: 14px 23px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 7px;
  box-shadow: 0 6px 14px #fb620e30
}

.cta span {
  font-size: 28px;
  font-weight: 400
}

.hero-image {
  background: url('/images/industrial-hero.png') center/cover no-repeat;
  /* border-left: 9px solid var(--teal); */
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%)
}

.products {
  padding: 12px 7vw 22px
}

.products h2 {
  text-align: center;
  font-size: 25px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px
}

.products h2:before, .products h2:after {
  content: "";
  width: 45px;
  height: 2px;
  background: var(--teal)
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px
}

.product-card {
  min-height: 150px;
  padding: 15px 8px 10px;
  border: 1px solid #dfe5e9;
  border-radius: 8px;
  box-shadow: 0 3px 10px #092b4b12;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center
}

.product-icon {
  width: 69px;
  height: 64px;
  fill: none;
  stroke: #075a80;
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round
}

.product-card span {
  font-size: 16px;
  font-weight: 700;
  max-width: 145px;
  line-height: 1.25
}

.product-card span:after {
  content: "";
  display: block;
  background: var(--orange);
  width: 42px;
  height: 2px;
  margin: 10px auto 0
}

.contact-strip {
  background: #eef7fc;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr;
  padding: 17px 7vw
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  padding: 0 28px;
  border-right: 1px solid #aebdcc
}

.contact-item:last-child {
  border: 0
}

.contact-icon {
  color: var(--teal);
  font-size: 34px;
  text-align: center
}

.contact-item b, .contact-item small {
  display: block;
  font-style: normal
}

.contact-item b {
  margin-bottom: 4px
}

.contact-item small {
  font-size: 15px;
  line-height: 1.25
}

.contact-item em {
  display: none
}

footer {
  min-height: 75px;
  padding: 14px 11vw;
  color: #fff;
  background: linear-gradient(110deg, #062957, #001c43);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 38px;
  flex-wrap: wrap
}

footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-transform: uppercase
}

footer img {
  filter: brightness(0) invert(1)
}

footer>span {
  width: 1px;
  height: 38px;
  background: #fff9
}

footer p {
  margin: 0
}

footer .copyright {
  flex-basis: 100%;
  text-align: center;
  font-size: 12px;
  color: #ffffffb8
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden
}

@media(max-width:942px) {
  footer {
    row-gap: 18px
  }

  footer .footer-brand {
    flex-basis: 100%;
    justify-content: center
  }

  footer>span {
    display: none
  }

  footer p {
    flex-basis: 100%;
    text-align: center
  }
}

@media(max-width:800px) {
  .site-header {
    height: 110px;
    padding: 0 7vw
  }

  .brand {
    gap: 12px;
    font-size: 20px;
    line-height: 1.15;
    max-width: 300px
  }

  .brand img {
    width: 64px;
    flex: 0 0 auto
  }

  nav {
    display: none
  }

  .menu {
    display: block
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0
  }

  .hero-copy {
    padding: 32px 7vw 23px;
    background: linear-gradient(135deg, #fff 78%, #f0f4f8 78%)
  }

  h1 {
    font-size: clamp(34px, 7vw, 48px);
    line-height: 1.07
  }

  .hero-copy p {
    font-size: 18px;
    line-height: 1.55
  }

  .hero-copy i {
    margin: 18px 0
  }

  .cta {
    font-size: 18px;
    padding: 13px 24px
  }

  .hero-image {
    height: 300px;
    border: 0;
    border-top: 0;
    clip-path: none;
    background-position: center
  }

  .products {
    padding: 16px 7vw 20px
  }

  .products h2 {
    margin-bottom: 13px
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
  }

  .product-card {
    min-height: 118px;
    padding: 10px;
    display: grid;
    grid-template-columns: 42% 58%;
    text-align: left
  }

  .product-icon {
    width: 72px;
    height: 65px;
    justify-self: center
  }

  .product-card span {
    font-size: 17px
  }

  .product-card span:after {
    margin: 11px 0 0
  }

  .contact-strip {
    display: block;
    padding: 4px 7vw 0
  }

  .contact-item {
    min-height: 78px;
    padding: 10px 4px;
    grid-template-columns: 55px 1fr 20px;
    border-right: 0;
    border-bottom: 1px solid #bdcbd6
  }

  .contact-item:last-child {
    border-bottom: 0
  }

  .contact-item small {
    font-size: 15px
  }

  .contact-item em {
    display: block;
    font-size: 34px;
    font-style: normal
  }

  .contact-item.business-hours {
    grid-template-columns: 55px 1fr
  }

  footer {
    padding: 20px 7vw;
    min-height: 115px;
    flex-wrap: wrap;
    gap: 18px 20px;
    text-align: center
  }

  .footer-brand {
    font-size: 15px
  }
}

@media(max-width:480px) {
  .site-header {
    height: 96px
  }

  .brand {
    font-size: 17px
  }

  .brand img {
    width: 55px
  }

  h1 {
    font-size: 33px
  }

  .hero-copy p {
    font-size: 16px
  }

  .hero-image {
    height: 230px
  }

  .products {
    padding-left: 4vw;
    padding-right: 4vw
  }

  .product-card {
    grid-template-columns: 40% 60%;
    min-height: 110px
  }

  .product-icon {
    width: 60px
  }

  .product-card span {
    font-size: 15px
  }

  .contact-strip {
    padding-left: 5vw;
    padding-right: 5vw
  }
}

@media(max-width:380px) {
  .site-header {
    padding: 0 16px
  }

  .brand {
    min-width: 0;
    gap: 8px;
    font-size: 15px
  }

  .brand img {
    width: 48px
  }

  .menu {
    width: 40px;
    flex: 0 0 auto
  }

  .hero-copy {
    padding-left: 20px;
    padding-right: 20px
  }

  .products,
  .contact-strip {
    padding-left: 12px;
    padding-right: 12px
  }

  footer {
    padding-left: 16px;
    padding-right: 16px
  }
}

.menu span {
  transition: transform .2s, opacity .2s
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  top: 50%;
  max-width: calc(100% - 32px);
  padding: 14px 22px;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px #001c4350;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% + 20px));
  transition: opacity .2s, transform .2s, visibility .2s
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%)
}

@media(max-width:800px) {
  .site-header {
    position: relative
  }

  nav {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    align-items: stretch;
    gap: 0;
    padding: 8px 7vw 14px;
    background: #fff;
    border-top: 1px solid #e2e8ed;
    border-bottom: 1px solid #cdd8e0;
    box-shadow: 0 8px 15px #0825531a
  }

  nav.open {
    display: flex;
    flex-direction: column
  }

  nav a {
    padding: 13px 0
  }

  nav a.active:after {
    display: none
  }

  .menu.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg)
  }

  .menu.open span:nth-child(2) {
    opacity: 0
  }

  .menu.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg)
  }
}
