:root {
    --olive: #758646;
    --olive-dark: #576926;
    --black: #090909;
    --text: #2b2b2b;
    --heading: #4a4a4a;
    --line: #c1c1c1;
    --soft: #f1f3ea;
    --white: #fff;
    --heading-font: "Anton", Impact, sans-serif;
    --body-font: "Poppins", Arial, sans-serif;
    --container: 1440px;
    --gutter: clamp(18px, 4vw, 40px);
    --section: clamp(78px, 7vw, 128px);
}

/* Product taxonomy cards: allow imported long product names to size naturally. */
@media (min-width: 1201px) {
  .tax-product_category .products-page-card:not(.product-category-card) {
    height: auto;
    min-height: 469px;
  }

  .tax-product_category .products-page-card:not(.product-category-card) .products-page-copy span {
    margin-top: 12px;
    font-size: 20px;
    line-height: 24px;
  }

  .tax-product_category .products-page-card:not(.product-category-card) .products-page-copy h2 {
    margin-top: 30px;
    font-size: clamp(29px, 2.1vw, 34px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .tax-product_category .products-page-card:not(.product-category-card) .products-page-copy p {
    margin: 14px 0 22px;
    font-size: 16px;
    line-height: 23px;
  }
}

/* Product enquiry modal */
.product-enquiry-trigger + .product-detail-cta {
  margin-left: 12px;
}

.product-enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 42px);
}

.product-enquiry-modal.is-open {
  display: flex;
}

.product-enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(30, 26, 26, .82);
  cursor: pointer;
}

.product-enquiry-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
  scrollbar-width: thin;
}

.product-enquiry-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--olive);
  cursor: pointer;
}

.product-enquiry-modal__close span,
.product-enquiry-modal__close::before {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  content: "";
}

.product-enquiry-modal__close span { transform: rotate(45deg); }
.product-enquiry-modal__close::before { transform: rotate(-45deg); }

.product-enquiry-modal__heading {
  padding-right: 50px;
}

.product-enquiry-modal__heading > span {
  color: var(--olive);
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.3;
}

.product-enquiry-modal__heading h2 {
  margin-top: 12px;
  color: var(--heading);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
}

.product-enquiry-modal__heading p {
  max-width: 580px;
  margin-top: 12px;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 25px;
}

.product-enquiry-modal .gform_wrapper {
  margin-top: 28px;
}

.product-enquiry-modal .gform_required_legend {
  display: none;
}

.product-enquiry-modal .gform_wrapper .gform_fields {
  grid-row-gap: 16px;
}

.product-enquiry-modal .gform_wrapper input[type="text"],
.product-enquiry-modal .gform_wrapper input[type="email"],
.product-enquiry-modal .gform_wrapper input[type="tel"],
.product-enquiry-modal .gform_wrapper textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #c6c8be;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  line-height: 23px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.product-enquiry-modal .gform_wrapper input:focus,
.product-enquiry-modal .gform_wrapper textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(117, 134, 70, .14);
}

.product-enquiry-modal .gform_wrapper .matha-product-name-field input[readonly] {
  background: var(--soft);
  color: #555;
  cursor: default;
}

.product-enquiry-modal .gform_wrapper textarea {
  min-height: 112px;
  resize: vertical;
}

.product-enquiry-modal .gform_wrapper .gform_footer {
  margin: 20px 0 0;
  padding: 0;
}

#product-enquiry-modal #gform_wrapper_2 .gform_footer .gform_button {
  min-height: 58px;
  margin: 0;
  padding: 16px 30px;
  border: 0;
  border-radius: 120px;
  background: var(--olive);
  color: var(--white);
  cursor: pointer;
  font-size: 17px;
  line-height: 24px;
  transition: background-color .22s ease, transform .22s ease;
}

#product-enquiry-modal #gform_wrapper_2 .gform_footer .gform_button:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
}

.product-enquiry-modal .gform_validation_errors {
  margin: 0 0 18px;
}

@media (max-width: 767px) {
  .product-enquiry-trigger + .product-detail-cta {
    margin-left: 8px;
  }

  .product-enquiry-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .product-enquiry-modal__dialog {
    max-height: calc(100dvh - 20px);
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .product-enquiry-modal__close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .product-enquiry-modal__heading {
    padding-right: 38px;
  }

  .product-enquiry-modal__heading h2 {
    font-size: 36px;
  }

  .product-enquiry-modal .gform_wrapper {
    margin-top: 22px;
  }

  .product-enquiry-modal .gform_wrapper .gform_fields {
    grid-column-gap: 0;
  }

  .product-enquiry-modal .gform_wrapper .gfield {
    grid-column: 1 / -1;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
  overflow-x: hidden;
}
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}
.container.row, .slider-track.row, .collage-grid.row, .team-grid.row, .testimonial-layout.row { margin-left: auto; margin-right: auto; }
.slider-track.row { width: auto; }
.section-space { padding-block: var(--section); }

h1, h2, h3 {
  margin: 0;
  color: var(--heading);
  font-family: var(--heading-font);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}
p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  border: 0;
  border-radius: 120px;
  background: var(--olive);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  white-space: nowrap;
  transition: .22s ease;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--bs-body-bg);
  background-color: var(--olive-dark);
  border-color: var(--olive);
}
.btn:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  color: var(--bs-body-bg);
}

.site-header {
  --header-height: 121px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.24);
  color: var(--white);
  transition: background-color .24s ease, border-color .24s ease, box-shadow .24s ease, backdrop-filter .24s ease;
  background: rgb(0 0 0 / 37%);
}
.site-header.is-sticky,
.site-header.menu-active {
  border-bottom-color: rgba(255,255,255,.14);
  background: rgba(7,11,12,.76);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.header-shell {
  display: grid;
  grid-template-columns: 28.645833% 50.625% 20.729167%;
  align-items: center;
  width: min(100%, 1920px);
  height: 121px;
  margin-inline: auto;
}
.brand-header {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding-left: clamp(28px, 5.2vw, 100px);
  border-right: 1px solid rgba(255,255,255,.2);
}
.brand-header img { width: 313px; height: 59px; object-fit: contain; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.020833vw, 58px);
}
.primary-menu {
  display: flex;
  align-items: center;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-menu li {
  position: relative;
  margin: 0;
  padding: 0;
}
.nav-item-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.nav-dropdown::after {
  display: none;
  content: none;
}
.product-mega-menu {
  position: relative;
}
.product-mega-menu::after {
  display: none;
}
.main-nav a, .submenu-toggle {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  transition: color .22s ease, opacity .22s ease, background-color .22s ease, border-color .22s ease;
}
.main-nav a {
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--olive);
  box-shadow: 0 0 14px rgba(119,132,52,.55);
  transform: translateX(-50%);
  transition: width .24s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown.is-open > .nav-item-row > a,
.nav-dropdown.is-open > .nav-item-row > .submenu-toggle,
.primary-menu > .current-menu-item > a,
.primary-menu > .current-menu-item > .nav-item-row > a,
.primary-menu > .current-menu-item > .nav-item-row > .submenu-toggle,
.primary-menu > .current-menu-ancestor > a,
.primary-menu > .current-menu-ancestor > .nav-item-row > a,
.primary-menu > .current-menu-ancestor > .nav-item-row > .submenu-toggle,
.primary-menu > .current-menu-parent > a,
.primary-menu > .current-menu-parent > .nav-item-row > a,
.primary-menu > .current-menu-parent > .nav-item-row > .submenu-toggle {
  color: var(--olive);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.nav-dropdown.is-open > .nav-item-row > a::after,
.primary-menu > .current-menu-item > a::after,
.primary-menu > .current-menu-item > .nav-item-row > a::after,
.primary-menu > .current-menu-ancestor > a::after,
.primary-menu > .current-menu-ancestor > .nav-item-row > a::after,
.primary-menu > .current-menu-parent > a::after,
.primary-menu > .current-menu-parent > .nav-item-row > a::after {
  width: 26px;
}
.submenu-toggle {
  display: inline-grid;
  width: 16px;
  height: 16px;
  padding: 0;
  place-items: center;
}
.submenu-toggle span {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform .2s ease;
}
.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 286px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(12,14,14,.92);
  box-shadow: 0 22px 58px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
  list-style: none;
  margin: 0;
  z-index: 2;
}
.dropdown-panel a { padding: 7px 10px; border-radius: 10px; font-size: 15px; line-height: 22px; }
.dropdown-panel a::after {
  display: none;
}
.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  color: var(--olive);
}
.dropdown-panel .current-menu-item > a,
.dropdown-panel .current-menu-ancestor > a,
.dropdown-panel .current-menu-parent > a {
  background: transparent;
  color: var(--olive);
}
.primary-menu .dropdown-panel.sub-menu li {
  padding: 5px 0;
}
.nav-dropdown.is-open > .dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown.is-open > .nav-item-row .submenu-toggle span { transform: translateY(1px) rotate(225deg); }
.product-mega-menu > .dropdown-panel {
  position: fixed;
  top: calc(var(--header-height) + 16px);
  left: 50%;
  box-sizing: border-box;
  display: none;
  width: min(1320px, calc(100vw - 96px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: max-content;
  align-items: start;
  align-content: start;
  gap: 30px 46px;
  height: auto;
  min-height: 0;
  padding: 36px 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgb(12 14 14 / 93%);
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
  overflow: visible;
  transform: translate(-50%, 8px);
}
.product-mega-menu.is-open > .dropdown-panel {
  display: grid;
  pointer-events: none;
  transform: translate(-50%, 0);
}
.product-mega-menu > .dropdown-panel > .product-mega-column,
.product-mega-menu > .dropdown-panel > li {
  display: block;
  width: 100%;
  margin: 0 0 28px;
  padding: 0;
  break-inside: avoid;
  pointer-events: none;
}
.product-mega-menu > .dropdown-panel > .product-mega-column > a,
.product-mega-menu > .dropdown-panel > li > a,
.product-mega-menu > .dropdown-panel > .product-mega-column > .nav-item-row,
.product-mega-menu > .dropdown-panel > li > .nav-item-row,
.product-mega-menu > .dropdown-panel .product-mega-column > .dropdown-panel,
.product-mega-menu > .dropdown-panel > li > .dropdown-panel {
  pointer-events: auto;
}
.product-mega-menu > .dropdown-panel > .product-mega-column > .nav-item-row,
.product-mega-menu > .dropdown-panel > li > .nav-item-row {
  align-items: flex-start;
}
.product-mega-menu > .dropdown-panel > .product-mega-column > .nav-item-row,
.product-mega-menu > .dropdown-panel > li > .nav-item-row,
.product-mega-menu > .dropdown-panel .product-mega-subitem,
.product-mega-menu > .dropdown-panel > li > .dropdown-panel > li {
  min-height: 26px;
}
.product-mega-menu > .dropdown-panel > .product-mega-column > .nav-item-row > a,
.product-mega-menu > .dropdown-panel > .product-mega-column > a,
.product-mega-menu > .dropdown-panel > li > .nav-item-row > a,
.product-mega-menu > .dropdown-panel > li > a {
  padding: 4px 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}
.product-mega-menu > .dropdown-panel > .product-mega-column > .nav-item-row,
.product-mega-menu > .dropdown-panel > li > .nav-item-row {
  margin-bottom: 8px;
}
.product-mega-menu > .dropdown-panel > .product-mega-column > .nav-item-row .submenu-toggle,
.product-mega-menu > .dropdown-panel > li > .nav-item-row .submenu-toggle {
  display: none;
}
.product-mega-menu > .dropdown-panel .product-mega-column > .dropdown-panel,
.product-mega-menu > .dropdown-panel > li > .dropdown-panel {
  position: static;
  display: grid;
  width: 100%;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.product-mega-menu > .dropdown-panel .product-mega-column > .dropdown-panel,
.product-mega-menu > .dropdown-panel > li > .dropdown-panel {
  gap: 4px;
}
.product-mega-menu > .dropdown-panel .product-mega-subitem,
.product-mega-menu > .dropdown-panel > li > .dropdown-panel > li {
  padding: 0;
}
.product-mega-menu > .dropdown-panel .product-mega-subitem > a,
.product-mega-menu > .dropdown-panel > li > .dropdown-panel > li > a {
  display: flex;
  min-height: 30px;
  padding: 4px 10px;
  align-items: center;
  border-radius: 10px;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 22px;
  transition: background-color .2s ease, color .2s ease, padding-left .2s ease;
}
.product-mega-menu > .dropdown-panel .product-mega-subitem > a:hover,
.product-mega-menu > .dropdown-panel .product-mega-subitem > a:focus-visible,
.product-mega-menu > .dropdown-panel > li > .dropdown-panel > li > a:hover,
.product-mega-menu > .dropdown-panel > li > .dropdown-panel > li > a:focus-visible {
  color: var(--olive);
  padding-left: 14px;
}
.header-cta { justify-self: end; margin-right: clamp(28px, 5.2vw, 100px); }
.mobile-nav-cta { display: none; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.08); }
.menu-toggle[aria-expanded="true"] { display: none; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--white); }
.menu-close,
.menu-overlay {
  display: none;
}
body.menu-open {
  overflow: hidden;
}

.hero-section {
  position: relative;
  height: 950px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  user-select: none;
}
.hero-slider-track {
  height: 100%;
  gap: 0;
}
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-bg, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; object-position: center top; }
.hero-bg-mobile { display: none; }
.hero-shade { background: linear-gradient(90deg, rgba(3,8,12,.9), rgba(3,8,12,.55) 48%, rgba(3,8,12,.16)); }
.hero-content {
  position: relative;
  z-index: 1;
  display: block;
  height: 950px;
  padding: 0;
}
.hero-copy {
  position: absolute;
  left: 0;
  top: 548px;
  width: 820px;
}
.hero-copy h1 {
  color: var(--white);
  font-size: 90px;
  line-height: 95px;
  white-space: nowrap;
}
.hero-copy p {
  position: absolute;
  top: 194px;
  width: 768px;
  margin: 0;
  color: rgba(255,255,255,.95);
  font-size: 18px;
  line-height: 26px;
}
.hero-copy .btn {
  position: absolute;
  top: 270px;
  margin: 0;
}
.hero-rating {
  position: absolute;
  left: 1040px;
  top: 669px;
  width: 400px;
}
.rating-card {
  position: relative;
  width: 400px;
  height: 145px;
  padding: 21px 32px 20px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(100deg, #9b9f9f 0%, #747878 100%);
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}
.rating-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20px;
  right: 22px;
  width: 355px;
  height: 125px;
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(132,137,137,.9) 0%, rgba(95,100,100,.9) 100%);
}
.avatar-stack { display: flex; align-items: center; }
.avatar-stack img, .avatar-stack span {
  width: 50px;
  height: 50px;
  margin-left: -8px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
  object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.rating-card p { margin-top: 9px; color: var(--white); font-size: 18px; }
.rating-card strong { font-family: var(--heading-font); font-size: 40px; font-weight: 400; }
.hero-rating > p { margin-top: 12px; color: var(--white); font-size: 18px; line-height: 28px; }

.about-section { padding-top: 120px; padding-bottom: 48px; }
.about-grid { display: grid; grid-template-columns: 507px 1px 1fr; align-items: start; gap: 100px; }
.about-grid > .col-lg-4,
.about-grid > .col-lg-7,
.hero-content > .col-lg-7,
.hero-content > .col-lg-4 { width: auto; flex: none; }
.experience-block { position: relative; height: 426px; display: flex; align-items: center; justify-content: center; }
.experience-block > span { position: absolute; top: 88px; right: 0; display: flex; align-items: center; justify-content: center; width: 218px; height: 47px; padding: 0 18px; border-radius: 10px 10px 10px 0; background: rgba(5,125,219,.1); color: #2b2b2b; font-size: 18px; line-height: 26px; }
.experience-arrow { position: absolute; top: 131px; right: 218px; width: 24px; height: 24px; object-fit: contain; }
.experience-block strong { color: #363636; font-family: var(--heading-font); font-size: 180px; font-weight: 400; line-height: .8; transform: translateX(-27px); }
.experience-block em { font-style: normal; font-size: 1.45em; vertical-align: -.08em; }
.vertical-line { width: 1px; height: 426px; background: #d9d9d9; }
.section-copy h2 { font-size: clamp(42px, 3.125vw, 60px); line-height: 65px; }
.section-copy p { margin-top: 14px; font-size: 18px; line-height: 26px; }
.section-copy .btn, .about-grid .btn { margin-top: 28px; }
.about-grid .section-copy { padding-top: 26px; }
.about-grid .section-copy .btn { margin-top: 11px; }

.collage-section { padding-top: 100px; padding-bottom: 80px; background: var(--soft); }
.collage-grid { display: grid; grid-template-columns: repeat(4, 344px); justify-content: space-between; gap: 0; align-items: center; }
.collage-grid figure {
  width: 344px;
  height: 404px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #d8d8d8;
  cursor: pointer;
  transform: rotate(var(--tilt, 0deg));
  transform-origin: center;
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.collage-grid figure:nth-child(1) { --tilt: 5deg; }
.collage-grid figure:nth-child(2) { --tilt: -6deg; }
.collage-grid figure:nth-child(3) { --tilt: 9deg; }
.collage-grid figure:nth-child(4) { --tilt: -5deg; }
.collage-grid figure:hover {
  animation: collageHoverMove .75s ease both;
  box-shadow: 0 24px 48px rgba(0,0,0,.12);
}
.collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: none;
}
.tilt-a { --tilt: 5deg; }
.tilt-b { --tilt: -6deg; }
.tilt-c { --tilt: 9deg; }
@keyframes collageHoverMove {
  0% { transform: rotate(var(--tilt, 0deg)) translate3d(0, 0, 0) scale(1); }
  34% { transform: rotate(calc(var(--tilt, 0deg) - 8deg)) translate3d(-10px, -18px, 0) scale(1.035); }
  68% { transform: rotate(calc(var(--tilt, 0deg) + 6deg)) translate3d(10px, 8px, 0) scale(1.035); }
  100% { transform: rotate(calc(var(--tilt, 0deg) * -0.35)) translate3d(0, -14px, 0) scale(1.04); }
}

.stats-section { padding-bottom: 124px; background: var(--soft); }
.stats-card {
  display: grid;
  grid-template-columns: 212px repeat(4, 1fr);
  height: 179px;
  overflow: visible;
  border: 0;
  border-radius: 25px;
  background: var(--soft);
}
.stats-card h2 {
  display: flex;
  align-items: center;
  height: 177px;
  margin: 0;
  padding: 0 37px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--heading);
  font-size: 40px;
  line-height: 45px;
  background: var(--soft);
  position: relative;
  z-index: 2;
}
.stats-card div {
  position: relative;
  display: flex;
  height: 177px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px 19px;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 1px solid var(--line);
  border-left: 0;
  text-align: center;
  background: var(--soft);
}
.stats-card h2 + div {
  margin-left: -1px;
  border-left: 1px solid var(--line);
  border-radius: 20px 0 0 20px;
}
.stats-card div:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 20px 20px 0;
}
.stats-card div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 110px;
  background: linear-gradient(to bottom, transparent 0%, #dedede 20%, #dedede 80%, transparent 100%);
  transform: translateY(-50%);
  pointer-events: none;
}
.stats-card strong {
  display: block;
  width: 190px;
  color: var(--heading);
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 400;
  line-height: 65px;
}
.stats-card span { margin-top: 10px; font-size: 18px; line-height: 26px; }

.products-section, .team-section { background: var(--soft); }
.products-section {
  --product-card-w: 700px;
  --product-card-h: 469px;
  --product-gap: 34px;
  --product-left: calc((100vw - var(--container)) / 2);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 84px;
}
.products-header,
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 56px;
}
.products-header .section-copy,
.section-head .section-copy { width: 720px; }
.slider { overflow: hidden; }
.products-slider-wrap {
  width: 100%;
}
.products-section .slider {
  width: calc(100vw - var(--product-left));
  margin-left: var(--product-left);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.products-section .slider:active { cursor: grabbing; }
.slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--product-gap, 30px);
  transition: transform .42s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 280px 326px;
  column-gap: 16px;
  flex: 0 0 var(--product-card-w);
  width: var(--product-card-w);
  height: var(--product-card-h);
  padding: 15px 15px 15px 58px;
  border: 1px solid #bebebe;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.product-card.is-active,
.product-card:hover {
  border-color: transparent;
  background: var(--white);
  box-shadow: 0 4px 50px rgba(0,0,0,.1);
}
.product-number {
  position: absolute;
  top: 58px;
  left: 58px;
  color: #3f3f3f;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.product-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding-right: 0;
}
.product-card h3 {
  margin-top: 120px;
  font-size: 40px;
  line-height: 45px;
}
.product-card p {
  width: 276px;
  margin: 15px 0 0;
  color: #4c4c4c;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.product-link {
  display: grid;
  width: 42px;
  height: 42px;
  margin-top: auto;
  place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  background: transparent;
  color: var(--olive);
  font-size: 0;
  line-height: 1;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}
.product-link svg { width: 17px; height: 13px; display: block; pointer-events: none; }
.product-card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
.product-card-actions .product-link {
  margin-top: 0;
}
.product-quick-view {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  background: transparent;
  color: var(--olive);
  cursor: pointer;
  line-height: 1;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}
.product-quick-view svg {
  width: 19px;
  height: 13px;
  display: block;
  pointer-events: none;
}
.product-card.is-active .product-link,
.product-card:hover .product-link,
.product-link:hover {
  background: var(--olive);
  color: var(--white);
  transform: rotate(315deg);
}
.product-quick-view:hover {
  background: var(--olive);
  color: var(--white);
}
.product-card img {
  width: 326px;
  height: 434px;
  border-radius: 20px;
  object-fit: contain;
  object-position: center;
  align-self: center;
  background: #f8f8f6;
  pointer-events: none;
}
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 55px; }
.products-nav { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.left-controls { justify-content: flex-start; }
.slider-btn {
  display: flex;
  padding: 15.981px 13.983px;
  flex-direction: column;
  align-items: flex-start;
  gap: 19.976px;
  aspect-ratio: 1 / 1;
  border: 0.916px solid rgba(119,132,52,.3);
  border-radius: 119.858px;
  background: #f1f3ea;
  color: rgba(119,132,52,.3);
  cursor: pointer;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}
.slider-btn:hover,
.slider-btn:focus-visible { border-color: var(--olive); background: var(--olive); color: var(--white); }
.slider-btn.muted { border-color: rgba(119,132,52,.3); background: #f1f3ea; color: rgba(119,132,52,.3); }
.slider-btn svg {
  flex-shrink: 0;
  display: block;
  pointer-events: none;
}
.slider-btn[data-next] svg { transform: rotate(180deg); }
.slider-btn .arrow-path { stroke-width: 1.831px; stroke-opacity: 1; }
.slider-btn.muted .arrow-path { stroke: rgba(119,132,52,.3); stroke-opacity: 1; }
.slider-btn.muted:hover .arrow-path,
.slider-btn.muted:focus-visible .arrow-path { stroke: currentColor; }

.network-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  justify-content: center;
}
.network-cell,
.network-title {
  display: grid;
  width: 278px;
  height: 183px;
  place-items: center;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  background: transparent;
  align-items: center;
  object-fit: contain;
}
.cell-r1-c1 { grid-area: 1 / 1; }
.cell-r1-c2 { grid-area: 1 / 2; }
.cell-r1-c3 { grid-area: 1 / 3; }
.cell-r1-c4 { grid-area: 1 / 4; }
.cell-r1-c5 { grid-area: 1 / 5; border-right: 0px; }
.cell-r2-c1 { grid-area: 2 / 1; }
.cell-r2-c2 { grid-area: 2 / 2; }
.cell-r2-c4 { grid-area: 2 / 4; }
.cell-r2-c5 { grid-area: 2 / 5; border-right: 0; }
.cell-r3-c1 { grid-area: 3 / 1; }
.cell-r3-c2 { grid-area: 3 / 2; }
.cell-r3-c3 { border-right: 0; }
.cell-r3-c4 { grid-area: 3 / 4; }
.cell-r3-c5 { grid-area: 3 / 5; }
.cell-r4-c1 { grid-area: 4 / 1; }
.cell-r4-c2 { grid-area: 4 / 2; }
.cell-r4-c3 { grid-area: 4 / 3; }
.cell-r4-c4 { grid-area: 4 / 4; }
.cell-r4-c5 { grid-area: 4 / 5; border-right: 0; }
.cell-r5-c5 { border-right: 0; }
.cell-r6-c5 { border-right: 0; }
.dummy-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  opacity: .6;
  filter: grayscale(1);
  transition: opacity .22s ease, filter .22s ease;
}
.dummy-logo small { display: block; margin-left: -7px; align-self: flex-end; font-size: 10px; line-height: 1; }
.network-logo {
  opacity: .6;
  filter: grayscale(1);
  transition: opacity .22s ease, filter .22s ease;
  object-fit: contain;
  width: 190px;
  height: 115px;
}
.network-cell {
  position: relative;
}
.network-cell::before {
  content: "";
  position: absolute;
  inset: 5px 7px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 4px 50px rgba(0,0,0,.08);
  opacity: 0;
  transition: opacity .22s ease;
}
.network-cell:hover::before { opacity: 1; }
.network-cell > * { position: relative; z-index: 1; }
.network-cell:hover .dummy-logo,
.network-cell:hover .network-logo { opacity: 1; filter: grayscale(0); }
.dummy-logo::before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d6d7d7;
  opacity: .75;
}
.mark-b::before { border-radius: 4px; }
.mark-c::before { clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.mark-d::before { border-radius: 50% 50% 8px 8px; }
.mark-e::before { clip-path: polygon(50% 0, 62% 36%, 100% 36%, 69% 58%, 80% 100%, 50% 75%, 20% 100%, 31% 58%, 0 36%, 38% 36%); }
.mark-f::before { border-radius: 50%; box-shadow: inset 0 0 0 5px #ececec; }
.network-title {
  grid-column: 3;
  grid-row: 3 / span 2;
  height: 366px;
  padding: 13px;
  background: var(--white);
  box-shadow: inset 0 0 20px 9px rgba(0,0,0,.02);
  text-align: center;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.network-title h2 {
  color: #333;
  font-family: Anton;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 65px;
}
.network-title p {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card img { width: 100%; aspect-ratio: 340 / 454; border-radius: 18px; object-fit: cover; }
.team-card p {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: #1f1f1f;
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 26px;
}
.team-card p::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 1px;
  background: #bfc0be;
}
.team-card p span {
  grid-column: 1;
  grid-row: 1;
}
.team-card strong {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  color: #333;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  text-transform: uppercase;
  white-space: nowrap;
}

.centered { width: 760px; margin-inline: auto; text-align: center; }
.testimonials-section { overflow: hidden; }
.testimonial-layout { display: grid; grid-template-columns: 460px minmax(0, 1fr); gap: 30px; margin-top: 54px; }
.testimonial-layout > .slider { overflow: hidden; }
.testimonials-section .left-controls {
  align-items: center;
  gap: 12px;
}
.testimonials-section .left-controls::after {
  content: "";
  flex: 1 1 auto;
  height: 1.2px;
  margin-left: 18px;
  background: #77843466;
}
.testimonials-section .left-controls .slider-btn {
  background: #fff;
  color: rgba(119,132,52,.3);
}
.testimonials-section .left-controls .slider-btn:hover,
.testimonials-section .left-controls .slider-btn:focus-visible {
  background: var(--olive);
  color: var(--white);
}
.testimonials-section .left-controls .slider-btn.muted {
  background: #f1f3ea;
  color: rgba(119,132,52,.3);
}
.review-summary {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 43px 30px 36px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 4px 50px rgba(0,0,0,.1);
}
.review-summary > strong { color: var(--heading); font-family: var(--heading-font); font-size: 60px; font-weight: 400; }
.review-summary p, .testimonial-card p { font-size: 18px; line-height: 26px; }
.review-summary p { width: 337px; margin-top: 12px; }
.reviewers { margin-top: auto; }
.reviewers img, .reviewers span { width: 43px; height: 43px; }
.reviewers span { display: grid; place-items: center; background: var(--olive); color: var(--white); font-size: 13px; }
.stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f0b31a;
  font-size: 0;
  letter-spacing: 0;
}
.stars::before {
  content: "";
  flex: 0 0 auto;
  width: 125px;
  height: 21px;
  background-image: url("../icons/star-rating.webp");
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 25px 21px;
}
.stars span { color: var(--text); font-size: 16px; letter-spacing: 0; }
.review-summary .stars { margin: 14px 0 24px; }
.review-summary .btn {
  width: 151px;
  height: 52px;
  padding: 0;
  font-size: 15px;
  line-height: 1;
}
.testimonial-card .stars::before {
  width: 164px;
  height: 30px;
  background-size: 32.8px 30px;
}
.testimonial-card {
  flex: 0 0 min(460px, calc((100% - 30px) / 2));
  display: flex;
  height: 415px;
  flex-direction: column;
  padding: 38px 40px;
  border: 1px solid #bebebe;
  border-radius: 20px;
  background: var(--white);
  box-shadow: none;
}
.testimonial-card p { margin-top: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testimonial-author span { display: grid; width: 62px; height: 62px; place-items: center; border-radius: 50%; background: var(--olive); color: var(--white); font-family: var(--heading-font); font-size: 24px; }
.testimonial-author strong { width: 150px; color: #333; font-family: var(--heading-font); font-size: 24px; font-weight: 400; line-height: 29px; text-transform: uppercase; }

.inner-hero { position: relative; height: 744px; display: grid; align-items: end; overflow: hidden; background: var(--black); color: var(--white); }
.contact-page .contact-hero { height: 744px; }
.inner-hero img, .inner-hero::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.inner-hero img { object-fit: cover; }
.inner-hero::after { content: ""; background: linear-gradient(90deg, rgba(3,8,12,.86), rgba(3,8,12,.28)); }
.inner-hero .container { position: relative; z-index: 1; padding: 180px 0 90px; }
.inner-hero h1 { color: var(--white); font-size: clamp(58px, 5vw, 90px); line-height: 1.05; }
.inner-hero p { width: 680px; margin-top: 16px; color: rgba(255,255,255,.88); line-height: 28px; }

.not-found-hero {
  position: relative;
  display: grid;
  align-items: center;
  padding: 250px 0 150px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.not-found-bg,
.not-found-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.not-found-bg {
  object-fit: cover;
  object-position: center top;
}
.not-found-shade {
  background: linear-gradient(90deg, rgba(3,8,12,.92), rgba(3,8,12,.58) 52%, rgba(3,8,12,.28));
}
.not-found-hero .container {
  position: relative;
  z-index: 1;
  width: min(100% - var(--gutter) * 2, 980px);
}
.not-found-kicker {
  margin-bottom: 18px;
  color: var(--olive);
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
}
.not-found-hero h1 {
  color: var(--white);
  font-size: clamp(64px, 8vw, 130px);
  line-height: .95;
}
.not-found-hero h1 + p {
  width: 760px;
  margin-top: 24px;
  color: rgba(255,255,255,.82);
  font-size: 22px;
  line-height: 34px;
}
.not-found-hero .btn {
  margin-top: 38px;
}

.team-page .team-hero { height: 744px; }
.team-page .team-hero img { object-position: center center; }
.team-page .team-hero::after { background: rgba(0,0,0,.42); }
.team-page .team-hero .container { padding-bottom: 86px; }
.team-page .team-hero h1 { font-size: 90px; line-height: 95px; }
.team-page .team-hero p { width: 768px; margin-top: 14px; font-size: 18px; line-height: 26px; }
.team-page-section { padding: 120px 0 144px; background: var(--white); }
.team-page .team-grid-large {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  gap: 48px 26px;
}
.team-page .team-card img {
  aspect-ratio: 340 / 454;
  border-radius: 30px;
}
.team-page .team-card p { margin-top: 15px; }
.team-page .load-more-wrap { margin-top: 74px; }

.about-page .about-hero { height: 744px; }
.about-page .about-hero img { object-position: center top; transform: scaleX(-1); }
.about-page .about-hero::after { background: rgba(0,0,0,.3); }
.about-page .about-hero .container { padding: 0 0 89px; }
.about-page .about-hero h1 {
  width: 520px;
  color: var(--white);
  font-size: 90px;
  line-height: 95px;
}
.about-page .about-hero p {
  width: 768px;
  margin-top: 9px;
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.about-why-section { padding: 120px 0 68px; background: var(--soft); }
.about-why-grid {
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 130px;
  align-items: start;
}
.about-tilt-images {
  display: grid;
  grid-template-columns: repeat(2, 352px);
  align-items: center;
  gap: 0;
  min-width: 0;
}
.about-tilt-image {
  width: 352px;
  height: 413px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.about-tilt-image img { width: 100%; height: 100%; object-fit: cover; }
.about-tilt-left {
  --tilt: -6deg;
  transform: rotate(-6deg);
}
.about-tilt-right {
  --tilt: 9deg;
  margin-left: -12px;
  transform: rotate(9deg);
}
.about-tilt-left:hover,
.about-tilt-right:hover {
  animation: collageHoverMove .75s ease both;
  box-shadow: 0 24px 48px rgba(0,0,0,.14);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .collage-grid figure,
  .about-tilt-left,
  .about-tilt-right {
    animation: none;
  }
}

.team-card img,
.project-tile img,
.products-page-card img,
.service-card img,
.project-card img,
.about-vision-image img,
.about-certificate-grid img,
.certificate-grid img {
  transition: transform .34s ease, filter .34s ease, box-shadow .34s ease;
  will-change: transform;
}
.team-card:hover img,
.project-tile:hover img,
.products-page-card:hover img,
.service-card:hover img,
.project-card:hover img,
.about-vision-image:hover img,
.about-certificate-grid figure:hover img,
.certificate-grid img:hover {
  filter: saturate(1.06) contrast(1.03);
  transform: translateY(-8px) scale(1.025);
}
.about-why-copy h2,
.about-vision-copy h2,
.about-achievements-head h2 {
  font-size: 60px;
  line-height: 65px;
}
.about-why-copy { padding-top: 47px; }
.about-why-copy p,
.about-vision-copy p,
.about-achievements-head p {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.about-why-copy p { margin-top: 8px; }
.about-stats { padding-bottom: 68px; }
.about-network { padding: 0 0 144px; background: var(--white); }
.about-vision-section {
  padding: 100px 0 99px;
  background: rgba(119,132,52,.1);
}
.about-vision-grid {
  display: grid;
  grid-template-columns: 570px 806px;
  gap: 64px;
  align-items: center;
}
.about-vision-copy { padding-top: 3px; }
.about-vision-image {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
}
.about-vision-image img {
  width: 100%;
  height: 537px;
  object-fit: cover;
}
.about-achievements-section { padding: 124px 0 87px; background: var(--white); }
.about-achievements-head { margin-inline: auto; }
.about-achievements-head h2 { width: 431px; margin-inline: auto; }
.about-achievements-head p { width: 744px; margin: 17px auto 0; }
.about-certificate-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 76px;
  border-image: radial-gradient(circle, #d9d9d9 0, #fff 72%) 1;
  background:
    linear-gradient(90deg, transparent calc(20% - .5px), #e7e7e7 calc(20% - .5px), #e7e7e7 calc(20% + .5px), transparent calc(20% + .5px)),
    linear-gradient(90deg, transparent calc(40% - .5px), #e7e7e7 calc(40% - .5px), #e7e7e7 calc(40% + .5px), transparent calc(40% + .5px)),
    linear-gradient(90deg, transparent calc(60% - .5px), #e7e7e7 calc(60% - .5px), #e7e7e7 calc(60% + .5px), transparent calc(60% + .5px)),
    linear-gradient(90deg, transparent calc(80% - .5px), #e7e7e7 calc(80% - .5px), #e7e7e7 calc(80% + .5px), transparent calc(80% + .5px)),
    linear-gradient(180deg, transparent calc(50% - .5px), #e7e7e7 calc(50% - .5px), #e7e7e7 calc(50% + .5px), transparent calc(50% + .5px));
}
.about-certificate-grid figure {
  display: grid;
  height: 224px;
  margin: 0;
  place-items: center;
  border-radius: 30px;
  transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.about-certificate-grid figure:hover,
.about-certificate-grid figure:focus-within {
  background: var(--white);
  box-shadow: 0 4px 40px 1px rgba(0,0,0,.08);
  transform: translateY(-19px);
}
.about-certificate-grid img {
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}
.about-certificate-grid .award-udayan { width: 113px; height: 113px; }
.about-certificate-grid .award-document { width: 109px; height: 153px; }
.about-certificate-grid .award-rera-round { width: 128px; height: 123px; }
.about-certificate-grid .award-cdsco { width: 97px; height: 94px; }
.about-certificate-grid .award-msme { width: 142px; height: 54px; }
.about-certificate-grid .award-iso { width: 96px; height: 88px; }
.about-certificate-grid .award-dfs { width: 114px; height: 85px; }
.about-certificate-grid .award-gmp { width: 88px; height: 88px; }
.about-certificate-grid .award-land-review { width: 128px; height: 128px; }
.about-certificate-grid .award-guj-rera { width: 110px; height: 110px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-image { overflow: hidden; border-radius: 28px; }
.feature-image img { width: 100%; aspect-ratio: 690 / 430; object-fit: cover; }
.project-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0 0;
}
.project-meta div {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}
.project-meta dt {
  margin-bottom: 6px;
  color: var(--heading);
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}
.project-meta dd {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 25px;
}
.project-cta { margin-top: 34px; }
.project-gallery-wrap { margin-top: 70px; }
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.project-gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}
.project-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--black);
  cursor: pointer;
}
.project-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 440 / 300;
  object-fit: cover;
  transition: transform .34s ease, opacity .34s ease;
}
.project-gallery-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.84);
  transition: opacity .24s ease, transform .24s ease;
}
.project-gallery-icon::before,
.project-gallery-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.project-gallery-icon::before {
  width: 22px;
  height: 2px;
}
.project-gallery-icon::after {
  width: 2px;
  height: 22px;
}
.project-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.32);
  opacity: 0;
  transition: opacity .24s ease;
}
.project-gallery-item:hover img,
.project-gallery-item:focus-visible img {
  opacity: .82;
  transform: scale(1.05);
}
.project-gallery-item:hover::after,
.project-gallery-item:focus-visible::after,
.project-gallery-item:hover .project-gallery-icon,
.project-gallery-item:focus-visible .project-gallery-icon {
  opacity: 1;
}
.project-gallery-item:hover .project-gallery-icon,
.project-gallery-item:focus-visible .project-gallery-icon {
  transform: translate(-50%, -50%) scale(1);
}
.project-video-wrap { margin-top: 70px; }
.project-video-wrap h2 {
  color: var(--heading);
  font-size: 48px;
  line-height: 56px;
}
.project-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 32px;
}
.project-video-card {
  position: relative;
  display: grid;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}
.project-video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .34s ease, opacity .34s ease;
}
.project-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
}
.project-video-card:hover img,
.project-video-card:focus-visible img {
  opacity: .88;
  transform: scale(1.04);
}
.project-video-card strong {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 26px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  text-transform: uppercase;
}
.project-video-play {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
}
.project-video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}
.project-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}
.project-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.project-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}
.project-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  padding: 26px;
  border-radius: 28px;
  background: #080808;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}
.project-video-modal__dialog h2 {
  margin: 0 56px 18px 0;
  color: var(--white);
  font-size: 36px;
  line-height: 42px;
}
.project-video-modal__dialog video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: var(--black);
}
.project-video-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.project-video-modal__close span,
.project-video-modal__close span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}
.project-video-modal__close span {
  transform: rotate(45deg);
}
.project-video-modal__close span::after {
  content: "";
  transform: rotate(90deg);
}
.project-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}
.project-gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.project-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(8px);
}
.project-gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding: 18px;
  border-radius: 28px;
  background: #080808;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}
.project-gallery-modal__dialog img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: 18px;
  object-fit: contain;
  background: var(--black);
}
.project-gallery-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(8,8,8,.72);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.project-gallery-modal__nav:hover,
.project-gallery-modal__nav:focus-visible {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--white);
}
.project-gallery-modal__nav--prev {
  left: 34px;
}
.project-gallery-modal__nav--next {
  right: 34px;
}
.project-gallery-modal__nav span {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.project-gallery-modal__nav--prev span {
  transform: translateX(3px) rotate(-135deg);
}
.project-gallery-modal__nav--next span {
  transform: translateX(-3px) rotate(45deg);
}
.project-gallery-modal__count {
  position: absolute;
  left: 50%;
  bottom: -42px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 22px;
  transform: translateX(-50%);
}
.project-gallery-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(8,8,8,.92);
  cursor: pointer;
}
.project-gallery-modal__close span,
.project-gallery-modal__close span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}
.project-gallery-modal__close span {
  transform: rotate(45deg);
}
.project-gallery-modal__close span::after {
  content: "";
  transform: rotate(90deg);
}
.value-grid, .listing-grid, .project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card, .service-card, .project-card, .contact-card { padding: 34px; border: 1px solid #d7d7d7; border-radius: 20px; background: var(--white); box-shadow: 0 4px 35px rgba(0,0,0,.07); }
.info-card h3, .service-card h3, .project-card h3, .contact-card h3 { font-size: 32px; line-height: 38px; }
.info-card p, .service-card p, .project-card p, .contact-card p { margin-top: 12px; line-height: 26px; }
.service-card img, .project-card img { width: 100%; aspect-ratio: 340 / 240; margin-bottom: 24px; border-radius: 16px; object-fit: cover; }
.certificate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.certificate-grid img { width: 100%; height: 118px; padding: 22px; border: 1px solid #e2e2e2; border-radius: 16px; object-fit: contain; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; }
.contact-layout.contact-figma-layout {
  grid-template-columns: 593px 806px;
  gap: 41px;
  justify-content: center;
}
.contact-form { display: grid; gap: 18px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #d7d7d7; border-radius: 14px; padding: 18px 20px; color: var(--text); }
.contact-form textarea { height: 170px; resize: vertical; }
.map-placeholder { display: grid; height: 320px; place-items: center; margin-top: 30px; border-radius: 24px; background: #e9ece3; color: var(--heading); font-family: var(--heading-font); font-size: 44px; text-transform: uppercase; }

.team-grid-large { row-gap: 58px; }
.load-more-wrap { display: flex; justify-content: center; margin-top: 74px; }

.project-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px 30px;
}
.project-tile img {
  width: 100%;
  aspect-ratio: 460 / 396;
  border-radius: 30px;
  object-fit: cover;
}
.project-tile div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}
.project-tile h3 {
  color: #111;
  font-size: 40px;
  line-height: 45px;
}
.project-tile a,
.product-list-copy a {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #b5b5b5;
  border-radius: 50%;
  color: var(--olive);
  font-size: 22px;
  line-height: 1;
}

.projects-page .projects-hero { height: 744px; }
.single-project .project-detail-hero { height: 744px; }
.projects-page .projects-hero img { object-position: center center; }
.single-project .project-detail-hero img { object-position: center center; }
.projects-page .projects-hero::after { background: rgba(0,0,0,.42); }
.single-project .project-detail-hero::after { background: rgba(0,0,0,.42); }
.projects-page .projects-hero .container { padding-bottom: 89px; }
.single-project .project-detail-hero .container { padding-bottom: 89px; }
.projects-page .projects-hero h1 { font-size: 90px; line-height: 95px; }
.single-project .project-detail-hero h1 { font-size: 90px; line-height: 95px; }
.projects-page .projects-hero p { width: 768px; margin-top: 14px; font-size: 18px; line-height: 26px; }
.single-project .project-detail-hero p { width: 768px; margin-top: 14px; font-size: 18px; line-height: 26px; }
.single-product .product-detail-hero { height: 744px; }
.single-product .product-detail-hero img { object-position: center center; }
.single-product .product-detail-hero::after { background: rgba(0,0,0,.42); }
.single-product .product-detail-hero .container { padding-bottom: 89px; }
.single-product .product-detail-hero h1 { width: min(900px, 100%); font-size: 90px; line-height: 95px; }
.single-product .product-detail-hero p { width: 768px; margin-top: 14px; font-size: 18px; line-height: 26px; }
.product-detail-overview {
  padding: 120px 0 100px;
  background: var(--soft);
}
.product-detail-overview-grid {
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 130px;
  align-items: center;
}
.product-detail-tilt-images { align-self: start; }
.product-detail-feature-image {
  overflow: hidden;
  margin: 0;
  border-radius: 30px;
}
.product-detail-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 680 / 460;
  object-fit: cover;
}
.product-detail-copy h2 {
  color: var(--heading);
  font-size: 64px;
  line-height: 70px;
}
.product-detail-copy > p,
.product-detail-gallery-head p {
  color: #4c4c4c;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}
.product-detail-copy > p { margin-top: 22px; }
.product-detail-content {
  margin-top: 28px;
  color: #4c4c4c;
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
}
.product-detail-content p + p,
.product-detail-content ul,
.product-detail-content ol { margin-top: 16px; }
.product-detail-content ul,
.product-detail-content ol { padding-left: 22px; }
.product-detail-content li + li { margin-top: 8px; }
.product-detail-cta { margin-top: 34px; }
.product-detail-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.product-detail-section-head.centered {
  display: block;
  width: 820px;
}
.product-detail-section-head h2,
.product-detail-spec-copy h2,
.product-detail-closing-card h2 {
  color: var(--heading);
  font-size: 64px;
  line-height: 70px;
}
.product-detail-section-head p,
.product-detail-spec-copy p,
.product-detail-closing-card p {
  width: 520px;
  margin: 0;
  color: #4c4c4c;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}
.product-detail-section-head.centered p {
  width: 100%;
  margin-top: 16px;
}
.product-detail-feature-section {
  padding: 100px 0 110px;
  background: var(--white);
}
.product-detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 54px;
}
.product-detail-feature-card {
  min-height: 288px;
  padding: 34px;
  border: 1px solid #d7d7d7;
  border-radius: 20px;
  background: var(--white);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.product-detail-feature-card:hover {
  border-color: transparent;
  box-shadow: 0 4px 40px 1px rgba(0,0,0,.08);
  transform: translateY(-10px);
}
.product-detail-feature-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.product-detail-feature-card h3,
.product-detail-application-grid h3 {
  margin-top: 28px;
  color: var(--heading);
  font-size: 32px;
  line-height: 38px;
}
.product-detail-feature-card p,
.product-detail-application-grid p {
  margin-top: 12px;
  color: #4c4c4c;
  font-size: 17px;
  font-weight: 300;
  line-height: 26px;
}
.product-detail-spec-section {
  padding: 110px 0;
  background: var(--soft);
}
.product-detail-spec-grid {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}
.product-detail-spec-copy p {
  width: 100%;
  margin-top: 20px;
}
.product-detail-spec-list {
  display: grid;
  margin: 0;
  border-top: 1px solid #d7d7d7;
}
.product-detail-spec-list div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #d7d7d7;
}
.product-detail-spec-list dt {
  color: var(--heading);
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}
.product-detail-spec-list dd {
  margin: 0;
  color: #4c4c4c;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}
.product-detail-application-section {
  padding: 100px 0 110px;
  background: var(--white);
}
.product-detail-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}
.product-detail-application-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid #d7d7d7;
  border-radius: 20px;
  background: var(--soft);
}
.product-detail-application-grid h3 {
  margin-top: 0;
}
.product-detail-gallery-section {
  padding: 100px 0 120px;
  overflow: hidden;
  background: var(--white);
}
.product-detail-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.product-detail-gallery-head h2 {
  color: var(--heading);
  font-size: 64px;
  line-height: 70px;
}
.product-detail-gallery-head p {
  width: 520px;
  margin: 0;
}
.product-detail-gallery-shell {
  --product-gap: 30px;
  width: min(100% - var(--gutter) * 2, var(--container));
  margin: 54px auto 0;
}
.product-detail-gallery-slider {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.product-detail-gallery-slider:active { cursor: grabbing; }
.product-detail-gallery-slide {
  flex: 0 0 calc((100% - 60px) / 3);
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--soft);
}
.product-detail-gallery-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 460 / 360;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-detail-gallery-slide:hover img { transform: scale(1.04); }
.product-detail-gallery-nav {
  justify-content: flex-end;
  margin-top: 34px;
}
.product-detail-closing-section {
  padding: 0 0 120px;
  background: var(--white);
}
.product-detail-closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 60px;
  align-items: center;
  padding: 58px;
  border-radius: 30px;
  background: var(--soft);
}
.product-detail-closing-card p {
  width: min(100%, 620px);
  margin-top: 18px;
}
.product-detail-closing-card figure {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}
.product-detail-closing-card img {
  display: block;
  width: 100%;
  aspect-ratio: 520 / 340;
  object-fit: cover;
}
.single-product .product-detail-hero h1 {
  width: min(900px, 100%);
  font-size: 90px;
  line-height: 95px;
}
.single-product .product-detail-hero p {
  width: 760px;
  max-width: 100%;
}
.product-detail-overview {
  padding: 120px 0;
  background: var(--white);
}
.product-detail-overview-grid {
  grid-template-columns: 766px 591px;
  justify-content: center;
  gap: 67px;
}
.product-detail-about-image {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}
.product-detail-about-image img {
  display: block;
  width: 100%;
  aspect-ratio: 766 / 526;
  object-fit: cover;
}
.product-detail-copy span {
  display: block;
  margin-bottom: 34px;
  color: var(--heading);
  font-family: var(--heading-font);
  font-size: 24px;
  line-height: 29px;
}
.product-detail-copy h2 {
  font-size: 60px;
  line-height: 65px;
}
.product-detail-copy > p,
.product-detail-content {
  margin-top: 14px;
  font-size: 18px;
  line-height: 26px;
}
.product-detail-content {
  margin-top: 12px;
}
.product-detail-content ul,
.product-detail-content ol {
  display: none;
}
.product-detail-cta {
  min-width: 140px;
  height: 48px;
  margin-top: 24px;
  padding: 0 28px;
  font-size: 14px;
}
.product-detail-feature-section {
  padding: 120px 0 95px;
  background: var(--soft);
}
.product-detail-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 80px;
  align-items: start;
  justify-content: center;
}
.product-detail-feature-card {
  display: grid;
  min-height: 0;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.product-detail-feature-card:hover {
  box-shadow: none;
  transform: none;
}
.product-detail-feature-card figure {
  display: grid;
  width: 141px;
  height: 141px;
  margin: 0 0 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 42px rgba(119,132,52,.34);
}
.product-detail-feature-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.product-detail-feature-card h3 {
  width: 230px;
  margin: 0;
  color: var(--heading);
  font-size: 24px;
  line-height: 29px;
  text-align: center;
}
.product-detail-why-section {
  padding: 120px 0;
  background: var(--white);
}
.product-detail-why-grid {
  display: grid;
  grid-template-columns: 610px 754px;
  gap: 76px;
  align-items: center;
  justify-content: center;
}
.product-detail-why-copy h2 {
  color: var(--heading);
  font-size: 60px;
  line-height: 65px;
}
.product-detail-why-copy ul {
  display: grid;
  gap: 15px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.product-detail-why-copy li {
  position: relative;
  padding-left: 25px;
  color: #4c4c4c;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.product-detail-why-copy li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.42);
}
.product-detail-why-section .product-detail-tilt-images {
  grid-template-columns: repeat(2, 352px);
}
.product-detail-why-section .about-tilt-image {
  width: 352px;
  height: 413px;
  border-radius: 30px;
}
.product-detail-gallery-section {
  padding: 120px 0;
  background: var(--soft);
}
.product-detail-gallery-head {
  display: block;
  text-align: center;
}
.product-detail-gallery-head h2 {
  font-size: 60px;
  line-height: 65px;
}
.product-detail-gallery-shell {
  display: grid;
  grid-template-columns: 61px minmax(0, 1442px) 61px;
  gap: 42px;
  align-items: center;
  justify-content: center;
  width: min(100% - 48px, 1768px);
  margin-top: 74px;
}
.product-detail-gallery-shell > .slider-btn {
  display: grid;
  width: 61px;
  height: 61px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(119,132,52,.3);
  border-radius: 50%;
  background: rgba(119,132,52,.06);
  color: rgba(119,132,52,.3);
}
.product-detail-gallery-shell > .slider-btn[data-next] {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--white);
}
.product-detail-gallery-shell > .slider-btn[data-prev] {
  border-color: rgba(119,132,52,.3);
  background: rgba(119,132,52,.06);
  color: rgba(119,132,52,.3);
}
.product-detail-gallery-shell > .slider-btn:hover,
.product-detail-gallery-shell > .slider-btn:focus-visible {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--white);
}
.product-detail-gallery-shell > .slider-btn svg {
  width: 18px;
  height: 14px;
}
.product-detail-gallery-slide {
  flex-basis: calc((100% - 90px) / 4);
  border-radius: 30px;
}
.product-detail-gallery-slide img {
  aspect-ratio: 338 / 404;
}
.product-detail-closing-section {
  padding: 120px 0;
  background: var(--white);
}
.product-detail-closing-card {
  display: block;
  width: min(100% - var(--gutter) * 2, 760px);
  padding: 0;
  background: transparent;
  text-align: center;
}
.product-detail-closing-card h2 {
  font-size: 60px;
  line-height: 65px;
}
.product-detail-closing-card p {
  width: 100%;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 26px;
}
.projects-page-section { padding: 120px 0 143px; background: var(--white); }
.projects-page .project-tile-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px 30px;
}
.projects-page .project-tile img {
  aspect-ratio: 460 / 396;
  border-radius: 30px;
}
.projects-page .project-tile div {
  gap: 18px;
  margin-top: 20px;
}
.projects-page .project-tile h3 {
  color: var(--heading);
  font-size: 24px;
  line-height: 29px;
}
.projects-page .project-tile .product-link {
  width: 42px;
  height: 42px;
  margin-top: 0;
  border-color: var(--olive);
  color: var(--white);
  background: var(--olive);
  font-size: 0;
}
.projects-page .project-tile .product-link svg {
  width: 17px;
  height: 13px;
}
.projects-page .project-tile:hover .product-link,
.projects-page .project-tile .product-link:hover {
  background: var(--olive);
  color: var(--white);
}
.projects-page .load-more-wrap { margin-top: 74px; }

.products-page .products-hero { height: 744px; }
.products-page .products-hero img { object-position: center center; }
.products-page .products-hero::after { background: rgba(0,0,0,.42); }
.products-page .products-hero .container { padding-bottom: 89px; }
.products-page .products-hero h1 { font-size: 90px; line-height: 95px; }
.products-page .products-hero p { width: 768px; margin-top: 14px; font-size: 18px; line-height: 26px; }
.products-page-section {
  padding: 120px 0;
  background: var(--white);
}
.products-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 40px;
}
.products-page-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 23px;
  align-items: center;
  width: 100%;
  height: 469px;
  padding: 16px 16px 16px 38px;
  border: 1px solid #b5b5b5;
  border-radius: 30px;
  background: transparent;
  justify-content: flex-end;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.products-page-card:hover {
  border-color: transparent;
  background: var(--white);
  box-shadow: 0 4px 40px 1px rgba(0,0,0,.08);
}
.products-page-card img {
  width: 100%;
  height: 435px;
  justify-self: end;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}
.products-page-card:nth-child(n+3) img {
  width: 100%;
}
.products-page-copy {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
}
.products-page-copy span {
  margin-top: 21px;
  color: var(--heading);
  font-family: var(--heading-font);
  font-size: 24px;
  line-height: 29px;
}
.products-page-copy h2 {
  width: auto;
  margin-top: 58px;
  color: var(--heading);
  font-size: 40px;
  line-height: 45px;
}
.products-page-copy p {
  width: auto;
  margin: 18px 0 30px;
  color: #2b2b2b;
  font-size: 18px;
  line-height: 26px;
}
.products-page-copy .product-link {
  margin-top: auto;
}
.products-page-copy .product-card-actions .product-link {
  margin-top: 0;
}
.products-page-card:hover .product-link {
  background: var(--olive);
  color: var(--white);
}
.products-page-card:hover .product-quick-view {
  border-color: var(--olive);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.product-modal.is-open {
  display: flex;
}
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,26,26,.8);
}
.product-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 458px 504px;
  gap: 46px;
  align-items: center;
  width: 1073px;
  padding: 31px 30px 30px 35px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 4px 40px 1px rgba(0,0,0,.08);
}
.product-modal__copy span {
  display: block;
  color: var(--heading);
  font-family: var(--heading-font);
  font-size: 24px;
  line-height: 29px;
}
.product-modal__copy h2 {
  margin: 44px 0 18px;
  color: var(--heading);
  font-size: 40px;
  line-height: 45px;
}
.product-modal__copy [data-product-modal-description] {
  width: 458px;
  margin: 0;
  color: #2b2b2b;
  font-size: 18px;
  line-height: 26px;
}
.product-modal__copy [data-product-modal-description] p {
  margin: 0 0 22px;
}
.product-modal__copy [data-product-modal-description] p:last-child {
  margin-bottom: 0;
}
.product-modal__dialog > img {
  width: 504px;
  height: 454px;
  border-radius: 30px;
  object-fit: cover;
}
.product-modal__close {
  position: absolute;
  top: -25px;
  right: -25px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--olive);
  cursor: pointer;
}
.product-modal__close span,
.product-modal__close::before {
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  content: "";
}
.product-modal__close span { transform: rotate(45deg); }
.product-modal__close::before { transform: rotate(-45deg); }
body.modal-open {
  overflow: hidden;
}

.contact-figma-layout { align-items: flex-start; }
.contact-info-panel h2,
.figma-form h2 {
  color: #111;
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
}
.contact-info-panel > p {
  margin: 10px 0 42px;
  color: #444;
  font-size: 18px;
  line-height: 26px;
}
.contact-info-panel article {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 120px;
  margin-bottom: 30px;
  padding: 24px 28px 24px 21px;
  border: 1px solid #bebebe;
  border-radius: 20px;
  background: var(--white);
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.contact-info-panel article:hover {
  border-color: transparent;
  box-shadow: 0 4px 50px rgba(0,0,0,.08);
}
.contact-info-panel span {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #6e884d4a;
  color: var(--white);
}
.contact-info-panel span img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.contact-info-panel small,
.figma-form label {
  color: #444;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.contact-info-panel strong {
  display: block;
  margin-top: 10px;
  color: #111;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.figma-form {
  width: 806px;
  min-height: 580px;
  padding: 50px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 50px rgba(0,0,0,.08);
}

@media (min-width: 1025px) and (max-width: 1600px) {
  .figma-form {
    width: auto;
  }

  .contact-layout.contact-figma-layout {
    grid-template-columns: .8fr 1.2fr;
    gap: 41px;
    justify-content: center;
  }
}
.figma-form h2 { margin-bottom: 31px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.figma-form label { display: grid; gap: 14px; }
.figma-form input,
.figma-form textarea {
  height: 34px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid #b5b5b5;
  border-radius: 0;
  outline: 0;
}
.figma-form textarea { height: 100px; }
.figma-form .btn { justify-self: start; margin-top: 20px; }

.figma-form .gform_wrapper.gravity-theme,
.figma-form .gform_wrapper {
  margin: 0;
}
.figma-form .gform_required_legend,
.figma-form .gform_heading {
  display: none;
}
.figma-form .gform_validation_errors,
.figma-form #gform_1_validation_container {
  display: block;
  margin: 0 0 36px !important;
  padding: 22px 26px !important;
  border: 1px solid #f3b4ad !important;
  border-radius: 4px !important;
  background: #fffafa !important;
  box-shadow: none !important;
}
.figma-form .gform_validation_errors h2,
.figma-form #gform_1_validation_container h2 {
  margin: 0 !important;
  font-family: var(--body-font);
  font-size: 14px !important;
  font-weight: 600;
  line-height: 20px !important;
  letter-spacing: 0;
}
.figma-form .gform_wrapper.gravity-theme .gform_fields,
.figma-form .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 36px;
}
.figma-form .gform_wrapper.gravity-theme .gfield,
.figma-form .gfield {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.figma-form .gform_wrapper.gravity-theme .gfield.gfield_error,
.figma-form .gfield.gfield_error {
  height: auto;
}
.figma-form .gform_wrapper.gravity-theme .gfield:nth-child(5),
.figma-form .gfield:nth-child(5) {
  grid-column: 1 / -1;
  height: auto;
}
.figma-form .gform_wrapper.gravity-theme .gfield::after,
.figma-form .gfield::after {
  content: none;
}
.figma-form .gform_wrapper.gravity-theme .gfield_label,
.figma-form .gfield_label {
  position: static;
  margin: 0 0 8px;
  color: #444;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.figma-form .gfield_required,
.figma-form .gform_wrapper.gravity-theme .gfield_required {
  color: #c53224;
  font-size: 18px;
}
.figma-form .gform_wrapper.gravity-theme input[type="text"],
.figma-form .gform_wrapper.gravity-theme input[type="email"],
.figma-form .gform_wrapper.gravity-theme input[type="tel"],
.figma-form .gform_wrapper.gravity-theme textarea,
.figma-form .gform_wrapper input[type="text"],
.figma-form .gform_wrapper input[type="email"],
.figma-form .gform_wrapper input[type="tel"],
.figma-form .gform_wrapper textarea {
  position: static;
  width: 100%;
  height: 34px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  outline: 0;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
.figma-form .gform_wrapper.gravity-theme textarea,
.figma-form .gform_wrapper textarea {
  position: static;
  display: block;
  height: 110px !important;
  min-block-size: 0 !important;
  block-size: 110px !important;
  margin-top: 12px;
  padding-bottom: 12px;
  overflow: auto;
  resize: vertical;
}
.figma-form .gform-theme--foundation .gfield textarea.large,
.figma-form .gform_wrapper.gravity-theme textarea.large,
.figma-form .gform_wrapper textarea.large {
  min-block-size: 0 !important;
  block-size: 110px !important;
  height: 110px !important;
}
.figma-form .gform_wrapper.gravity-theme input:focus,
.figma-form .gform_wrapper.gravity-theme textarea:focus,
.figma-form .gform_wrapper input:focus,
.figma-form .gform_wrapper textarea:focus {
  border-bottom-color: var(--olive);
}
.figma-form .gform_wrapper.gravity-theme .gform_footer,
.figma-form .gform_footer {
  position: relative;
  z-index: 5;
  margin: 36px 0 0;
  padding: 0;
}
.figma-form .gform_wrapper.gravity-theme .gform_button,
.figma-form .gform_button,
.figma-form .gform_footer input[type="submit"],
.figma-form input[type="submit"].gform_button,
.figma-form input[type="submit"].button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 151px !important;
  height: 52px !important;
  padding: 0 30px !important;
  border: 0 !important;
  border-radius: 120px !important;
  background: var(--olive) !important;
  color: var(--white) !important;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 15px !important;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  box-shadow: none !important;
  appearance: none;
  transition: .22s ease;
}
.figma-form .gform_wrapper.gravity-theme .gform_button:hover,
.figma-form .gform_button:hover,
.figma-form .gform_footer input[type="submit"]:hover,
.figma-form input[type="submit"].gform_button:hover,
.figma-form input[type="submit"].button:hover {
  background: var(--olive-dark) !important;
  transform: translateY(-2px);
}
.figma-form .gfield_validation_message,
.figma-form .validation_message {
  position: static;
  margin: 6px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c53224;
  font-family: var(--body-font);
  font-size: 11px !important;
  font-weight: 300;
  line-height: 18px;
}

.site-footer { padding-top: 85px; background: var(--black); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 410px 65px 375px 65px 525px; column-gap: 0; padding-bottom: 82px; }
.footer-brand { grid-column: 1; }
.footer-logo img {
  width: 296px;
  object-fit: contain;
}
.socials { display: flex; gap: 18px; margin-top: 42px; }
.socials a { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; color: var(--white); font-size: 22px; font-weight: 600; line-height: 1; }
.footer-links { grid-column: 3; display: grid; grid-template-columns: 120px 120px; gap: 31px 60px; align-content: start; }
.footer-contact { grid-column: 5; display: grid; gap: 27px; align-content: start; }
.footer-links h2, .footer-contact h2 { grid-column: 1 / -1; color: var(--white); font-size: 24px; line-height: 29px; }
.footer-links a, .footer-contact p { color: rgba(255,255,255,.9); font-size: 18px; line-height: 26px; }
.footer-links a {
  position: relative;
  transition: color .22s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--olive);
  box-shadow: 0 0 12px rgba(119,132,52,.5);
  transition: width .24s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a.current-menu-item,
.footer-links a.current-menu-ancestor,
.footer-links a.current-menu-parent {
  color: var(--olive);
}
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-links a.current-menu-item::after,
.footer-links a.current-menu-ancestor::after,
.footer-links a.current-menu-parent::after {
  width: 24px;
}
.footer-contact p { display: flex; align-items: flex-start; gap: 14px; white-space: normal; }
.footer-contact a { min-width: 0; max-width: 433px; overflow-wrap: normal; }
.footer-contact img { width: 24px; height: 24px; flex: 0 0 24px; object-fit: contain; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 25px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.9); font-size: 18px; line-height: 26px; }
.footer-bottom p:last-child { display: flex; gap: 18px; align-items: center; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .72s cubic-bezier(.22, .61, .36, 1),
    transform .72s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 1201px) {
  :root {
    --container: 1440px;
    --gutter: 40px;
    --section: 100px;
  }

  .about-section {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .site-header {
    --header-height: 121px;
    height: 121px;
  }

  .header-shell {
    grid-template-columns: 550px 972px 398px;
    width: 1920px;
  }

  .brand-header {
    padding-left: 100px;
  }

  .brand-header img {
    width: 313px;
    height: 59px;
  }

  .main-nav {
    gap: 58px;
    transform: translateX(1px);
  }

  .header-cta {
    width: 161px;
    margin-right: 100px;
  }

  .hero-section,
  .hero-content {
    height: 950px;
  }

  .hero-bg {
    height: 1080px;
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .5) 37%, rgba(0, 0, 0, .08) 72%),
      linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, .2) 100%);
  }

  .hero-copy {
    top: 548px;
    width: 790px;
  }

  .hero-copy h1 {
    font-size: 90px;
    line-height: 95px;
  }

  .hero-copy p {
    top: 194px;
    width: 768px;
  }

  .hero-copy .btn {
    top: 270px;
  }

  .hero-rating {
    left: 1040px;
    top: 669px;
    width: 400px;
  }

  .rating-card {
    background: linear-gradient(100deg, #9b9f9f 0%, #747878 100%);
    border: 0;
    backdrop-filter: none;
  }

  .rating-card::before {
    background: linear-gradient(100deg, rgba(132,137,137,.9) 0%, rgba(95,100,100,.9) 100%);
  }

  .hero-rating > p {
    margin-top: 12px;
    width: 400px;
  }

  .about-grid {
    grid-template-columns: 507px 1px 733px;
    gap: 100px;
  }

  .section-copy h2 {
    font-size: 60px;
    line-height: 65px;
  }

  .collage-grid {
    grid-template-columns: repeat(4, 344px);
  }

  .products-section {
    padding-top: 120px;
    padding-bottom: 82px;
  }

  .products-header {
    margin-bottom: 56px;
  }

  .products-section .section-copy h2 {
    font-size: 60px;
    line-height: 65px;
  }

  .team-section .section-copy h2,
  .testimonials-section .section-copy h2 {
    font-size: 60px;
    line-height: 65px;
  }

  .products-section .slider {
    width: calc(100vw - calc((100vw - 1440px) / 2));
  }

  .product-link::before {
    content: none;
  }

  .slider-btn::before {
    content: none;
  }

  .slider-btn[data-prev]::before {
    content: none;
  }

  .testimonials-section .slider-btn::before {
    content: none;
  }

  .products-nav {
    margin-top: 58px;
  }

  .network-section {
    padding-top: 117px;
    padding-bottom: 117px;
  }

  .network-grid {
    grid-template-columns: repeat(5, 278px);
    grid-template-rows: repeat(4, 183px);
  }

  .network-title {
    height: 366px;
    align-content: center;
  }

  .team-section {
    padding-top: 103px;
    padding-bottom: 91px;
  }

  .team-section .section-head {
    margin-bottom: 39px;
  }

  .team-card img {
    aspect-ratio: 340 / 454;
    border-radius: 20px;
  }

  .testimonials-section {
    padding-top: 123px;
    padding-bottom: 120px;
  }

  .testimonials-section .centered {
    width: 733px;
  }

  .testimonial-layout {
    grid-template-columns: 460px minmax(0, 950px);
    gap: 30px;
    margin-top: 54px;
  }

  .testimonial-layout > .slider {
    width: 100%;
  }

  .testimonial-track {
    gap: 30px;
  }

  .testimonial-card {
    flex-basis: min(460px, calc((100% - 30px) / 2));
  }

  .left-controls {
    margin-top: 46px;
  }

  .site-footer {
    padding-top: 85px;
  }

  .footer-grid {
    grid-template-columns: 410px 65px 375px 65px 525px;
    column-gap: 0;
    padding-bottom: 82px;
  }

  .about-page .about-hero {
    height: 744px;
  }

  .about-page .about-hero .container {
    padding-bottom: 89px;
  }

  .about-why-section {
    padding-top: 120px;
    padding-bottom: 68px;
  }

  .about-stats {
    padding-bottom: 68px;
  }

  .about-network {
    padding-bottom: 144px;
  }

  .about-vision-section {
    padding-top: 100px;
    padding-bottom: 99px;
  }

  .about-achievements-section {
    padding-top: 124px;
    padding-bottom: 87px;
  }
}

@media (min-width: 1201px) and (max-width: 1919px) {
  :root {
    --container: 1140px;
    --gutter: 30px;
    --section: 86px;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px;
  }

  .site-header {
    --header-height: 96px;
    height: 96px;
  }

  .header-shell {
    grid-template-columns: 31% 49% 20%;
    width: 100%;
    height: 96px;
  }

  .brand-header {
    padding-left: max(40px, calc((100vw - 1140px) / 2));
  }

  .brand-header img {
    width: 260px;
    height: auto;
  }

  .main-nav {
    gap: clamp(22px, 2.2vw, 38px);
    transform: none;
  }

  .main-nav a,
  .submenu-toggle {
    font-size: 15px;
    line-height: 24px;
  }

  .header-cta {
    width: 150px;
    margin-right: max(30px, calc((100vw - 1140px) / 2));
    padding-inline: 22px;
    font-size: 14px;
  }

  .hero-section,
  .hero-content {
    height: 700px;
  }

  .hero-bg {
    height: 760px;
  }

  .hero-copy {
    top: 360px;
    width: 660px;
  }

  .hero-copy h1 {
    font-size: 68px;
    line-height: 72px;
  }

  .hero-copy p {
    top: 150px;
    width: 620px;
    font-size: 16px;
    line-height: 24px;
  }

  .hero-copy .btn {
    top: 230px;
  }

  .hero-rating {
    left: auto;
    right: 0;
    top: 492px;
    width: 355px;
  }

  .rating-card {
    width: 355px;
    height: 132px;
    padding: 20px 28px;
  }

  .rating-card::before {
    width: 315px;
    height: 112px;
  }

  .hero-rating > p {
    width: 355px;
    font-size: 16px;
    line-height: 24px;
  }

  .about-section {
    padding-top: 88px;
    padding-bottom: 24px;
  }

  .about-grid {
    grid-template-columns: 420px 1px 1fr;
    gap: 58px;
  }

  .section-copy h2,
  .products-section .section-copy h2 {
    font-size: 48px;
    line-height: 54px;
  }

  .collage-section {
    padding-bottom: 64px;
  }

  .collage-grid {
    grid-template-columns: repeat(4, 260px);
    gap: 24px;
  }

  .collage-grid figure {
    height: 300px;
  }

  .stats-section {
    padding-bottom: 104px;
  }

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

  .stats-card strong {
    font-size: 48px;
    line-height: 54px;
  }

  .products-section {
    --product-card-w: 560px;
    --product-card-h: 380px;
    --product-gap: 28px;
    padding-top: 82px;
    padding-bottom: 72px;
  }

  .products-header {
    margin-bottom: 42px;
  }

  .products-header .section-copy,
  .section-head .section-copy {
    width: 640px;
  }

  .products-section .slider {
    width: calc(100vw - calc((100vw - 1140px) / 2));
  }

  .product-card {
    grid-template-columns: 238px 270px;
    padding: 44px 14px 15px 30px;
  }

  .product-number {
    top: 44px;
    left: 30px;
  }

  .product-card h3 {
    margin-top: 86px;
    font-size: 34px;
    line-height: 40px;
  }

  .product-card p {
    width: 232px;
    font-size: 16px;
    line-height: 24px;
  }

  .product-card img {
    width: 270px;
    height: 350px;
  }

  .network-section {
    padding-block: 86px;
  }

  .network-grid {
    grid-template-columns: repeat(5, 220px);
    grid-template-rows: repeat(4, 145px);
  }

  .network-cell,
  .network-title {
    width: 220px;
    height: 145px;
  }

  .network-title {
    height: 290px;
  }

  .network-title h2 {
    font-size: 40px;
    line-height: 42px;
  }

  .team-section {
    padding-top: 82px;
    padding-bottom: 78px;
  }

  .team-grid {
    gap: 24px;
  }

  .team-card strong {
    font-size: 20px;
    line-height: 25px;
  }

  .testimonials-section {
    padding-top: 86px;
    padding-bottom: 96px;
  }

  .testimonial-layout {
    grid-template-columns: 360px minmax(0, 750px);
    gap: 30px;
  }

  .review-summary {
    padding: 34px 28px;
  }

  .testimonial-card {
    flex-basis: min(360px, calc((100% - 30px) / 2));
    padding: 40px 34px;
  }

  .footer-grid {
    grid-template-columns: 410px 65px 375px 65px 525px;
    padding-bottom: 72px;
  }

  .footer-links {
    gap: 28px 42px;
  }

  .footer-contact p {
    white-space: normal;
  }
}
