@import url("/static/index-CrT4qu5A.css");

/* Product detail first screen: concise construction or material highlights. */
.product-detail-template .product-highlight-system {
  width: 100%;
  margin-top: 30px;
}

.product-detail-template .product-highlight-grid {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-detail-template .product-highlight-grid.is-active {
  display: grid;
}

.product-detail-template .product-highlight-grid article {
  min-width: 0;
  min-height: 176px;
  padding: 21px 20px 19px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(6, 63, 49, 0.1);
  border-radius: 10px;
  background: #eef2f0;
  transition:
    border-color 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.product-detail-template .product-highlight-grid article:hover {
  border-color: rgba(6, 63, 49, 0.24);
  box-shadow: 0 16px 34px rgba(7, 45, 35, 0.08);
  transform: translateY(-4px);
}

.product-detail-template .product-highlight-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 63, 49, 0.45);
  border-radius: 50%;
  color: var(--green);
}

.product-detail-template .product-highlight-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.product-detail-template .product-highlight-grid article > span:not(.product-highlight-icon) {
  color: #65716c;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-detail-template .product-highlight-grid strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 560;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

@media (max-width: 520px) {
  .product-detail-template .product-highlight-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-detail-template .product-highlight-grid article {
    min-height: 156px;
  }
}

/* About banner: progressive video with the existing hero image as poster. */
.about-page .inner-hero > video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.08) brightness(0.79);
  pointer-events: none;
}

@media (max-width: 760px) {
  .about-page .inner-hero > video {
    object-position: 62% center;
  }
}

/* About page: three-scene Customized Services video carousel. */
.about-film-slides,
.about-film-slide {
  position: absolute;
  inset: 0;
}

.about-film-slide {
  visibility: hidden;
  opacity: 0;
  transform: scale(1.018);
  transition:
    opacity 0.85s ease,
    transform 1.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0s linear 0.85s;
}

.about-film-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}

.about-film-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-film-slide .about-film-copy > * {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-film-slide.is-active .about-film-copy > * {
  opacity: 1;
  transform: translateZ(0);
}

.about-film-slide.is-active .about-film-copy > span {
  transition-delay: 0.2s;
}

.about-film-slide.is-active .about-film-copy > h2 {
  transition-delay: 0.32s;
}

.about-film-slide.is-active .about-film-copy > p {
  transition-delay: 0.44s;
}

.about-film-controls {
  position: absolute;
  z-index: 4;
  right: auto;
  left: var(--gutter);
  bottom: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-film-controls > button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-film-controls > button:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.about-film-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline: 4px;
}

.about-film-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.35s ease, background-color 0.35s ease;
}

.about-film-dots button.is-active {
  width: 28px;
  background: #fff;
}

.about-film-count {
  min-width: 58px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.about-film-count b {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 760px) {
  .about-film-slide video {
    object-position: 57% center;
  }

  .about-film-controls {
    right: auto;
    bottom: 48px;
    left: 22px;
    justify-content: flex-start;
  }

  .about-film-controls > button {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-film-slide,
  .about-film-slide .about-film-copy > * {
    transform: none;
    transition: none;
  }
}

/* Solutions page: give the opening development image more vertical presence. */
.native-inner-rich #development-process .inner-intro-copy figure {
  height: clamp(310px, 22vw, 390px);
}

.native-inner-rich #development-process .inner-intro-copy figure video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  filter: saturate(0.55) contrast(1.05);
  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.24s ease;
}

.native-inner-rich #development-process .inner-intro-copy:hover figure video {
  transform: scale(1.035);
  filter: saturate(0.7) contrast(1.04);
}

@media (max-width: 760px) {
  .native-inner-rich #development-process .inner-intro-copy figure {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .native-inner-rich #development-process .inner-intro-copy figure video {
    transform: none;
    transition: none;
  }
}

/* Solutions page: distinct line icons for the four development steps. */
.solution-workflow article {
  position: relative;
}

.solution-workflow .solution-workflow-icon-wrap {
  width: 76px;
  height: 76px;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(6, 63, 49, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.96), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(6, 63, 49, 0.08));
  box-shadow:
    0 14px 32px rgba(6, 63, 49, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    background-color 0.4s ease,
    box-shadow 0.4s ease;
}

.solution-workflow .solution-workflow-icon-wrap::after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: -9px;
  right: -8px;
  border: 1px solid rgba(6, 63, 49, 0.13);
  border-radius: 50%;
}

.solution-workflow .solution-workflow-icon {
  width: 39px;
  height: 39px;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--green);
  transition:
    color 0.35s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .solution-workflow article:hover .solution-workflow-icon-wrap {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 18px 38px rgba(6, 63, 49, 0.18);
    transform: translateY(-5px);
  }

  .solution-workflow article:hover .solution-workflow-icon {
    color: #fff;
    transform: scale(1.06);
  }

  .solution-workflow article:hover .solution-workflow-icon-wrap::after {
    border-color: rgba(255, 255, 255, 0.28);
  }
}

.solution-workflow .solution-workflow-number {
  position: static;
  display: block;
  margin-top: 18px;
  color: color-mix(in srgb, var(--green) 52%, transparent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}

.solution-workflow .solution-workflow-number + h3 {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .solution-workflow article,
  .solution-workflow article:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .solution-workflow article > svg {
    margin-top: 0;
  }

  .solution-workflow .solution-workflow-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .solution-workflow .solution-workflow-icon {
    width: 35px;
    height: 35px;
  }

  .solution-workflow .solution-workflow-number {
    margin-top: 14px;
  }

  .solution-workflow .solution-workflow-number + h3 {
    margin-top: 10px;
  }

  .solution-workflow p {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-workflow .solution-workflow-icon-wrap,
  .solution-workflow .solution-workflow-icon {
    transition: none;
  }
}

/* Solutions page: full-width production reference band and image carousel. */
.native-inner-rich .process-photo-essay {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 88px 0px;
  background: var(--paper);
}

.native-inner-rich .process-reference-note {
  background: transparent;
  color: var(--ink);
}

.native-inner-rich .process-reference-note > p {
  color: var(--muted);
}

.native-inner-rich .process-reference-note > div span {
  color: var(--green);
}

.native-inner-rich .process-reference-note > div span::before {
  background: var(--green);
}

.process-photo-carousel {
  min-width: 0;
}

.process-photo-viewport {
  height: clamp(320px, 29vw, 430px);
  overflow: hidden;
  background: transparent;
}

.process-photo-track {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 16px;
  transform: translate3d(0, 0, 0);
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.process-photo-track.is-jumping {
  transition: none;
}

.process-photo-slide {
  height: 100%;
  min-width: 0;
  flex: 0 0 calc(33.333333% - 10.6667px);
  position: relative;
  overflow: hidden;
  background: #d4d6d1;
}

.process-photo-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.64) contrast(1.04);
  transform: scale(1.035);
  transition:
    transform 5.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.45s ease;
}

.process-photo-slide.is-active img {
  transform: scale(1);
  filter: saturate(0.76) contrast(1.03);
}

.process-photo-slide::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(0deg, rgba(5, 19, 14, 0.56), transparent);
  pointer-events: none;
}

.process-photo-slide figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 3vw, 46px);
  bottom: clamp(24px, 3vw, 42px);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.process-photo-controls {
  min-height: 48px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.process-photo-arrows {
  display: flex;
  gap: 10px;
}

.process-photo-arrows button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 63, 49, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  color: var(--green);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.process-photo-arrows button:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.process-photo-arrows svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-photo-dots {
  display: flex;
  align-items: center;
  gap: 11px;
}

.process-photo-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 63, 49, 0.24);
  cursor: pointer;
  transition:
    width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease;
}

.process-photo-dots button.is-active {
  width: 32px;
  background: var(--green);
}

.process-photo-arrows button:focus-visible,
.process-photo-dots button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .native-inner-rich .process-photo-essay {
    padding: 90px 0 105px;
  }

  .process-photo-viewport {
    height: clamp(350px, 82vw, 470px);
  }

  .process-photo-track {
    gap: 14px;
  }

  .process-photo-slide {
    flex-basis: 100%;
  }

  .process-photo-slide figcaption {
    left: 18px;
    bottom: 18px;
  }

  .process-photo-controls {
    margin-top: 20px;
  }

  .process-photo-arrows button {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-photo-track,
  .process-photo-slide img,
  .process-photo-arrows button,
  .process-photo-dots button {
    transition: none;
  }
}

/* About page: split introduction and company data */
.about-split-hero {
  min-height: min(88svh, 900px);
  padding-top:80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(58px, 7vw, 124px);
  align-items: center;
}

.about-split-copy {
  max-width: 760px;
}

.about-split-copy h2 {
  max-width: 760px;
  margin-top: 27px;
  color: var(--ink);
  font-size: var(--type-section);
  font-weight: 550;
  line-height: 1.01;
  letter-spacing: -0.054em;
  text-wrap: balance;
}

.about-split-intro {
  max-width: 650px;
  margin-top: clamp(34px, 4vh, 52px);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-split-note {
  max-width: 620px;
  margin-top: 21px;
  color: var(--green);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.6;
}

.about-split-media {
  min-width: 0;
  height: min(70vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: #d6d9d4;
}

.about-page .about-split-media.motion-media:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 58px, 0) scale(0.985);
}

.about-page .about-split-media.motion-media.is-visible {
  animation-name: about-split-media-reveal-up;
  animation-duration: 1.85s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 180ms;
  animation-fill-mode: both;
}

.about-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .about-split-media.motion-media:not(.is-visible) img {
  transform: scale(1.06);
}

.about-page .about-split-media.motion-media.is-visible img {
  transform: scale(1);
}

@keyframes about-split-media-reveal-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 58px, 0) scale(0.985);
    clip-path: inset(100% 0 0 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
    clip-path: inset(0);
  }
}

@media (hover: hover) {
  .about-page .about-split-media.motion-media.is-visible:hover img {
  transform: scale(1.025);
  }
}

.about-numbers {
  padding-top: clamp(105px, 12vw, 176px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.about-numbers-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(55px, 8vw, 138px);
  align-items: end;
}

.about-numbers-heading h2 {
  max-width: 820px;
  margin-top: 27px;
  font-size: clamp(50px, 5.2vw, 88px);
  font-weight: 540;
  line-height: 0.98;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.about-numbers-heading > p {
  max-width: 610px;
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-number-grid {
  margin-top: clamp(62px, 7vw, 104px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-number-grid article {
  min-height: 300px;
  padding: clamp(30px, 3vw, 48px);
  border: 1px solid rgba(18, 63, 53, 0.18);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.22);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.4s ease,
    border-color 0.4s ease;
}

.about-number-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(18, 63, 53, 0.4);
  background: #e7ece6;
}

.about-number-grid strong {
  color: var(--ink);
  font-size: clamp(50px, 4.4vw, 76px);
  font-weight: 470;
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.about-number-grid strong span {
  font-size: 0.68em;
  letter-spacing: -0.03em;
}

.about-number-grid strong small {
  margin-left: 4px;
  font-size: 0.25em;
  font-weight: 620;
  letter-spacing: 0;
}

.about-number-grid p {
  margin-top: 23px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.about-principles.about-production-bases {
  padding-top: 60px;
  padding-bottom: 0;
  display: block;
}

.about-bases-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
}

.about-bases-head h2 {
  max-width: 940px;
  margin-top: 27px;
  color: var(--ink);
  font-size: var(--type-section);
  font-weight: 550;
  line-height: 1.01;
  letter-spacing: -0.054em;
  text-wrap: balance;
}

.about-bases-head > p {
  max-width: 620px;
  margin: 0;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-bases-grid {
  margin-top: clamp(62px, 7vw, 105px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-production-bases .about-bases-grid article,
.about-production-bases .about-bases-grid article:nth-child(2),
.about-production-bases .about-bases-grid article:nth-child(3) {
  min-height: 430px;
  margin: 0;
  padding: clamp(42px, 4.5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e5ebe5;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.4s ease;
}

.about-production-bases .about-bases-grid article:nth-child(2) {
  background: var(--deep-green);
  color: #fff;
}

.about-production-bases .about-bases-grid article:hover {
  transform: translateY(-6px);
  background: #dbe5dc;
}

.about-production-bases .about-bases-grid article:nth-child(2):hover {
  background: #074538;
}

.about-production-bases .about-bases-grid span {
color: var(--green);
    font-size: 24px;
    font-weight: 740;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-production-bases .about-bases-grid article:nth-child(2) span {
  color: #b7d0c5;
}

.about-production-bases .about-bases-grid p {
  max-width: 670px;
  margin: clamp(70px, 10vw, 150px) 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.62;
}

.about-production-bases .about-bases-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.78);
}

.about-page .buyers.content-width {
  width: 100%;
  max-width: none;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  box-sizing: border-box;
  background: var(--ivory);
}

.about-page .about-media-grid figure.motion-media.is-visible {
  animation-name: about-media-reveal-up;
  animation-duration: 1.65s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: var(--motion-delay, 0ms);
  animation-fill-mode: both;
}

.about-page .about-media-grid figure img {
  transform: scale(1.055);
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
}

.about-page .about-media-grid figure.motion-media.is-visible img {
  transform: scale(1);
}

@media (hover: hover) {
  .about-page .about-media-grid figure.motion-media.is-visible:hover img {
    transform: scale(1.025);
  }
}

@keyframes about-media-reveal-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 52px, 0) scale(0.985);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
    clip-path: inset(0);
  }
}

.about-media-carousel {
  padding-top: clamp(54px, 5vw, 82px);
  padding-bottom: clamp(86px, 8vw, 132px);
  overflow: hidden;
}

.about-media-viewport {
  overflow: hidden;
}

.about-media-track {
  --about-media-gap: clamp(14px, 1.25vw, 22px);
  display: flex;
  gap: var(--about-media-gap);
  transform: translate3d(0, 0, 0);
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.about-media-card {
  min-width: 0;
  flex: 0 0 calc((100% - (var(--about-media-gap) * 2)) / 3);
  aspect-ratio: 1.36 / 1;
  margin: 0;
  overflow: hidden;
  background: #d9ded9;
}

.about-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-media-controls {
  min-height: 52px;
  margin-top: clamp(22px, 2.4vw, 34px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 2.4vw, 36px);
  align-items: center;
}

.about-media-navigation {
  display: flex;
  gap: 10px;
}

.about-media-navigation button {
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 63, 49, 0.24);
  border-radius: 50%;
  color: var(--deep-green);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.about-media-navigation button:hover {
  border-color: var(--deep-green);
  color: #fff;
  background: var(--deep-green);
  transform: translateY(-2px);
}

.about-media-navigation svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-media-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.about-media-pagination button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 63, 49, 0.22);
  cursor: pointer;
  transition:
    width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s ease;
}

.about-media-pagination button.is-active {
  width: 30px;
  background: var(--green);
}

.about-media-counter {
  min-width: 64px;
  display: flex;
  gap: 6px;
  align-items: baseline;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.about-media-counter b {
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

@media (hover: hover) {
  .about-media-card:hover img {
    transform: scale(1.045);
  }
}

@media (max-width: 1023px) {
  .about-media-card {
    flex-basis: calc((100% - var(--about-media-gap)) / 2);
  }
}

@media (max-width: 699px) {
  .about-media-carousel {
    padding-top: 40px;
    padding-bottom: 76px;
  }

  .about-media-card {
    flex-basis: 100%;
    aspect-ratio: 1.28 / 1;
  }

  .about-media-controls {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .about-media-navigation button {
    width: 44px;
    height: 44px;
  }

  .about-media-pagination {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-media-track,
  .about-media-card img,
  .about-media-navigation button,
  .about-media-pagination button {
    transition: none;
  }
}

.about-global-markets {
  min-height: 100svh;
  padding-top: clamp(82px, 7vw, 110px);
  padding-bottom: clamp(82px, 7vw, 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--deep-green);
  background-image:
    linear-gradient(90deg, rgb(2 28 22 / 0%) 0%, rgb(2 28 22 / 0%) 48%, rgba(2, 28, 22, 0.58) 100%), linear-gradient(180deg, rgba(2, 24, 20, 0.08), rgba(2, 24, 20, 0.25)), url(/static/about-global-markets.webp?v=20260818);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.about-global-markets-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.about-market-intro {
  max-width: 720px;
}

.about-market-intro h2 {
  max-width: 680px;
  margin-top: 27px;
  color: #fff;
  font-size: var(--type-section);
  font-weight: 550;
  line-height: 1.01;
  letter-spacing: -0.054em;
  text-wrap: balance;
}

.about-market-intro > p:not(.section-label) {
  max-width: 660px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
  line-height: 1.75;
}

.about-market-intro > p:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 620;
}

.about-market-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-market-stat,
.about-market-split {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.about-market-stat {
  min-height: 225px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.4s ease,
    border-color 0.4s ease;
}

.about-market-stat.is-wide {
  grid-column: 1 / -1;
  min-height: 195px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
}

.about-market-stat.is-wide p {
  max-width: 260px;
  margin-top: 0;
  justify-self: end;
}

.about-market-stat:hover,
.about-market-split:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.09);
}

.about-market-data strong {
  color: #fff;
  font-size: clamp(52px, 4.5vw, 78px);
  font-weight: 470;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.about-market-data strong span {
  font-size: 0.58em;
}

.about-market-data p {
  max-width: 280px;
  margin-top: 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.45;
}

.about-market-split {
  grid-column: 1 / -1;
  padding: clamp(28px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease;
}

.about-market-split article + article {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.about-market-stat:nth-child(1) {
  --motion-delay: 100ms;
}

.about-market-stat:nth-child(2) {
  --motion-delay: 230ms;
}

.about-market-stat:nth-child(3) {
  --motion-delay: 360ms;
}

.about-market-split {
  --motion-delay: 490ms;
}

.about-page .buyers.sustainability-partnerships {
  min-height: 100svh;
  padding-top: 0;
  padding-bottom: 0;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  background: var(--ivory);
}

.sustainability-heading {
  max-width: 780px;
}

.sustainability-heading h2 {
  max-width: 760px;
  margin-top: 27px;
  color: var(--ink);
  font-size: var(--type-section);
  font-weight: 550;
  line-height: 1.01;
  letter-spacing: -0.054em;
  text-wrap: balance;
}

.sustainability-heading > p:last-child {
  max-width: 740px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.sustainability-media {
  min-width: 0;
  height: min(70vh, 720px);
  min-height: 560px;
  overflow: hidden;
  background: #d6d9d4;
}

.about-page .sustainability-media.motion-media.is-visible {
  animation-name: sustainability-media-reveal-up;
  animation-duration: 1.85s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 180ms;
  animation-fill-mode: both;
}

.sustainability-media img,
.sustainability-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
  transition:
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
}

.sustainability-media video {
  pointer-events: none;
}

.about-page .sustainability-media.motion-media:not(.is-visible) img,
.about-page .sustainability-media.motion-media:not(.is-visible) video {
  transform: scale(1.06);
}

.about-page .sustainability-media.motion-media.is-visible img,
.about-page .sustainability-media.motion-media.is-visible video {
  transform: scale(1);
}

@keyframes sustainability-media-reveal-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 58px, 0) scale(0.985);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
    clip-path: inset(0);
  }
}

@media (hover: hover) {
  .sustainability-media.motion-media.is-visible:hover img,
  .sustainability-media.motion-media.is-visible:hover video {
    transform: scale(1.025);
    filter: saturate(0.82) contrast(1.03);
  }
}

@media (max-width: 1100px) {
  .about-split-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
  }

  .about-split-media {
    min-height: 500px;
  }

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

  .about-bases-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .about-production-bases .about-bases-grid article,
  .about-production-bases .about-bases-grid article:nth-child(2) {
    min-height: 360px;
  }

  .about-global-markets-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about-market-intro {
    max-width: 820px;
  }

  .about-page .buyers.sustainability-partnerships {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .sustainability-heading {
    max-width: 900px;
  }
}

@media (max-width: 760px) {
  .about-split-hero {
    min-height: 0;
    padding-top: 86px;
    padding-bottom: 76px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-split-copy h2 {
    margin-top: 22px;
    font-size: 44px;
  }

  .about-split-intro {
    margin-top: 30px;
    font-size: 16px;
  }

  .about-split-media {
    height: 105vw;
    min-height: 0;
    max-height: 590px;
  }

  .about-numbers-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-numbers-heading h2 {
    font-size: clamp(44px, 12.5vw, 62px);
  }

  .about-numbers-heading > p {
    font-size: 16px;
  }

  .about-number-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-number-grid article {
    min-height: 220px;
  }

  .about-bases-head h2 {
    font-size: 44px;
  }

  .about-bases-head > p {
    font-size: 16px;
  }

  .about-production-bases .about-bases-grid article,
  .about-production-bases .about-bases-grid article:nth-child(2) {
    min-height: 330px;
    padding: 34px 28px;
  }

  .about-production-bases .about-bases-grid p {
    margin-top: 70px;
    font-size: 18px;
  }

  .about-global-markets {
    min-height: 0;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .about-global-markets-layout {
    gap: 48px;
  }

  .about-market-intro h2 {
    font-size: 44px;
  }

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

  .about-market-stat,
  .about-market-stat.is-wide {
    grid-column: auto;
    min-height: 190px;
  }

  .about-market-stat.is-wide {
    display: flex;
    gap: 0;
    align-items: flex-start;
  }

  .about-market-stat.is-wide p {
    margin-top: 21px;
    justify-self: auto;
  }

  .about-market-split {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .about-market-split article + article {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .about-page .buyers.sustainability-partnerships {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .sustainability-heading h2 {
    font-size: 44px;
  }

  .sustainability-media {
    height: 105vw;
    min-height: 0;
    max-height: 560px;
  }
}

/* Full-screen product explorer */
.legacy-products-dropdown {
  display: none;
}

.capabilities-dropdown-removed {
  display: none !important;
}

.header-products-menu {
  position: relative;
}

.header-products-menu.is-open::after {
  content: "";
  position: absolute;
  z-index: 121;
  top: 100%;
  right: -24px;
  left: -24px;
  height: 44px;
}

.products-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.products-menu-trigger-mark {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.35s ease;
}

.products-menu-trigger[aria-expanded="true"] .products-menu-trigger-mark {
  transform: translateY(2px) rotate(225deg);
}

.products-mega-menu {
  position: fixed;
  z-index: 120;
  top: 108px;
  right: 0;
  left: 0;
  max-height: calc(100vh - 108px);
  padding-top: 0;
  overflow: hidden;
  background: #f3f3ef;
  color: #123f35;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-24px);
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.48s,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-products-menu.is-open .products-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header:has(.header-products-menu.is-open) {
  z-index: 140;
  background: rgba(243, 243, 239, 0.96);
  box-shadow: 0 1px 0 rgba(18, 63, 53, 0.12);
  color: #123f35;
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-header:has(.header-products-menu.is-open) .brand-logo-light {
  display: none;
}

.site-header:has(.header-products-menu.is-open) .brand-logo-dark {
  display: block;
}

.site-header:has(.header-products-menu.is-open) > .brand-link,
.site-header:has(.header-products-menu.is-open) .desktop-nav > a,
.site-header:has(.header-products-menu.is-open) .desktop-nav > details,
.site-header:has(.header-products-menu.is-open) .products-menu-trigger {
  position: relative;
  z-index: 125;
}

.products-mega-layout {
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) minmax(270px, 1.15fr) minmax(220px, 0.9fr) minmax(340px, 1.3fr);
  width: 100%;
  height: auto;
  min-height: 0;
}

.products-mega-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: clamp(54px, 7vh, 88px) clamp(28px, 4vw, 72px);
  color: #123f35;
  font-family: inherit;
  font-size: clamp(38px, 3.6vw, 62px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.products-mega-categories {
  padding: clamp(52px, 7vh, 86px) clamp(24px, 3.8vw, 64px) 48px 0;
}

.products-mega-categories button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 63, 53, 0.18);
  background: transparent;
  color: rgba(18, 63, 53, 0.48);
  font: inherit;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.28s ease, padding-left 0.28s ease;
}

.products-mega-categories button:hover,
.products-mega-categories button.is-active {
  padding-left: 8px;
  color: #123f35;
}

.products-mega-categories button.is-active > span:last-child {
  transform: translateX(4px);
}

.products-mega-subcategories {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7.5vh, 92px) clamp(24px, 3.6vw, 58px);
  background: #e8ebe5;
}

.products-mega-subpanel {
  position: absolute;
  top: clamp(56px, 7.5vh, 92px);
  right: clamp(24px, 3.6vw, 58px);
  left: clamp(24px, 3.6vw, 58px);
  display: flex;
  flex-direction: column;
  gap: 23px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(56px);
  transition:
    opacity 0.36s ease,
    visibility 0.36s,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.products-mega-subpanel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.products-mega-subpanel a {
  width: fit-content;
  max-width: 100%;
  color: #123f35;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.35;
  text-decoration: none;
  background-image: linear-gradient(#16745e, #16745e);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  opacity: 0;
  transform: translateX(22px);
  transition:
    color 0.3s ease,
    background-size 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-nav .products-mega-subpanel a::after {
  display: none;
}

.products-mega-subpanel.is-active a {
  animation: mega-subitem-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.products-mega-subpanel.is-active a:nth-child(2) { animation-delay: 45ms; }
.products-mega-subpanel.is-active a:nth-child(3) { animation-delay: 90ms; }
.products-mega-subpanel.is-active a:nth-child(4) { animation-delay: 135ms; }
.products-mega-subpanel.is-active a:nth-child(5) { animation-delay: 180ms; }
.products-mega-subpanel.is-active a:nth-child(6) { animation-delay: 225ms; }

.products-mega-subpanel a:hover {
  color: #16745e;
  text-decoration: none;
  background-size: 100% 1px;
}

.products-mega-visuals {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #123f35;
}

.products-mega-visuals .products-mega-visual {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateX(9%);
  transition:
    opacity 0.45s ease,
    visibility 0.45s,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.products-mega-visuals .products-mega-visual.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.products-mega-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 24, 18, 0.72));
}

.products-mega-visuals .products-mega-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.products-mega-visuals .products-mega-visual.is-active img {
  transform: scale(1);
}

.products-mega-visual > span {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 3.5vw, 60px);
  bottom: clamp(42px, 7vh, 82px);
  left: clamp(28px, 3.5vw, 60px);
  color: #fff;
  font-size: clamp(32px, 3.1vw, 56px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

body.products-menu-open {
  overflow: auto;
}

@keyframes mega-subitem-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1200px) and (min-width: 981px) {
  .products-mega-layout {
    grid-template-columns: 0.9fr 1.05fr 0.8fr 1.3fr;
  }

  .products-mega-title {
    padding-left: 28px;
    font-size: 42px;
  }
}

@media (max-width: 980px) {
  .header-products-menu {
    display: none;
  }

  .legacy-products-dropdown {
    display: none;
  }
}

/* Shared EyouCMS inner-page system */
.native-eyou-inner {
  background: #f3f3ef;
  color: #123f35;
}

.native-eyou-inner .site-header {
  position: fixed;
  z-index: 140;
  background: rgba(243, 243, 239, 0.9);
  color: #123f35;
  box-shadow: 0 1px 0 rgba(18, 63, 53, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.native-eyou-home.native-eyou-inner .brand-logo-light {
  display: none;
}

.native-eyou-home.native-eyou-inner .brand-logo-dark {
  display: block;
}

.native-eyou-inner main {
  padding-top: 108px;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: calc(100vh - 108px);
  background: #e9ece6;
}

.inner-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(70px, 9vw, 150px) clamp(32px, 6vw, 104px);
}

.inner-eyebrow {
  margin: 0 0 26px;
  color: #70827b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inner-hero h1,
.inner-section-heading h2,
.inner-request h2,
.inner-detail-header h1,
.product-detail-copy h1 {
  margin: 0;
  color: #123f35;
  font-family: var(--font-display, inherit);
  font-size: clamp(54px, 6.4vw, 110px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.inner-hero-copy > p:last-child {
  max-width: 620px;
  margin: 36px 0 0;
  color: #425d55;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.65;
}

.inner-hero-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: inner-image-enter 1.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.inner-hero--compact {
  min-height: min(720px, calc(100vh - 108px));
}

.inner-hero--compact .inner-hero-copy {
  justify-content: center;
}

.inner-hero--product .inner-hero-media img {
  object-position: 58% center;
}

.inner-breadcrumb {
  color: #71847d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.inner-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.inner-content-section,
.inner-list-section,
.inner-detail,
.product-detail-page,
.contact-details,
.inner-request {
  padding: clamp(70px, 9vw, 150px) clamp(28px, 6vw, 104px);
}

.inner-content-section .inner-breadcrumb,
.inner-list-section > .inner-breadcrumb,
.product-detail-page > .inner-breadcrumb {
  margin-bottom: clamp(42px, 6vw, 90px);
}

.cms-content {
  max-width: 1080px;
  margin-left: auto;
  color: #294d43;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.85;
}

.cms-content > :first-child {
  margin-top: 0;
}

.cms-content h1,
.cms-content h2,
.cms-content h3,
.cms-content h4 {
  margin: 1.5em 0 0.55em;
  color: #123f35;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.cms-content h2 {
  font-size: clamp(36px, 4vw, 68px);
}

.cms-content h3 {
  font-size: clamp(28px, 2.6vw, 44px);
}

.cms-content img,
.cms-content video,
.cms-content iframe {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
}

.cms-content a {
  color: #0c6c55;
  text-underline-offset: 4px;
}

.cms-content table {
  width: 100%;
  border-collapse: collapse;
}

.cms-content th,
.cms-content td {
  padding: 15px;
  border: 1px solid rgba(18, 63, 53, 0.18);
  text-align: left;
}

.inner-list-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(50px, 7vw, 100px);
}

.inner-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 900px;
}

.inner-category-nav a {
  padding: 11px 18px;
  border: 1px solid rgba(18, 63, 53, 0.18);
  border-radius: 999px;
  color: #49665d;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.inner-category-nav a:hover,
.inner-category-nav a.is-active {
  border-color: #123f35;
  background: #123f35;
  color: #fff;
}

.article-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 8vw, 120px) clamp(28px, 5vw, 84px);
}

.article-list-card {
  min-width: 0;
}

.article-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce1db;
}

.article-card-media img,
.inner-product-media img,
.inner-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-list-card:hover .article-card-media img,
.inner-product-card:hover .inner-product-media img,
.inner-case-card:hover img {
  transform: scale(1.045);
}

.article-card-copy {
  padding-top: 28px;
}

.article-card-meta,
.inner-detail-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 22px;
  color: #71847d;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card-copy h2,
.inner-product-card h2 {
  margin: 0;
  font-size: clamp(27px, 2.5vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-card-copy h2 a,
.inner-product-card h2 a {
  color: #123f35;
  text-decoration: none;
}

.article-card-copy > p:not(.article-card-meta) {
  max-width: 680px;
  margin: 20px 0 0;
  color: #5b7069;
  line-height: 1.7;
}

.inner-text-link {
  display: inline-flex;
  gap: 28px;
  margin-top: 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: #123f35;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.inner-product-grid,
.inner-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 88px) clamp(20px, 3vw, 48px);
}

.inner-product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dce1db;
}

.inner-product-media > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(243, 243, 239, 0.84);
  color: #123f35;
  font-size: 12px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.inner-product-card:hover .inner-product-media > span {
  opacity: 1;
  transform: translateY(0);
}

.inner-product-card > div {
  padding-top: 23px;
}

.inner-product-card > div > p {
  margin: 0 0 10px;
  color: #71847d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inner-case-card {
  overflow: hidden;
}

.inner-case-card > a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: #fff;
}

.inner-case-card > a::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 25, 18, 0.8));
}

.inner-case-card a > span {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 28px;
  left: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
}

.inner-case-card small {
  grid-column: 1 / -1;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inner-case-card strong {
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.inner-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(70px, 9vw, 130px);
}

.inner-pagination a,
.inner-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin: 3px;
  border: 1px solid rgba(18, 63, 53, 0.18);
  color: #123f35;
  text-decoration: none;
}

.inner-pagination .active,
.inner-pagination a:hover {
  border-color: #123f35;
  background: #123f35;
  color: #fff;
}

.inner-pagination li {
  list-style: none;
}

.inner-pagination li.active > a {
  border-color: #123f35;
  background: #123f35;
  color: #fff;
}

.catalog-pagination {
  margin-top: clamp(48px, 6vw, 86px);
  padding: 0;
  list-style: none;
}

.catalog-pagination[hidden] {
  display: none !important;
}

/* EyouCMS outputs a page/record summary even when a catalogue has no page links. */
.catalog-pagination:not(:has(a[href])) {
  display: none;
}

.download-list {
  border-top: 1px solid rgba(18, 63, 53, 0.18);
}

.download-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(18, 63, 53, 0.18);
  color: #123f35;
  text-decoration: none;
  transition: padding 0.35s ease, background 0.35s ease;
}

.download-list-row:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: #e8ebe5;
}

.download-list-row span {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 70px);
}

.download-list-row small {
  color: #71847d;
  font-size: 12px;
}

.download-list-row strong {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 500;
}

.download-list-row b {
  font-size: 12px;
}

.inner-detail-header {
  max-width: 1220px;
  margin: 0 auto clamp(60px, 8vw, 120px);
  text-align: center;
}

.inner-detail-header .inner-breadcrumb {
  margin-bottom: 55px;
}

.inner-detail-meta {
  justify-content: center;
}

.inner-detail-header h1 {
  font-size: clamp(50px, 7vw, 116px);
}

.inner-detail-intro {
  max-width: 760px;
  margin: 40px auto 0;
  color: #526a62;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
}

.inner-detail-cover {
  width: min(100%, 1500px);
  max-height: 860px;
  margin: 0 auto clamp(70px, 9vw, 140px);
  overflow: hidden;
}

.inner-detail-cover img {
  width: 100%;
  height: 100%;
  max-height: 860px;
  object-fit: cover;
}

.inner-detail-layout,
.product-detail-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 8vw, 150px);
  max-width: 1280px;
  margin: 0 auto;
}

.inner-detail-aside {
  padding-top: 8px;
  border-top: 1px solid rgba(18, 63, 53, 0.28);
}

.inner-detail-aside span {
  color: #71847d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inner-detail-aside p {
  margin: 12px 0 0;
}

.cms-content--article {
  max-width: 850px;
  margin: 0;
}

.inner-prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1280px;
  margin: clamp(80px, 10vw, 160px) auto 0;
  background: rgba(18, 63, 53, 0.16);
}

.inner-prev-next > a,
.inner-prev-next > span {
  min-height: 150px;
  padding: 32px;
  background: #e9ece6;
  color: #123f35;
  text-decoration: none;
}

.inner-prev-next a span {
  display: block;
  margin-bottom: 18px;
  color: #71847d;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inner-prev-next a strong {
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 500;
}

.product-detail-page {
  padding-top: clamp(50px, 6vw, 90px);
}

.product-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
}

.product-detail-main-image {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #dde2dc;
}

.product-detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.product-detail-main-image img.is-switching {
  opacity: 0;
}

.product-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-detail-thumbs button {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #dde2dc;
  cursor: pointer;
}

.product-detail-thumbs button:hover,
.product-detail-thumbs button.is-active {
  border-color: #123f35;
}

.product-detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-copy {
  position: sticky;
  top: 150px;
  padding-top: 24px;
}

.product-detail-copy h1 {
  font-size: clamp(48px, 5.4vw, 92px);
}

.product-detail-lead {
  margin: 34px 0 0;
  color: #526a62;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.product-detail-quote {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding: 19px 22px;
  background: #123f35;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.product-detail-content {
  margin-top: clamp(90px, 12vw, 190px);
}

.inner-section-heading h2,
.inner-request h2 {
  font-size: clamp(44px, 5vw, 82px);
}

.inner-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 46px);
  max-width: 1500px;
  margin: 0 auto clamp(90px, 11vw, 170px);
}

.inner-gallery-grid figure {
  margin: 0;
}

.inner-gallery-grid img {
  width: 100%;
  height: auto;
}

.inner-gallery-grid figcaption {
  padding-top: 12px;
  color: #71847d;
  font-size: 12px;
}

.resource-downloads {
  margin-top: 50px;
  border-top: 1px solid rgba(18, 63, 53, 0.2);
}

.resource-downloads a {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid rgba(18, 63, 53, 0.2);
  color: #123f35;
  text-decoration: none;
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 160px);
}

.contact-detail-grid {
  border-top: 1px solid rgba(18, 63, 53, 0.2);
}

.contact-detail-grid article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(18, 63, 53, 0.2);
}

.contact-detail-grid article > span {
  color: #71847d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail-grid p {
  margin: 0;
  line-height: 1.65;
}

.contact-detail-grid a {
  color: inherit;
  text-decoration: none;
}

.inner-request {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(50px, 10vw, 180px);
  background: #123f35;
  color: #fff;
}

.inner-request .inner-eyebrow,
.inner-request-copy > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.inner-request h2 {
  color: #fff;
}

.inner-request-copy > p:last-child {
  max-width: 540px;
  margin: 34px 0 0;
  line-height: 1.7;
}

.inner-cms-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
}

.inner-cms-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inner-cms-form label > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inner-cms-form input,
.inner-cms-form select,
.inner-cms-form textarea {
  width: 100%;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.inner-cms-form select option {
  color: #123f35;
}

.inner-cms-form input::placeholder,
.inner-cms-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.inner-cms-form input:focus,
.inner-cms-form select:focus,
.inner-cms-form textarea:focus {
  border-color: #fff;
}

.inner-form-message {
  grid-column: 1 / -1;
}

.inner-form-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

@keyframes inner-image-enter {
  from {
    clip-path: inset(100% 0 0);
    transform: scale(1.05);
  }
  to {
    clip-path: inset(0);
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .native-eyou-inner main {
    padding-top: 82px;
  }

  .inner-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .inner-hero-copy {
    min-height: auto;
    padding: 90px 24px 60px;
  }

  .inner-hero-media {
    aspect-ratio: 4 / 3;
  }

  .inner-content-section,
  .inner-list-section,
  .inner-detail,
  .product-detail-page,
  .contact-details,
  .inner-request {
    padding: 70px 24px;
  }

  .inner-list-toolbar,
  .contact-details,
  .inner-request,
  .product-detail-intro,
  .product-detail-content,
  .inner-detail-layout {
    grid-template-columns: 1fr;
  }

  .inner-list-toolbar {
    display: grid;
  }

  .inner-category-nav {
    justify-content: flex-start;
  }

  .article-list-grid,
  .inner-gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .product-detail-copy {
    position: static;
  }

  .inner-detail-aside {
    display: none;
  }
}

@media (max-width: 640px) {
  .inner-hero h1,
  .inner-detail-header h1,
  .product-detail-copy h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .inner-product-grid,
  .inner-case-grid,
  .inner-cms-form,
  .inner-prev-next {
    grid-template-columns: 1fr;
  }

  .inner-form-message,
  .inner-form-submit {
    grid-column: auto;
  }

  .download-list-row,
  .download-list-row span {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-detail-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Native EyouCMS template additions. The visual system is retained from the
   approved Hengyuan frontend, while all behaviour now runs without React. */
.native-eyou-home .brand-logo-dark {
  display: none;
}
.native-eyou-home .header-dropdown summary > span,
.native-eyou-home .header-dropdown-panel a > span,
.native-eyou-home .line-link > span,
.native-eyou-home .product-index button > span:last-child,
.native-eyou-home .factory-index button > span:last-child {
  flex: none;
}
.native-eyou-home .menu-toggle {
  padding: 0;
  border: 0;
  background: transparent;
}
.native-eyou-home .menu-toggle > span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.native-eyou-home .menu-is-open .menu-toggle > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.native-eyou-home .menu-is-open .menu-toggle > span:nth-child(2) {
  opacity: 0;
}
.native-eyou-home .menu-is-open .menu-toggle > span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.native-eyou-home .mobile-dropdown summary {
  cursor: pointer;
}
.native-eyou-home .mobile-dropdown summary::marker {
  display: none;
  content: "";
}

@media (min-width: 981px) {
  .desktop-nav {
    gap: clamp(26px, 2.2vw, 40px);
  }

  .header-dropdown.is-wide .header-dropdown-panel {
    width: min(930px, calc(100vw - 56px));
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .header-dropdown.is-wide .header-dropdown-panel a strong {
    white-space: nowrap;
    font-size: 16px;
  }

  .header-dropdown[open] .header-dropdown-panel {
    animation: header-dropdown-reveal 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .header-dropdown[open] .dropdown-eyebrow,
  .header-dropdown[open] .header-dropdown-content > a {
    animation: header-dropdown-item-reveal 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .header-dropdown[open] .header-dropdown-content > a:nth-of-type(1) {
    animation-delay: 120ms;
  }
  .header-dropdown[open] .header-dropdown-content > a:nth-of-type(2) {
    animation-delay: 170ms;
  }
  .header-dropdown[open] .header-dropdown-content > a:nth-of-type(3) {
    animation-delay: 220ms;
  }
  .header-dropdown[open] .header-dropdown-content > a:nth-of-type(4) {
    animation-delay: 270ms;
  }
  .header-dropdown[open] .header-dropdown-content > a:nth-of-type(5) {
    animation-delay: 320ms;
  }
  .header-dropdown[open] .header-dropdown-content > a:nth-of-type(6) {
    animation-delay: 370ms;
  }

  .header-dropdown[open] .header-dropdown-visual {
    animation: header-dropdown-visual-reveal 0.92s cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
    font-size: 14px;
  }
}

@keyframes header-dropdown-reveal {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translate(-50%, -24px) scale(0.97);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes header-dropdown-item-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes header-dropdown-visual-reveal {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0) scale(1.025);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

.header-quote {
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 24px rgba(2, 18, 13, 0.12);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.header-quote:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.52);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.13));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 30px rgba(2, 18, 13, 0.17);
  color: white;
}

.site-header.is-on-light .header-quote {
  border-color: rgba(6, 63, 49, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 24px rgba(6, 63, 49, 0.08);
  color: var(--green);
}

.site-header.is-on-light .header-quote:hover {
  border-color: rgba(6, 63, 49, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.52));
  color: var(--green);
}

.native-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0.72s;
}
.native-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.native-hero-slide .hero-media {
  animation: none;
}
.native-hero-slide.is-active .hero-media {
  animation: hero-media-in 720ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.native-hero-slide .hero-copy > * {
  opacity: 0;
}
.native-hero-slide:not(.is-active) .hero-copy > * {
  animation: none;
}
.native-hero-slide.is-active .hero-copy .hero-kicker {
  animation: hero-kicker-reveal 1050ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}
.native-hero-slide.is-active .hero-copy h1 {
  animation: hero-title-reveal 1650ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
}
.native-hero-slide.is-active .hero-copy .hero-intro {
  animation: hero-copy-reveal 1280ms cubic-bezier(0.22, 1, 0.36, 1) 920ms both;
}
.native-hero-slide.is-active .hero-copy .line-link {
  animation: hero-copy-reveal 1120ms cubic-bezier(0.22, 1, 0.36, 1) 1240ms both;
}
.hero-pages button.active i::after {
  animation-duration: var(--native-slide-duration, 5s);
}
.hero-toggle {
  font-size: 13px;
  font-weight: 800;
}

.native-eyou-home .product-visual {
  background-color: var(--paper);
  background-image: url("/static/product-automotive-placeholder.webp?v=20260818");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.native-eyou-home .product-visual > img {
  animation: none;
}

.native-eyou-home .product-visual img,
.native-eyou-home .factory-background {
  transition:
    opacity 0.28s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.native-eyou-home .factory-background {
  animation: none;
  transform-origin: center;
}
.native-eyou-home .factory-background.is-zooming {
  animation: factory-background-soft-zoom 4.8s cubic-bezier(0.2, 0.55, 0.3, 1) both;
}
@keyframes factory-background-soft-zoom {
  0% {
    transform: scale(1.005);
  }
  100% {
    transform: scale(1.038);
  }
}
.native-eyou-home .is-changing {
  opacity: 0.25;
  transform: scale(1.015);
}

.native-eyou-home .product-visual img.is-revealing {
  animation: product-image-reveal-up 1.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes product-image-reveal-up {
  0% {
    opacity: 0.18;
    transform: translate3d(0, 48px, 0) scale(1.035);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
    clip-path: inset(0);
  }
}

.native-eyou-home .product-caption.is-caption-changing {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.native-eyou-home .product-caption.is-caption-revealing {
  animation: product-caption-reveal 1.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes product-caption-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
.native-eyou-home .process-card {
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.native-eyou-home .factory-index button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 28px rgba(2, 18, 13, 0.14);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.native-eyou-home .factory-index button:hover,
.native-eyou-home .factory-index button.active {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.23),
    rgba(255, 255, 255, 0.1)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 14px 34px rgba(2, 18, 13, 0.2);
}
.native-eyou-home .factory-index button.active {
  background: rgba(255, 255, 255, 0.11);
}
.native-eyou-home .client-mark {
  justify-content: center;
}
.native-eyou-home .client-mark img {
  width: auto;
  max-width: 54%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.74;
  transition:
    filter 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}
.native-eyou-home .client-mark:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.035);
}
.native-eyou-home .client-mark strong {
  letter-spacing: 0.14em;
}
.native-eyou-home .footer-icon {
  width: 28px;
  font-size: 23px;
  text-align: center;
}
.native-eyou-home .footer-group summary > span {
  display: none;
}
.native-eyou-home .form-message {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.native-eyou-home .form-message.visible {
  opacity: 1;
}
.native-eyou-home .brief-form select {
  width: 100%;
  min-height: 51px;
  padding: 13px 42px 13px 15px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background-color: rgba(255, 255, 255, 0.075);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.65) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 14px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: white;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
  transition: background-color 180ms ease;
}
.native-eyou-home .brief-form select:focus {
  background-color: rgba(255, 255, 255, 0.13);
}
.native-eyou-home .brief-form select:invalid {
  color: rgba(255, 255, 255, 0.4);
}
.native-eyou-home .brief-form select option {
  background: var(--deep-green);
  color: white;
}
.native-eyou-home .motion-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.native-eyou-home .motion-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.native-eyou-home .motion-text.is-visible {
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.native-eyou-home .motion-rise.is-visible {
  animation-duration: 1.12s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.native-eyou-home .footer-wordmark {
  min-height: 1.1em;
}

.footer-back-to-top {
  width: 46px;
  min-width: 46px;
  height: 46px;
  margin-right: calc(var(--gutter) * -0.55);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(6, 63, 49, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--green);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.footer-back-to-top b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.footer-back-to-top:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 63, 49, 0.3);
  background: rgba(255, 255, 255, 0.58);
}

.native-eyou-home .footer-wordmark::after {
  content: "";
  width: 0.035em;
  height: 0.72em;
  margin-left: 0.055em;
  display: inline-block;
  vertical-align: -0.035em;
  background: currentColor;
  opacity: 0;
}

.native-eyou-home .footer-wordmark.is-typing::after {
  opacity: 1;
  animation: footer-type-caret 0.86s ease-in-out infinite;
}

.native-eyou-home .footer-wordmark.is-typed::after {
  animation: footer-type-caret-out 0.85s ease 0.5s forwards;
}

@keyframes footer-type-caret {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.22;
  }
}

.native-eyou-home .footer-type-character {
  display: inline-block;
  animation: footer-type-character-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: opacity, transform;
}

@keyframes footer-type-character-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 0.14em, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes footer-type-caret-out {
  0%,
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Development imagery: slow sequential reveals with scroll-linked depth. */
.native-eyou-home .development-stage figure.motion-media.is-visible {
  animation-name: development-image-reveal;
  animation-duration: 1.65s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: var(--motion-delay, 0ms);
  animation-fill-mode: both;
}

.native-eyou-home .development-stage figure img {
  transform: translate3d(0, var(--development-parallax, 0px), 0) scale(1.075);
  transform-origin: center;
  transition:
    transform 120ms linear,
    filter 0.5s ease;
  will-change: transform;
}

.native-eyou-home .development-stage figure:hover img {
  transform: translate3d(0, var(--development-parallax, 0px), 0) scale(1.095);
}

@keyframes development-image-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 48px, 0) scale(0.985);
    clip-path: inset(18% 0 18% 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
    clip-path: inset(0);
  }
}

/* Align the heading with the product index on the left and the large image on the right. */
@media (min-width: 761px) {
  .native-eyou-home .portfolio-head,
  .native-eyou-home .development-head,
  .native-eyou-home .partnerships-head {
    width: calc(100% - var(--gutter) * 2);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1.18fr 0.72fr;
    gap: 110px;
  }

  .native-eyou-home .portfolio-head > .section-intro,
  .native-eyou-home .development-head > p,
  .native-eyou-home .partnerships-head > p {
    width: 100%;
    max-width: 600px;
    justify-self: end;
  }

  .native-eyou-home .partnerships-head > p {
    padding: 24px 27px;
    background: rgba(242, 239, 231, 0.72);
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
  }
}

@media (min-width: 981px) {
  .native-eyou-home .development-path {
    left: 0;
    width: 61%;
  }

  .native-eyou-home .development-detail {
    right: 0;
  }
}

@media (max-width: 760px) {
  .footer-back-to-top {
    align-self: flex-end;
    margin-right: -6px;
  }

  .native-eyou-home .client-mark img {
    max-width: 56%;
    max-height: 38px;
  }

  .native-eyou-home .footer-group summary > span {
    display: inline;
  }
  .native-eyou-home .footer-group:not([open]) .footer-dropdown {
    display: none;
  }
}

/* Product detail material specification table. */
.product-specifications {
  padding-top: 50px;
  padding-bottom: 70px;
}

.product-specifications > header {
  display: block;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 54px;
}

.product-specifications > header h2 {
  max-width: 100%;
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.product-specifications > header > p {
  margin: 0;
  color: #65716c;
  font-size: 16px;
  line-height: 1.75;
}

.product-specification-table-wrap {
  overflow-x: auto;
  border-top: 1px solid rgba(18, 63, 53, 0.3);
}

.product-specifications table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
}

.product-specifications th,
.product-specifications td {
  padding: 19px 22px;
  border-bottom: 1px solid rgba(18, 63, 53, 0.14);
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.product-specifications th[rowspan],
.product-specifications td[rowspan] {
  vertical-align: middle;
}

.product-specifications thead th {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-specifications tbody th {
  width: 31%;
  color: var(--green);
  font-weight: 700;
}

.product-specifications tbody tr:nth-child(even) {
  background: rgba(18, 63, 53, 0.035);
}

.product-specifications--5th-rv tbody tr:nth-child(n + 2):nth-child(-n + 7) {
  background: rgba(18, 63, 53, 0.035);
}

.product-specifications--5th-rv tbody tr:nth-child(8),
.product-specifications--5th-rv tbody tr:nth-child(n + 9):nth-child(even) {
  background: #fff;
}

.product-specifications--5th-rv tbody tr:nth-child(n + 9):nth-child(odd) {
  background: rgba(18, 63, 53, 0.035);
}

.product-specifications--class-c-rv tbody tr:nth-child(n + 2):nth-child(-n + 5) {
  background: rgba(18, 63, 53, 0.035);
}

.product-specifications--class-c-rv tbody tr:nth-child(6),
.product-specifications--class-c-rv tbody tr:nth-child(n + 7):nth-child(even) {
  background: #fff;
}

.product-specifications--class-c-rv tbody tr:nth-child(n + 7):nth-child(odd) {
  background: rgba(18, 63, 53, 0.035);
}

.product-specifications--teardrop-rv tbody tr:nth-child(n + 2):nth-child(-n + 4) {
  background: rgba(18, 63, 53, 0.035);
}

/* Product features heading and plain supporting copy. */
.product-detail-template .product-options > header {
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.product-detail-template .product-options-copy {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  padding-top: 0;
}

.product-detail-template .product-options-copy p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #65716c;
  font-size: 17px;
  line-height: 1.75;
}

.product-detail-template .product-advantage-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
}

@media (min-width: 981px) {
  .product-detail-template .product-advantage-list[data-product-aid="141"],
  .product-detail-template .product-advantage-list[data-product-aid="144"],
  .product-detail-template .product-advantage-list[data-product-aid="145"],
  .product-detail-template .product-advantage-list[data-product-aid="146"],
  .product-detail-template .product-advantage-list[data-product-aid="148"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-detail-template .product-advantage-list article {
  padding: 38px clamp(28px, 3vw, 48px) 44px;
  background: var(--ivory);
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.product-detail-template .product-advantage-list article:nth-child(2) {
  background: #e4e9e4;
}

.product-detail-template .product-advantage-list article:nth-child(3) {
  background: #f5f2ea;
}

.product-detail-template .product-advantage-list article:nth-child(4) {
  background: #e4e9e4;
}

.product-detail-template .product-advantage-list article:nth-child(5) {
  background: #f5f2ea;
}

.product-detail-template .product-advantage-list article:nth-child(6) {
  background: var(--ivory);
}

.product-detail-template .product-advantage-list article:hover {
  transform: translateY(-4px);
}

.product-detail-template .product-advantage-index {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.product-detail-template .product-advantage-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-top: 18px;
  border: 1px solid rgba(6, 63, 49, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  color: var(--green);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.product-detail-template .product-advantage-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-detail-template .product-advantage-list article:hover .product-advantage-icon {
  border-color: rgba(6, 63, 49, 0.32);
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-3px);
}

.product-detail-template .product-advantage-list h3 {
      min-height: auto;
    margin-top: 20px;
    font-size: 26px;
    line-height: 1.12;
    margin-bottom: 30px;
}


.product-detail-template .product-advantage-list li {
  margin-top: 16px;
  padding-left: 17px;
  font-size: 15px;
  line-height: 1.65;
}
.product-detail-template .product-advantage-list p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}


.product-detail-template .product-advantage-list li::before {
  display: block;
  width: 5px;
  height: 5px;
  top: 0.72em;
  border-radius: 50%;
  background: var(--green);
}

.product-detail-template .product-advantage-list li strong {
  color: var(--ink);
  font-weight: 700;
}

/* Class A RV Motorhome Cover: visual construction-detail cards. */
.product-detail-template .class-a-rv-features {
  padding-top: 145px;
  padding-bottom: 135px;
}

.product-detail-template .class-a-rv-features > header {
  margin-bottom: 58px;
}

.product-detail-template .class-a-rv-features > header h2 {
  max-width: 940px;
  margin: 0;
  color: var(--ink);
  font-size: var(--type-section);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.product-detail-template .class-a-rv-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 34px);
  align-items: start;
}

.product-detail-template .class-a-rv-feature-grid article {
  min-width: 0;
}

.product-detail-template .class-a-rv-feature-grid figure {
  position: relative;
  aspect-ratio: 1;
  margin: 0 0 18px;
  overflow: hidden;
  background: #e7ece9;
}

.product-detail-template .class-a-rv-feature-grid figure::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-right: 24px solid var(--green);
  pointer-events: none;
}

.product-detail-template .class-a-rv-feature-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-detail-template .class-a-rv-feature-grid article:hover img {
  transform: scale(1.035);
}

.product-detail-template .class-a-rv-feature-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.45vw, 23px);
  font-weight: 570;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.product-detail-template .class-a-rv-feature-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .product-detail-template .class-a-rv-features {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .product-detail-template .class-a-rv-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 44px;
  }
}

@media (max-width: 580px) {
  .product-detail-template .class-a-rv-features {
    padding-top: 80px;
    padding-bottom: 84px;
  }

  .product-detail-template .class-a-rv-features > header {
    margin-bottom: 38px;
  }

  .product-detail-template .class-a-rv-feature-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .product-detail-template .class-a-rv-feature-grid h3 {
    font-size: 21px;
  }
}

/* Electric tongue jack cover: product-specific content system. */
.product-detail-template .tongue-jack-features {
  padding-top: 145px;
  padding-bottom: 130px;
}

.product-detail-template .tongue-jack-section-head {
  display: block;
  margin-bottom: 64px;
}

.product-detail-template .tongue-jack-section-head h2 {
  max-width: none;
  margin: 0;
  font-size: var(--type-section);
  line-height: 1.01;
  letter-spacing: -0.052em;
  font-weight: 550;
  text-wrap: balance;
}

.product-detail-template .tongue-jack-section-head > p {
  max-width: none;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.product-detail-template .tongue-jack-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-detail-template .tongue-jack-feature-grid article {
  min-width: 0;
  min-height: 430px;
  padding: 38px clamp(28px, 2.6vw, 42px) 44px;
  background: var(--ivory);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.product-detail-template .tongue-jack-feature-grid article:nth-child(3n + 2) {
  background: #e4e9e4;
}

.product-detail-template .tongue-jack-feature-grid article:nth-child(3n) {
  background: #f5f2ea;
}

.product-detail-template .tongue-jack-feature-grid article:hover {
  transform: translateY(-5px);
}

.product-detail-template .tongue-jack-feature-index {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.product-detail-template .tongue-jack-feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-top: 18px;
  border: 1px solid rgba(6, 63, 49, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  color: var(--green);
}

.product-detail-template .tongue-jack-feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-detail-template .tongue-jack-feature-grid h3 {
  margin: 22px 0 25px;
  font-size: clamp(23px, 1.8vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 590;
}

.product-detail-template .tongue-jack-feature-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-template .tongue-jack-feature-grid li {
  position: relative;
  margin-top: 15px;
  padding-left: 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-detail-template .tongue-jack-feature-grid li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0.72em;
  left: 0;
  border-radius: 50%;
  background: var(--green);
}

.product-detail-template .tongue-jack-material-band {
  width: 100%;
  padding: 125px 0 135px;
  background: var(--deep-green);
  color: #fff;
}

.product-detail-template .tongue-jack-material-inner > header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  gap: clamp(70px, 9vw, 50px);
  align-items: end;
  margin-bottom: 60px;
}

.product-detail-template .tongue-jack-material-inner > header .section-label {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.product-detail-template .tongue-jack-material-inner > header h2 {
  max-width: 820px;
  font-size: var(--type-section);
  line-height: 1.01;
  letter-spacing: -0.052em;
  font-weight: 550;
  text-wrap: balance;
}

.product-detail-template .tongue-jack-material-inner > header > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.75;
}

.product-detail-template .tongue-jack-material-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 14px;
  align-items: stretch;
}

.product-detail-template .tongue-jack-comparison-wrap {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.055);
}

.product-detail-template .tongue-jack-comparison-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.product-detail-template .tongue-jack-comparison-wrap th,
.product-detail-template .tongue-jack-comparison-wrap td {
  padding: 21px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
}

.product-detail-template .tongue-jack-comparison-wrap th {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-template .tongue-jack-comparison-wrap td:first-child {
  color: #fff;
  font-weight: 650;
}

.product-detail-template .tongue-jack-comparison-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.product-detail-template .tongue-jack-production-proof {
  padding: 38px clamp(28px, 3vw, 44px) 42px;
  background: rgba(255, 255, 255, 0.09);
}

.product-detail-template .tongue-jack-production-proof h3 {
  margin-top: 24px;
  font-size: clamp(27px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 560;
}

.product-detail-template .tongue-jack-production-proof ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.product-detail-template .tongue-jack-production-proof li {
  position: relative;
  padding: 15px 0 15px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.product-detail-template .tongue-jack-production-proof li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 1.45em;
  left: 0;
  background: #b8d1c6;
}

.product-detail-template .tongue-jack-faq {
  padding-top: 125px;
  padding-bottom: 145px;
  display: grid;
  grid-template-columns: minmax(330px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.product-detail-template .tongue-jack-faq > header h2 {
  margin-top: 24px;
  font-size: var(--type-section);
  line-height: 1.01;
  letter-spacing: -0.052em;
  font-weight: 550;
  text-wrap: balance;
}

.product-detail-template .tongue-jack-faq > header > p:last-child {
  max-width: 460px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.product-detail-template .tongue-jack-faq-list {
  border-top: 1px solid rgba(18, 63, 53, 0.3);
}

.product-detail-template .tongue-jack-faq-list details {
  border-bottom: 1px solid rgba(18, 63, 53, 0.16);
}

.product-detail-template .tongue-jack-faq-list details.is-animating {
  overflow: hidden;
}

.product-detail-template .tongue-jack-faq-list summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 24px;
  align-items: center;
  padding: 22px 4px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.3;
  font-weight: 570;
}

.product-detail-template .tongue-jack-faq-list summary::-webkit-details-marker {
  display: none;
}

.product-detail-template .tongue-jack-faq-list summary span {
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.32s ease;
}

.product-detail-template .tongue-jack-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.product-detail-template .tongue-jack-faq-list details.is-closing summary span {
  transform: rotate(0deg);
}

.product-detail-template .tongue-jack-faq-list details > p {
  max-width: 720px;
  margin: -4px 0 0;
  padding: 0 52px 30px 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 0.42s ease,
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-detail-template .tongue-jack-faq-list details[open]:not(.is-closing) > p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .product-detail-template .tongue-jack-faq-list summary span,
  .product-detail-template .tongue-jack-faq-list details > p {
    transition: none;
  }
}

/* Compact, interactive product gallery. */
.product-detail-template .product-detail-hero {
  position: relative;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  gap: clamp(60px, 7vw, 60px);
}

.product-detail-template .product-detail-breadcrumb {
  position: absolute;
  z-index: 2;
  top: 116px;
  right: var(--gutter);
  left: var(--gutter);
  overflow: hidden;
  margin: 0;
  color: #65716c;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-detail-template .product-detail-breadcrumb a {
  transition: color 0.25s ease;
}

.product-detail-template .product-detail-breadcrumb a:hover {
  color: var(--green);
}

.product-detail-template .product-detail-main {
  --gallery-pointer-x: 50%;
  --gallery-pointer-y: 50%;
  position: relative;
  height: clamp(500px, 52vw, 550px);
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .product-detail-template .product-detail-main {
    cursor: none;
  }
}

.product-detail-template .product-detail-main:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.product-detail-template .product-detail-main img {
  opacity: 1;
  transition: opacity 0.28s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-detail-template .product-detail-main img.is-switching {
  opacity: 0;
}

.product-gallery-stage {
  position: relative;
}

.product-detail-template .product-detail-main::after {
  position: absolute;
  top: var(--gallery-pointer-y);
  left: var(--gallery-pointer-x);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background-color: rgba(7, 43, 34, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.7' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='5.8'/%3E%3Cpath d='m15 15 4.5 4.5M10.5 7.8v5.4M7.8 10.5h5.4'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  box-shadow: 0 8px 24px rgba(4, 25, 20, 0.14);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -44%) scale(0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-detail-template .product-detail-main.is-pointer-active::after,
.product-detail-template .product-detail-main:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(7, 43, 34, 0.18);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 24px rgba(4, 25, 20, 0.12);
  backdrop-filter: blur(14px) saturate(1.2);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.product-gallery-arrow:hover {
  background: rgba(7, 43, 34, 0.34);
  transform: translateY(-50%) scale(1.04);
}

.product-gallery-arrow.is-prev {
  left: 16px;
}

.product-gallery-arrow.is-next {
  right: 16px;
}

.product-detail-template .product-detail-thumbs {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 12px;
  margin-top: 12px;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-color: rgba(18, 63, 53, 0.3) transparent;
  scrollbar-width: thin;
}

.product-detail-template .product-detail-thumbs::-webkit-scrollbar {
  height: 4px;
}

.product-detail-template .product-detail-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.product-detail-template .product-detail-thumbs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(18, 63, 53, 0.3);
}

.product-detail-template .product-detail-thumbs button {
  flex: 0 0 calc((100% - 24px) / 3);
  height: 112px;
  aspect-ratio: auto;
  border: 2px solid transparent;
  opacity: 0.64;
  scroll-snap-align: start;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.product-detail-template .product-detail-thumbs button:hover,
.product-detail-template .product-detail-thumbs button.is-active {
  border-color: var(--green);
  opacity: 1;
}

.product-gallery-lightbox[hidden] {
  display: none;
}

.product-gallery-lightbox {
  position: fixed;
  z-index: 1200;
  inset: 0;
  padding: 60px clamp(24px, 7vw, 110px);
  display: grid;
  place-items: center;
  background: rgba(3, 24, 19, 0.94);
}

.product-gallery-lightbox figure {
  width: min(1180px, 88vw);
  height: min(82vh, 820px);
  margin: 0;
}

.product-gallery-lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-lightbox-close,
.product-gallery-lightbox-arrow {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.product-gallery-lightbox-close:hover,
.product-gallery-lightbox-arrow:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.18);
}

.product-gallery-lightbox-close {
  top: 24px;
  right: 28px;
  font-size: 34px;
}

.product-gallery-lightbox-arrow {
  top: 50%;
  border-radius: 50%;
  font-size: 24px;
  transform: translateY(-50%);
}

.product-gallery-lightbox-arrow.is-prev {
  left: 28px;
}

.product-gallery-lightbox-arrow.is-next {
  right: 28px;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.product-detail-template .related-products {
  background: #eef0ec;
  box-shadow: 0 0 0 100vmax #eef0ec;
  clip-path: inset(0 -100vmax);
}

@media (max-width: 1100px) {
  .product-detail-template .product-detail-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.82fr);
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .product-detail-template .product-detail-breadcrumb {
    top: 86px;
  }

  .product-specifications {
    padding-top: 50px;
    padding-bottom: 76px;
  }

  .product-specifications > header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }

  .product-specifications > header h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .product-specifications table {
    min-width: 680px;
  }

  .product-specifications th,
  .product-specifications td {
    padding: 16px 18px;
  }

  .product-detail-template .product-options > header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-detail-template .product-options-copy {
    max-width: none;
    justify-self: stretch;
    padding-top: 0;
  }

  .product-detail-template .product-advantage-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-detail-template .product-advantage-list article,
  .product-detail-template .product-advantage-list article:first-child,
  .product-detail-template .product-advantage-list article:last-child {
    padding: 34px 28px 38px;
  }

  .product-detail-template .product-advantage-list article + article {
    border-top: 0;
    border-left: 0;
  }

  .product-detail-template .product-advantage-list h3 {
    min-height: 0;
  }

  .product-detail-template .product-detail-hero {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .product-detail-template .product-detail-main {
    height: min(112vw, 470px);
  }

  .product-detail-template .product-detail-thumbs button {
    height: 88px;
  }

  .product-gallery-arrow {
    width: 42px;
    height: 42px;
  }

  .product-gallery-lightbox {
    padding: 70px 18px;
  }

  .product-gallery-lightbox figure {
    width: 100%;
    height: 72vh;
  }

  .product-gallery-lightbox-close {
    top: 18px;
    right: 18px;
  }

  .product-gallery-lightbox-arrow.is-prev {
    left: 12px;
  }

  .product-gallery-lightbox-arrow.is-next {
    right: 12px;
  }
}

/* Restore the original full-width banner system on the dedicated inner templates. */
.native-eyou-inner main .content-width {
  width: calc(100% - var(--gutter) * 2);
  max-width: none;
}

.native-inner-rich main {
  padding-top: 0;
}

.native-inner-rich .site-header {
  position: absolute;
  background: transparent;
  box-shadow: none;
  color: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.native-inner-rich.native-eyou-inner .site-header .brand-logo-light {
  display: block;
}

.native-inner-rich.native-eyou-inner .site-header .brand-logo-dark {
  display: none;
}

.native-inner-rich .site-header:has(.header-products-menu.is-open) {
  background: rgba(243, 243, 239, 0.96);
  box-shadow: 0 1px 0 rgba(18, 63, 53, 0.12);
  color: #123f35;
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.native-inner-rich .site-header:has(.header-products-menu.is-open) .brand-logo-light {
  display: none;
}

.native-inner-rich .site-header:has(.header-products-menu.is-open) .brand-logo-dark {
  display: block;
}

/* Product detail uses the original light catalogue-style hero. */
.product-detail-template.native-inner-rich .site-header {
  color: var(--ink);
}

.product-detail-template .menu-toggle {
  color: var(--green);
}

.product-detail-template.native-inner-rich.native-eyou-inner .site-header .brand-logo-light {
  display: none;
}

.product-detail-template.native-inner-rich.native-eyou-inner .site-header .brand-logo-dark {
  display: block;
}

.product-detail-template .desktop-nav a:not(.header-quote)::after {
  background: var(--green);
}

.product-detail-template .header-quote {
  border-color: rgba(6, 63, 49, 0.42);
  color: var(--green);
}

.product-detail-template .product-detail-summary h1 {
  color: var(--ink);
}

.product-detail-template .product-detail-cta svg,
.product-detail-template .product-options-list article > svg,
.product-detail-template .product-buying-columns article > svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Automotive category tabs and shorter catalogue photography. */
.product-category-tabs {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin: 10px 0 38px;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(18, 63, 53, 0.18);
}

.product-category-tabs button {
  position: relative;
  min-height: 58px;
  padding: 12px 20px;
  border: 0;
  background: transparent;
  color: #66756f;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: color 0.35s ease, background-color 0.35s ease;
}

.product-category-tabs button::after {
  position: absolute;
  right: 20px;
  bottom: -2px;
  left: 20px;
  height: 3px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-category-tabs button:hover,
.product-category-tabs button.is-active {
  color: var(--green);
}

.product-category-tabs button.is-active::after {
  transform: scaleX(1);
}

.product-category-tabs button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.native-inner-rich .product-catalog-grid > a[hidden] {
  display: none !important;
}

.native-inner-rich .product-catalog-grid > a.catalog-card-enter {
  animation: automotive-card-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.native-inner-rich .product-catalog-grid > a[data-catalog-group] {
  height: clamp(300px, 32vw, 300px);
  aspect-ratio: auto;
  overflow: hidden;
}

.native-inner-rich .product-catalog-grid > a[data-catalog-group] figure {
  height: 100%;
  aspect-ratio: auto;
}

.native-inner-rich .product-catalog-grid > a[data-catalog-group] figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.native-inner-rich .product-catalog-grid > a[data-catalog-group] > div {
  padding-right: clamp(76px, 6.5vw, 96px);
}

.native-inner-rich .product-catalog-grid > a[data-catalog-group] span {
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (hover: hover) and (pointer: fine) {
  .native-inner-rich .product-catalog-grid > a[data-catalog-group] span {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: max-height 0.62s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.62s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.48s ease, visibility 0.48s ease, transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .native-inner-rich .product-catalog-grid > a[data-catalog-group] > div::after {
    position: absolute;
    right: clamp(24px, 2.2vw, 36px);
    bottom: clamp(25px, 2.2vw, 36px);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    content: "\2192";
    font-size: 19px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px) scale(0.94);
    backdrop-filter: blur(10px);
    transition: opacity 0.48s ease 0.08s, visibility 0.48s ease 0.08s, transform 0.62s cubic-bezier(0.16, 1, 0.3, 1) 0.04s;
  }

  .native-inner-rich .product-catalog-grid > a[data-catalog-group]:hover span,
  .native-inner-rich .product-catalog-grid > a[data-catalog-group]:focus-visible span,
  .native-inner-rich .product-catalog-grid > a[data-catalog-group]:hover > div::after,
  .native-inner-rich .product-catalog-grid > a[data-catalog-group]:focus-visible > div::after {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }

  .native-inner-rich .product-catalog-grid > a[data-catalog-group]:hover span,
  .native-inner-rich .product-catalog-grid > a[data-catalog-group]:focus-visible span {
    max-height: 3.2em;
    margin-top: 14px;
  }
}

@keyframes automotive-card-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .product-category-tabs {
    overflow-x: auto;
    gap: 0;
    margin-bottom: 28px;
    scrollbar-width: none;
  }

  .product-category-tabs::-webkit-scrollbar {
    display: none;
  }

  .product-category-tabs button {
    flex: 0 0 auto;
    min-height: 54px;
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .product-category-tabs button::after {
    right: 16px;
    left: 16px;
  }

  .native-inner-rich .product-catalog-grid > a[data-catalog-group] {
    height: min(98vw, 380px);
  }

  .native-inner-rich .product-catalog-grid > a[data-catalog-group] figure {
    height: 100%;
  }
}

.native-inner-rich .inner-hero {
  position: relative;
  display: block;
  min-height: 700px;
  height: 82svh;
  overflow: hidden;
  background: #17241f;
  color: #fff;
}

.native-inner-rich .inner-hero.is-compact {
  min-height: 620px;
  height: 68svh;
}

.native-inner-rich .inner-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.08) brightness(0.79);
  opacity: 1;
  clip-path: none;
  transform: none;
  animation: none;
  transition: none;
}

.native-inner-rich .products-index-hero > img {
  object-position: bottom;
}

.native-inner-rich .inner-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 20, 15, 0.7), rgba(2, 20, 15, 0.4) 41%, rgba(2, 20, 15, 0.08) 75%),
    linear-gradient(0deg, rgba(2, 17, 13, 0.5), transparent 48%);
}

.native-inner-rich .inner-hero-copy {
  position: absolute;
  z-index: 2;
  bottom: clamp(78px, 10vh, 128px);
  left: 50%;
  display: block;
  padding: 0;
  transform: translateX(-50%);
}

.native-inner-rich .inner-eyebrow {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.native-inner-rich .inner-hero h1 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font-size: var(--type-display);
  font-weight: 550;
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.native-inner-rich .inner-hero-copy > p:not(.inner-eyebrow) {
  max-width: 100%;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.67;
}

.native-inner-rich .inner-hero .line-link {
  margin-top: 32px;
  color: #fff;
}

.native-inner-rich .inner-hero .product-range-button {
  width: fit-content;
  min-width: 218px;
  min-height: 54px;
  margin-top: 32px;
  padding: 14px 17px 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.native-inner-rich .inner-hero .product-range-button-arrow {
  flex: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.native-inner-rich .inner-hero .product-range-button:hover {
  border-color: #fff;
  background: #fff;
  color: var(--deep-green);
}

.native-inner-rich .inner-hero .product-range-button:hover .product-range-button-arrow {
  transform: translateY(4px);
}

.native-inner-rich .inner-hero .product-range-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .native-inner-rich .inner-hero,
  .native-inner-rich .inner-hero.is-compact {
    min-height: 650px;
    height: 82svh;
  }

  .native-inner-rich .inner-hero > img {
    object-position: 62% center;
  }

  .native-inner-rich .inner-hero-copy {
    bottom: 70px;
  }

  .native-inner-rich .inner-hero h1 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.98;
  }

  .native-inner-rich .inner-hero-copy > p:not(.inner-eyebrow) {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .native-hero-slide {
    transition: none;
  }

  .about-page .about-split-media.motion-media,
  .about-page .about-split-media.motion-media:not(.is-visible),
  .about-page .about-split-media.motion-media.is-visible {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
    animation: none;
  }

  .about-page .about-split-media.motion-media img {
    transform: none;
    transition: none;
  }

  .native-eyou-home .motion-reveal {
    opacity: 1;
    transform: none;
  }
  .native-eyou-home .development-stage figure img,
  .native-eyou-home .development-stage figure:hover img {
    transform: none;
    transition: none;
  }
  .native-eyou-home .footer-wordmark::after {
    display: none;
  }
  .native-eyou-home .factory-background.is-zooming {
    animation: none;
    transform: none;
  }
}

/* Contact page uses .contact-details as the left content column.
   Override the legacy standalone contact section grid so the imported
   contact-page layout remains identical to the original React page. */
.native-inner-rich .contact-layout > .contact-details {
  display: block;
  padding: 0;
}

/* Compact contact details below the footer identity. */
.footer-identity .footer-identity-contacts {
  max-width: 430px;
  margin-top: 34px;
  display: grid;
  gap: 16px;
  font-size: 14px;
  font-weight: 610;
}

.footer-identity .footer-identity-contacts > * {
  min-width: 0;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: #53615a;
  line-height: 1.55;
  text-decoration: none;
}

.footer-identity .footer-identity-contacts > a {
  font-size: 19px;
}

.footer-identity .footer-identity-contacts > div {
  font-size: 16px;
}

.footer-identity .footer-identity-contacts svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: currentColor;
}

.footer-identity .footer-identity-contacts a {
  transition: color 0.25s ease;
}

.footer-identity .footer-identity-contacts a:hover {
  color: var(--green);
  opacity: 1;
}

/* Footer product directory: six product families plus the company links. */
.footer-main {
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(58px, 7vw, 116px);
}

.footer-nav {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: clamp(18px, 1.8vw, 34px);
}

.footer-nav-column {
  min-width: 0;
  display: contents;
}

.footer-nav-column:nth-child(1) > .footer-group:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.footer-nav-column:nth-child(1) > .footer-group:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.footer-nav-column:nth-child(2) > .footer-group:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

.footer-nav-column:nth-child(2) > .footer-group:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}

.footer-nav-column:nth-child(3) > .footer-group:nth-child(1) {
  grid-column: 3;
  grid-row: 1;
}

.footer-nav-column:nth-child(3) > .footer-group:nth-child(2) {
  grid-column: 3;
  grid-row: 2;
}

.footer-nav-column:nth-child(4) > .footer-group {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.footer-nav .footer-group {
  align-self: stretch;
}

.footer-group summary {
  min-height: 54px;
  align-items: flex-start;
}

.footer-nav .footer-group-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.35;
}

.footer-nav .footer-group-title:hover {
  color: var(--green);
}

.footer-dropdown a {
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  align-items: flex-start;
  line-height: 1.45;
}

.footer-nav-column:not(.footer-nav-column-company) .footer-dropdown a {
  padding-left: 14px;
}

.footer-nav-column:not(.footer-nav-column-company) .footer-dropdown a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.72;
}

.footer-group summary > span {
  display: none;
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }

  .footer-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    row-gap: 38px;
  }

  .footer-nav-column {
    display: grid;
    align-content: start;
    gap: 26px;
  }

  .footer-nav-column > .footer-group {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .footer-identity .footer-identity-contacts {
    margin-top: 28px;
    gap: 14px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .footer-group {
    border-top: 1px solid rgba(6, 63, 49, 0.12);
  }

  .footer-nav-column {
    gap: 0;
  }

  .footer-nav-column:last-child .footer-group:last-child {
    border-bottom: 1px solid rgba(6, 63, 49, 0.12);
  }

  .footer-group summary {
    min-height: 54px;
    align-items: center;
  }

  .footer-group summary > span {
    display: inline;
    color: var(--green);
    font-size: 11px;
    transition: transform 0.25s ease;
  }

  .footer-group[open] summary > span {
    transform: rotate(180deg);
  }

  .footer-group:not([open]) .footer-dropdown {
    display: none;
  }

  .footer-dropdown {
    padding-bottom: 18px;
  }

}

/* Takeo production base: fixed copy with an index_3-inspired factory carousel. */
.cambodia-factory {
  overflow: hidden;
  border-top: 1px solid rgba(6, 63, 49, 0.12);
  border-bottom: 1px solid rgba(6, 63, 49, 0.12);
  background: var(--paper);
  color: var(--ink);
  padding: 50px 0px;
}

.takeo-showcase__grid {
  display: grid;
  grid-template-columns: minmax(410px, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
}

@media (min-width: 761px) {
  .native-eyou-home .takeo-showcase__grid {
    width: calc(100% - var(--gutter) * 2);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }
}

.takeo-showcase__copy {
  min-width: 0;
  min-height: clamp(570px, 38vw, 680px);
  padding: clamp(58px, 6vw, 98px) clamp(38px, 5.4vw, 94px) clamp(48px, 5vw, 84px) 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(6, 63, 49, 0.12);
}

.takeo-showcase__copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: var(--type-section);
  font-weight: 550;
  line-height: 1.01;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.takeo-showcase__description {
  max-width: 650px;
  margin: clamp(30px, 3vw, 48px) 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
  padding-bottom: 40px;
}

.takeo-showcase__stats {
  margin: auto 0 0;
  padding: clamp(24px, 2.5vw, 38px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(6, 63, 49, 0.17);
}

.takeo-showcase__stats > div {
  min-width: 0;
  padding-right: clamp(8px, 1.1vw, 18px);
  display: flex;
  flex-direction: column;
}

.takeo-showcase__stats > div:nth-child(2) {
  align-items: center;
  text-align: center;
}

.takeo-showcase__stats > div:nth-child(3) {
  padding-right: 0;
  align-items: flex-end;
  text-align: right;
}

.takeo-showcase__stats dt {
  min-height: 40px;
  display: flex;
  align-items: baseline;
  gap: 0.28em;
  color: var(--green);
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 620;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.takeo-showcase__stats dt strong {
  font-size: clamp(25px, 2.05vw, 38px);
  font-weight: 680;
  letter-spacing: -0.035em;
}

.takeo-showcase__stats > div:nth-child(3) dt {
  gap: 0;
}

.takeo-showcase__stats > div:nth-child(3) dt span:last-child {
  margin-left: 0.24em;
}

.takeo-showcase__stats dd {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.takeo-showcase__media {
  min-width: 0;
  margin: clamp(34px, 3.4vw, 58px) 0 clamp(34px, 3.4vw, 58px) clamp(38px, 5.2vw, 92px);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #d7d9d5;
  isolation: isolate;
}

.takeo-showcase__slides,
.takeo-showcase__slide {
  position: absolute;
  inset: 0;
}

.takeo-showcase__slide {
  z-index: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.72s ease, visibility 0s linear 0.72s;
}

.takeo-showcase__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--paper);
  transform: scaleX(1);
  transform-origin: right center;
  transition: transform 1.05s cubic-bezier(0.77, 0, 0.175, 1) 0.08s;
  pointer-events: none;
}

.takeo-showcase__slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.72s ease, visibility 0s linear;
}

.takeo-showcase__slide.is-active::after {
  transform: scaleX(0);
}

.takeo-showcase__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.045);
  filter: brightness(0.94) contrast(1.03);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.takeo-showcase__slide.is-active img {
  transform: scale(1);
}

.takeo-showcase__media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 30%;
  background: linear-gradient(to top, rgba(7, 22, 18, 0.48), transparent);
  pointer-events: none;
}

.takeo-showcase__controls {
  position: absolute;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  left: clamp(18px, 2vw, 30px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
}

.takeo-showcase__navigation {
  display: flex;
  gap: 9px;
}

.takeo-showcase__navigation button {
  width: 45px;
  height: 45px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.takeo-showcase__navigation button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.takeo-showcase__navigation svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.takeo-showcase__counter {
  min-width: 60px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.takeo-showcase__counter [data-takeo-current] {
  margin-right: 6px;
  color: #fff;
  font-size: 19px;
}

.takeo-showcase__pagination {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.takeo-showcase__pagination button {
  width: 17px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.38s ease, background 0.38s ease;
}

.takeo-showcase__pagination button.is-active {
  width: 35px;
  background: #fff;
}

.footer-identity .footer-identity-contacts small {
  margin-bottom: 3px;
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .takeo-showcase__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .takeo-showcase__copy {
    min-height: 0;
    padding: 78px 0 48px;
    border-right: 0;
  }

  .takeo-showcase__copy h2 {
    max-width: 720px;
  }

  .takeo-showcase__stats {
    margin-top: 42px;
  }

  .takeo-showcase__media {
    aspect-ratio: 16 / 9;
    margin: 0 0 58px;
  }
}

@media (max-width: 600px) {
  .takeo-showcase__grid.content-width {
    width: calc(100% - var(--gutter) * 2);
    max-width: calc(100% - var(--gutter) * 2);
    min-width: 0;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }

  .takeo-showcase__copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 66px 0 38px;
  }

  .takeo-showcase__copy h2 {
    max-width: 100%;
    white-space: normal;
  }

  .takeo-showcase__description {
    max-width: 100%;
    margin-top: 26px;
  }

  .takeo-showcase__stats {
    width: 100%;
    max-width: 100%;
    gap: 10px;
  }

  .takeo-showcase__stats > div {
    padding-right: 4px;
  }

  .takeo-showcase__stats dt {
    min-height: 31px;
    gap: 0.2em;
    font-size: 9px;
    white-space: normal;
  }

  .takeo-showcase__stats dt strong {
    font-size: clamp(19px, 5.8vw, 25px);
  }

  .takeo-showcase__media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3;
    margin-bottom: 46px;
    border-radius: 14px;
  }

  .takeo-showcase__pagination {
    display: none;
  }

  .takeo-showcase__controls {
    gap: 13px;
  }

  .takeo-showcase__navigation button {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .takeo-showcase__slide,
  .takeo-showcase__slide::after,
  .takeo-showcase__slide img {
    transition: none;
  }

  .takeo-showcase__slide.is-active::after {
    display: none;
  }
}
