:root {
  --color-green: #25844e;
  --color-green-accessible: #1d693e;
  --color-black: #111111;
  --color-white: #ffffff;
  --color-gray-50: #f6f7f5;
  --color-gray-100: #e7e9e5;
  --color-gray-500: #686c65;
  --color-gray-700: #343732;
  --font-sans: Montserrat, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  --shadow-raised: 0 1rem 2.5rem rgb(17 17 17 / 12%);
  --space-section: clamp(4rem, 9vw, 7.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  line-height: 1.65;
  overflow-wrap: break-word;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: normal;
  word-break: keep-all;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--color-black);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--color-green);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed;
  z-index: 10000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: var(--color-black);
  background: var(--color-white);
  font-weight: 700;
  white-space: normal;
  box-shadow: var(--shadow-raised);
}

.container {
  width: calc(100% - 2rem);
  max-width: 120rem;
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

.home-page .section {
  padding-block: 1.5rem;
}

.stack > * {
  margin-block: 0;
}

.stack > * + * {
  margin-block-start: var(--stack-space, 1.5rem);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--cluster-space, 1rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: var(--grid-space, 1.5rem);
}

.section-heading {
  max-width: 14ch;
  margin-block: 0 1.5rem;
  font-size: clamp(2rem, 1.2rem + 3vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-green-accessible);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border: 2px solid var(--color-green);
  color: var(--color-black);
  background: var(--color-green);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  border-color: var(--color-black);
  color: var(--color-white);
  background: var(--color-black);
}

.button--dark {
  border-color: var(--color-black);
  color: var(--color-white);
  background: var(--color-black);
}

.button--dark:hover {
  border-color: var(--color-white);
  color: var(--color-black);
  background: var(--color-white);
}

.button--compact {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
}

.utility-bar {
  color: var(--color-white);
  background: var(--color-black);
  font-size: 0.75rem;
}

.utility-bar__inner {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  color: var(--color-white);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 100;
  right: 0;
  left: 0;
  height: 4rem;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-black);
  background: var(--color-white);
}

.site-header--overlay {
  border: 0;
  background: transparent;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 4rem;
  align-items: center;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  width: fit-content;
  align-items: stretch;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.site-brand__logo {
  display: block;
  width: clamp(9.5rem, 15vw, 13.5rem);
  height: auto;
}

.site-brand__logo--desktop {
  display: none;
}

.site-brand--header {
  position: absolute;
  top: 1rem;
  left: 2rem;
}

.site-brand--header .site-brand__logo--mobile {
  width: 8rem;
}

.site-brand__terex,
.site-brand__ecotec {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 0.65rem;
}

.site-brand__terex {
  background: var(--color-black);
}

.site-brand__ecotec {
  color: var(--color-black);
  background: var(--color-green);
}

.main-navigation {
  position: relative;
  justify-self: end;
}

.menu-toggle {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--color-gray-100);
  color: var(--color-black);
  background: var(--color-white);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentcolor;
  content: "";
  transition: transform 160ms ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  left: 0;
}

.menu-toggle__icon::before {
  top: -0.4rem;
}

.menu-toggle__icon::after {
  top: 0.4rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.main-navigation .primary-menu {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-navigation a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #477d1f;
}

.navigation-ready .menu-toggle {
  display: inline-flex;
}

.mobile-bottom-navigation {
  position: fixed;
  z-index: 110;
  right: 50%;
  bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 2rem;
  background: var(--color-white);
  box-shadow: 0 0.75rem 2.5rem rgb(17 17 17 / 24%);
  transform: translateX(50%);
}

.mobile-bottom-navigation > a,
.mobile-bottom-navigation .menu-toggle {
  display: inline-flex;
  min-width: 3.5rem;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.65rem;
  border: 0;
  color: var(--color-black);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-navigation-icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.navigation-ready .main-navigation .primary-menu {
  position: fixed;
  top: auto;
  right: 1rem;
  bottom: 7.75rem;
  display: none;
  width: min(20rem, calc(100vw - 2rem));
  padding: 0.5rem;
  border-top: 4px solid var(--color-green);
  background: var(--color-white);
  box-shadow: var(--shadow-raised);
}

.navigation-ready .main-navigation.is-open .primary-menu {
  display: flex;
}

.header-cta {
  display: none;
}

.site-main {
  min-height: 45vh;
  padding-top: 4rem;
}

.site-header--overlay + .site-main {
  padding-top: 0;
}

.home-hero {
  position: relative;
  height: 100svh;
  min-height: 28.75rem;
  overflow: hidden;
  background: var(--color-black);
}

.home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__content {
  --stack-space: 1.5rem;
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 10vw, 7rem);
}

.home-hero .eyebrow {
  max-width: 52rem;
  color: var(--color-green);
}

.home-video .eyebrow,
.product-hero .eyebrow,
.product-archive__header .eyebrow,
.site-footer .eyebrow,
.footer-navigation h2,
.footer-links h2 {
  color: var(--color-green);
}

.home-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.home-hero__content > p:not(.eyebrow) {
  max-width: 39rem;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
}

.home-hero__actions {
  --cluster-space: 0.75rem;
}

.button--outline-light {
  border-color: var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.button--outline-light:hover {
  border-color: var(--color-green);
  color: var(--color-black);
  background: var(--color-green);
}

.home-intro__grid,
.home-video__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.home-intro__media {
  overflow: hidden;
  border-radius: 0.5rem;
}

.home-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.home-intro__copy {
  --stack-space: 1.25rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: rgb(253 253 253 / 75%);
}

.home-intro__body {
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-green);
}

.home-intro__body p {
  max-width: 43rem;
  color: var(--color-gray-700);
}

.product-families {
  background: var(--color-gray-50);
}

.product-families__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.product-families__heading .section-heading {
  margin-bottom: 0;
}

.text-link {
  width: fit-content;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration-color: var(--color-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}

.product-family-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-range-title-card {
  display: flex;
  min-height: 16rem;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.5rem;
  color: var(--color-green);
  background: var(--color-gray-100);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.product-range-title-card:hover {
  color: var(--color-white);
  background: var(--color-green);
}

.product-range-title-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.circle-arrow {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  border: 1px solid currentcolor;
  border-radius: 50%;
  place-items: center;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.product-family-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  color: var(--color-gray-800);
  background: var(--color-gray-100);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-family-card:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-0.35rem);
}

.family-card__media {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--color-gray-100);
}

.family-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgb(231 233 229 / 60%) 80%, var(--color-gray-100) 100%);
  content: "";
  pointer-events: none;
}

.family-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: left;
  transition: transform 220ms ease;
}

.product-family-card:hover .family-card__media img {
  transform: scale(1.025);
}

.family-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
  background: var(--color-gray-100);
}

.family-card__body strong {
  font-size: 1.35rem;
  line-height: 1.2;
}

.family-card__action {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.product-family-card:hover .circle-arrow {
  color: var(--color-black);
  background: var(--color-green);
  transform: translateX(0.25rem);
}

.home-video {
  color: var(--color-white);
  background: #464648;
}

.home-video__grid {
  display: grid;
  justify-items: center;
  gap: 2rem;
  text-align: center;
}

.home-video__grid h2 {
  margin: 0;
  color: var(--color-white);
}

.home-video__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-raised);
}

.home-video__media::after {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 22%);
  content: "";
  pointer-events: none;
}

.home-video__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-video__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 5rem;
  height: 5rem;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  color: var(--color-black);
  background: var(--color-green);
  font-size: 1.4rem;
  cursor: pointer;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: color 160ms ease, background-color 160ms ease;
}

.home-video__play:hover {
  color: var(--color-white);
  background: var(--color-black);
}

.home-video__copy {
  --stack-space: 1.25rem;
}

.home-video__copy h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.25rem, 1.4rem + 3vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.home-video__copy p:not(.eyebrow) {
  max-width: 35rem;
  color: var(--color-gray-100);
}

.text-link--light {
  color: var(--color-white);
}

.video-text-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.youtube-subscribe {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

.youtube-subscribe p {
  max-width: 48rem;
  margin: 0;
  color: var(--color-gray-100);
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 1rem;
  place-items: center;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 88%);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(64rem, 100%);
  color: var(--color-white);
  background: var(--color-black);
  box-shadow: 0 1.5rem 5rem rgb(0 0 0 / 55%);
}

.video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.video-modal__header h2 {
  margin: 0;
  font-size: 1rem;
}

.video-modal__close {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  color: var(--color-white);
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-open {
  overflow: hidden;
}

.anchor-target {
  position: absolute;
  scroll-margin-top: 7rem;
}

.page-header,
.site-main > article,
.site-main > .empty-state {
  width: min(calc(100% - 2rem), 73.75rem);
  margin-inline: auto;
}

.product-detail > article {
  width: 100%;
  margin-inline: 0;
}

.page-header {
  padding-block: clamp(3rem, 7vw, 6rem) 2rem;
}

.product-archive__header {
  padding-block: clamp(3rem, 7vw, 6rem) 2rem;
  color: var(--color-white);
  background: var(--color-black);
}

.product-archive__header .section-heading {
  max-width: none;
}

.product-archive__header p:last-child {
  max-width: 42rem;
  color: var(--color-gray-100);
}

.product-archive__content {
  background: var(--color-gray-50);
}

.product-archive {
  background: #f7f7f7;
}

.product-overview-banner {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  border-radius: 1rem;
}

.product-overview-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 55%), transparent 70%);
  content: "";
}

.product-overview-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.product-overview-banner > div {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 1;
  padding: 1rem 1.5rem;
  color: #fff;
  background: rgb(37 132 78 / 85%);
}

.product-overview-banner h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.official-product-families {
  padding-block: 1rem 4rem;
}

.product-family-section {
  padding-block: 2.75rem;
}

.product-family-section > header {
  position: relative;
  margin-bottom: 1.5rem;
}

.product-family-section > header p {
  margin: 0;
  color: #777;
  font-size: 0.7rem;
}

.product-family-section > header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.product-family-section > header span {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.5rem;
}

.product-family-rail {
  display: grid;
  grid-auto-columns: minmax(17rem, 28rem);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 1.25rem;
  scroll-snap-type: x mandatory;
}

.official-product-card {
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.2rem 0.8rem rgb(0 0 0 / 5%);
}

.official-product-card a {
  display: flex;
  min-height: 100%;
  padding: 1.25rem;
  color: inherit;
  flex-direction: column;
  text-decoration: none;
}

.official-product-card img {
  width: 100%;
  height: 17rem;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.official-product-card strong {
  font-size: 1.25rem;
}

.official-product-card span {
  margin-top: 0.4rem;
  color: #666;
}

.official-product-card small {
  display: flex;
  margin-top: 2rem;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.header-utilities {
  display: none;
  gap: 1.25rem;
  align-items: center;
}

.header-utilities a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.header-utility-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.official-primary-menu details { position: relative; }

.official-primary-menu summary {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem;
  color: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  list-style: none;
}

.official-primary-menu summary::-webkit-details-marker { display: none; }

.official-primary-menu summary::after {
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1px solid currentcolor;
  border-bottom: 1px solid currentcolor;
  content: "";
  transform: translateY(-0.15rem) rotate(45deg);
  transition: transform 160ms ease;
}

.official-primary-menu details[open] > summary::after {
  transform: translateY(0.15rem) rotate(225deg);
}

.mega-panel { position: absolute; top: 100%; left: 0; z-index: 20; display: grid; min-width: 15rem; gap: 0.25rem; padding: 1rem; color: #222; border-radius: 0 0 0.75rem 0.75rem; background: #fff; box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 15%); }
.mega-panel a { padding: 0.65rem; color: inherit; white-space: nowrap; }

.main-navigation .mega-panel a {
  color: var(--color-black);
}

.main-navigation .mega-panel a:hover,
.main-navigation .mega-panel a:focus-visible {
  color: var(--color-black);
  background: var(--color-gray-100);
}

.product-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-filter {
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--color-gray-500);
  color: var(--color-black);
  background: var(--color-white);
  font-weight: 800;
  cursor: pointer;
}

.product-filter[aria-pressed="true"],
.product-filter:hover {
  border-color: var(--color-black);
  color: var(--color-white);
  background: var(--color-black);
}

.filter-status {
  min-height: 1.65em;
  margin-block: 1.5rem;
  color: var(--color-gray-700);
  font-size: 0.875rem;
  font-weight: 700;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}

.equipment-card {
  min-width: 0;
  background: var(--color-white);
  box-shadow: 0 0.35rem 1.25rem rgb(17 17 17 / 8%);
}

.equipment-card__image {
  display: block;
  overflow: hidden;
  background: var(--color-gray-100);
}

.equipment-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}

.equipment-card:hover .equipment-card__image img {
  transform: scale(1.025);
}

.equipment-card__body {
  --stack-space: 0.85rem;
  padding: 1.25rem;
}

.equipment-card__body h2,
.equipment-card__body p {
  margin: 0;
}

.equipment-card__body h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.equipment-card__body p:not(.equipment-card__family) {
  color: var(--color-gray-700);
  font-size: 0.9375rem;
}

.equipment-card__family {
  color: var(--color-green-accessible);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-hero {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  color: var(--color-white);
  background: var(--color-black);
}

.product-hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.product-hero__copy {
  --stack-space: 1.5rem;
}

.product-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.75rem, 1.5rem + 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.product-hero__summary {
  max-width: 42rem;
  color: var(--color-gray-100);
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem);
}

.product-hero__media {
  overflow: hidden;
  background: var(--color-gray-700);
  box-shadow: var(--shadow-raised);
}

.product-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-copy {
  max-width: 52rem;
}

.product-copy .section-heading,
.product-features .section-heading,
.product-specifications .section-heading,
.product-applications .section-heading,
.related-products .section-heading {
  max-width: none;
}

.product-features,
.product-applications,
.related-products {
  background: var(--color-gray-50);
}

.feature-list,
.application-list {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 1rem;
  counter-reset: product-feature;
}

.feature-list li {
  position: relative;
  min-height: 5rem;
  padding: 1.4rem 1.4rem 1.4rem 4.75rem;
  background: var(--color-white);
  box-shadow: 0 0.35rem 1.25rem rgb(17 17 17 / 8%);
  counter-increment: product-feature;
}

.feature-list li::before {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: var(--color-green);
  content: counter(product-feature, decimal-leading-zero);
  font-size: 1.35rem;
  font-weight: 900;
}

.spec-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-top: 4px solid var(--color-green);
}

.spec-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.spec-table th,
.spec-table td {
  width: 50%;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-gray-100);
  text-align: left;
  overflow-wrap: anywhere;
}

.spec-table th {
  background: var(--color-gray-50);
  font-weight: 800;
}

.application-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.application-list li {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-500);
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
}

.related-products {
  padding-block-start: 0;
}

.related-products .equipment-card__body h3,
.related-products .equipment-card__body p {
  margin: 0;
}

.related-products .equipment-card__body h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.related-products .equipment-card__body p {
  color: var(--color-gray-700);
  font-size: 0.9375rem;
}

/* Official Ecotec product-detail composition. */
.product-detail {
  color: #242424;
  background: #fff;
}

.product-breadcrumbs {
  padding-block: 1.5rem 1rem;
}

.product-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-breadcrumbs li {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-breadcrumbs li:not(:last-child)::after {
  margin-inline: 0.75rem;
  content: "\203A";
  font-size: 1.3rem;
}

.product-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.product-family-intro {
  padding-block: 0.5rem 1.5rem;
}

.product-family-intro__card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: rgb(246 247 247 / 75%);
}

.product-family-intro__card h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.product-family-intro__card p {
  max-width: 75rem;
  padding-left: 1.5rem;
  margin: 0;
  border-left: 3px solid var(--color-green);
  font-size: 1rem;
  line-height: 1.65;
}

.product-presentation {
  padding-block: 1.5rem;
}

.product-presentation__grid {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #f7f8f8;
}

.product-gallery,
.product-presentation__copy {
  min-width: 0;
}

.product-gallery__stage {
  position: relative;
  display: grid;
  min-height: 14.75rem;
  overflow: hidden;
  place-items: center;
  border: 2px solid #e4e6e7;
  border-radius: 1rem;
  background: #fff;
}

.product-gallery__expand {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  color: #fff;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--color-green);
  cursor: pointer;
}

.product-gallery-dialog {
  width: min(90vw, 75rem);
  height: min(90vh, 50rem);
  padding: 3rem;
  border: 0;
  border-radius: 1rem;
}

.product-gallery-dialog::backdrop { background: rgb(0 0 0 / 80%); }
.product-gallery-dialog > button { position: absolute; top: 0.5rem; right: 1rem; border: 0; background: none; font-size: 2rem; cursor: pointer; }
.product-gallery-dialog [data-gallery-dialog-content],
.product-gallery-dialog img,
.product-gallery-dialog iframe { width: 100%; height: 100%; object-fit: contain; border: 0; }

.product-gallery__stage img {
  width: 100%;
  height: 100%;
  max-height: 40.625rem;
  object-fit: contain;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-gallery__thumb {
  position: relative;
  display: grid;
  min-height: 5.5rem;
  padding: 0;
  overflow: hidden;
  place-items: center;
  border: 2px solid #d8dcdd;
  border-radius: 1rem;
  background: #fff;
  cursor: pointer;
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
  border-color: var(--color-green);
}

.product-gallery__thumb img {
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
}

.product-gallery__video span {
  position: absolute;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  color: #fff;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green);
}

.product-presentation__copy {
  padding-block: 1rem;
}

.product-presentation__copy h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.product-presentation__body {
  color: #3f4142;
  line-height: 1.7;
}

.product-presentation__body p:first-child {
  margin-top: 0;
}

.product-presentation__actions {
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
}

.product-documentation {
  padding-block: 2.5rem;
}

.product-documentation > h2,
.related-products > h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.unit-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.25rem;
  padding: 0.375rem;
  margin-bottom: 1.5rem;
  border-radius: 2rem;
  background: #eef0f0;
  font-size: 0.875rem;
}

.unit-toggle button {
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 2rem;
  background: transparent;
  cursor: pointer;
}

.unit-toggle button.is-active {
  color: #fff;
  background: var(--color-green);
}

.product-gallery__stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
}

.product-documentation__grid {
  display: grid;
  gap: 1rem;
}

.product-documentation__toolbar { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 2px solid var(--color-green); text-transform: uppercase; }
.product-documentation__toolbar button { border: 0; background: none; cursor: pointer; }
.product-spec-accordion { display: grid; gap: 0.5rem; }

.product-hotspots { padding-block: 2rem; }
.product-hotspots__visual { position: relative; width: min(100%, 64rem); margin-inline: auto; }
.product-hotspots__visual > img { width: 100%; }
.product-hotspots__visual > button { display: flex; width: 100%; gap: 0.75rem; align-items: center; padding: 0.75rem; border: 0; border-bottom: 1px solid #ddd; background: #fff; text-align: left; cursor: pointer; }
.product-hotspots__visual > button > span { display: grid; width: 2rem; height: 2rem; color: #fff; place-items: center; border-radius: 50%; background: var(--color-green); }
.product-hotspots__visual > button small { display: none; margin-left: auto; max-width: 60%; font-size: 0.9rem; }
.product-hotspots__visual > button[aria-expanded="true"] small { display: block; }

.product-spec-accordion details,
.product-downloads details {
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f7f8f8;
  box-shadow: 0 0.2rem 0.8rem rgb(0 0 0 / 6%);
}

.product-spec-accordion summary,
.product-downloads summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 800;
}

.product-spec-accordion dl {
  margin: 0;
}

.product-spec-accordion dl div {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  border-top: 1px solid #dde0e1;
}

.product-spec-accordion dt,
.product-spec-accordion dd {
  padding: 1rem 1.5rem;
  margin: 0;
  overflow-wrap: anywhere;
}

.product-spec-accordion dd {
  font-weight: 700;
}

.product-downloads a {
  display: block;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #dde0e1;
  color: inherit;
}

.product-detail .related-products {
  padding-block: 2.5rem 4rem;
  background: transparent;
}

.site-main > article,
.site-main > .empty-state {
  padding-block-end: 3rem;
}

.dealer-cta {
  color: var(--color-black);
  background: var(--color-green);
}

.dealer-cta__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.dealer-cta .eyebrow {
  color: var(--color-black);
}

.dealer-cta h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 1.3rem + 2.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.dealer-cta p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
}

.dealer-cta__actions {
  --cluster-space: 1.25rem;
}

.dealer-cta__secondary {
  font-size: 0.875rem;
  font-weight: 800;
  text-underline-offset: 0.25em;
}

.site-footer {
  color: var(--color-black);
  background: var(--color-gray-100);
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem 2rem;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.site-brand--footer .site-brand__terex {
  color: var(--color-black);
  background: var(--color-white);
}

.site-brand--footer .site-brand__logo {
  filter: none;
}

.footer-brand p {
  max-width: 28rem;
  color: var(--color-gray-100);
  font-size: 0.9rem;
}

.footer-navigation h2,
.footer-links h2 {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-navigation ul,
.footer-links ul,
.social-links,
.site-footer__legal ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-links a {
  display: grid;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--color-gray-500);
  border-radius: 50%;
  color: var(--color-black);
  place-items: center;
  transition: color 160ms ease, background-color 160ms ease;
}

.social-links a:hover {
  color: var(--color-white);
  background: var(--color-black);
}

.social-icon {
  width: 1rem;
  height: 1rem;
  fill: currentcolor;
  stroke: currentcolor;
  stroke-width: 1.5;
}

.social-icon__dot {
  fill: currentcolor;
  stroke: none;
}

.footer-navigation li + li,
.footer-links li + li {
  margin-top: 0.6rem;
}

.footer-navigation a,
.footer-links a,
.site-footer__legal a {
  color: var(--color-black);
  font-size: 0.875rem;
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
}

.footer-navigation a:hover,
.footer-links a:hover,
.site-footer__legal a:hover {
  text-decoration-color: var(--color-green);
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgb(17 17 17 / 20%);
  color: var(--color-gray-700);
  font-size: 0.75rem;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

@media (min-width: 40rem) {
  .container {
    width: calc(100% - 2rem);
    max-width: 120rem;
  }

  .dealer-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer__legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .product-family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 48rem) {
  .home-intro__grid,
  .product-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-video__grid {
    width: min(calc(100% - 3rem), 73.75rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: center;
  }

  .home-video__copy {
    justify-items: center;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .product-presentation__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery__stage {
    min-height: 40.625rem;
  }

  .product-documentation__grid {
    grid-template-columns: minmax(0, 2fr) minmax(17rem, 1fr);
  }
}

@media (min-width: 64rem) {
  .site-header {
    height: 3.5rem;
    border: 0;
    color: var(--color-white);
    background: var(--color-green);
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 3.5rem;
  }

  .site-main {
    padding-top: 3.5rem;
  }

  .header-utilities { display: flex; }
  .official-primary-menu { overflow: visible; }

  .product-hotspots__visual > button { position: absolute; width: auto; padding: 0; border: 0; background: transparent; }
  .product-hotspots__visual > button > strong { display: none; }
  .product-hotspots__visual > button small { position: absolute; left: 2.5rem; z-index: 4; width: 22rem; max-width: none; padding: 1rem; background: #fff; box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 15%); }
  .product-hotspots__visual > button:nth-of-type(1) { left: 20%; top: 28%; }
  .product-hotspots__visual > button:nth-of-type(2) { left: 35%; top: 39%; }
  .product-hotspots__visual > button:nth-of-type(3) { left: 48%; top: 30%; }
  .product-hotspots__visual > button:nth-of-type(4) { left: 56%; top: 46%; }
  .product-hotspots__visual > button:nth-of-type(5) { left: 44%; top: 55%; }
  .product-hotspots__visual > button:nth-of-type(6) { left: 65%; top: 38%; }
  .product-hotspots__visual > button:nth-of-type(7) { left: 73%; top: 50%; }
  .product-hotspots__visual > button:nth-of-type(8) { left: 84%; top: 62%; }

  .site-brand--header {
    position: static;
  }

  .site-brand--header .site-brand__logo--desktop {
    display: block;
    width: 12.75rem;
    max-height: 2.5rem;
    object-fit: contain;
    object-position: left center;
  }

  .site-brand--header .site-brand__logo--mobile {
    display: none;
  }

  .main-navigation {
    justify-self: center;
  }

  .menu-toggle,
  .navigation-ready .menu-toggle {
    display: none;
  }

  .mobile-bottom-navigation {
    display: none;
  }

  .main-navigation .primary-menu,
  .navigation-ready .main-navigation .primary-menu {
    position: static;
    display: flex;
    width: auto;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .main-navigation .primary-menu,
  .navigation-ready .main-navigation .primary-menu {
    background: transparent;
  }

  .main-navigation a {
    position: relative;
    padding: 1.25rem 0.85rem;
  }

  .main-navigation a::after {
    position: absolute;
    right: 0.85rem;
    bottom: 0.8rem;
    left: 0.85rem;
    height: 3px;
    background: var(--color-green);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
  }

  .main-navigation a:hover::after,
  .main-navigation .current-menu-item > a::after {
    transform: scaleX(1);
  }

  .header-cta {
    display: inline-flex;
  }

  .main-navigation a {
    padding: 1rem;
    color: var(--color-white);
  }

  .main-navigation a:hover,
  .main-navigation .current-menu-item > a {
    color: var(--color-white);
  }

  .main-navigation a::after {
    right: 1rem;
    bottom: 0.45rem;
    left: 1rem;
    height: 2px;
    background: var(--color-white);
  }

  .header-cta {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 64rem) {
  .product-family-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 30rem) {
  .utility-bar p {
    display: none;
  }

  .utility-bar__inner {
    justify-content: flex-end;
  }

  .site-brand__logo {
    width: 8.5rem;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
