@keyframes supplierShine {
  0%, 68% { left: -34%; opacity: 0; }
  74% { opacity: .85; }
  90% { left: 112%; opacity: 0; }
  100% { left: 112%; opacity: 0; }
}

@keyframes buyButtonPulse {
  0%, 72%, 100% { box-shadow: 0 12px 26px rgba(6,63,45,.17); transform: translateY(0); }
  78% { box-shadow: 0 16px 34px rgba(22,130,73,.26); transform: translateY(-1px); }
  84% { box-shadow: 0 12px 26px rgba(6,63,45,.17); transform: translateY(0); }
}

@keyframes buyArrowNudge {
  0%, 68%, 100% { transform: translateX(0); }
  76% { transform: translateX(5px); }
  84% { transform: translateX(0); }
}

@keyframes productFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1.001); }
  50% { transform: translate3d(0,-4px,0) scale(1.008); }
}

@keyframes buttonGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes totalConfirm {
  0% { transform: scale(1); color: var(--forest); }
  45% { transform: scale(1.055); color: var(--green); }
  100% { transform: scale(1); color: var(--forest); }
}

@keyframes priceShine {
  0%, 70% { transform: translateX(-150%) skewX(-18deg); opacity: 0; }
  76% { opacity: .52; }
  90%, 100% { transform: translateX(540%) skewX(-18deg); opacity: 0; }
}

@keyframes limitedOfferBounce {
  0%, 76%, 100% { transform: translateY(0) scale(1); }
  82% { transform: translateY(-2px) scale(1.025); }
  88% { transform: translateY(0) scale(1); }
}

@keyframes limitedOfferDot {
  0%, 72%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(225,118,72,.12); }
  80% { transform: scale(1.2); box-shadow: 0 0 0 7px rgba(225,118,72,.06); }
  88% { transform: scale(1); box-shadow: 0 0 0 4px rgba(225,118,72,.12); }
}

@keyframes liquidGreenDrift {
  0%, 100% { transform: translate3d(-8%,-5%,0) scale(.94) rotate(-3deg); opacity: .48; border-radius: 52% 48% 45% 55% / 53% 44% 56% 47%; }
  28% { transform: translate3d(7%,-1%,0) scale(1.10) rotate(3deg); opacity: .88; border-radius: 41% 59% 55% 45% / 47% 58% 42% 53%; }
  58% { transform: translate3d(3%,8%,0) scale(1.02) rotate(-2deg); opacity: .64; border-radius: 58% 42% 48% 52% / 55% 43% 57% 45%; }
  78% { transform: translate3d(-6%,4%,0) scale(1.14) rotate(2deg); opacity: .82; border-radius: 47% 53% 59% 41% / 42% 55% 45% 58%; }
}

@keyframes liquidGreenOrbit {
  0%, 100% { transform: translate3d(8%,5%,0) scale(.92) rotate(4deg); opacity: .30; border-radius: 44% 56% 51% 49% / 54% 42% 58% 46%; }
  32% { transform: translate3d(-7%,-6%,0) scale(1.20) rotate(-4deg); opacity: .62; border-radius: 59% 41% 45% 55% / 47% 58% 42% 53%; }
  64% { transform: translate3d(2%,-1%,0) scale(1.04) rotate(3deg); opacity: .42; border-radius: 48% 52% 60% 40% / 56% 43% 57% 44%; }
  84% { transform: translate3d(-4%,7%,0) scale(1.16) rotate(-2deg); opacity: .58; border-radius: 54% 46% 42% 58% / 43% 55% 45% 57%; }
}

@keyframes siteLiquidSweep {
  0%, 100% { transform: translate3d(-4%,-2%,0) scale(1.01); }
  50% { transform: translate3d(4%,2%,0) scale(1.05); }
}

[hidden] {
  display: none !important;
}

body.drawerOpen {
  overflow: hidden;
}

/* Scroll-safe green atmosphere: static background layers deliberately avoid
   fixed painting, transforms, filters and clipping containers. */
body {
  background: #f7fbf8;
}

/* Page surfaces only. Overlays and every interactive button keep their own
   neutral or dark-green states for contrast and clear click affordance. */
main > section,
footer {
  background-color: #eff8f1;
  background-image:
    radial-gradient(ellipse 48% 38% at 8% 12%, rgba(140,230,172,.22) 0%, rgba(195,244,210,.09) 48%, transparent 78%),
    radial-gradient(ellipse 44% 42% at 92% 86%, rgba(40,159,94,.14) 0%, rgba(142,225,170,.055) 52%, transparent 80%);
  background-repeat: no-repeat;
}

.hero {
  background-color: #eaf7ee;
  background-image:
    radial-gradient(ellipse 52% 46% at 10% 12%, rgba(133,230,167,.26) 0%, rgba(199,246,213,.11) 50%, transparent 79%),
    radial-gradient(ellipse 42% 48% at 88% 84%, rgba(32,151,90,.16) 0%, rgba(137,225,168,.06) 52%, transparent 80%);
  background-repeat: no-repeat;
}

.trustRail,
.certShowcaseSection,
.portfolioSection {
  background-color: #e7f5eb;
}

.productShowcase,
.partnersSection,
.faqSection {
  background-color: #f3faf5;
}

.aboutUsSection,
.closingSection,
footer {
  background-color: #edf8f0;
}

.paymentInstructionPanel {
  background:
    radial-gradient(ellipse 65% 52% at 100% 0%, rgba(116,218,153,.13), transparent 68%),
    linear-gradient(145deg,rgba(255,255,255,.96),rgba(237,248,241,.92));
}

/* The fixed canvas is retired: it caused continuous full-viewport compositing
   on scroll. Keep this selector harmless for cached markup during deployment. */
.siteLiquidCanvas {
  display: none;
}

/* Keep the overlay interaction layer independent from the animated page canvas. */
.drawerBackdrop {
  z-index: 80;
}

.sideDrawer {
  position: fixed;
  z-index: 90;
  overflow-x: hidden;
  overflow-y: auto;
}

.mobileBuyDock {
  position: fixed;
  z-index: 70;
}

.buyButton {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg,#063f2d 0%,#168249 50%,#0b6846 100%);
  background-size: 200% 100%;
  transform: translateZ(0);
}

.buyButton span {
  display: inline-block;
}

.buyButton:active {
  transform: scale(.985);
}

#mainTotal.totalConfirm {
  animation: totalConfirm .36s ease-out;
}

.supplierIdentity small {
  display: block;
  color: #5f7369;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.2;
}

@media (prefers-reduced-motion: no-preference) {
  .hero.heroPurchaseMotionIn .buyButton {
    animation: buyButtonPulse 8s ease-in-out infinite;
  }

  .hero.heroPurchaseMotionIn .buyButton span {
    animation: buyArrowNudge 8s ease-in-out infinite;
  }

  .heroMedia > img:not(.heroSingleProductImage) {
    animation: productFloat 12s ease-in-out infinite;
    will-change: transform;
  }

  .drawerOpen .heroMedia > img:not(.heroSingleProductImage),
  .drawerOpen .buyButton,
  .drawerOpen .buyButton span,
  body.isScrolling .heroMedia > img:not(.heroSingleProductImage),
  body.isScrolling .buyButton,
  body.isScrolling .buyButton span {
    animation-play-state: paused;
  }
}

.graphicLightbox.open {
  display: grid;
}

.checkoutForm {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.checkoutFields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.checkoutFields label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.checkoutFields .fieldWide {
  grid-column: 1 / -1;
}

.checkoutFields input {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  color: var(--ink);
  background: #fff;
}

.checkoutFields input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,130,73,.1);
}

.formStatus {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.formStatus.success {
  color: #087a45;
}

.formStatus.error {
  color: #b42318;
}

.alipayButton:disabled,
.buyButton:disabled {
  cursor: wait;
  opacity: .62;
}

.paymentMethodCard .alipayMark,
.alipayButton .alipayButtonMark {
  color: #fff;
  background: linear-gradient(135deg,#0b6b4d,#064c38);
  border-radius: 9px;
  font-size: 10px;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(6,76,56,.18);
}

.paymentMethodCard > b {
  color: #0b6b4d;
}

.alipayButton {
  background: linear-gradient(135deg,#0b6b4d,#064c38);
  box-shadow: 0 14px 28px rgba(6,76,56,.22);
}

.paymentInstructionPanel {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #cfded5;
  border-radius: 14px;
  background: linear-gradient(145deg,#fbfdfb,#f0f6f2);
  box-shadow: 0 12px 28px rgba(6,63,45,.07);
}

.paymentInstructionPanel[hidden] {
  display: none !important;
}

.paymentInstructionHead {
  display: grid;
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dce7df;
}

.paymentInstructionHead span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.paymentInstructionHead strong {
  color: var(--forest);
  font-size: 17px;
  letter-spacing: -.02em;
}

.paymentAmountSummary {
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  border: 1px solid #b9d7c3;
  border-radius: 12px;
  background: linear-gradient(135deg,#e9f6ed,#f8fbf9);
}

.paymentAmountSummary span {
  color: #42705c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.paymentAmountSummary strong {
  color: var(--forest);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.paymentAmountSummary small {
  color: #62756c;
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.45;
}

.paymentInstructionPanel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.paymentInstructionPanel dl > div {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid #d8e6dc;
  border-radius: 10px;
  background: rgba(255,255,255,.82);
}

.paymentPrimaryDetails > div:nth-child(-n+3) {
  border-color: #c6ddce;
  box-shadow: 0 5px 14px rgba(6,63,45,.04);
}

.paymentReferenceItem {
  gap: 4px !important;
  border-color: #d8e6dc !important;
  background: rgba(255,255,255,.82) !important;
}

.paymentReferenceItem dt label {
  cursor: default;
}

.paymentReferenceItem input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  color: var(--forest);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.48;
  transition: none;
}

.paymentReferenceItem input[readonly] {
  cursor: default;
  caret-color: transparent;
}

.paymentReferenceItem input[readonly]:focus {
  background: transparent;
  box-shadow: none;
}

.paymentInstructionPanel dt {
  color: #62756c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.paymentInstructionPanel dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.copyValue {
  flex: 1 1 auto;
  min-width: 0;
}

.copyButton {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid #bdd4c5;
  border-radius: 6px;
  background: #fff;
  color: #47675a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.copyButton:hover {
  background: #f0f6f2;
  border-color: #0b6b4d;
  color: #0b6b4d;
}

.copyButton.copied {
  background: #e9f6ed;
  border-color: #0b6b4d;
  color: #0b6b4d;
}

.paymentReferenceItem dd {
  gap: 8px;
}

.paymentInstructionPanel dd small {
  display: block;
  margin-top: 3px;
  color: #62756c;
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.5;
}

.additionalBankToggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #bfd5c7;
  border-radius: 8px;
  color: #315b4b;
  background: rgba(255,255,255,.78);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.additionalBankToggle:hover {
  border-color: #78a98e;
  color: #0b6b4d;
  background: #fff;
}

.additionalBankToggle b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: #0b6b4d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s ease;
}

.additionalBankToggle[aria-expanded="true"] b {
  transform: rotate(45deg);
}

.additionalBankDetails {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid #d5e3da;
  border-radius: 11px;
  background: rgba(247,251,248,.88);
}

.additionalBankDetails[hidden] {
  display: none !important;
}

.additionalBankHead {
  display: grid;
  gap: 3px;
}

.additionalBankHead span {
  color: #648075;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
}

.additionalBankHead strong {
  color: var(--forest);
  font-size: 15px;
  line-height: 1.25;
}

.paymentInstructionPanel .backupBankDetails {
  gap: 7px;
}

.paymentInstructionPanel .backupBankDetails > div {
  padding: 10px 11px;
  background: rgba(255,255,255,.72);
}

.backupValueGroup {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.backupValueGroup small {
  margin-top: 0 !important;
}

.placeOrderButton {
  width: 100%;
  margin-top: 2px;
  justify-content: center;
}

.headerAboutButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 31px;
  margin-left: 14px;
  padding: 0 12px;
  border: 1px solid rgba(6,63,45,.13);
  border-radius: 999px;
  background: rgba(247,250,247,.82);
  color: var(--forest);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .01em;
  box-shadow: none;
}

.headerAboutButton:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(127,188,69,.13);
}

.aboutUsSection {
  background: #f5f7f5;
}

.aboutUsCard {
  display: grid;
  gap: 18px;
  padding: 26px 28px 14px;
  border: 1px solid rgba(6,63,45,.09);
  border-radius: 24px;
  background: linear-gradient(145deg,#fff 0%,#fbfdfb 54%,#edf5ee 100%);
  box-shadow: 0 18px 50px rgba(24,52,42,.09);
  overflow: hidden;
}

.trustRail {
  padding: 20px 0 0;
  border-color: #dce7df;
  background: #f7faf7;
}

.trustRailContent {
  display: grid;
  gap: 25px;
}

.trustRailHeading {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 16px;
  text-align: center;
}

.trustRailHeading > span {
  color: #2a7856;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.trustRailHeading h2 {
  max-width: 650px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(24px,3vw,35px);
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.trustRailInner {
  border-top: 1px solid #dce7df;
}

.trustBadge {
  background: rgba(255,255,255,.66);
}

.trustBadge span {
  color: #355e4e;
}

.productShowcase {
  overflow: visible;
  padding: 14px 0;
  background: #f3f7f3;
}

.productShowcaseInner {
  display: grid;
  gap: 16px;
}

.productShowcaseHead {
  position: sticky;
  top: 82px;
  z-index: 4;
  display: grid;
  justify-items: center;
  padding: 18px 18px 20px;
  border: 1px solid rgba(207,222,212,.88);
  border-radius: 22px;
  background: rgba(243,247,243,.96);
  box-shadow: 0 12px 30px rgba(24,52,42,.055);
  text-align: center;
}

.productShowcaseHead h2 {
  margin: 8px 0 0;
  color: var(--forest);
  font-size: clamp(38px,5.2vw,62px);
  line-height: 1.02;
  letter-spacing: -.052em;
}

.sugarReductionTitle span {
  display: block;
}

.productStoryFlow {
  display: grid;
  gap: 24px;
}

.productStory {
  overflow: hidden;
  border: 1px solid #d2e1d5;
  border-radius: 24px;
  background: #edf5ef;
  box-shadow: 0 18px 44px rgba(24,52,42,.065);
}

.productStoryHeading {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: end;
  padding: 30px 30px 0;
}

.productStoryNumber {
  color: #8db79a;
  font-size: 58px;
  font-weight: 850;
  line-height: .8;
  letter-spacing: -.08em;
}

.productStoryHeading > div {
  display: grid;
  gap: 7px;
}

  .productStoryHeading small {
    color: #277454;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .14em;
  }

.productStoryHeading h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(34px,4.5vw,52px);
  line-height: .98;
  letter-spacing: -.06em;
}

.productStoryTitle span {
  display: block;
}

.productStoryTitleTaste,
.productStoryTitleFunction {
  font-size: clamp(29px,3.9vw,46px);
  line-height: 1.02;
  letter-spacing: -.052em;
}

.productStory > p {
  max-width: 620px;
  margin: 18px 30px 25px 124px;
  color: #526b60;
  font-size: 14px;
  font-weight: 520;
  line-height: 1.55;
}

.productStoryImage {
  position: relative;
  width: calc(100% - 20px);
  display: block;
  overflow: hidden;
  margin: 0 10px 10px;
  padding: 0;
  border: 1px solid #d5e2d7;
  border-radius: 15px;
  background: #f7faf7;
  cursor: zoom-in;
  text-align: left;
}

.productStoryImage img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .38s cubic-bezier(.2,.75,.25,1);
}

.productStoryImage:hover img {
  transform: scale(1.018);
}

@keyframes productShowcaseHeadEnter {
  0% { opacity: 0; transform: translateY(18px); }
  66% { opacity: 1; transform: translateY(-3px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes productStoryReveal {
  0% { opacity: .65; transform: translateY(9px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .productShowcaseHead.showcaseHeadEntered {
    animation: productShowcaseHeadEnter .68s cubic-bezier(.2,.78,.25,1) both;
  }
}

@media (max-width: 430px) {
  .productStory > p {
    max-width: none;
    margin-right: 18px;
    font-size: 13px;
    line-height: 1.62;
  }

  .productStoryUses > p {
    font-size: 12.5px;
    line-height: 1.6;
  }

  /* Keep the mobile hero frame fixed from the first paint. The product
     image keeps its separate horizontal entrance, without making the page
     appear to be pulled vertically during startup. */

  .buyPanel .kicker {
    margin: 0 0 9px;
    padding: 0;
    color: #257553;
    font-size: 10.5px;
    letter-spacing: .1em;
    text-align: left;
  }

  .buyPanel .heroLiquidGlass .kicker {
    margin-bottom: 10px;
  }

  .buyPanel .heroLead {
    max-width: 310px;
    color: #5b6f66;
    font-size: 14.5px;
    line-height: 1.52;
  }

  .buyPanel .offerPrice {
    align-items: center;
    grid-template-columns: 1fr;
    padding: 15px 16px;
    border-color: #d4e3d8;
    background: linear-gradient(135deg,#fbfdfb,#edf6ef);
  }

  .buyPanel .limitedOfferBadge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid #dbe9de;
    border-radius: 999px;
    color: #16734b;
    background: #edf6ef;
    font-size: 9.5px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .buyPanel .limitedOfferBadge i {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #e17648;
    box-shadow: 0 0 0 4px rgba(225,118,72,.12);
  }

  .buyPanel .offerMain {
    margin-top: 4px;
  }

  .buyPanel .offerAmount {
    position: relative;
    width: max-content;
    overflow: hidden;
    padding: 2px 3px 5px 0;
  }

  .buyPanel .offerAmount:after {
    content: "";
    position: absolute;
    top: -24%;
    bottom: -24%;
    left: 0;
    width: 14%;
    pointer-events: none;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.88),transparent);
    opacity: 0;
  }

  .buyPanel .offerAmount small {
    align-self: flex-end;
    margin: 0 0 2px 7px;
    color: var(--forest);
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .015em;
  }

  @media (prefers-reduced-motion: no-preference) {
    .hero.heroPurchaseMotionIn .buyPanel .limitedOfferBadge {
      animation: limitedOfferBounce 4.6s ease-in-out infinite;
      transform-origin: left center;
    }

    .hero.heroPurchaseMotionIn .buyPanel .limitedOfferBadge i {
      animation: limitedOfferDot 4.6s ease-in-out infinite;
    }

    .hero.heroPurchaseMotionIn .buyPanel .offerAmount:after {
      animation: priceShine 5.6s ease-in-out infinite;
    }
  }

  .buyPanel .buyProof {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .buyPanel .buyProof li {
    display: flex;
    align-items: center;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .buyPanel .buyProof li:before {
    flex: 0 0 auto;
  }

  .buyPanel .buyButton {
    min-height: 56px;
    border-radius: 14px;
    font-size: 14px;
  }

  .buyPanel .messageButton {
    min-height: 42px;
    border-color: #dce6df;
    color: #416154;
    background: rgba(255,255,255,.7);
  }

  .buyPanel .finePrint {
    margin-top: 10px;
    color: #798b83;
    font-size: 10.5px;
  }

  .trustRail {
    padding-top: 16px;
    background: #f5f9f5;
  }

  .trustRailContent {
    width: 100%;
    gap: 21px;
  }

  .trustRailHeading {
    gap: 8px;
    padding: 0 24px;
  }

  .trustRailHeading > span {
    color: #31805e;
    font-size: 9px;
    letter-spacing: .13em;
  }

  .trustRailHeading h2 {
    max-width: 340px;
    color: #174b38;
    font-size: 23px;
    font-weight: 780;
    line-height: 1.2;
    letter-spacing: -.032em;
  }

  .trustRailInner {
    border-top-color: #dbe7de;
  }

  .productShowcase {
    padding: 10px 0 14px;
  }

  .productShowcaseInner {
    gap: 12px;
  }

  .productShowcaseHead {
    top: 76px;
    justify-items: center;
    padding: 15px 14px 16px;
    border-radius: 17px;
    text-align: center;
  }

  .productShowcaseHead h2 {
    max-width: 340px;
    margin: 8px auto 0;
    font-size: clamp(28px,8.2vw,35px);
    line-height: 1.08;
    letter-spacing: -.045em;
  }

  .sugarReductionTitle span:last-child {
    margin-top: 3px;
    font-size: .76em;
    line-height: 1.15;
    letter-spacing: -.035em;
  }

  .productStoryFlow {
    gap: 16px;
  }

  .productStory {
    border-radius: 19px;
    box-shadow: 0 13px 32px rgba(24,52,42,.065);
  }

  .productStoryHeading {
    grid-template-columns: 53px 1fr;
    gap: 13px;
    padding: 23px 18px 0;
  }

  .productStoryNumber {
    font-size: 46px;
  }

  .productStoryHeading h3 {
    font-size: 31px;
    line-height: 1;
  }

  .productStoryTitleHealth {
    font-size: clamp(26px,7.7vw,31px);
    line-height: 1.04;
  }

  .productStoryTitleTaste,
  .productStoryTitleFunction {
    font-size: clamp(22px,6.25vw,27px);
    line-height: 1.08;
    letter-spacing: -.045em;
  }

  .productStoryTitle span + span {
    margin-top: 2px;
  }

  .productStory > p {
    max-width: 300px;
    margin: 15px 18px 20px 84px;
    color: #496258;
    font-size: 13.5px;
    line-height: 1.62;
  }

  .trustBadge {
    min-height: 96px;
    grid-template-rows: 50px auto;
    gap: 7px;
    padding: 12px 7px 11px;
    border-color: #dbe7de;
    background: rgba(255,255,255,.72);
  }

  .trustBadge img {
    width: 50px;
    height: 50px;
  }

  .trustBadgeWide img {
    width: 68px;
  }

  .trustBadge span {
    max-width: 115px;
    color: #315e4d;
    font-size: 9px;
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: .045em;
  }

  .minimalHeader {
    border-bottom: none;
  }

  .headerInner {
    position: relative;
    height: 66px;
    min-height: 66px;
    flex-wrap: nowrap;
    align-content: center;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .supplierIdentity {
    position: absolute;
    top: 50%;
    left: 50%;
    order: initial;
    width: max-content;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    padding-left: 0;
    border-top: 0;
    border-left: 0;
    text-align: center;
    transform: translate(-50%,-50%);
  }

  .supplierIdentity strong {
    position: relative;
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 1px;
    overflow: hidden;
    color: #176442;
    font-weight: 850;
    text-transform: none;
    white-space: nowrap;
  }

  .supplierIdentity strong:after {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -34%;
    width: 22%;
    pointer-events: none;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.78),transparent);
    transform: skewX(-18deg);
  }

  .supplierIdentity strong span {
    color: inherit;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .012em;
  }

  .supplierIdentity strong small {
    color: inherit;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .045em;
  }

  @media (prefers-reduced-motion: no-preference) {
    .supplierIdentity strong:after {
      animation: supplierShine 4.8s ease-in-out infinite;
    }
  }

  .headerAboutButton {
    order: initial;
    flex: 0 0 auto;
    min-height: 30px;
    margin-left: auto;
    padding: 0 10px;
    border-color: rgba(6,63,45,.13);
    background: #f7faf7;
    font-size: 10px;
    letter-spacing: .01em;
    box-shadow: 0 1px 5px rgba(6,63,45,.05);
  }

  .headerAboutButton:before {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 0 2px rgba(127,188,69,.11);
  }

  .aboutUsSection {
    padding-top: 14px;
  }
}

.aboutUsCopy h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--forest);
  font-size: clamp(34px,5vw,52px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -.06em;
}

.aboutUsCopy p:not(.kicker) {
  max-width: 760px;
  margin: 0;
  color: #5c7167;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: 0;
}

.aboutUsImage {
  margin: 8px 0 0;
  border: 1px solid #d7e4da;
  border-radius: 20px;
  background: #eef4ef;
  box-shadow: 0 16px 36px rgba(24,52,42,.07);
  overflow: hidden;
}

.aboutUsImage img {
  width: 100%;
  display: block;
}

.partnersSection {
  overflow: hidden;
  padding: 6px 0;
  background: #f3f7f3;
}

.partnersCard {
  display: grid;
  gap: 16px;
  padding: 40px 32px 24px;
  border: 1px solid rgba(6,63,45,.09);
  border-radius: 24px;
  background: linear-gradient(145deg,#fff 0%,#fbfdfb 54%,#edf5ee 100%);
  box-shadow: 0 18px 50px rgba(24,52,42,.09);
}

.partnersCopy {
  display: grid;
  gap: 16px;
}

.partnersCard .kicker {
  color: var(--green);
}

.partnersCard h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(34px,5vw,52px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -.06em;
}

.partnersLead {
  max-width: 780px;
  margin: 4px 0 6px;
  color: #5c7167;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.55;
}

.partnersLogoGrid {
  margin: 10px 0 0;
  border: none;
  border-radius: 28px;
  background: #f1f7f2;
  box-shadow: none;
  overflow: hidden;
}

.partnersLogoGrid img {
  width: 100%;
  display: block;
  transform: scale(1.02);
}

@media (max-width: 700px) {
  .checkoutFields {
    grid-template-columns: 1fr;
  }

  .checkoutFields .fieldWide {
    grid-column: auto;
  }

  .checkoutFields label {
    font-size: 12px;
  }

  .checkoutFields input {
    min-height: 46px;
    font-size: 16px;
  }

  .paymentReferenceItem {
    padding: 11px 12px !important;
    gap: 4px !important;
  }

  .checkoutForm .drawerTotals {
    margin-top: 2px;
  }

  .formStatus {
    font-size: 13px;
  }

  .headerAboutButton {
    min-height: 30px;
    margin-left: auto;
    padding: 0 10px;
    border-color: rgba(6,63,45,.12);
    background: rgba(247,250,247,.78);
    font-size: 9px;
    white-space: nowrap;
  }

  .aboutUsCard {
    width: calc(100% - 24px);
    padding: 20px 18px 12px;
    border-radius: 20px;
    gap: 16px;
  }

  .aboutUsCopy h2 {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.055em;
    font-weight: 750;
  }

  .aboutUsCopy p:not(.kicker) {
    font-size: 16px;
    font-weight: 450;
    line-height: 1.55;
  }

  .aboutUsImage {
    margin-top: 2px;
    border-radius: 16px;
  }

  .partnersCard {
    width: calc(100% - 24px);
    padding: 24px 20px 16px;
    border-radius: 20px;
    gap: 12px;
  }

  .partnersCard h2 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.055em;
    font-weight: 750;
  }

  .partnersLead {
    font-size: 16px;
    font-weight: 450;
    line-height: 1.55;
  }

  .partnersLogoGrid {
    margin-top: 6px;
    border-radius: 16px;
  }

  .portfolioRangeTitle {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.portfolioRangeTitle {
  font-size: 28px;
  font-weight: 750;
  color: #063f2d;
  line-height: 1.15;
  letter-spacing: -.04em;
  margin: 0 0 14px;
  text-align: center;
}

/* Portfolio ingredients — white two-column grid */
.portfolioIngredients {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #d8e6dc;
  border-left: 1px solid #d8e6dc;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin: 18px 0 22px;
}

.portfolioIngredients > span {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 15px 13px;
  border-right: 1px solid #d8e6dc;
  border-bottom: 1px solid #d8e6dc;
  min-height: 56px;
}

.portfolioIngredients > span b {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #063f2d;
  line-height: 1.3;
  text-align: left;
}

.portfolioIngredients > span small {
  display: none;
}

.portfolioIngredientFeatured {
  background: #fff;
}

/* The 12 ingredient cells unfold in reading order. A 1.10s cell animation
   plus a 1.90s final delay makes the complete group exactly 3.00 seconds. */
.portfolioIngredients {
  perspective: 900px;
}

.portfolioIngredients > span {
  transform-origin: top center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

@media (prefers-reduced-motion: no-preference) {
  .portfolioSection.portfolioFlipReady .portfolioIngredients > span {
    opacity: .01;
    transform: perspective(900px) rotateX(-88deg) translate3d(0,-7px,0);
    will-change: transform, opacity;
  }

  .portfolioSection.portfolioFlipIn .portfolioIngredients > span {
    animation: portfolioIngredientFlipIn 1.1s var(--ingredient-delay,0s) cubic-bezier(.16,1,.3,1) both;
  }

  .portfolioSection.portfolioFlipDone .portfolioIngredients > span:hover {
    transform: perspective(900px) rotateX(-4deg) translate3d(0,-1px,0);
  }

  .portfolioSection.portfolioFlipDone .portfolioIngredients > span.ingredientCellReplay {
    animation: portfolioIngredientReplay .9s cubic-bezier(.16,1,.3,1) both;
  }

  @keyframes portfolioIngredientFlipIn {
    0% {
      opacity: .01;
      transform: perspective(900px) rotateX(-88deg) translate3d(0,-7px,0);
    }

    76% {
      opacity: 1;
      transform: perspective(900px) rotateX(2deg) translate3d(0,1px,0);
    }

    100% {
      opacity: 1;
      transform: perspective(900px) rotateX(0deg) translate3d(0,0,0);
    }
  }

  @keyframes portfolioIngredientReplay {
    0%, 100% {
      transform: perspective(900px) rotateX(0deg);
    }

    48% {
      transform: perspective(900px) rotateX(-72deg);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolioIngredients > span {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Tighten vertical spacing across sections */
.portfolioSection,
.documentationSection,
.faqSection,
.closingSection {
  padding: 6px 0;
}

.closingInner {
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
  padding: 46px 34px;
  border-radius: 24px;
  background: linear-gradient(145deg, #063f2d 0%, #0b6846 100%);
  box-shadow: 0 20px 56px rgba(6,63,45,.22);
}

.closingInner > div {
  display: grid;
  justify-items: center;
  width: 100%;
}

.closingInner .kicker {
  margin: 0 0 10px;
  color: rgba(255,255,255,.7);
}

.closingInner h2 {
  margin: 0;
  color: #fff;
  font-size: 33px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.closingInner button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 16px 30px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}

.closingInner button:hover {
  background: #fff;
  border-color: #fff;
  color: #063f2d;
}

.closingInner button:active {
  transform: scale(.98);
}

/* Certifications showcase as a standalone card matching About Us */
.certShowcaseSection {
  padding: 2px 0;
  background: #f5f7f5;
}

.certShowcaseCard {
  padding: 22px 28px 24px;
  border: 1px solid rgba(6,63,45,.09);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 60% at 12% 12%, rgba(255,255,255,.92) 0%, transparent 48%),
    radial-gradient(ellipse 65% 55% at 88% 14%, rgba(255,255,255,.78) 0%, transparent 44%),
    radial-gradient(ellipse 70% 65% at 86% 86%, rgba(255,255,255,.72) 0%, transparent 46%),
    radial-gradient(ellipse 60% 55% at 14% 84%, rgba(255,255,255,.66) 0%, transparent 42%),
    linear-gradient(155deg,#f6f9f7 0%,#eef4ef 52%,#e5efe7 100%);
  box-shadow: 0 18px 50px rgba(24,52,42,.09);
  text-align: center;
}

.aboutUsCertsDivider {
  width: 100%;
  max-width: 320px;
  height: 1px;
  margin: 0 auto 22px;
  border: 0;
  background: #d4e1d7;
}

.certShowcaseCard h2 {
  margin: 0 0 22px;
  color: #0a1f18;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-align: center;
}

.certCarousel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.certCarouselViewport {
  position: relative;
  width: 100%;
  overflow: visible;
  perspective: 1000px;
  padding: 0;
}

.certCarouselTrack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  height: 295px;
}

.certCarouselSlide {
  position: absolute;
  left: 50%;
  top: 0;
  width: 200px;
  margin-left: -100px;
  padding: 0;
  transition: opacity .55s ease, transform .55s cubic-bezier(.34,1.56,.64,1);
  opacity: .45;
  transform-origin: center center;
  -webkit-tap-highlight-color: transparent;
}

.certCarouselSlide.active {
  opacity: 1;
}

.certCarouselImage {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  border: none;
  border-radius: 14px;
  background: #f4f9f5;
  box-shadow: 0 6px 18px rgba(6,63,45,.12);
  overflow: hidden;
  cursor: zoom-in;
  padding: 0;
  transition: box-shadow .5s ease;
}

.certCarouselSlide.active .certCarouselImage {
  box-shadow: 0 20px 46px rgba(6,63,45,.22);
}

.certCarouselImage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f9f5;
}

.certArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 1px solid #d4e1d7;
  border-radius: 50%;
  background: #fff;
  color: #063f2d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  display: none;
}

.certArrow:hover {
  background: #063f2d;
  border-color: #063f2d;
  color: #fff;
}

.certArrowPrev {
  left: 0;
}

.certArrowNext {
  right: 0;
}

.certCarouselDots {
  display: flex;
  gap: 9px;
  justify-content: center;
}

.certCarouselDots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #d4e1d7;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.certCarouselDots button.active {
  background: #063f2d;
  transform: scale(1.25);
}

.portfolioCard {
  display: grid;
  gap: 18px;
}

.portfolioVisual {
  margin: 0;
}

.portfolioVisual img {
  display: block;
  width: 100%;
}

@media (max-width: 700px) {
  .partnersSection {
    padding: 4px 0;
  }

  .portfolioSection,
  .documentationSection,
  .faqSection,
  .closingSection {
    padding: 4px 0;
  }

  .closingInner {
    gap: 20px;
    justify-items: center;
    padding: 34px 22px;
    border-radius: 20px;
    text-align: center;
  }

  .closingContent,
  .closingContent > div {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .closingInner .kicker {
    width: 100%;
    text-align: center;
  }

  .closingInner h2 {
    width: 100%;
    margin: 0;
    font-size: 27px;
    line-height: 1.1;
    text-align: center;
  }

  .closingInner button {
    margin: 0 auto;
    padding: 14px 26px;
    font-size: 14px;
  }

  .portfolioCard {
    gap: 14px;
  }

  .aboutUsCard {
    padding: 28px 20px 12px;
  }

  .partnersCard {
    padding: 28px 20px 16px;
  }

  .certShowcaseSection {
    padding: 2px 0;
  }

  .certShowcaseCard {
    padding: 18px 20px 18px;
    border-radius: 20px;
  }

  .aboutUsCertsDivider {
    max-width: 260px;
    margin-bottom: 18px;
  }

  .certShowcaseCard h2 {
    margin-bottom: 14px;
    font-size: 27px;
    letter-spacing: -.015em;
  }

  .certCarousel {
    gap: 10px;
  }

  .certCarouselViewport {
    padding: 0;
  }

  .certCarouselTrack {
    height: 250px;
  }

  .certCarouselSlide {
    width: 170px;
    margin-left: -85px;
  }

  .certCarouselImage {
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(6,63,45,.12);
  }
}

/* Compact blended sweetener story card (no image) */
.productStoryBlend {
  padding-bottom: 6px;
}

.productStoryBlend .productStoryHeading {
  grid-template-columns: 1fr;
  padding-bottom: 0;
}

.productStoryBlend .productStoryHeading h3 {
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.productStoryBlend > p {
  margin: 18px 30px 20px 30px;
  font-size: 18px;
  line-height: 1.55;
}

.blendCarouselDivider {
  width: calc(100% - 60px);
  height: 1px;
  margin: 4px 30px 18px;
  border: 0;
  background: rgba(6,63,45,.12);
}

.blendCarousel {
  margin: 0 30px 20px;
}

.blendCarouselTrack {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 16px;
}

.blendCarouselTrack::-webkit-scrollbar {
  display: none;
}

.blendCarouselSlide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f7f3;
}

.blendCarouselSlide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transform: scale(1.04);
  border-radius: 0;
}

.blendCarouselDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.blendCarouselDots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(6,63,45,.22);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.blendCarouselDots button.active {
  background: #063f2d;
  transform: scale(1.15);
}

@media (max-width: 430px) {
  .productStoryBlend .productStoryHeading {
    grid-template-columns: 1fr;
  }

  .productStoryBlend .productStoryHeading h3 {
    font-size: 24px;
    line-height: 1.08;
  }

  .productStoryBlend > p {
    margin: 15px 18px 16px 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .blendCarouselDivider {
    width: calc(100% - 36px);
    margin: 2px 18px 14px;
  }

  .blendCarousel {
    margin: 0 18px 16px;
  }

  .blendCarouselTrack,
  .blendCarouselSlide img {
    border-radius: 14px;
  }

  .blendCarouselDots {
    margin-top: 12px;
  }
}

/* Prevent horizontal scroll from overflowing carousel slides; hide scrollbar track */
html, body {
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
  background: transparent;
}

/* Tablet / small desktop — wider single-column layout, protect mobile */
@media (min-width: 768px) and (max-width: 1023px) {
  body {
    background: #e8ede9;
  }

  .shell {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .offerBar {
    background: #f3f7f3;
    border-bottom: 1px solid rgba(6,63,45,.08);
  }

  .minimalHeader {
    background: #f3f7f3;
  }

  .headerInner {
    max-width: 760px;
    height: 72px;
    padding: 0 32px;
  }

  .headerInner nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: 16px;
  }

  .headerInner nav a {
    color: #2a5746;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transition: color .2s ease;
  }

  .headerInner nav a:hover {
    color: #063f2d;
  }

  .wordmark {
    margin-right: 12px;
  }

  .supplierIdentity {
    display: none;
  }

  .headerAboutButton {
    display: none;
  }

  .headerInquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: #063f2d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease;
  }

  .headerInquiry:hover {
    background: #0b6846;
  }

  .headerInquiry:active {
    transform: scale(.98);
  }

  main#top {
    max-width: 760px;
    margin: 0 auto;
    background: #f3f7f3;
    box-shadow: 0 0 60px rgba(6,63,45,.08);
  }

  .heroGrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mobileBuyDock {
    display: none;
  }
}

/* Large desktop — true multi-column responsive layout, max-width 1280px */
@media (min-width: 1024px) {
  body {
    background: #e8ede9;
  }

  .shell {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
  }

  .offerBar {
    background: #063f2d;
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: #fff;
  }

  .offerBar span,
  .offerBar strong,
  .offerBar a {
    color: #fff;
  }

  .offerBar a {
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.1);
  }

  .offerBar a:hover {
    background: rgba(255,255,255,.18);
  }

  .minimalHeader {
    background: #f3f7f3;
  }

  .headerInner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 70px;
    padding: 0 28px;
  }

  .headerInner nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 24px;
  }

  .headerInner nav a {
    color: #2a5746;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: .01em;
    text-decoration: none;
    transition: color .2s ease;
  }

  .headerInner nav a:hover {
    color: #063f2d;
  }

  .wordmark {
    margin-right: 14px;
  }

  .supplierIdentity {
    display: none;
  }

  .headerAboutButton {
    display: none;
  }

  .headerInquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 20px;
    border-radius: 999px;
    background: #063f2d;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease;
  }

  .headerInquiry:hover {
    background: #0b6846;
  }

  .headerInquiry:active {
    transform: scale(.98);
  }

  main#top {
    max-width: none;
    width: 100%;
    margin: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero {
    background-color: #eaf7ee;
    background-image:
      radial-gradient(ellipse 52% 46% at 10% 12%, rgba(133,230,167,.26) 0%, rgba(199,246,213,.11) 50%, transparent 79%),
      radial-gradient(ellipse 42% 48% at 88% 84%, rgba(32,151,90,.16) 0%, rgba(137,225,168,.06) 52%, transparent 80%);
    background-repeat: no-repeat;
    padding: 18px 0 28px;
  }

  .heroGrid {
    display: grid;
    grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr);
    gap: 28px;
    align-items: stretch;
  }

  .heroMedia {
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 26px 28px;
    border: 1px solid rgba(153,191,164,.42);
    border-radius: 22px;
    background-color: #f4f8f5;
    background-image: url("/static/assets/about-us-frame-bg.jpg");
    background-repeat: no-repeat;
    background-position: 52% 48%;
    background-size: 122% 122%;
    box-shadow: 0 16px 42px rgba(24,52,42,.08);
    overflow: hidden;
  }

  .heroMedia > img {
    width: auto;
    height: auto;
    max-width: 100%;
    min-height: 0;
    max-height: 430px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(16,47,36,.08);
  }

  .buyPanel {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
    padding: 26px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(6,63,45,.07);
    border: 1px solid rgba(6,63,45,.06);
  }

  .buyPanel h1 {
    font-size: clamp(34px,3.2vw,50px);
    line-height: 1.05;
  }

  .buyPanel .heroLead {
    font-size: 18px;
    line-height: 1.7;
  }

  .buyPanel .offerPrice {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 16px;
    border-color: #cfe5d4;
    background: linear-gradient(135deg,#f6fbf7,#e6f3e9);
  }

  .buyPanel .limitedOfferBadge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid #dbe9de;
    border-radius: 999px;
    color: #16734b;
    background: #edf6ef;
    font-size: 11.5px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .buyPanel .limitedOfferBadge i {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #e17648;
    box-shadow: 0 0 0 5px rgba(225,118,72,.12);
  }

  .buyPanel .offerMain {
    margin-top: 2px;
  }

  .buyPanel .offerAmount {
    display: flex;
    align-items: baseline;
    padding: 2px 3px 5px 0;
  }

  .buyPanel .offerAmount span {
    font-size: 24px;
    font-weight: 750;
    color: var(--forest);
    line-height: 1;
  }

  .buyPanel .offerAmount strong {
    font-size: clamp(42px,3.5vw,56px);
    font-weight: 850;
    color: var(--forest);
    line-height: .92;
    letter-spacing: -.045em;
  }

  .buyPanel .offerAmount b {
    font-size: clamp(22px,2vw,30px);
    font-weight: 850;
    color: var(--forest);
    line-height: 1;
  }

  .buyPanel .offerAmount small {
    align-self: flex-end;
    margin: 0 0 4px 9px;
    color: var(--forest);
    font-size: 16px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .015em;
  }

  .buyPanel .offerAmount:after {
    width: 14%;
  }

  .trustRail {
    padding: 42px 0;
    background-color: #e7f5eb;
    border-top: 1px solid #d4e8d9;
    border-bottom: 1px solid #d4e8d9;
  }

  .desktopCertificationTitle {
    display: inline;
  }

  .mobileCertificationTitle {
    display: none;
  }

  .trustRailContent {
    grid-template-columns: minmax(340px,1.06fr) minmax(0,1.94fr);
    align-items: center;
    gap: 40px;
    padding: 0;
  }

  .trustRailHeading {
    justify-items: start;
    text-align: left;
    max-width: 410px;
    padding: 0 0 0 4px;
  }

  .trustRailHeading > span {
    font-size: 11px;
    letter-spacing: .16em;
  }

  .trustRailHeading h2 {
    max-width: 410px;
    margin-top: 9px;
    font-size: clamp(25px,2.08vw,31px);
    line-height: 1.1;
    letter-spacing: -.048em;
  }

  .trustRailInner {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
    min-width: 0;
    padding: 0;
    border-top: 0;
  }

  .trustBadge {
    display: grid;
    grid-template-rows: 58px auto;
    align-content: center;
    justify-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 128px;
    padding: 14px 8px 12px;
    border-radius: 0;
    background: transparent;
    border-width: 0 0 0 1px;
    border-style: solid;
    border-color: #d6e7dc;
    box-shadow: none;
    transition: transform .2s ease, background .2s ease;
  }

  .trustBadge:first-child {
    border-left: 0;
  }

  .trustBadge:hover {
    transform: translateY(-3px);
    background: #eef4ef;
    box-shadow: none;
  }

  .trustBadge img {
    width: 54px;
    height: 54px;
    max-width: 72px;
    max-height: 54px;
    margin: 0;
    object-fit: contain;
  }

  .trustBadgeWide img {
    width: 72px;
    max-width: 72px;
  }

  .trustBadge span {
    max-width: 106px;
    color: #2a4a3d;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .02em;
    text-align: center;
  }

  .productShowcase {
    padding: 58px 0 68px;
    background: #f7faf8;
  }

  .productShowcaseInner {
    gap: 38px;
  }

  .productShowcaseHead {
    position: static;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: center;
  }

  .productShowcaseHead h2 {
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(34px,3.15vw,48px);
    line-height: 1.06;
    letter-spacing: -.045em;
  }

  .productShowcaseHead .sugarReductionTitle span:last-child {
    margin-top: 5px;
    font-size: .8em;
    line-height: 1.12;
    letter-spacing: -.035em;
  }

  .productStoryFlow {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 22px;
    align-items: stretch;
  }

  .productStory:not(.productStoryBlend) {
    display: grid;
    grid-template-rows: auto auto minmax(205px,1fr);
    min-height: 455px;
    padding: 18px 20px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(6,63,45,.08);
    box-shadow: 0 10px 30px rgba(6,63,45,.05);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .productStory:not(.productStoryBlend):hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(6,63,45,.09);
  }

  .productStoryHeading {
    grid-template-columns: 38px minmax(0,1fr);
    gap: 11px;
    align-items: end;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(6,63,45,.1);
  }

  .productStoryHeading small {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .productStoryNumber {
    font-size: 32px;
    color: #b8d4c0;
  }

  .productStoryHeading h3 {
    font-size: clamp(21px,1.9vw,28px);
    line-height: 1.08;
  }

  .productStoryTitleHealth {
    font-size: clamp(21px,1.8vw,27px);
  }

  .productStoryTitleTaste,
  .productStoryTitleFunction {
    font-size: clamp(18px,1.48vw,23px);
    line-height: 1.12;
    letter-spacing: -.035em;
  }

  .productStoryTitle span + span {
    margin-top: 2px;
  }

  .productStory > p {
    max-width: 48ch;
    margin: 10px 0 10px;
    color: #3d4f47;
    font-size: 15.5px;
    line-height: 1.58;
  }

  .productStoryUses > p {
    font-size: 15px;
    line-height: 1.54;
  }

  .productStoryImage {
    width: calc(100% + 40px);
    height: calc(100% + 20px);
    min-height: 205px;
    align-self: stretch;
    margin: 0 -20px -20px;
    border-radius: 0 0 18px 18px;
    background: #f7faf8;
    border-top: 1px solid rgba(6,63,45,.08);
    overflow: hidden;
  }

  .productStoryImage img {
    width: 100%;
    height: 100%;
    min-height: 205px;
    object-fit: contain;
    background: #f7faf8;
  }

  .productStoryBlend {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(0,1.2fr);
    grid-template-rows: auto auto;
    column-gap: 38px;
    row-gap: 14px;
    align-content: center;
    align-items: start;
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(6,63,45,.08);
    box-shadow: 0 10px 30px rgba(6,63,45,.05);
  }

  .productStoryBlend .productStoryHeading {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding: 0;
    text-align: left;
    border-bottom: 0;
  }

  .productStoryBlend .productStoryHeading h3 {
    max-width: 480px;
    font-size: clamp(30px,2.65vw,40px);
    line-height: 1.06;
  }

  .productStoryBlend > p {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-width: 520px;
    margin: 0;
    text-align: left;
    color: #3d4f47;
    font-size: clamp(20px,1.7vw,23px);
    line-height: 1.64;
  }

  .blendCarouselDivider {
    display: none;
  }

  .blendCarousel {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .blendCarouselTrack {
    border-radius: 14px;
  }

  .blendCarouselSlide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(260px,26vw,360px);
    background: #f4f8f5;
    border-radius: 14px;
    overflow: hidden;
  }

  .blendCarouselSlide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
  }

  .aboutUsSection,
  .certShowcaseSection,
  .partnersSection,
  .portfolioSection,
  .faqSection,
  .closingSection {
    padding: 68px 0;
  }

  .aboutUsSection {
    background-color: #edf8f0;
  }

  .certShowcaseSection {
    background: #f7faf8;
  }

  .partnersSection {
    background-color: #f3faf5;
  }

  .portfolioSection {
    background: #f7faf8;
  }

  .faqSection {
    background-color: #f3faf5;
  }

  .closingSection {
    padding: 0;
    background: transparent;
  }

  .aboutUsCard {
    grid-template-columns: minmax(0,1fr) minmax(380px,.92fr);
    gap: 30px;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .aboutUsCopy {
    display: grid;
    align-content: center;
    gap: 16px;
    max-width: 540px;
  }

  .aboutUsCopy .kicker {
    margin: 0;
  }

  .aboutUsCopy h2 {
    margin: 0;
    font-size: clamp(36px,3.3vw,48px);
    line-height: 1.05;
  }

  .aboutUsCopy p:not(.kicker) {
    max-width: 530px;
    margin: 0;
    color: #3d4f47;
    font-size: clamp(20px,1.7vw,23px);
    line-height: 1.62;
  }

  .aboutUsImage {
    display: grid;
    place-items: center;
    width: fit-content;
    max-width: 100%;
    min-height: 340px;
    margin: 0;
    padding: 18px 22px;
    border: 1px solid rgba(153,191,164,.55);
    border-radius: 24px;
    background-color: #f4f8f5;
    background-image: url("/static/assets/about-us-frame-bg.jpg");
    background-repeat: no-repeat;
    background-position: 54% 48%;
    background-size: 118% 118%;
    box-shadow: 0 18px 42px rgba(24,52,42,.09);
    overflow: hidden;
  }

  .aboutUsImage img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(46vh, 400px);
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(16,47,36,.08);
    display: block;
  }

  .certShowcaseCard {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .certShowcaseCard h2 {
    margin-bottom: 34px;
    font-size: clamp(30px,2.8vw,40px);
    text-align: center;
  }

  .certCarouselViewport {
    overflow: hidden;
    padding: 12px 0;
  }

  .certCarouselTrack {
    height: 330px;
  }

  .certCarouselSlide {
    width: 230px;
    margin-left: -115px;
  }

  .certArrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(6,63,45,.1);
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .certArrow:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(6,63,45,.14);
  }

  .certArrowPrev {
    left: 0;
  }

  .certArrowNext {
    right: 0;
  }

  .partnersCard {
    grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr);
    gap: 64px;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .partnersCopy {
    align-content: center;
    gap: 24px;
    max-width: 610px;
    padding: 18px 0;
  }

  .partnersCard .kicker {
    margin: 0;
    font-size: 12px;
    letter-spacing: .14em;
  }

  .partnersCard h2 {
    max-width: 560px;
    font-size: clamp(38px,3.6vw,52px);
    line-height: 1.04;
    letter-spacing: -.055em;
  }

  .partnersLead {
    max-width: 600px;
    margin: 2px 0 0;
    color: #3d4f47;
    font-size: clamp(20px,1.7vw,23px);
    font-weight: 480;
    line-height: 1.65;
  }

  .partnersLogoGrid {
    width: min(100%,400px);
    justify-self: end;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .portfolioCard {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 48px;
    align-items: center;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .portfolioVisual {
    min-height: auto;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .portfolioVisual img {
    width: 100%;
    height: auto;
    max-height: 410px;
    object-fit: cover;
    border-radius: 20px;
  }

  .portfolioCopy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }

  .portfolioRangeTitle {
    font-size: clamp(30px,2.8vw,40px);
    line-height: 1.08;
  }

  .portfolioIngredients {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    margin: 24px 0 30px;
    border-radius: 0;
    overflow: visible;
    border: 0;
  }

  .portfolioIngredients > span {
    min-height: auto;
    padding: 0;
    background: transparent;
    transition: transform .15s ease;
  }

  .portfolioIngredients > span:hover {
    background: transparent;
    transform: translateX(4px);
  }

  .portfolioIngredients > span b {
    position: relative;
    padding-left: 18px;
    font-size: 16.5px;
    font-weight: 700;
    color: #234a3b;
  }

  .portfolioIngredients > span b:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7fbc45;
  }

  .portfolioButton {
    min-height: 52px;
    padding: 0 28px;
    font-size: 15px;
  }

  .faqLayout {
    grid-template-columns: minmax(200px,.55fr) minmax(0,1.95fr);
    gap: 52px;
    align-items: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .faqLayout > div:first-child {
    position: sticky;
    top: 100px;
  }

  .faqLayout > div:first-child h2 {
    font-size: clamp(30px,2.8vw,40px);
    line-height: 1.08;
  }

  .accordion {
    min-width: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid #e8ede9;
  }

  .accordion article {
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #e8ede9;
    overflow: hidden;
  }

  .faqToggle {
    padding: 22px 0;
    font-size: 18.5px;
    background: transparent;
  }

  .answer {
    padding: 0 0 22px;
    color: #3d4f47;
    font-size: 17.5px;
    line-height: 1.75;
  }

  .closingSection {
    padding: 0;
  }

  .closingInner {
    background: linear-gradient(110deg,#063f2d 0%,#0b6846 55%,#168249 100%);
    color: #fff;
    border-radius: 0;
    box-shadow: none;
  }

  .closingContent {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 48px;
    align-items: center;
    text-align: left;
    padding: 56px 28px;
  }

  .closingInner .kicker {
    color: rgba(255,255,255,.72);
  }

  .closingInner h2 {
    font-size: clamp(30px,2.8vw,40px);
    color: #fff;
  }

  .closingContent > div {
    justify-items: start;
  }

  .closingContent button {
    margin: 0;
    min-height: 54px;
    padding: 0 32px;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 15px;
    transition: background .2s ease, transform .15s ease;
  }

  .closingContent button:hover {
    background: rgba(255,255,255,.22);
  }

  .closingContent button:active {
    transform: scale(.98);
  }

  .mobileBuyDock {
    display: none;
  }

  .footerInner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: center;
    text-align: left;
    padding: 32px 28px;
    border-top: 1px solid #e8ede9;
  }

  .footerInner .footerMark {
    width: 40px;
    opacity: .85;
  }

  .footerInner p {
    max-width: 420px;
    color: #3d4f47;
    font-size: 15.5px;
    line-height: 1.65;
  }

  .footerInner > span {
    color: #5c736a;
    font-size: 14px;
    font-weight: 600;
  }

  .drawerBackdrop {
    transition: opacity .25s ease;
    will-change: opacity;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(6,30,22,.55);
  }

  .sideDrawer {
    width: min(470px,100%);
    transform: translate3d(102%,0,0);
    transition: transform .32s cubic-bezier(.2,.75,.25,1);
    will-change: transform;
    backface-visibility: hidden;
    box-shadow: -12px 0 40px rgba(6,63,45,.12);
  }

  #cartDrawer {
    width: min(540px,100%);
  }

  #cartDrawer .paymentInstructionPanel {
    padding: 18px;
  }

  #cartDrawer .backupBankDetails {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  #cartDrawer .backupBankDetails .backupBankWide {
    grid-column: 1 / -1;
  }

  .sideDrawer.open {
    transform: translate3d(0,0,0);
  }

  .drawerOpen .limitedOfferBadge,
  .drawerOpen .offerAmount:after,
  .drawerOpen .buyButton,
  .drawerOpen .buyButton span,
  .drawerOpen .heroMedia > img {
    animation-play-state: paused;
  }

  .graphicLightbox {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: rgba(3,31,22,.88);
  }

  .graphicLightboxInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    max-width: min(920px,90vw);
    max-height: calc(100dvh - 48px);
    padding: 0;
    overflow: visible;
    border-radius: 14px;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
  }

  .graphicLightboxInner > button {
    position: absolute;
    top: -16px;
    right: -16px;
    margin: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(24,52,42,.2);
  }

  .graphicLightboxInner > img {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100dvh - 80px);
    object-fit: contain;
    border-radius: 14px;
  }

  .graphicLightboxInner > p {
    display: none;
  }

  .hero:before {
    opacity: .66;
    filter: blur(17px);
  }

  .hero:after {
    width: 48%;
    opacity: .38;
    filter: blur(19px);
  }

}

@media (prefers-reduced-motion: reduce) {
  .siteLiquidCanvas,
  main > section:before,
  footer:before,
  .hero:before,
  .paymentInstructionPanel:before,
  .hero:after,
  .paymentInstructionPanel:after {
    animation: none !important;
  }
}

/* v74 — green surface system: content surfaces use three calm, static tones.
   Drawers and buttons are intentionally not selected here. */
.minimalHeader,
.footerInner {
  background-color: #edf8f0;
}

.minimalHeader {
  border-bottom-color: #d2e6d8;
}

.offerBar {
  background: linear-gradient(100deg,#064c38 0%,#087047 55%,#0a8551 100%);
  border-bottom-color: rgba(255,255,255,.16);
  color: #fff;
}

.offerBar span,
.offerBar strong {
  color: #fff;
}

.offerBar a {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.09);
}

.offerBar a:hover {
  color: #064c38;
  border-color: #fff;
  background: #fff;
}

/* Desktop product gallery: three fixed frames live inside the existing visual
   column. The main image is enlarged; side previews stay clipped in their
   own frames so they read as a quiet folded product strip, not floating cards. */
.blendDesktopGallery {
  display: none;
}

@media (min-width: 1024px) {
  .productStoryBlend {
    position: relative;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .productStoryBlend .blendCarousel {
    position: absolute;
    right: 20px;
    bottom: 16px;
    z-index: 5;
    display: block;
    grid-column: auto;
    grid-row: auto;
    width: min(57%, 560px);
    margin: 0;
  }

  .productStoryBlend .blendDesktopGallery {
    grid-column: 2;
    grid-row: 1 / 3;
    width: calc(100% + 26px);
    margin-right: -26px;
  }

  .blendDesktopGallery {
    /* Use the exact product-section surface as the image blending canvas.
       The source posters include pale rectangular backdrops; this lets their
       near-white pixels fall into the page surface instead of reading as cards. */
    position: relative;
    display: block;
    width: 100%;
    height: clamp(262px, 24vw, 346px);
    /* Match the desktop product-section surface exactly, so the blend canvas
       cannot create a second visible rectangle beneath the enlarged images. */
    background: #f7faf8;
    overflow: visible;
  }

  .blendDesktopGallery button {
    appearance: none;
    font: inherit;
  }

  .blendDesktopMain,
  .blendDesktopSide {
    position: absolute;
    top: 50%;
    width: min(74%, 336px);
    height: clamp(248px, 23vw, 330px);
    padding: 0;
    border: 0;
    border-radius: 15px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: transform .62s cubic-bezier(.22,.78,.24,1), opacity .45s ease, filter .45s ease;
  }

  .blendDesktopMain {
    left: 50%;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(24,78,51,.09);
    transform: translate(-50%,-50%);
  }

  .blendDesktopSide {
    z-index: 1;
    opacity: .7;
    filter: saturate(.9) brightness(.99);
  }

  .blendDesktopSide:after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: rgba(234,247,238,.18);
  }

  .blendDesktopSidePrev {
    left: -4px;
    transform: translate(0,-50%) scale(.86);
  }

  .blendDesktopSideNext {
    right: -4px;
    transform: translate(0,-50%) scale(.86);
  }

  .blendDesktopGallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    /* Multiply blending lets the almost-white poster field resolve to the
       shared green surface while retaining the darker product, text and shadows. */
    mix-blend-mode: multiply;
    transition: transform .62s cubic-bezier(.22,.78,.24,1), opacity .26s ease;
  }

  .blendDesktopSide:hover {
    z-index: 2;
    opacity: .9;
    filter: saturate(.98);
  }

  .blendDesktopSidePrev:hover {
    transform: translate(3%,-50%) scale(.9);
  }

  .blendDesktopSideNext:hover {
    transform: translate(-3%,-50%) scale(.9);
  }

  .blendDesktopMain:hover {
    transform: translate(-50%,-50%) scale(1.012);
  }

  .blendDesktopGallery.isChanging .blendDesktopMain {
    transform: translate(-50%,-50%) scale(.98);
  }

  .blendDesktopGallery.isChanging img {
    opacity: .55;
  }

  .blendCarouselTrack {
    display: none;
  }

  .blendCarouselDots {
    display: flex;
    position: relative;
    z-index: 5;
    margin-top: 0;
    transform: translateY(-1px);
  }

  .blendCarouselDots button {
    width: 8px;
    height: 8px;
    background: #bdd7c5;
  }

  .blendCarouselDots button.active {
    width: 21px;
    border-radius: 999px;
    background: #0b6b4d;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blendDesktopMain,
  .blendDesktopSide,
  .blendDesktopGallery img {
    transition: none;
  }
}

/* Desktop About Us alignment — use the same inner 1044px content grid as the
   adjacent modules, while keeping the editorial copy and portrait image in
   balanced columns. This deliberately does not affect tablet or mobile. */
@media (min-width: 1024px) {
  .aboutUsSection {
    padding: 60px 0 64px;
  }

  .aboutUsCard {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: 44px;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .aboutUsCopy {
    width: 100%;
    max-width: 510px;
    padding: 8px 0;
  }

  .aboutUsCopy p:not(.kicker) {
    max-width: 500px;
  }

  .aboutUsImage {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 446px;
    justify-self: end;
    margin: 0;
    padding: 20px 22px 18px 20px;
    border-color: rgba(153,191,164,.52);
  }

  .aboutUsImage img {
    width: auto;
    max-width: 100%;
    max-height: 430px;
  }
}

/* The Hero now uses one complete 4:3 product image. The previous layered
   background and left/right depth planes are no longer rendered. */
.heroMedia {
  background-color: #e2f3e7;
}

.heroMedia.heroShowcaseMedia {
  display: block;
  padding: 0;
  aspect-ratio: 4 / 3;
  background: transparent;
  background-image: none;
  border-color: rgba(153,191,164,.42);
  overflow: hidden;
}

.heroMedia > .heroSingleProductImage {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

@media (min-width: 1024px) {
  .heroGrid {
    grid-template-columns: minmax(0,1.18fr) minmax(380px,.82fr);
    gap: 20px;
    align-items: start;
  }

  .heroMedia.heroShowcaseMedia {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    align-self: start;
    justify-self: stretch;
    aspect-ratio: 4 / 3;
  }

  .heroMedia > .heroSingleProductImage {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .buyPanel {
    position: relative;
    z-index: 1;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .heroMedia.heroShowcaseMedia,
  .heroMedia > .heroSingleProductImage {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}

.purchaseActionGroup {
  display: block;
  width: 100%;
  margin-top: 18px;
}

.purchaseActionGroup .unifiedInquiryCta {
  display: grid;
  grid-template-columns: minmax(0,auto) 1px minmax(0,auto) 22px;
  align-items: center;
  justify-content: center;
  column-gap: 13px;
  box-sizing: border-box;
  width: 100%;
  min-height: 62px;
  margin: 0;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(100deg,#034f39 0%,#087744 55%,#15954d 100%);
  background-size: 160% 100%;
  color: #fff;
  box-shadow: 0 12px 26px rgba(6,63,45,.17);
  cursor: pointer;
}

.unifiedInquiryMain {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.unifiedInquiryDivider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.34);
}

.unifiedInquiryAlt {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  opacity: .9;
}

.unifiedInquiryCta > b {
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}

.purchaseActionGroup .unifiedInquiryCta:hover,
.purchaseActionGroup .unifiedInquiryCta:focus-visible {
  background-position: 100% 50%;
  box-shadow: 0 16px 34px rgba(22,130,73,.24);
  transform: translateY(-1px);
}

.purchaseActionGroup .unifiedInquiryCta:active {
  transform: scale(.988);
}

.mobileUnifiedInquiryDock {
  grid-template-columns: 1fr;
}

.mobileUnifiedInquiryButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 8px 16px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(100deg,#034f39 0%,#087744 58%,#15954d 100%);
  color: #fff;
  text-align: left;
  box-shadow: 0 8px 20px rgba(6,63,45,.18);
}

.mobileUnifiedInquiryButton span,
.mobileUnifiedInquiryButton strong,
.mobileUnifiedInquiryButton small {
  display: block;
}

.mobileUnifiedInquiryButton strong {
  font-size: 13px;
  line-height: 1.2;
}

.mobileUnifiedInquiryButton small {
  margin-top: 2px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.15;
}

.mobileUnifiedInquiryButton b {
  margin-left: 14px;
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .purchaseActionGroup {
    margin-top: 16px;
  }

  .purchaseActionGroup .unifiedInquiryCta {
    grid-template-columns: minmax(0,1fr) 20px;
    grid-template-areas:
      "main arrow"
      "alt arrow";
    gap: 3px 12px;
    min-height: 62px;
    padding: 10px 18px;
    text-align: left;
  }

  .unifiedInquiryMain {
    grid-area: main;
    font-size: 14px;
  }

  .unifiedInquiryAlt {
    grid-area: alt;
    font-size: 10.5px;
  }

  .unifiedInquiryDivider {
    display: none;
  }

  .unifiedInquiryCta > b {
    grid-area: arrow;
  }
}

@keyframes inquiryEnvelopeShake {
  0%, 62%, 100% { transform: translate3d(0,0,0) rotate(0); }
  68% { transform: translate3d(-2px,0,0) rotate(-7deg); }
  72% { transform: translate3d(2px,0,0) rotate(7deg); }
  76% { transform: translate3d(-1px,0,0) rotate(-4deg); }
  80% { transform: translate3d(1px,0,0) rotate(4deg); }
  84% { transform: translate3d(0,0,0) rotate(0); }
}

.purchaseActionGroup .unifiedInquiryCta {
  grid-template-columns: minmax(0,1fr) 38px;
  justify-content: stretch;
  gap: 14px;
  min-height: 72px;
  padding: 11px 18px 11px 22px;
  text-align: left;
}

.unifiedInquiryCopy,
.mobileInquiryCopy {
  display: grid !important;
  align-content: center;
  gap: 4px;
  min-width: 0;
  animation: none !important;
}

.unifiedInquiryCopy strong,
.unifiedInquiryCopy small,
.mobileInquiryCopy strong,
.mobileInquiryCopy small {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.01em;
  opacity: 1;
  animation: none !important;
}

.inquiryEnvelopeIcon {
  display: grid !important;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  transform-origin: center;
}

.inquiryEnvelopeIcon svg {
  display: block;
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobileUnifiedInquiryButton {
  min-height: 62px;
  padding: 8px 13px 8px 16px;
}

.mobileUnifiedInquiryButton .mobileInquiryCopy strong,
.mobileUnifiedInquiryButton .mobileInquiryCopy small {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
}

.mobileUnifiedInquiryButton .inquiryEnvelopeIcon {
  flex: 0 0 auto;
  margin-left: 14px;
  width: 34px;
  height: 34px;
}

@media (prefers-reduced-motion: no-preference) {
  .unifiedInquiryCta .inquiryEnvelopeIcon,
  .mobileUnifiedInquiryButton .inquiryEnvelopeIcon {
    animation: inquiryEnvelopeShake 2.6s ease-in-out infinite !important;
  }

  .drawerOpen .inquiryEnvelopeIcon,
  body.isScrolling .inquiryEnvelopeIcon {
    animation-play-state: paused !important;
  }
}

@media (max-width: 720px) {
  .purchaseActionGroup .unifiedInquiryCta {
    grid-template-columns: minmax(0,1fr) 36px;
    grid-template-areas: none;
    gap: 12px;
    min-height: 70px;
    padding: 10px 14px 10px 18px;
  }

  .unifiedInquiryCopy strong,
  .unifiedInquiryCopy small {
    font-size: 13.5px;
  }

  .purchaseActionGroup .inquiryEnvelopeIcon {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inquiryEnvelopeIcon {
    animation: none !important;
  }
}

/* Four-step Hero entrance. The independent translate property keeps this
   one-time sequence separate from the glass cards' pointer lift transform. */
@keyframes heroAppleInsert {
  0% {
    opacity: 0;
    translate: var(--hero-insert-distance,48px) 0;
  }

  72% {
    opacity: 1;
    translate: -1.5px 0;
  }

  100% {
    opacity: 1;
    translate: 0 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .buyPanel > .heroGlassIntro,
  .buyPanel > .heroGlassPrice,
  .buyPanel > .heroGlassFacts,
  .buyPanel > .purchaseActionGroup {
    opacity: 0;
    translate: var(--hero-insert-distance,48px) 0;
  }

  .hero.heroPurchaseMotionIn .buyPanel > .heroGlassIntro,
  .hero.heroPurchaseMotionIn .buyPanel > .heroGlassPrice,
  .hero.heroPurchaseMotionIn .buyPanel > .heroGlassFacts,
  .hero.heroPurchaseMotionIn .buyPanel > .purchaseActionGroup {
    animation: heroAppleInsert .78s cubic-bezier(.16,1,.3,1) both;
  }

  .hero.heroPurchaseMotionIn .buyPanel > .heroGlassIntro {
    animation-delay: .10s;
  }

  .hero.heroPurchaseMotionIn .buyPanel > .heroGlassPrice {
    animation-delay: .28s;
  }

  .hero.heroPurchaseMotionIn .buyPanel > .heroGlassFacts {
    animation-delay: .48s;
  }

  .hero.heroPurchaseMotionIn .buyPanel > .purchaseActionGroup {
    animation-delay: .64s;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .buyPanel > .heroGlassIntro,
  .buyPanel > .heroGlassPrice,
  .buyPanel > .heroGlassFacts,
  .buyPanel > .purchaseActionGroup {
    --hero-insert-distance: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .buyPanel > .heroGlassIntro,
  .buyPanel > .heroGlassPrice,
  .buyPanel > .heroGlassFacts,
  .buyPanel > .purchaseActionGroup {
    opacity: 1;
    translate: none;
    animation: none !important;
  }
}

.buyPanel {
  background: linear-gradient(145deg,#f8fdf9 0%,#eef9f1 57%,#e3f4e8 100%);
  border-color: #cfe5d5;
}

.essentialFacts,
.quantityRow {
  background-color: rgba(247,252,248,.84);
  border-color: #cde2d3;
}

.trustRailInner {
  border-top-color: #c9e0d0;
}

  .trustBadge {
    background-color: #f1faf3;
    border-color: #c9e0d0;
  }

  @media (max-width: 1023px) {
    .desktopCertificationTitle {
      display: none;
    }

    .mobileCertificationTitle {
      display: inline;
    }
  }

  /* Certification marks are interactive on both touch and desktop. The motion
     is deliberately short and small, so it adds life without disrupting the rail. */
  .trustBadge {
    position: relative;
    isolation: isolate;
    appearance: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    overflow: visible;
    transform-origin: center;
    transition: transform .24s cubic-bezier(.22,.78,.24,1), background-color .24s ease, box-shadow .24s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .trustBadge::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 8px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(39,142,92,.2) 0%, rgba(39,142,92,0) 70%);
    opacity: 0;
    transform: scale(.72);
    transition: opacity .24s ease, transform .3s cubic-bezier(.22,.78,.24,1);
    pointer-events: none;
  }

  .trustBadge:hover,
  .trustBadge:focus-visible {
    transform: translateY(-2px) scale(1.045);
    background-color: #eaf7ee;
    box-shadow: 0 10px 20px rgba(24,78,51,.1);
    z-index: 2;
  }

  .trustBadge:hover::after,
  .trustBadge:focus-visible::after,
  .trustBadge.isPopping::after {
    opacity: 1;
    transform: scale(1.18);
  }

  .trustBadge:active {
    transform: translateY(0) scale(.975);
  }

  .trustBadge.isPopping {
    z-index: 2;
    animation: trustBadgePop .44s cubic-bezier(.22,.78,.24,1) both;
  }

  @keyframes trustBadgePop {
    0% { transform: scale(1); }
    42% { transform: translateY(-2px) scale(1.11); }
    72% { transform: translateY(-1px) scale(1.035); }
    100% { transform: scale(1); }
  }

  @media (prefers-reduced-motion: reduce) {
    .trustBadge,
    .trustBadge::after {
      transition: none;
      animation: none;
    }

    .trustBadge:hover,
    .trustBadge:focus-visible,
    .trustBadge:active {
      transform: none;
    }
  }

.productShowcaseHead {
  background-color: #eaf7ee;
  border-color: #cde3d3;
}

.productStory,
.certShowcaseCard,
.partnersCard,
.portfolioCard,
.faqLayout {
  background-color: #edf8f0;
  border-color: #cde3d3;
}

.productStoryImage,
.blendCarouselSlide,
.portfolioIngredientFeatured {
  background-color: #f5fcf6;
  border-color: #d3e7d8;
}

.aboutUsCard {
  background: linear-gradient(145deg,#f8fdf9 0%,#eff9f2 55%,#e4f4e9 100%);
  border-color: #cde3d3;
}

.certShowcaseCard,
.partnersCard,
.portfolioCard,
.faqLayout {
  box-shadow: 0 14px 34px rgba(24,78,51,.055);
}

.closingInner {
  background: linear-gradient(135deg,#e2f4e7 0%,#eff9f2 52%,#d8efdf 100%);
  color: var(--forest);
  border: 1px solid #c6e0ce;
}

.closingInner .kicker,
.closingInner h2 {
  color: var(--forest);
}

.closingInner button {
  background: #075b3d;
  border-color: #075b3d;
  color: #fff;
}

.closingInner button:hover {
  background: #064c38;
  border-color: #064c38;
  color: #fff;
}

footer {
  background-color: #e7f5eb;
}

/* This must come after the shared green-card surface rules: the desktop
   blended gallery sits directly on the page background, without a base card.
   Reset the complete painted box, rather than only masking its border color,
   so no light rectangular fill or 1px card geometry remains below the images. */
/* About Us reveals as two connected pieces: copy enters from the left and the
   factory image follows from the right. It plays once, using composited props only. */
@media (prefers-reduced-motion: no-preference) {
  .aboutUsSection.aboutMotionReady .aboutUsCopy,
  .aboutUsSection.aboutMotionReady .aboutUsImage {
    opacity: .01;
    will-change: transform, opacity;
  }

  .aboutUsSection.aboutMotionReady .aboutUsCopy {
    transform: translate3d(-32px,0,0);
  }

  .aboutUsSection.aboutMotionReady .aboutUsImage {
    transform: translate3d(38px,0,0) scale(.985);
  }

  .aboutUsSection.aboutMotionIn .aboutUsCopy {
    animation: aboutCopyEnter 1s cubic-bezier(.2,.78,.25,1) both;
  }

  .aboutUsSection.aboutMotionIn .aboutUsImage {
    animation: aboutImageEnter 1s .2s cubic-bezier(.2,.78,.25,1) both;
  }

  @keyframes aboutCopyEnter {
    0% { opacity: .01; transform: translate3d(-32px,0,0); }
    72% { opacity: 1; transform: translate3d(2px,0,0); }
    100% { opacity: 1; transform: translate3d(0,0,0); }
  }

  @keyframes aboutImageEnter {
    0% { opacity: .01; transform: translate3d(38px,0,0) scale(.985); }
    72% { opacity: 1; transform: translate3d(-2px,0,0) scale(1.004); }
    100% { opacity: 1; transform: translate3d(0,0,0) scale(1); }
  }
}

/* Partners section joins vertically: the complete copy drops from above while
   the logo image rises from below. Both pieces settle together in 3 seconds. */
@media (prefers-reduced-motion: no-preference) {
  .partnersSection.partnersMotionReady .partnersCopy,
  .partnersSection.partnersMotionReady .partnersLogoGrid {
    opacity: .01;
    will-change: transform, opacity;
    backface-visibility: hidden;
  }

  .partnersSection.partnersMotionReady .partnersCopy {
    transform: translate3d(0,-46px,0);
  }

  .partnersSection.partnersMotionReady .partnersLogoGrid {
    transform: translate3d(0,54px,0);
  }

  .partnersSection.partnersMotionIn .partnersCopy {
    animation: partnersCopyDrop 3s cubic-bezier(.16,1,.3,1) both;
  }

  .partnersSection.partnersMotionIn .partnersLogoGrid {
    animation: partnersImageRise 3s cubic-bezier(.16,1,.3,1) both;
  }

  @keyframes partnersCopyDrop {
    0% { opacity: .01; transform: translate3d(0,-46px,0); }
    76% { opacity: 1; transform: translate3d(0,2px,0); }
    100% { opacity: 1; transform: translate3d(0,0,0); }
  }

  @keyframes partnersImageRise {
    0% { opacity: .01; transform: translate3d(0,54px,0); }
    76% { opacity: 1; transform: translate3d(0,-2px,0); }
    100% { opacity: 1; transform: translate3d(0,0,0); }
  }
}

@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
  .partnersSection.partnersMotionReady .partnersCopy {
    transform: translate3d(0,-38px,0);
  }

  .partnersSection.partnersMotionReady .partnersLogoGrid {
    transform: translate3d(0,44px,0);
  }

  @keyframes partnersCopyDrop {
    0% { opacity: .01; transform: translate3d(0,-38px,0); }
    76% { opacity: 1; transform: translate3d(0,1.5px,0); }
    100% { opacity: 1; transform: translate3d(0,0,0); }
  }

  @keyframes partnersImageRise {
    0% { opacity: .01; transform: translate3d(0,44px,0); }
    76% { opacity: 1; transform: translate3d(0,-1.5px,0); }
    100% { opacity: 1; transform: translate3d(0,0,0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .partnersCopy,
  .partnersLogoGrid {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Product detail cards enter once as they reach the reading zone. The pieces
   stagger inside each card; no continuous animation runs while scrolling. */
@media (prefers-reduced-motion: no-preference) {
  .productStory.storyMotionReady {
    opacity: .01;
    transform: translate3d(0,18px,0) scale(.988);
    will-change: transform, opacity;
  }

  .productStory.storyMotionReady.storyMotionIn {
    animation: productStorySmoothEnter 1s cubic-bezier(.2,.78,.25,1) both;
  }

  .productStory.storyMotionReady.storyMotionIn:nth-child(2) { animation-delay: .06s; }
  .productStory.storyMotionReady.storyMotionIn:nth-child(3) { animation-delay: .12s; }
  .productStory.storyMotionReady.storyMotionIn:nth-child(4) { animation-delay: .18s; }
  .productStory.storyMotionReady.storyMotionIn:nth-child(5) { animation-delay: .24s; }

  .storyMotionIn .productStoryNumber {
    animation: productStoryNumberPop .68s .18s cubic-bezier(.22,.78,.24,1) both;
  }

  .storyMotionIn .productStoryHeading > div {
    animation: productStoryCopyEnter .7s .15s cubic-bezier(.22,.78,.24,1) both;
  }

  .storyMotionIn > p {
    animation: productStoryCopyEnter .74s .28s cubic-bezier(.22,.78,.24,1) both;
  }

  .storyMotionIn .productStoryImage {
    animation: productStoryImageEnter .9s .32s cubic-bezier(.22,.78,.25,1) both;
  }

  @keyframes productStorySmoothEnter {
    0% { opacity: .01; transform: translate3d(0,18px,0) scale(.988); }
    72% { opacity: 1; transform: translate3d(0,-2px,0) scale(1.004); }
    100% { opacity: 1; transform: translate3d(0,0,0) scale(1); }
  }

  @keyframes productStoryNumberPop {
    0% { opacity: 0; transform: translateX(-10px) scale(.8); }
    72% { opacity: 1; transform: translateX(1px) scale(1.08); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
  }

  @keyframes productStoryCopyEnter {
    0% { opacity: 0; transform: translateY(9px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes productStoryImageEnter {
    0% { opacity: 0; transform: translateY(12px) scale(.975); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
}

/* Final centered layout for the bottom inquiry callout. It intentionally
   overrides the earlier desktop split layout so both viewports share one axis. */
.closingInner {
  display: grid;
  place-items: center;
  width: 100%;
  padding: clamp(36px,5vw,56px) 20px;
  text-align: center;
}

.closingContent {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  justify-items: center;
  align-items: center;
  gap: 20px;
  width: min(100%,680px);
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.closingContent > div {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
  max-width: 580px;
  text-align: center;
}

.closingInner .kicker {
  width: 100%;
  margin: 0;
  text-align: center;
}

.closingInner h2 {
  width: 100%;
  max-width: 560px;
  margin: 0;
  font-size: clamp(28px,3.2vw,38px);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-align: center;
  text-wrap: balance;
}

.closingContent button,
.closingInner button {
  width: auto;
  min-width: min(100%,274px);
  max-width: 100%;
  min-height: 56px;
  margin: 0 auto;
  padding: 0 30px;
  justify-self: center;
  border-radius: 999px;
  font-size: 15px;
  text-align: center;
}

@media (max-width: 700px) {
  .closingInner {
    padding: 34px 18px 36px;
  }

  .closingContent {
    gap: 18px;
    width: 100%;
  }

  .closingContent > div {
    gap: 11px;
    max-width: 390px;
  }

  .closingInner h2 {
    max-width: 390px;
    font-size: clamp(27px,8vw,32px);
    line-height: 1.08;
  }

  .closingContent button,
  .closingInner button {
    width: min(100%,274px);
    min-width: 0;
    min-height: 56px;
    padding: 0 22px;
    font-size: 14.5px;
  }
}

@media (min-width: 1024px) {
  .productStory.productStoryBlend {
    background: transparent;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .productStory.productStoryBlend::before,
  .productStory.productStoryBlend::after {
    content: none;
  }
}

/* Hero liquid-glass information windows. The CTA remains outside this system
   so its green purchase/inquiry affordance stays clear and unchanged. */
.buyPanel {
  display: grid;
  gap: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.heroLiquidGlass {
  --glass-x: 50%;
  --glass-y: 50%;
  --glass-lift: 0px;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y), rgba(255,255,255,.64) 0%, rgba(214,247,225,.28) 28%, transparent 64%),
    linear-gradient(145deg, rgba(250,255,251,.68) 0%, rgba(224,247,230,.48) 52%, rgba(194,235,207,.42) 100%);
  box-shadow:
    0 16px 32px rgba(31,88,57,.09),
    inset 0 1px 0 rgba(255,255,255,.82),
    inset 0 -1px 0 rgba(91,157,111,.12);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  transform: translate3d(0,var(--glass-lift),0);
  transition: transform .28s cubic-bezier(.22,.78,.24,1), box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
}

.heroLiquidGlass::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255,255,255,.64) 0%, rgba(255,255,255,.08) 21%, transparent 44%),
    radial-gradient(ellipse 58% 80% at var(--glass-x) var(--glass-y), rgba(255,255,255,.24), transparent 68%);
  opacity: .82;
  transition: opacity .28s ease;
}

.heroLiquidGlass::after {
  content: "";
  position: absolute;
  top: -40%;
  left: calc(var(--glass-x) - 18%);
  width: 36%;
  height: 180%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  opacity: .42;
  transform: rotate(16deg);
  transition: left .16s ease-out, opacity .28s ease;
}

.heroLiquidGlass:hover,
.heroLiquidGlass:focus-within,
.heroLiquidGlass.isGlassActive {
  /* Keep pointer feedback spatially stable: the highlight remains, but the
     card no longer makes a vertical movement that can resemble page drag. */
  --glass-lift: 0px;
  border-color: rgba(255,255,255,.92);
  box-shadow:
    0 20px 38px rgba(31,88,57,.13),
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(91,157,111,.14);
}

.heroLiquidGlass:hover::before,
.heroLiquidGlass:focus-within::before,
.heroLiquidGlass.isGlassActive::before {
  opacity: 1;
}

.heroGlassIntro {
  min-height: 148px;
}

.heroGlassPrice {
  min-height: 126px;
  display: grid;
  align-content: center;
}

.heroGlassFacts {
  min-height: 118px;
  display: grid;
  align-content: center;
}

.heroLiquidGlass .kicker,
.heroLiquidGlass h1,
.heroLiquidGlass .heroLead,
.heroLiquidGlass .offerPrice,
.heroLiquidGlass .essentialFacts {
  position: relative;
  z-index: 1;
}

.heroLiquidGlass .kicker {
  margin-top: 0;
}

.heroLiquidGlass h1 {
  margin-top: 0;
}

.heroLiquidGlass .heroLead {
  margin-bottom: 0;
}

.heroLiquidGlass .offerPrice,
.heroLiquidGlass .essentialFacts {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.heroLiquidGlass .offerPrice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.heroLiquidGlass .limitedOfferBadge {
  flex: 0 1 auto;
  max-width: 48%;
  white-space: normal;
}

.heroLiquidGlass .offerMain {
  flex: 0 0 auto;
  margin-top: 0;
}

.heroLiquidGlass .essentialFacts {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px;
}

.heroLiquidGlass .essentialFacts > div {
  min-width: 0;
  padding: 0 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .buyPanel {
    align-self: start;
    padding: 0;
  }

  .heroLiquidGlass {
    padding: 19px 21px;
  }

  .heroGlassIntro {
    min-height: 164px;
  }

  .heroGlassPrice {
    min-height: 132px;
  }

  .heroGlassFacts {
    min-height: 124px;
  }
}

@media (max-width: 720px) {
  .buyPanel {
    gap: 10px;
    padding: 0;
  }

  .heroLiquidGlass {
    padding: 16px 15px;
    border-radius: 16px;
    backdrop-filter: blur(9px) saturate(1.04);
    -webkit-backdrop-filter: blur(9px) saturate(1.04);
  }

  .heroGlassIntro {
    min-height: 142px;
  }

  .heroGlassPrice {
    min-height: 112px;
  }

  .heroGlassFacts {
    min-height: 108px;
  }

  .heroLiquidGlass .offerPrice {
    align-items: center;
    gap: 8px;
  }

  .heroLiquidGlass .limitedOfferBadge {
    max-width: 46%;
    padding: 7px 9px;
    font-size: 8.5px;
    letter-spacing: .08em;
  }

  .heroLiquidGlass .offerAmount strong {
    font-size: clamp(38px,12vw,48px);
  }

  .heroLiquidGlass .offerAmount b {
    font-size: clamp(20px,6vw,26px);
  }

  .heroLiquidGlass .offerAmount small {
    margin-left: 6px;
    font-size: 12px;
  }

  .heroLiquidGlass .essentialFacts {
    gap: 3px;
  }

  .heroLiquidGlass .essentialFacts > div {
    padding: 0 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .heroLiquidGlass,
  .heroLiquidGlass::before,
  .heroLiquidGlass::after {
    transition: none;
  }

  .heroLiquidGlass:hover,
  .heroLiquidGlass:focus-within,
  .heroLiquidGlass.isGlassActive {
    --glass-lift: 0px;
    box-shadow:
      0 16px 32px rgba(31,88,57,.09),
      inset 0 1px 0 rgba(255,255,255,.82),
      inset 0 -1px 0 rgba(91,157,111,.12);
  }
}

/* Reference-led tightening: keep the glass windows visually contained while
   preserving the full-width inquiry CTA below them. */
.heroLiquidGlass {
  width: min(100%, 430px);
  justify-self: end;
  padding: 15px 17px;
  border-radius: 17px;
}

.heroGlassIntro {
  min-height: 132px;
}

.heroGlassPrice {
  min-height: 108px;
}

.heroGlassFacts {
  min-height: 108px;
}

.heroLiquidGlass h1 {
  max-width: 100%;
  font-size: clamp(29px, 2.7vw, 42px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.heroLiquidGlass .heroLead {
  max-width: 340px;
  font-size: 14.5px;
  line-height: 1.48;
}

.heroLiquidGlass .offerPrice {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.heroLiquidGlass .limitedOfferBadge {
  max-width: 132px;
  padding: 7px 10px;
  font-size: 8.5px;
  line-height: 1.05;
  letter-spacing: .075em;
}

.heroLiquidGlass .offerMain {
  min-width: 0;
  justify-self: end;
}

.heroLiquidGlass .offerAmount {
  align-items: baseline;
  white-space: nowrap;
}

.heroLiquidGlass .offerAmount span {
  font-size: 21px;
}

.heroLiquidGlass .offerAmount strong {
  font-size: clamp(40px, 3.25vw, 50px);
  letter-spacing: -.06em;
}

.heroLiquidGlass .offerAmount b {
  font-size: clamp(20px, 1.8vw, 27px);
}

.heroLiquidGlass .offerAmount small {
  margin-left: 7px;
  font-size: 13px;
}

.heroLiquidGlass .essentialFacts {
  gap: 5px;
}

.heroLiquidGlass .essentialFacts > div {
  padding: 0 5px;
}

.heroLiquidGlass .essentialFacts b {
  font-size: 20px;
  letter-spacing: -.035em;
}

.heroLiquidGlass .essentialFacts span {
  font-size: 8px;
  line-height: 1.25;
  letter-spacing: .035em;
}

@media (min-width: 1024px) {
  .heroLiquidGlass {
    padding: 16px 19px;
  }

  .heroGlassIntro {
    min-height: 146px;
  }

  .heroGlassPrice {
    min-height: 114px;
  }

  .heroGlassFacts {
    min-height: 108px;
  }
}

@media (max-width: 720px) {
  .heroLiquidGlass {
    width: calc(100% - 8px);
    justify-self: center;
    padding: 14px 14px;
    border-radius: 15px;
  }

  .heroGlassIntro {
    min-height: 128px;
  }

  .heroGlassPrice {
    min-height: 100px;
  }

  .heroGlassFacts {
    min-height: 96px;
  }

  .heroLiquidGlass h1 {
    font-size: clamp(27px, 8vw, 35px);
  }

  .heroLiquidGlass .heroLead {
    max-width: 300px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .heroLiquidGlass .offerPrice {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
  }

  .heroLiquidGlass .limitedOfferBadge {
    max-width: 118px;
    padding: 6px 8px;
    font-size: 8px;
  }

  .heroLiquidGlass .offerAmount span {
    font-size: 18px;
  }

  .heroLiquidGlass .offerAmount strong {
    font-size: clamp(36px, 11vw, 44px);
  }

  .heroLiquidGlass .offerAmount b {
    font-size: clamp(18px, 5.8vw, 24px);
  }

  .heroLiquidGlass .offerAmount small {
    margin-left: 5px;
    font-size: 11px;
  }

  .heroLiquidGlass .essentialFacts b {
    font-size: 18px;
  }

  .heroLiquidGlass .essentialFacts span {
    font-size: 7.5px;
  }
}

/* Data card typography follows the reference image: larger numerals and
   readable captions, without changing the three-column geometry. */
.heroGlassFacts .essentialFacts {
  text-align: center;
}

.heroGlassFacts .essentialFacts > div {
  justify-items: center;
}

.heroGlassFacts .essentialFacts b {
  font-size: 28px;
  line-height: .98;
}

.heroGlassFacts .essentialFacts span {
  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .heroGlassFacts {
    min-height: 118px;
  }

  .heroGlassFacts .essentialFacts {
    gap: 3px;
  }

  .heroGlassFacts .essentialFacts > div {
    padding: 0;
  }

  .heroGlassFacts .essentialFacts b {
    font-size: 25px;
  }

  .heroGlassFacts .essentialFacts span {
    display: block;
    max-width: 104px;
    margin: 0 auto;
    font-size: 10px;
    line-height: 1.22;
    white-space: normal;
    text-wrap: balance;
  }
}

/* Bottom inquiry CTA: preserve a true center axis even when the pill grows. */
.closingContent > button {
  display: inline-flex;
  grid-column: 1 / -1;
  justify-self: center;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: clamp(292px,31vw,340px);
  min-width: 0;
  min-height: 60px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.closingContent > button span {
  flex: 0 0 auto;
}

@media (max-width: 700px) {
  .closingContent > button {
    width: min(100%,306px);
    min-height: 60px;
    padding: 0 26px;
    font-size: 15px;
  }
}

/* Dedicated full-width center stage. The closing CTA must not inherit .shell's
   desktop side paddings or any old split-column alignment. */
.closingSection {
  display: block;
  width: 100%;
}

.closingSection .closingInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.closingSection .closingContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%,680px);
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.closingSection .closingContent > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.closingSection .closingContent > button {
  flex: 0 0 auto;
  align-self: center;
  width: clamp(292px,31vw,340px);
  margin: 0 auto;
}

@media (max-width: 700px) {
  .closingSection .closingContent {
    width: min(100%,390px);
  }

  .closingSection .closingContent > button {
    width: min(100%,306px);
  }
}

/* Desktop-only hierarchy pass for 01–04: the numeral now leads the card
   without competing with the editorial title or changing the mobile layout. */
@media (min-width: 1024px) {
  .productStoryHeading {
    grid-template-columns: 58px minmax(0,1fr);
    gap: 14px;
    padding-bottom: 12px;
  }

  .productStoryNumber {
    color: #78ad89;
    font-size: clamp(48px,3.5vw,58px);
    font-weight: 850;
    line-height: .72;
    letter-spacing: -.095em;
    text-shadow: 0 8px 18px rgba(34,113,65,.1);
  }
}

@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .storyMotionIn .productStoryNumber {
    animation: productStoryNumberSettle .9s .12s cubic-bezier(.16,1,.3,1) both;
  }

  @keyframes productStoryNumberSettle {
    0% {
      opacity: 0;
      transform: translate3d(-16px,9px,0) scale(.82);
    }

    74% {
      opacity: 1;
      transform: translate3d(1px,-1px,0) scale(1.035);
    }

    100% {
      opacity: 1;
      transform: translate3d(0,0,0) scale(1);
    }
  }
}

/* The user-provided Ganluya seal stays a true circular mark rather than a
   square image tile. Transparent corners, a circular clipping path and a
   larger visual scale let it breathe naturally in both footer and header. */
.wordmark {
  border-radius: 50%;
  background: transparent;
}

.wordmark::after {
  border-radius: inherit;
}

.wordmark img {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
}

.footerInner .footerMark {
  display: inline-flex;
  align-items: center;
  width: 92px;
  height: 92px;
  margin-right: 0;
  opacity: 1;
}

.footerInner .footerMark img {
  width: 100%;
  height: 100%;
  max-height: none;
}

@media (max-width: 720px) {
  .headerInner {
    height: 84px;
    min-height: 84px;
  }

  .headerInner .wordmark img {
    width: 68px;
    height: 68px;
  }

  .footerInner .footerMark {
    width: 96px;
    height: 96px;
  }
}

@media (min-width: 1024px) {
  .headerInner {
    height: 92px;
  }

  .headerInner .wordmark img {
    width: 78px;
    height: 78px;
  }

  .footerInner .footerMark {
    width: 104px;
    height: 104px;
  }
}

/* Brand name is a quiet typographic signature inside the About Us copy,
   separated from the paragraph face without altering the reading rhythm. */
.aboutBrandName {
  display: inline;
  margin-right: .06em;
  color: #087047;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.055em;
  text-shadow: 0 1px 0 rgba(255,255,255,.7);
}

@media (min-width: 1024px) {
  .aboutBrandName {
    font-size: 1.24em;
    letter-spacing: -.06em;
  }
}

/* A direct human contact path at the end of the page: clear, warm, and
   intentionally more personal than a generic inquiry prompt. */
/* The footer statement is set as an editorial brand promise: expressive,
   but calm enough to remain legible beside the direct contact action. */
.footerInner .footerSignature {
  max-width: 400px;
  margin: 0;
  color: #0a6845;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px,1.42vw,21px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.footerSignature::first-letter {
  color: #359c54;
  font-size: 1.16em;
  font-weight: 700;
}

.footerWhatsApp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 13px;
  border: 1px solid rgba(8,112,71,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.46);
  color: #075f3d;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s cubic-bezier(.2,.75,.25,1);
}

.footerWhatsAppIcon {
  display: grid;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: #087047;
  color: #fff;
}

.footerWhatsAppIcon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footerWhatsAppCopy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.footerWhatsAppCopy strong {
  color: #075f3d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}

.footerWhatsAppCopy small {
  color: #537469;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

.footerWhatsAppArrow {
  margin-left: 1px;
  color: #087047;
  font-size: 17px;
  line-height: 1;
  transition: transform .2s cubic-bezier(.2,.75,.25,1);
}

.footerWhatsApp:hover,
.footerWhatsApp:focus-visible {
  border-color: rgba(8,112,71,.42);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 20px rgba(23,99,62,.1);
  outline: none;
  transform: translateY(-2px);
}

.footerWhatsApp:hover .footerWhatsAppArrow,
.footerWhatsApp:focus-visible .footerWhatsAppArrow {
  transform: translate(2px,-2px);
}

.footerCopyright {
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .footerInner {
    grid-template-columns: auto minmax(200px,1fr) auto auto;
    gap: 28px;
  }
}

@media (max-width: 1023px) {
  .footerInner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 22px;
  }

  .footerInner .footerMark,
  .footerInner .footerSignature,
  .footerWhatsApp,
  .footerCopyright {
    justify-self: start;
  }

  .footerInner .footerSignature {
    max-width: 330px;
    font-size: clamp(18px,5.1vw,21px);
    line-height: 1.42;
  }

  .footerWhatsApp {
    width: min(100%, 310px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footerWhatsApp,
  .footerWhatsAppArrow {
    transition: none;
  }
}

/* Hero product uses one 1.5-second left-to-right entrance, then remains
   fully static. No second transform animation competes for the same image. */
@media (prefers-reduced-motion: no-preference) {
  .heroMedia.heroShowcaseMedia .heroSingleProductImage {
    opacity: 0;
    transform: translate3d(-10%,0,0) scale(1.012);
    will-change: transform, opacity;
  }

  .hero.heroPurchaseMotionIn .heroMedia.heroShowcaseMedia .heroSingleProductImage {
    animation: heroProductSettle 1.5s cubic-bezier(.16,1,.3,1) both;
  }

  @keyframes heroProductSettle {
    0% {
      opacity: 0;
      transform: translate3d(-10%,0,0) scale(1.012);
    }

    73.33% {
      opacity: 1;
      transform: translate3d(.8%,0,0) scale(1.002);
    }

    100% {
      opacity: 1;
      transform: translate3d(0,0,0) scale(1);
    }
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .heroMedia.heroShowcaseMedia .heroSingleProductImage {
    opacity: 0;
    transform: translate3d(-8%,0,0) scale(1.009);
  }

  .hero.heroPurchaseMotionIn .heroMedia.heroShowcaseMedia .heroSingleProductImage {
    animation-name: heroProductSettleMobile;
  }

  @keyframes heroProductSettleMobile {
    0% {
      opacity: 0;
      transform: translate3d(-8%,0,0) scale(1.009);
    }

    73.33% {
      opacity: 1;
      transform: translate3d(.55%,0,0) scale(1.001);
    }

    100% {
      opacity: 1;
      transform: translate3d(0,0,0) scale(1);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .heroMedia.heroShowcaseMedia .heroSingleProductImage {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* A single, restrained sweep gives the Ganluya mark a tactile response on
   intentional desktop hover or keyboard focus. It never loops or changes the
   logo's click target, and touch-only devices keep the static brand treatment. */
.wordmark {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  isolation: isolate;
}

.wordmark::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -45%;
  right: -42%;
  bottom: -45%;
  left: -42%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-132%,0,0) rotate(18deg);
  background: linear-gradient(90deg, transparent 37%, rgba(255,255,255,.08) 43%, rgba(255,255,255,.76) 50%, rgba(214,255,228,.34) 57%, transparent 64%);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .wordmark:hover::after,
  .wordmark:focus-visible::after {
    animation: logoSingleShine .72s cubic-bezier(.16,1,.3,1) both;
  }

  @keyframes logoSingleShine {
    0% {
      opacity: 0;
      transform: translate3d(-132%,0,0) rotate(18deg);
    }

    15% {
      opacity: 1;
    }

    82% {
      opacity: .74;
    }

    100% {
      opacity: 0;
      transform: translate3d(132%,0,0) rotate(18deg);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .wordmark::after {
    animation: none;
  }
}

/* v138 — keep the seal itself fully visible. Only the shine is clipped to the
   circular edge; neither the image nor its link box can hide the lower arc. */
.minimalHeader,
.headerInner,
.headerInner .wordmark {
  overflow: visible;
}

.headerInner .wordmark::after {
  clip-path: circle(50% at 50% 50%);
}

@media (max-width: 720px) {
  .headerInner {
    height: 90px;
    min-height: 90px;
  }

  .headerInner .wordmark,
  .headerInner .wordmark img {
    width: 60px;
    height: 60px;
  }
}

/* v135 — Header seal and About Us long-form copy.
   The mark remains prominent but wholly inside its header stage; the longer
   About statement is set as calm, indented editorial copy on both viewports. */
.headerInner .wordmark {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  margin-right: 12px;
}

.headerInner .wordmark img {
  width: 64px;
  height: 64px;
}

.aboutUsCopy {
  gap: 18px;
}

.aboutUsCopy p:not(.kicker) {
  max-width: 560px;
  margin: 0;
  color: #49675a;
  font-size: 15.5px;
  font-weight: 450;
  line-height: 1.7;
  letter-spacing: 0;
  text-indent: 2em;
}

.aboutUsCopy .aboutIntro {
  color: #1a704a;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

@media (max-width: 720px) {
  .headerInner {
    height: 82px;
    min-height: 82px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .headerInner .wordmark,
  .headerInner .wordmark img {
    width: 62px;
    height: 62px;
  }

  .supplierIdentity {
    left: 50%;
  }

  .aboutUsCopy {
    gap: 17px;
  }

  .aboutUsCopy p:not(.kicker) {
    max-width: none;
    font-size: 15.5px;
    line-height: 1.68;
  }
}

/* Non-mobile header uses one compact, explicit row. This also protects the
   desktop preview when its browser pane is narrower than the large breakpoint. */
@media (min-width: 600px) {
  .minimalHeader {
    min-height: 0;
    overflow: visible;
  }

  .headerInner {
    display: grid;
    grid-template-columns: 68px 1fr auto auto;
    column-gap: 16px;
    align-items: center;
    height: 82px;
    min-height: 82px;
    padding: 0 28px;
  }

  .headerInner .wordmark,
  .headerInner .wordmark img {
    width: 68px;
    height: 68px;
  }

  .headerInner .wordmark {
    grid-column: 1;
    margin: 0;
    justify-self: start;
    align-self: center;
  }

  .headerInner nav {
    display: flex;
    grid-column: 3;
    align-items: center;
    gap: 22px;
    margin: 0;
  }

  .headerInner nav a {
    font-size: 13px;
    white-space: nowrap;
  }

  .headerInner .headerInquiry {
    display: inline-flex;
    grid-column: 4;
    justify-self: end;
    min-height: 38px;
    margin: 0;
    padding: 0 17px;
    white-space: nowrap;
  }

  .headerInner .headerAboutButton {
    display: none;
  }
}

@media (min-width: 1024px) {
  /* Desktop header: a true single-row navigation bar. This explicit grid
     prevents the circular mark being stranded in a tall, empty header stage. */
  .minimalHeader {
    min-height: 0;
    overflow: visible;
  }

  .headerInner {
    display: grid;
    grid-template-columns: 154px 1fr auto auto;
    column-gap: 18px;
    align-items: start;
    height: 156px;
    min-height: 156px;
    padding: 18px 28px 12px;
  }

  .headerInner nav {
    display: flex;
    grid-column: 3;
    align-items: center;
    gap: 26px;
    margin: 0;
  }

  .headerInner nav a {
    font-size: 13px;
    white-space: nowrap;
  }

  .headerInner .headerInquiry {
    display: inline-flex;
    grid-column: 4;
    justify-self: end;
    min-height: 40px;
    margin: 0;
    padding: 0 18px;
    white-space: nowrap;
  }

  .headerInner .supplierIdentity,
  .headerInner .headerAboutButton {
    display: none;
  }

  .aboutUsCard {
    align-items: start;
  }

  .aboutUsCopy {
    max-width: 560px;
    padding: 4px 0;
  }

  .aboutUsCopy p:not(.kicker) {
    max-width: 560px;
    font-size: 16.5px;
    line-height: 1.72;
  }
}

/* Final seal guard: these rules deliberately come last so old mobile header
   dimensions cannot crop the circular Ganluya mark after responsive overrides. */
.minimalHeader,
.minimalHeader .headerInner,
.minimalHeader .headerInner .wordmark {
  overflow: visible;
}

.minimalHeader .headerInner .wordmark {
  flex: 0 0 auto;
  line-height: 0;
}

.minimalHeader .headerInner .wordmark img {
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 599px) {
  .minimalHeader {
    border-bottom: none;
  }

  .minimalHeader .headerInner {
    height: 72px;
    min-height: 72px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .minimalHeader .headerInner .wordmark,
  .minimalHeader .headerInner .wordmark img {
    width: 64px;
    height: 64px;
  }

  .minimalHeader .headerInner .supplierIdentity {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    width: max-content;
    margin: 0;
    padding: 0;
    border: 0;
    text-align: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .minimalHeader .headerInner .supplierIdentity strong {
    display: grid;
    justify-items: center;
    gap: 1px;
    color: #176442;
    font-weight: 700;
    white-space: nowrap;
  }

  .minimalHeader .headerInner .supplierIdentity strong span,
  .minimalHeader .headerInner .supplierIdentity strong small {
    display: block;
    color: inherit;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  .minimalHeader .headerInner .supplierIdentity strong span {
    font-size: 10.5px;
  }
}

/* v139 — header-only emblem is a purpose-drawn vector mark. It replaces the
   detail-heavy circular artwork in the 64–72px navigation context, preventing
   the wordmark from being mistaken for a cropped half-logo while retaining the
   fuller original seal in the footer. */
.minimalHeader .headerInner .wordmark {
  display: grid;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  line-height: 0;
  overflow: hidden;
  background: transparent;
}

.minimalHeader .headerInner .wordmark img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 50%;
  object-fit: cover;
}

.minimalHeader .headerInner .wordmark::after {
  clip-path: circle(50% at 50% 50%);
}

/* Final desktop seal size guard: the generic 64px wordmark rule above has
   the same specificity as the earlier desktop override, so this last-block
   declaration ensures the new 200px Ganluya mark actually wins on desktop. */
@media (min-width: 1024px) {
  .minimalHeader .headerInner .wordmark,
  .minimalHeader .headerInner .wordmark img {
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (min-width: 600px) {
  .minimalHeader .headerInner .wordmark,
  .minimalHeader .headerInner .wordmark img {
    width: 68px;
    height: 68px;
    min-width: 68px;
    min-height: 68px;
  }
}

/* v184 — desktop header stage with the 130px Ganluya seal, dropped a
   little further below the green offer bar to avoid touching it. */
@media (min-width: 1024px) {
  .minimalHeader {
    min-height: 156px;
  }

  .minimalHeader .headerInner {
    grid-template-columns: 154px minmax(0,1fr) auto auto;
    height: 156px;
    min-height: 156px;
    column-gap: 18px;
    align-items: start;
    padding: 18px 28px 12px;
  }

  .minimalHeader .headerInner .wordmark,
  .minimalHeader .headerInner .wordmark img {
    width: 130px;
    height: 130px;
    min-width: 130px;
    min-height: 130px;
  }

  .minimalHeader .headerInner .wordmark {
    transform: translateY(0);
  }
}

/* v153 — header brand promise. Keep the copy centered on every viewport and
   preserve the existing low-frequency shine as a calm brand accent. */
@media (min-width: 600px) {
  .minimalHeader .headerInner .supplierIdentity {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    width: max-content;
    margin: 0;
    padding: 0;
    border: 0;
    text-align: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .minimalHeader .headerInner .supplierIdentity strong {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 2px;
    overflow: hidden;
    color: #176442;
    font-weight: 700;
    white-space: nowrap;
  }

  .minimalHeader .headerInner .supplierIdentity strong::after {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -34%;
    width: 22%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent);
    transform: skewX(-18deg);
  }

  .minimalHeader .headerInner .supplierIdentity strong span,
  .minimalHeader .headerInner .supplierIdentity strong small {
    display: block;
    color: inherit;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    text-transform: uppercase;
  }

  .minimalHeader .headerInner .supplierIdentity strong span {
    font-size: 14px;
    line-height: 1.08;
    letter-spacing: .012em;
  }

  .minimalHeader .headerInner .supplierIdentity strong small {
    font-size: 12px;
    line-height: 1;
    letter-spacing: .05em;
  }

  @media (prefers-reduced-motion: no-preference) {
    .minimalHeader .headerInner .supplierIdentity strong::after {
      animation: supplierShine 4.8s ease-in-out infinite;
    }
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .minimalHeader .headerInner nav {
    display: none;
  }
}

@media (min-width: 1024px) {
  .minimalHeader .headerInner .supplierIdentity {
    display: none;
  }
}

/* v156 — desktop navigation takes on the site's pale-green atmosphere as
   individual liquid-glass capsules. Each item brightens into forest green on
   hover, keyboard focus, or a tap/click, without introducing a heavy bar. */
@media (min-width: 1024px) {
  .minimalHeader .headerInner nav {
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .minimalHeader .headerInner nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 13px;
    overflow: hidden;
    border: 1px solid rgba(38,117,76,.13);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.5), rgba(235,247,238,.34)),
      rgba(223,241,228,.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72), inset 0 -1px 0 rgba(52,133,87,.07);
    color: #1d6242;
    font-size: 12.5px;
    font-weight: 720;
    line-height: 1;
    letter-spacing: .005em;
    text-decoration: none;
    transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s cubic-bezier(.22,.75,.25,1);
  }

  .minimalHeader .headerInner nav a::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at var(--nav-glass-x,50%) var(--nav-glass-y,50%), rgba(255,255,255,.3), transparent 58%);
    transition: opacity .24s ease;
  }

  .minimalHeader .headerInner nav a:hover,
  .minimalHeader .headerInner nav a:focus-visible,
  .minimalHeader .headerInner nav a.isNavActive {
    border-color: rgba(5,98,59,.56);
    background: linear-gradient(135deg,#0a7049 0%,#16824f 58%,#0a603f 100%);
    box-shadow: 0 8px 18px rgba(6,92,56,.18), inset 0 1px 0 rgba(255,255,255,.22);
    color: #fff;
    outline: none;
    transform: translateY(-1px);
  }

  .minimalHeader .headerInner nav a:hover::after,
  .minimalHeader .headerInner nav a:focus-visible::after,
  .minimalHeader .headerInner nav a.isNavActive::after {
    opacity: 1;
  }

  .minimalHeader .headerInner nav a:active {
    transform: scale(.97);
  }

  .minimalHeader .headerInner .headerInquiry {
    position: relative;
    min-height: 36px;
    padding: 0 16px;
    overflow: hidden;
    border: 1px solid rgba(38,117,76,.16);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.54), rgba(235,247,238,.36)),
      rgba(223,241,228,.52);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.74), inset 0 -1px 0 rgba(52,133,87,.08), 0 6px 16px rgba(31,105,69,.055);
    color: #1d6242;
    font-size: 12.5px;
    font-weight: 760;
    text-decoration: none;
    transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s cubic-bezier(.22,.75,.25,1);
  }

  .minimalHeader .headerInner .headerInquiry::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at var(--nav-glass-x,50%) var(--nav-glass-y,50%), rgba(255,255,255,.3), transparent 58%);
    transition: opacity .24s ease;
  }

  .minimalHeader .headerInner .headerInquiry:hover,
  .minimalHeader .headerInner .headerInquiry:focus-visible,
  .minimalHeader .headerInner .headerInquiry.isNavActive {
    border-color: rgba(5,98,59,.56);
    background: linear-gradient(135deg,#0a7049 0%,#16824f 58%,#0a603f 100%);
    box-shadow: 0 8px 18px rgba(6,92,56,.18), inset 0 1px 0 rgba(255,255,255,.22);
    color: #fff;
    outline: none;
    transform: translateY(-1px);
  }

  .minimalHeader .headerInner .headerInquiry:hover::after,
  .minimalHeader .headerInner .headerInquiry:focus-visible::after,
  .minimalHeader .headerInner .headerInquiry.isNavActive::after {
    opacity: 1;
  }

  .minimalHeader .headerInner .headerInquiry:active {
    transform: scale(.97);
  }
}

@media (prefers-reduced-motion: reduce) {
  .minimalHeader .headerInner nav a,
  .minimalHeader .headerInner nav a::after,
  .minimalHeader .headerInner .headerInquiry,
  .minimalHeader .headerInner .headerInquiry::after {
    transition: none;
  }
}

/* v158 — let the first campaign image breathe like an independent storefront:
   the desktop header becomes a transparent floating layer over the artwork and
   every landscape is shown in its full 16:9 frame, never cropped by cover. */
@media (min-width: 1024px) {
  .offerBar {
    position: relative;
    z-index: 14;
    background: linear-gradient(100deg,#064c38 0%,#087047 55%,#0a8551 100%);
    border-bottom-color: rgba(255,255,255,.16);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .minimalHeader {
    position: absolute;
    top: 24px;
    right: 0;
    left: 0;
    z-index: 13;
    margin-top: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .minimalHeader .headerInner {
    position: relative;
  }

  .minimalHeader .headerInner .wordmark,
  .minimalHeader .headerInner .wordmark img {
    width: 76px;
    height: 76px;
    min-width: 76px;
    min-height: 76px;
  }

  .minimalHeader .headerInner .wordmark {
    transform: translateY(8px);
    box-shadow: 0 8px 20px rgba(1,51,31,.16), inset 0 1px 0 rgba(255,255,255,.72);
  }

  .minimalHeader .headerInner .supplierIdentity {
    padding: 8px 18px 9px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 18px;
    background: rgba(235,248,239,.44);
    box-shadow: 0 8px 20px rgba(1,51,31,.12), inset 0 1px 0 rgba(255,255,255,.72);
    text-shadow: 0 1px 14px rgba(255,255,255,.4);
    backdrop-filter: blur(8px) saturate(1.08);
    -webkit-backdrop-filter: blur(8px) saturate(1.08);
  }

  .minimalHeader .headerInner .supplierIdentity strong {
    gap: 4px;
  }

  .minimalHeader .headerInner .supplierIdentity strong span {
    font-size: 19px;
    line-height: 1.02;
  }

  .minimalHeader .headerInner .supplierIdentity strong small {
    font-size: 15px;
    line-height: 1.04;
  }

  .landingHero {
    display: block;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #eef7f0;
  }

  .landingHeroSlide {
    background-size: contain;
    background-position: center;
    transform: none;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .landingHeroSlide.is-active {
    transform: none;
  }

  .landingHeroOverlay {
    background: linear-gradient(180deg,rgba(3,31,22,.14) 0%,rgba(3,31,22,0) 26%,rgba(3,31,22,.02) 72%,rgba(3,31,22,.14) 100%);
  }

  .landingHeroDots {
    bottom: 20px;
  }

  .landingHeroScrollCue {
    left: calc(50% - 32px);
    bottom: 32%;
    width: 64px;
    height: 64px;
  }

  .landingHeroScrollCue span {
    width: 18px;
    height: 18px;
    border-right: 4px solid #0a8551;
    border-bottom: 4px solid #0a8551;
    border-radius: 2px;
    transform: rotate(45deg) translateY(-3px);
  }
}

/* v141 — full-bleed breathable landing layer.
   Sits before the existing storefront content and uses slow crossfades
   plus a gentle Ken Burns scale to create the airy, Apple-like transition
   the user asked for. The green overlay keeps it inside the Ganluya palette. */
.landingHero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #031f16;
}

.landingHeroSlides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.landingHeroSlide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  pointer-events: none;
}

.landingHeroSlide.is-active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .landingHeroSlide {
    transition: none;
    transform: none;
  }

  .landingHeroSlide.is-active {
    transform: none;
  }
}

.landingHeroOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3,31,22,.55) 0%, rgba(3,31,22,.12) 28%, rgba(3,31,22,.06) 55%, rgba(3,31,22,.22) 100%);
}

/* v187 — simple centered scroll cue. A clean white orb with a green V
   chevron; the whole orb bounces straight down to suggest more content. */
.landingHeroScrollCue {
  position: absolute;
  left: calc(50% - 32px);
  bottom: 24px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  box-shadow: 0 6px 20px rgba(1,51,31,.18);
  cursor: pointer;
  pointer-events: auto;
  animation: landingScrollBounce 1.6s ease-in-out infinite;
}

.landingHeroScrollCue span {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 4px solid #0a8551;
  border-bottom: 4px solid #0a8551;
  border-radius: 2px;
  transform: rotate(45deg) translateY(-3px);
}

@keyframes landingScrollBounce {
  0%, 72%, 100% { transform: translateY(0); }
  36% { transform: translateY(12px); }
}

.landingHeroDots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.landingHeroDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.landingHeroDot.is-active {
  background: #1a704a;
  transform: scale(1.35);
}

@media (prefers-reduced-motion: reduce) {
  .landingHeroSlide,
  .landingHeroScrollCue {
    animation: none;
  }

  .landingHeroSlide:first-child {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 720px) {
  /* Phone: show the 3:4 portrait frames at their original aspect ratio.
     No cropping, no blur backdrop, no heavy overlay — just the image. */
  .landingHero {
    min-height: auto;
    aspect-ratio: 3 / 4;
    width: 100%;
    margin: -1px 0 0;
    border-radius: 0;
    background: #f6f4f0;
  }

  .landingHeroSlides,
  .landingHeroSlide,
  .landingHeroOverlay {
    border-radius: 0;
  }

  /* Very gentle edge feather so the portrait frames do not feel like hard
     stickers against the page background. The mask fades only the outer 6%. */
  .landingHeroSlides {
    -webkit-mask-image: radial-gradient(ellipse 98% 98% at center, black 94%, transparent 100%);
    mask-image: radial-gradient(ellipse 98% 98% at center, black 94%, transparent 100%);
  }

  .landingHeroSlide {
    background-image: var(--bg-mobile);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .landingHeroOverlay {
    background:
      linear-gradient(180deg, rgba(3,31,22,.18) 0%, rgba(3,31,22,0) 40%, rgba(3,31,22,0) 70%, rgba(3,31,22,.12) 100%);
  }

  .landingHeroDots {
    bottom: 12px;
    gap: 8px;
  }

  .landingHeroDot {
    width: 7px;
    height: 7px;
  }

  .landingHeroScrollCue {
    left: calc(50% - 32px);
    bottom: 12px;
  }
}

/* v158 final desktop landing rule — placed after the shared and mobile rules
   so the uncropped 16:9 campaign frame always wins on desktop. */
@media (min-width: 1024px) {
  .landingHero {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #eef7f0;
  }

  .landingHeroSlide {
    background-size: contain;
    background-position: center;
    transform: none;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .landingHeroSlide.is-active {
    transform: none;
  }

  .landingHeroOverlay {
    background: none;
  }

  .landingHeroDots {
    bottom: 20px;
  }

  .landingHeroScrollCue {
    left: calc(50% - 32px);
    bottom: 32%;
    width: 64px;
    height: 64px;
  }

  .landingHeroScrollCue span {
    width: 18px;
    height: 18px;
    border-right: 4px solid #0a8551;
    border-bottom: 4px solid #0a8551;
    border-radius: 2px;
    transform: rotate(45deg) translateY(-3px);
  }
}

/* v163 — preserve the centered brand promise while giving the independent
   glass navigation a calmer right-hand breathing zone on wide desktops.
   The staged offset only activates where the row has room; 1024–1199px
   retains the safe grid alignment so no capsule can collide with the slogan. */
@media (min-width: 1200px) {
  .minimalHeader .headerInner nav,
  .minimalHeader .headerInner .headerInquiry {
    position: relative;
    left: 0;
  }
}

/* v164 — give the brand promise a more enduring, editorial Roman voice.
   The stronger native serif stack and restrained engraved shadow remain crisp
   over photography while the glass enclosure stays visually light. */
.minimalHeader .headerInner .supplierIdentity strong span,
.minimalHeader .headerInner .supplierIdentity strong small {
  color: #0a6848;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,.32), 0 1px 3px rgba(1,57,37,.12);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@media (min-width: 1024px) {
  .minimalHeader .headerInner .supplierIdentity strong {
    gap: 5px;
  }

  .minimalHeader .headerInner .supplierIdentity strong span {
    font-size: 20px;
    line-height: 1;
  }

  .minimalHeader .headerInner .supplierIdentity strong small {
    font-size: 15px;
    line-height: 1;
    letter-spacing: .075em;
  }
}

/* v165 — editorial campaign copy floats directly above each original landing
   photo. A high-contrast dimensional shadow makes the headline feel lifted
   from the scene, without adding a solid card or cropping the artwork. */
.landingHeroMessage {
  position: absolute;
  top: 50%;
  left: clamp(22px, 7vw, 108px);
  z-index: 5;
  width: min(680px, calc(100% - 44px));
  color: #fff;
  transform: translateY(-42%);
  pointer-events: none;
}

.landingHeroEyebrow {
  margin: 0 0 16px;
  color: #edfff2;
  font-size: clamp(13px, 1.55vw, 18px);
  font-weight: 720;
  letter-spacing: .14em;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,20,12,.55);
}

.landingHeroMessage h2 {
  display: grid;
  gap: 2px;
  margin: 0;
  color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #d8f5e4 40%, #a8e8c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 1px 0 rgba(255,255,255,.45),
    0 2px 0 rgba(180,230,205,.3),
    0 3px 0 rgba(4,33,22,.3),
    0 5px 0 rgba(4,33,22,.24),
    0 8px 18px rgba(0,20,12,.55),
    0 18px 38px rgba(0,20,12,.42);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.landingHeroMessage h2 span,
.landingHeroMessage h2 strong {
  display: block;
  font: inherit;
  color: inherit;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}

.landingHeroCopy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.96);
  font-size: clamp(15px, 1.55vw, 21px);
  font-weight: 520;
  letter-spacing: -.012em;
  line-height: 1.42;
  text-shadow: 0 2px 12px rgba(0,24,14,.78);
}

@media (max-width: 1023px) {
  .landingHeroMessage {
    top: auto;
    bottom: clamp(48px, 8vw, 78px);
    left: 50%;
    width: min(88%, 580px);
    text-align: center;
    transform: translateX(-50%);
  }

  .landingHeroEyebrow {
    margin-bottom: 12px;
    font-size: clamp(11px, 2.8vw, 15px);
    letter-spacing: .12em;
  }

  .landingHeroMessage h2 {
    font-size: clamp(32px, 9vw, 58px);
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: .93;
    text-shadow:
      0 1px 0 rgba(255,255,255,.4),
      0 2px 0 rgba(180,230,205,.28),
      0 3px 0 rgba(4,33,22,.26),
      0 5px 0 rgba(4,33,22,.2),
      0 7px 14px rgba(0,20,12,.52),
      0 14px 30px rgba(0,20,12,.4);
  }

  .landingHeroMessage h2 span,
  .landingHeroMessage h2 strong {
    color: inherit;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .landingHeroCopy {
    margin-top: 15px;
    font-size: clamp(13px, 3.6vw, 17px);
    line-height: 1.38;
  }
}

@media (max-width: 720px) {
  .landingHeroMessage {
    bottom: 42px;
  }

  .landingHeroEyebrow {
    display: none;
  }

  .landingHeroMessage h2 {
    font-size: clamp(30px, 9.5vw, 42px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: .93;
    text-shadow:
      0 1px 0 rgba(255,255,255,.35),
      0 2px 0 rgba(180,230,205,.26),
      0 3px 0 rgba(4,33,22,.24),
      0 5px 0 rgba(4,33,22,.18),
      0 6px 12px rgba(0,20,12,.5),
      0 12px 26px rgba(0,20,12,.38);
  }

  .landingHeroCopy {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landingHeroMessage,
  .landingHeroMessage * {
    transition: none;
  }
}

/* v182 — Final absolute desktop seal size: 130px Ganluya circular mark
   tucked just below the green offer bar, overriding every earlier rule. */
@media (min-width: 1024px) {
  .minimalHeader .headerInner .wordmark,
  .minimalHeader .headerInner .wordmark img {
    width: 130px !important;
    height: 130px !important;
    min-width: 130px !important;
    min-height: 130px !important;
  }

  .minimalHeader .headerInner .wordmark {
    transform: translateY(0) !important;
  }
}

/* v195 — final desktop About Us image alignment guard. Earlier desktop rules
   set the card back to start alignment and restored a 430px image height, so
   this final block keeps the entire factory frame vertically centered and
   proportionate to the long copy column. */
@media (min-width: 1024px) {
  .aboutUsSection .aboutUsCard {
    align-items: center;
  }

  .aboutUsSection .aboutUsImage {
    align-self: center;
    justify-self: center;
    display: grid;
    place-items: center;
    width: min(100%, 440px);
    min-height: 0;
    margin: 0;
    padding: 18px 20px;
  }

  .aboutUsSection .aboutUsImage img {
    width: auto;
    height: min(45vw, 420px);
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    object-position: center center;
  }
}

/* v198 — Real customer inquiries wall, inserted after the products-cover
   card. Desktop mimics the horizontal collage reference: a center-forward
   chat-bubble shot flanked by tilted phone screenshots. Mobile mimics the
   vertical staggered collage. Palette stays on the site's mint/forest theme
   instead of the reference's dark green. */
.inquiryWallSection {
  background-color: #edf8f0;
}

.inquiryWallCard {
  padding: 30px 26px 26px;
  border: 1px solid rgba(6,63,45,.1);
  border-radius: 24px;
  background: linear-gradient(165deg, #f7fcf8 0%, #edf8f0 55%, #e2f4e8 100%);
  box-shadow: 0 18px 44px rgba(24,52,42,.08);
}

.inquiryWallHead {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.inquiryWallCopy {
  display: grid;
  gap: 8px;
}

.inquiryWallCopy .kicker {
  margin: 0;
}

.inquiryWallCopy h2 {
  max-width: 640px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(28px, 7.4vw, 40px);
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: -.05em;
}

.inquiryWallCopy p:not(.kicker) {
  max-width: 560px;
  margin: 0;
  color: #43604f;
  font-size: 15px;
  line-height: 1.55;
}

.inquiryWallContact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: start;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #f2fbf5;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(6,60,43,.22);
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.inquiryWallContact:hover {
  background: #0a5c41;
  box-shadow: 0 14px 30px rgba(6,60,43,.28);
  transform: translateY(-1px);
}

.inquiryWallContact span {
  font-weight: 600;
}

.inquiryWallBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.inquiryWallBadges li {
  position: relative;
  padding: 10px 17px;
  border: 1px solid rgba(10,92,65,.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(206,246,218,.8), rgba(157,226,183,.5));
  color: #075b40;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: .08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 7px 18px rgba(25,103,70,.1);
  backdrop-filter: blur(10px) saturate(1.12);
  -webkit-backdrop-filter: blur(10px) saturate(1.12);
}

/* Mobile-first mosaic: vertical staggered collage like the reference. */
.inquiryWallMosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.inquiryShot {
  margin: 0;
  border: 1px solid rgba(6,63,45,.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16,47,36,.12);
  overflow: hidden;
}

.inquiryShot img {
  display: block;
  width: 100%;
  height: auto;
}

.inquiryShotA { transform: rotate(-1.6deg); }
.inquiryShotB { transform: rotate(1.4deg) translateY(14px); }
.inquiryShotC {
  grid-column: 1 / -1;
  grid-row: 1;
  width: min(92%, 360px);
  justify-self: center;
  transform: rotate(-.8deg);
  z-index: 2;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.inquiryShotD { transform: rotate(1.8deg) translateY(4px); }
.inquiryShotE { transform: rotate(-1.2deg) translateY(18px); }

/* Desktop mosaic: horizontal collage with a forward center piece. */
@media (min-width: 1024px) {
  .inquiryWallSection {
    padding: 26px 0 64px;
  }

  .inquiryWallCard {
    padding: 40px 44px 36px;
    border-radius: 30px;
  }

  .inquiryWallHead {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px;
    margin-bottom: 20px;
  }

  .inquiryWallCopy h2 {
    font-size: clamp(34px, 3vw, 44px);
  }

  .inquiryWallCopy p:not(.kicker) {
    font-size: 16.5px;
    line-height: 1.6;
  }

  .inquiryWallContact {
    justify-self: end;
    min-height: 48px;
    margin-top: 6px;
    padding: 0 26px;
    font-size: 15px;
  }

  .inquiryWallBadges {
    gap: 10px;
    margin-bottom: 26px;
  }

  .inquiryWallBadges li {
    padding: 8px 16px;
    font-size: 11px;
  }

  .inquiryWallMosaic {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    align-items: center;
  }

  .inquiryShot {
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(16,47,36,.16);
  }

  .inquiryShotA {
    grid-column: 1;
    transform: rotate(-3.4deg) translateY(26px);
    z-index: 1;
  }

  .inquiryShotB {
    grid-column: 2;
    margin-right: -14%;
    transform: rotate(2.2deg) translateY(-16px);
    z-index: 2;
  }

  .inquiryShotC {
    grid-column: 3;
    width: 124%;
    margin-left: -12%;
    transform: rotate(-1deg);
    z-index: 3;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .inquiryShotD {
    grid-column: 4;
    margin-left: -14%;
    transform: rotate(2.6deg) translateY(-12px);
    z-index: 2;
  }

  .inquiryShotE {
    grid-column: 5;
    transform: rotate(-2.4deg) translateY(30px);
    z-index: 1;
  }
}

/* Scroll-reveal: gentle rise, consistent with the other sections. */
@media (prefers-reduced-motion: no-preference) {
  .inquiryWallSection.inquiryWallMotionReady .inquiryWallHead,
  .inquiryWallSection.inquiryWallMotionReady .inquiryWallBadges,
  .inquiryWallSection.inquiryWallMotionReady .inquiryShot {
    opacity: .01;
    will-change: opacity;
  }

  .inquiryWallSection.inquiryWallMotionReady .inquiryWallHead {
    transform: translate3d(0, 22px, 0);
  }

  .inquiryWallSection.inquiryWallMotionReady .inquiryWallBadges {
    transform: translate3d(0, 18px, 0);
  }

  .inquiryWallSection.inquiryWallMotionIn .inquiryWallHead {
    animation: inquiryWallEnter .8s cubic-bezier(.2,.78,.25,1) both;
  }

  .inquiryWallSection.inquiryWallMotionIn .inquiryWallBadges {
    animation: inquiryWallEnter .8s .12s cubic-bezier(.2,.78,.25,1) both;
  }

  .inquiryWallSection.inquiryWallMotionIn .inquiryShotA { animation: inquiryShotEnter .9s .18s cubic-bezier(.2,.78,.25,1) both; }
  .inquiryWallSection.inquiryWallMotionIn .inquiryShotB { animation: inquiryShotEnter .9s .26s cubic-bezier(.2,.78,.25,1) both; }
  .inquiryWallSection.inquiryWallMotionIn .inquiryShotC { animation: inquiryShotEnter .9s .34s cubic-bezier(.2,.78,.25,1) both; }
  .inquiryWallSection.inquiryWallMotionIn .inquiryShotD { animation: inquiryShotEnter .9s .42s cubic-bezier(.2,.78,.25,1) both; }
  .inquiryWallSection.inquiryWallMotionIn .inquiryShotE { animation: inquiryShotEnter .9s .5s cubic-bezier(.2,.78,.25,1) both; }

  @keyframes inquiryWallEnter {
    from { opacity: .01; transform: translate3d(0, 22px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
  }

  @keyframes inquiryShotEnter {
    from { opacity: .01; }
    to { opacity: 1; }
  }
}

/* v197 — compact About Us source-to-solution heading. Keep the shorter title
   visually balanced and pull only the introductory paragraph closer without
   compressing the remaining body-copy rhythm. */
.aboutUsSection .aboutUsCopy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.aboutUsSection .aboutUsCopy h2 + .aboutIntro {
  margin-top: -7px;
}

@media (min-width: 1024px) {
  .aboutUsSection .aboutUsCopy h2 {
    max-width: 520px;
    font-size: clamp(38px, 3.1vw, 46px);
  }

  .aboutUsSection .aboutUsCopy h2 + .aboutIntro {
    margin-top: -8px;
  }
}

/* v204 — desktop-only liquid-glass contact action beneath the landing copy. */
.landingHeroContact {
  display: none;
}

@media (min-width: 1024px) {
  .landingHeroMessage {
    pointer-events: auto;
  }

  .landingHeroContact {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 154px;
    min-height: 48px;
    /* Align to the desktop header/logo start line while retaining breathing room below copy. */
    margin-top: 14px;
    margin-left: calc(28px - clamp(22px, 7vw, 108px));
    padding: 0 22px;
    overflow: hidden;
    border: 1px solid rgba(235,255,244,.72);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(224,255,237,.78), rgba(145,225,178,.58));
    color: #07563c;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    cursor: pointer;
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.9),
      inset 0 -1px 0 rgba(58,139,94,.16),
      0 12px 30px rgba(4,54,36,.24);
    transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
  }

  .landingHeroContact::before {
    content: "";
    position: absolute;
    inset: 1px 16px auto;
    height: 45%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,0));
    pointer-events: none;
  }

  .landingHeroContact span {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    transition: transform .24s ease;
  }

  .landingHeroContact:hover,
  .landingHeroContact:focus-visible {
    border-color: rgba(213,255,231,.7);
    background: linear-gradient(135deg, rgba(5,81,56,.96), rgba(3,55,39,.94));
    color: #f2fff7;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.26),
      0 16px 36px rgba(1,44,29,.36);
    transform: translateY(-2px);
  }

  .landingHeroContact:hover span,
  .landingHeroContact:focus-visible span {
    transform: translateX(3px);
  }

  .landingHeroContact:active {
    transform: translateY(0) scale(.985);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landingHeroContact,
  .landingHeroContact span {
    transition: none;
  }
}

/* v205 — desktop WhatsApp direct-contact capsule, paired with View range. */
.headerWhatsApp {
  display: none;
}

@media (min-width: 1024px) {
  .minimalHeader .headerInner {
    grid-template-columns: 154px minmax(0, 1fr) auto auto auto;
    column-gap: 12px;
  }

  .minimalHeader .headerInner .headerWhatsApp {
    position: relative;
    display: inline-flex;
    grid-column: 5;
    align-items: center;
    justify-self: end;
    gap: 7px;
    min-height: 36px;
    margin: 0;
    padding: 0 15px;
    overflow: hidden;
    border: 1px solid rgba(38,117,76,.18);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(249,255,251,.58), rgba(214,245,225,.46)),
      rgba(174,232,194,.48);
    color: #176946;
    font-size: 12.5px;
    font-weight: 760;
    letter-spacing: .005em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(12px) saturate(145%);
    backdrop-filter: blur(12px) saturate(145%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.84),
      inset 0 -1px 0 rgba(52,133,87,.08),
      0 6px 16px rgba(31,105,69,.08);
    transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s cubic-bezier(.22,.75,.25,1);
  }

  .minimalHeader .headerInner .headerWhatsApp::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.48), transparent 56%);
    transition: opacity .24s ease;
  }

  .minimalHeader .headerInner .headerWhatsApp svg,
  .minimalHeader .headerInner .headerWhatsApp span {
    position: relative;
    z-index: 1;
  }

  .minimalHeader .headerInner .headerWhatsApp svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .minimalHeader .headerInner .headerWhatsApp:hover,
  .minimalHeader .headerInner .headerWhatsApp:focus-visible {
    border-color: rgba(3,78,52,.72);
    background: linear-gradient(135deg, #07583e 0%, #06412f 100%);
    color: #f2fff7;
    outline: none;
    box-shadow: 0 9px 20px rgba(3,65,42,.24), inset 0 1px 0 rgba(255,255,255,.22);
    transform: translateY(-1px);
  }

  .minimalHeader .headerInner .headerWhatsApp:hover::after,
  .minimalHeader .headerInner .headerWhatsApp:focus-visible::after {
    opacity: 1;
  }

  .minimalHeader .headerInner .headerWhatsApp:active {
    transform: scale(.97);
  }
}

@media (prefers-reduced-motion: reduce) {
  .minimalHeader .headerInner .headerWhatsApp,
  .minimalHeader .headerInner .headerWhatsApp::after {
    transition: none;
  }
}
