*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  line-height: 1.6;
}

a {
  color: var(--navy);
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 20;
  background: #111;
  color: #fff;
  padding: 8px 12px;
}

.site-header {
  position: relative;
  z-index: 30;
  background: #fff;
  min-height: 134px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 134px;
  padding: 10px 20px;
  width: 100%;
  max-width: none;
}

.logo {
  flex: 0 0 auto;
  width: 311px;
  display: grid;
  place-items: center;
}

.logo img {
  display: block;
  width: auto;
  height: 94px;
  max-width: 50%;
}

.header-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.nav-desktop {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  align-items: center;
}

.nav-desktop > li {
  position: relative;
}

.nav-desktop a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #354f9a;
  padding: 6px 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-desktop a[aria-current="page"],
.nav-desktop a.is-active {
  box-shadow: inset 0 -3px 0 #f08345;
}

.nav-desktop .caret {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.nav-desktop .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 40;
}

.nav-desktop li:hover > .sub-menu,
.nav-desktop li:focus-within > .sub-menu {
  display: block;
}

.nav-desktop .sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  box-shadow: none;
}

.nav-desktop .sub-menu a:hover {
  background: #f08345;
  color: #fff;
}

.socials {
  display: flex;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f08345;
  color: #fff;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #f08345;
  margin: 0 auto;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.mobile-panel {
  background: #fff;
  padding: 8px 20px 24px;
}

.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-panel a {
  display: block;
  padding: 10px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #354f9a;
}

.header-social-mobile {
  display: none;
}

.page-title {
  background: #eaeaea;
  padding: 40px;
}

.page-title h1 {
  margin: 0;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #354f9a;
  padding: 0 0 5px;
  border-bottom: 3px solid #f08345;
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  color: #fff;
  padding: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #333 center / cover no-repeat;
}

.hero-slide.is-active {
  display: flex;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #00000036;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 0 48px;
}

.hero-copy h2,
.hero-copy .slide-heading {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}

.hero-copy h3 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
}

.hero-copy p,
.hero-copy .slide-desc {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hero-nav svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-nav.prev {
  left: 16px;
}

.hero-nav.next {
  right: 16px;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
}

.hero-dots button.is-active {
  background: #fff;
}

.wave {
  line-height: 0;
  padding: 0;
  height: 113px;
  overflow: hidden;
}

.wave img {
  width: 100%;
  height: 113px;
  object-fit: cover;
  display: block;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 527px;
  background: #eae9e9;
  padding: 30px 0;
}

.about-copy {
  padding: 24px 7% 24px 10%;
}

.about-copy h2 {
  margin: 0 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ff7800;
  text-transform: uppercase;
}

.about-copy h3 {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #214999;
  text-transform: uppercase;
}

.about-copy p {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #54595f;
}

.about-photo {
  background: #d7d7d7 center / cover no-repeat;
  min-height: 467px;
}

.about-photo-mobile {
  display: none;
  margin-top: 16px;
}

.products {
  padding: 48px 0 24px;
  text-align: center;
  min-height: 885px;
}

.products h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ff7800;
  text-transform: uppercase;
}

.products .kicker {
  margin: 4px 0 28px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #214999;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  border: 1px solid #ececec;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 6% 8px 5%;
  min-height: 240px;
  flex: 1 1 auto;
  text-align: left;
}

.product-card img {
  width: 48%;
  height: 200px;
  object-fit: contain;
  flex: 0 0 48%;
}

.product-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
  color: #ff7800;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-block {
  display: block;
  margin-top: auto;
  background: #214999;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  padding: 12px 16px;
  text-transform: uppercase;
}

.cta-banner {
  position: relative;
  height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: #333 center / cover no-repeat;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #00000073;
}

.cta-banner .cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.btn-cta {
  display: inline-block;
  background: #214999;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  text-transform: uppercase;
}

.flip-row {
  padding: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(92%, 1140px);
  margin: 24px auto;
}

.flip-card {
  background: #f08345;
  color: #fff;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 18px;
  position: relative;
}

.flip-card svg {
  width: 42px;
  height: 42px;
  fill: #fff;
  margin-bottom: 12px;
}

.flip-card h3 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.flip-card p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.flip-card .flip-back {
  display: none;
}

.flip-card:hover .flip-front,
.flip-card:focus-within .flip-front {
  display: none;
}

.flip-card:hover .flip-back,
.flip-card:focus-within .flip-back {
  display: block;
}

.flip-card .flip-back a {
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 16px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-contact {
  background: #eaeaea;
  padding: 80px 0;
  color: rgb(51, 51, 51);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  width: min(92%, 1290px);
  margin: 0 auto;
  align-items: stretch;
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  width: 218px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.footer-brand .socials {
  justify-content: center;
}

.site-footer .footer-card {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 180px;
}

.icon-round {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f08345;
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.icon-round svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer .footer-card h4 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #354f9a;
}

.site-footer .footer-card p,
.site-footer .footer-card a {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.site-footer .footer-card svg.inline {
  width: 18px;
  height: 18px;
  fill: #354f9a;
  flex: 0 0 auto;
  margin-top: 2px;
}

.footer-bar {
  background: #f08345;
  padding: 10px 0 0;
  min-height: 43px;
  color: rgb(51, 51, 51);
}

.footer-bar p,
.footer-bar a {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  width: min(92%, 1140px);
  margin-inline: auto;
  padding: 6px 0 12px;
}

.interior {
  margin: 30px auto;
  width: min(92%, 1140px);
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.gray-box {
  background: #eae9e9;
  padding: 30px;
}

.gray-box h2 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ff7800;
  text-transform: uppercase;
}

.gray-box h3 {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #214999;
  text-transform: uppercase;
}

.gray-box p {
  font-family: "Poppins", sans-serif;
  color: #54595f;
  margin: 0 0 12px;
}

.gallery-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.gallery-2 img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.mvv {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: start;
  background: #eae9e9;
  padding: 30px 24px 40px;
  text-align: center;
}

.mvv h3 {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.35em;
  color: #ff7800;
  font-size: 22px;
  font-weight: 600;
}

.mvv p,
.mvv li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #54595f;
}

.mvv ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.mvv li {
  display: flex;
  gap: 8px;
  margin: 0 0 8px;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #214999;
  display: inline-block;
  margin-top: 48px;
}

.check {
  width: 16px;
  height: 16px;
  fill: #214999;
  flex: 0 0 auto;
}

.tile-deco {
  width: 72px;
  height: auto;
  margin: 16px auto 0;
  display: block;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
}

.contact-tile {
  background: #eaeaea;
  padding: 28px 16px;
  text-align: center;
}

.contact-tile .icon-round {
  margin: 0 auto 10px;
}

.contact-tile a {
  color: #354f9a;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

.page-photo {
  display: block;
  width: min(100%, 800px);
  margin: 0 auto;
}

.map-frame {
  width: 100%;
  height: 280px;
  min-height: 280px;
  border: 0;
  margin-top: 16px;
  display: block;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  background: #eae9e9;
  padding: 40px 30px;
}

.loc-heading {
  margin: 12px 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #354f9a;
}

.loc-copy p {
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #000;
  font-size: 14px;
}

.loc-copy svg.inline {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.loc-grid > img {
  width: 100%;
  height: auto;
  display: block;
}

.product-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.product-pair img,
.features-img {
  display: block;
  margin: 0 auto;
}

.features-wrap {
  padding: 10px 0 20px;
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
    padding: 12px 16px 8px;
  }

  .logo {
    width: 100%;
  }

  .logo img {
    height: 88px;
    max-width: 220px;
  }

  .header-nav {
    width: 100%;
    justify-content: center;
  }

  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-social-mobile {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 8px 0 12px;
  }

  .header-inner > .socials {
    display: none;
  }

  .hero-slider {
    height: 420px;
  }

  .hero-copy .slide-heading {
    font-size: 32px;
  }

  .hero-copy h3,
  .hero-copy .slide-desc {
    font-size: 16px;
  }

  .wave,
  .wave img {
    height: 48px;
  }

  .about {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 30px 16px;
    text-align: center;
  }

  .about-copy {
    padding: 0;
  }

  .about-photo {
    display: none;
  }

  .about-photo-mobile {
    display: block;
  }

  .products {
    min-height: 0;
    padding: 32px 16px;
  }

  .product-grid,
  .flip-grid,
  .footer-grid,
  .split-2,
  .contact-row,
  .loc-grid,
  .product-pair,
  .mvv,
  .gallery-2 {
    grid-template-columns: 1fr;
  }

  .mvv .dot {
    display: none;
  }

  .product-card-body {
    flex-direction: column;
    text-align: center;
  }

  .product-card img {
    width: auto;
    max-width: 70%;
    flex: 0 0 auto;
    height: 180px;
  }

  .product-card h3 {
    white-space: normal;
  }

  .cta-banner {
    height: 220px;
    padding: 0 16px;
  }

  .cta-banner h2 {
    font-size: 22px;
  }

  .footer-contact {
    padding: 40px 15px;
  }

  .site-footer .footer-card {
    margin: 2%;
  }

  .footer-brand img {
    width: 220px;
  }

  .page-title {
    padding: 28px 20px;
  }

  .interior,
  .flip-row {
    min-height: 0;
  }
}
