﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;600;700&family=Noto+Serif+Thai:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;1,500&display=swap");

:root {
  --green-950: #092d1d;
  --green-900: #0d3824;
  --green-800: #174c31;
  --green-600: #49775b;
  --matcha: #9eb06e;
  --sage: #dce8cf;
  --cream: #eaf3df;
  --paper: #ecf8e0;
  --ink: #172019;
  --muted: #687069;
  --line: rgba(23, 32, 25, .15);
  --serif: "Playfair Display", Georgia, serif;
  --thai-serif: "Noto Serif Thai", "Th Sarabun New", serif;
  --sans: "Noto Sans Thai", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: #ecf8e0;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html[lang="en"] body { font-family: Arial, Helvetica, sans-serif; }
html[lang="en"] .main-nav a { letter-spacing: .01em; }
html[lang="en"] .hero-copy h1,
html[lang="en"] .hero-copy h2,
html[lang="en"] .section-intro h2,
html[lang="en"] .section-heading h2,
html[lang="en"] .story-copy h2,
html[lang="en"] .cta-copy h2 { font-family: var(--serif); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.section { padding: 130px max(32px, calc((100vw - 1180px) / 2)); }
.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.green { color: var(--green-600); }
.eyebrow.cream { color: #d8e6bf; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  transition: background .35s, box-shadow .35s;
}
.site-header.is-scrolled {
  background: rgba(9, 45, 29, .97);
  box-shadow: 0 12px 28px rgba(7, 26, 17, .12);
}
.nav-shell {
  width: var(--container);
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
}
@media (min-width: 1081px) {
  .nav-shell { display: grid; grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr); gap: 20px; }
  .nav-shell .main-nav { margin-left: 0; }
  .nav-shell .language { justify-self: end; }
}
.brand { flex: 0 0 auto; }
.brand img { width: 170px; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.7vw, 29px);
  margin-left: auto;
}
.main-nav a {
  position: relative;
  padding: 32px 0 28px;
  font-family: inherit;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.65;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.language {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: .08em;
}
.language span { width: 1px; height: 13px; background: rgba(255, 255, 255, .4); }
.language a { opacity: .6; }
.language a.active, .language a:hover { opacity: 1; }
.language a.active { font-weight: 700; }
.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 1px;
  margin: 6px 0;
  background: #fff;
  transition: transform .3s, opacity .3s;
}

.hero {
  position: relative;
  min-height: 580px;
  height: 72svh;
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slides { transform: translateZ(0); contain: paint; }
.hero-slide {
  z-index: 0;
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transition: none;
}
.hero-slide.is-leaving {
  z-index: 2;
  opacity: 0;
  transition: opacity 2.6s ease-in-out;
}
.hero-slide > img,
.hero-slide > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translate3d(0, 0, 0) scale(1.018);
  transform-origin: center center;
  backface-visibility: hidden;
}
.hero-slide > video {
  object-position: center 20%;
  transform: none;
}
.hero-slide.is-active > img,
.hero-slide.is-leaving > img {
  animation: heroImageZoom 18s linear forwards;
  will-change: transform;
  backface-visibility: hidden;
}
@keyframes heroImageZoom {
  0% { transform: translate3d(0, 0, 0) scale(1.018); }
  100% { transform: translate3d(-5.2%, -2.4%, 0) scale(1.30); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 26, 17, .83) 0%, rgba(5, 26, 17, .44) 42%, rgba(5, 26, 17, .05) 75%),
    linear-gradient(0deg, rgba(5, 26, 17, .3), transparent 42%);
}
.hero-copy {
  position: absolute;
  top: 50%;
  left: max(32px, calc((100vw - 1180px) / 2));
  width: min(620px, 48vw);
  transform: translateY(-43%);
}
.hero-copy h1, .hero-copy h2 {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.04;
}
.hero-copy h1 em, .hero-copy h2 em {
  color: #75bc49;
  font-family: var(--serif);
  font-weight: 500;
}
html[lang="th"] .hero-copy h1 em,
html[lang="th"] .hero-copy h2 em {
  font-family: var(--thai-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.035em;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: color .3s, background .3s, border-color .3s;
}
.button:hover { font-weight: 800; }
.button-light { color: var(--green-950); background: #fff; }
.button-light:hover { color: #fff; background: var(--matcha); }
.hero .button-light {
  padding: 16px 30px;
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}
.hero .button-light:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.button-outline { border-color: rgba(255, 255, 255, .55); color: #fff; }
.button-outline:hover { background: #fff; color: var(--green-950); }
.hero-controls {
  position: absolute;
  z-index: 5;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .25s;
}
.hero-arrow:hover { background: rgba(255, 255, 255, .15); }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button {
  width: 26px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: width .3s, background .3s;
}
.hero-dots button.is-active { width: 48px; background: #fff; }
.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 30px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(-90deg);
  transform-origin: left center;
  font-size: 9px;
  letter-spacing: .18em;
}
.scroll-cue i { display: block; width: 44px; height: 1px; background: rgba(255, 255, 255, .5); }

.quality {
  position: relative;
  min-height: 410px;
  margin-top: 0;
  padding-top: 78px;
  padding-bottom: 78px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--cream);
}
.quality .reveal {
  opacity: 1;
  transform: none;
}
.quality-premium {
  overflow: hidden;
  color: #fffdf3;
  background:
    radial-gradient(circle at 50% 21%, rgba(211, 164, 67, .17), transparent 25%),
    linear-gradient(145deg, #0a301e 0%, #123f27 50%, #082a1b 100%);
  border-top: 1px solid rgba(240, 204, 120, .42);
  border-bottom: 1px solid rgba(240, 204, 120, .3);
}
.quality-premium::before,
.quality-premium::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(225, 184, 87, .13);
  transform: rotate(45deg);
  pointer-events: none;
}
.quality-premium::before { top: -220px; left: -95px; }
.quality-premium::after { right: -95px; bottom: -220px; }
.quality-kicker {
  margin: 0 0 20px;
  color: #f4d884;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(229, 181, 63, .28);
}
.quality-medal {
  position: relative;
  display: block;
  width: 228px;
  margin: 0 auto 18px;
  padding: 9px;
}
.quality-medal::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 50%;
  width: 112px;
  height: 112px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 210, 113, .16), transparent 72%);
  box-shadow: 0 0 16px rgba(219, 165, 42, .14);
  transform: translateX(-50%);
}
.quality-medal img {
  position: relative;
  z-index: 1;
  width: 210px;
  height: auto;
}

@media (min-width: 761px) {
  .quality-premium .section-intro {
    position: relative;
    top: -72px;
  }

  .quality-premium .quality-kicker {
    position: relative;
    z-index: 2;
    top: 34px;
  }

  .quality-premium .quality-medal {
    margin-bottom: -34px;
  }
}

.quality-premium .section-intro h2 {
  color: #f8e3a0;
  background: linear-gradient(180deg, #fff8dc 8%, #f2d37a 48%, #c99b3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .2);
}
.quality-premium .section-intro > .quality-description {
  color: #b6bdba;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.section-intro { max-width: 820px; margin: 0 auto; text-align: center; }
.section-intro h2, .section-heading h2 {
  margin: 0 0 24px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.25;
}
.section-intro > p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
}
.quality-badge {
  position: absolute;
  right: max(38px, calc((100vw - 1060px) / 2));
  top: 72px;
  width: 106px;
  transform: rotate(7deg);
}

.product-categories {
  padding-inline: max(32px, calc((100vw - 1260px) / 2));
  background: var(--sage);
}
.product-categories .section-heading {
  grid-template-columns: minmax(0, max-content) minmax(320px, 1fr);
  justify-content: start;
  gap: 48px;
  max-width: 1260px;
}
.product-categories .section-heading > p {
  width: 100%;
  max-width: none;
  justify-self: start;
  overflow-wrap: normal;
  white-space: nowrap;
}
html[lang="en"] .product-categories .section-heading > p {
  font-size: 16px;
  line-height: 1.55;
}
.home-product-promo {
  width: 100%;
  max-width: 1140px;
  aspect-ratio: 3 / 2;
  margin: 0 auto 58px;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(17, 59, 35, .14);
}
.home-promo-track {
  display: flex;
  width: 400%;
  height: 100%;
  will-change: transform;
  backface-visibility: hidden;
  animation: home-promo-loop 6s ease-in-out infinite;
}
.home-promo-banner {
  display: block;
  flex: 0 0 25%;
  width: 25%;
  height: 100%;
  overflow: hidden;
  background: #123b27;
}
.home-promo-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes home-promo-loop {
  0%, 40% { transform: translate3d(0, 0, 0); }
  50%, 90% { transform: translate3d(-25%, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .home-promo-track { animation: none; }
}
@media (max-width: 1024px) {
  .home-product-promo {
    width: 94%;
  }
}
@media (max-width: 600px) {
  .home-product-promo {
    margin-bottom: 40px;
    border-radius: 12px;
  }
}
.home-promo-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(17, 59, 35, .2);
}
.home-promo-heading > p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}
.home-promo-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}
.home-promo-label strong { font-size: 17px; letter-spacing: .04em; }
.home-promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 14px;
}
.home-promo-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 17px;
  border: 1px solid rgba(17, 59, 35, .1);
  border-radius: 18px;
  background: #ebfae3;
  overflow: hidden;
  text-align: center;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.home-promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  z-index: 2;
  width: 38px;
  height: 64px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 77%, 0 100%);
  background: #287447;
  filter: none;
  transform: none;
}
.home-promo-card::after {
  content: "NEW";
  position: absolute;
  top: 19px;
  left: 34px;
  z-index: 3;
  width: 38px;
  color: #fff8e7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-align: center;
  transform: none;
}
.home-promo-card:hover {
  background: #d1edbf;
  box-shadow: 0 12px 28px rgba(17, 59, 35, .08);
  transform: none;
}
.home-promo-card > span {
  position: absolute;
  top: 13px;
  left: 15px;
  z-index: 1;
  color: rgba(17, 59, 35, .55);
  font-family: var(--serif);
  font-size: 11px;
}
.home-promo-image {
  height: 218px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-promo-image img {
  width: auto;
  height: 185px;
  max-width: 88%;
  max-height: 185px;
  flex: 0 0 auto;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform .32s ease;
  will-change: transform;
}
.home-promo-card:hover .home-promo-image img {
  transform: none;
}
.home-promo-card:first-child .home-promo-image img {
  transform-origin: center 70%;
  transform: translateY(-2px) scale(1.8);
}
.home-promo-card:first-child:hover .home-promo-image img {
  transform: translateY(-2px) scale(1.8);
}

.product-hover-preview {
  position: fixed;
  z-index: 1000;
  width: min(440px, 38vw, 72vh);
  height: min(440px, 38vw, 72vh);
  border: 1px solid rgba(17, 59, 35, .18);
  border-radius: 50%;
  overflow: hidden;
  background-color: #eef9e6;
  background-repeat: no-repeat;
  background-size: 220% auto;
  box-shadow: 0 24px 64px rgba(9, 45, 29, .24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.98);
  transition: opacity .15s ease, transform .15s ease;
}

.product-hover-preview.is-visible {
  opacity: 1;
  transform: none;
}
.home-promo-card h3 {
  min-height: 48px;
  margin: 13px 0 0;
  padding-top: 13px;
  border-top: 1px solid rgba(17, 59, 35, .15);
  color: var(--green-950);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}
.home-promo-card:nth-child(2) h3 {
  font-size: 21px;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
  white-space: normal;
}
html[lang="en"] .home-promo-card h3 {
  font-weight: 500;
}
.home-promo-link {
  width: fit-content;
  margin: auto 0 0 auto;
  padding: 7px 11px;
  background: var(--green-900);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}
.home-promo-link b { margin-left: 4px; font-size: 13px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .6fr);
  align-items: end;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto 64px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p {
  width: min(100%, 430px);
  margin: 0 0 10px;
  justify-self: end;
  color: var(--muted);
  line-height: 1.7;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.category-grid .category-card {
  grid-column: span 2;
}

.category-grid .category-card:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.category-grid .category-card:nth-child(2) {
  grid-column: 3 / span 2;
  grid-row: 1;
}

.category-grid .category-card:nth-child(3) {
  grid-column: 5 / span 2;
  grid-row: 1;
}

.category-grid .category-card:nth-child(4) {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.category-grid .category-card:nth-child(5) {
  grid-column: 4 / span 2;
  grid-row: 2;
}
.category-card {
  position: relative;
  min-height: 388px;
  overflow: hidden;
  padding: 28px 31px 24px;
  background: #e6f5dc;
  transition: transform .4s, background .4s;
}
.category-card:nth-child(2), .category-card:nth-child(5) { background: #e6f5dc; }
.category-card:hover { z-index: 2; background: #d1edbf; transform: translateY(-7px); }
.category-card img {
  width: 100%;
  height: 238px;
  object-fit: contain;
  transition: transform .55s ease;
}
.category-card:hover img { transform: scale(1.06) translateY(-5px); }
.card-index {
  position: absolute;
  top: 22px;
  left: 25px;
  color: rgba(23, 32, 25, .45);
  font-family: var(--serif);
  font-size: 13px;
}
.card-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 32, 25, .18);
}
.card-copy h3 { margin: 0; font-size: 21px; font-weight: 500; }
.card-copy span { font-size: 11px; font-weight: 600; white-space: nowrap; }
.card-copy b { font-size: 15px; }

.story {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(500px, 1.28fr);
  gap: 80px;
  background: var(--green-900);
  color: #fff;
}
.story-copy {
  align-self: center;
  max-width: 470px;
  padding-left: max(0px, calc((100vw - 1180px) / 2 - max(32px, calc((100vw - 1180px) / 2))));
}
.story-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.18;
}
.story-lead { color: #dbe8bd; font-size: 22px; font-weight: 600; }
.story-copy > p:not(.eyebrow):not(.story-lead) { color: rgba(255, 255, 255, .68); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  font-size: 13px;
  font-weight: 600;
}
.text-link span { font-size: 20px; transition: transform .25s; }
.text-link:hover span { transform: translateX(6px); }
.story-gallery {
  display: grid;
  grid-template-columns: 1.7fr .9fr;
  gap: 14px;
}
.story-gallery figure { min-height: 260px; margin: 0; overflow: hidden; }
.story-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.story-gallery figure:hover img { transform: scale(1.04); }
.story-main { grid-column: 1 / -1; height: 390px; }
.story-small, .story-wide { height: 290px; }

.recipes { background: #ecf8e0; }
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.recipe-image { height: 390px; overflow: hidden; background: #d9e5d3; }
.recipe-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.recipe-card:hover img { transform: scale(1.045); }
.recipe-card > div:last-child { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding-top: 20px; }
.recipe-card span { color: var(--green-600); font-family: var(--serif); font-size: 12px; font-style: italic; }
.recipe-card h3 { margin: 0; font-size: 19px; font-weight: 500; text-align: right; }

.recommended { background: var(--sage); }
.recommended .section-intro { margin-bottom: 46px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card {
  min-height: 390px;
  padding: 28px 30px 26px;
  background: #e6f5dc;
  transition: background .35s;
}
.product-card:hover { background: #d1edbf; }
.product-card img {
  width: 100%;
  height: 212px;
  object-fit: contain;
  transition: transform .45s;
}
.product-card:hover img { transform: translateY(-7px); }
.product-card p {
  margin: 10px 0 2px;
  color: var(--green-600);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
}
.product-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 500; }
.product-card span { color: var(--muted); font-size: 11px; font-weight: 600; }

/* Online shop */
.shop-body .site-header { background: rgba(9, 45, 29, .97); box-shadow: 0 8px 28px rgba(4, 24, 14, .12); }
.shop-page {
  min-height: 100svh;
  padding: 128px max(24px, calc((100vw - 1400px) / 2)) 72px;
  background:
    radial-gradient(circle at 10% 10%, rgba(151, 190, 104, .25), transparent 34%),
    linear-gradient(145deg, #eaf3df 0%, #dce8cf 100%);
}
.shop-shell {
  position: relative;
  min-height: calc(100svh - 200px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 74px 32px;
  border: 1px solid rgba(27, 83, 50, .14);
  border-radius: 0;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 28px 70px rgba(17, 59, 35, .11);
}
.shop-shell::before,
.shop-shell::after { display: none; }
.shop-content { position: relative; z-index: 1; width: min(980px, 100%); text-align: center; }
.shop-content .eyebrow {
  margin-bottom: 22px;
  color: var(--green-600);
  transform: translateY(-8px);
}
.shop-content h1 {
  margin: 8px 0 14px;
  color: var(--green-950);
  font-family: inherit;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
}
.shop-lead {
  max-width: 680px;
  margin: 0 auto 42px;
  color: #506052;
  font-size: clamp(17px, 2vw, 22px);
}
.shop-channels {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.shop-channel {
  grid-column: span 2;
  width: 100%;
  display: block;
  padding: 30px 24px 28px;
  border: 1px solid rgba(27, 83, 50, .16);
  border-radius: 34px;
  background: #f5faef;
  box-shadow: 0 22px 50px rgba(17, 59, 35, .14);
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.shop-channel:nth-child(4) { grid-column: 2 / span 2; }
.shop-channel:hover {
  transform: translateY(-8px);
  border-color: var(--green-600);
  box-shadow: 0 30px 60px rgba(17, 59, 35, .2);
}
.shop-icon {
  width: 112px;
  height: 112px;
  display: block;
  margin: 0 auto 24px;
  border-radius: 25%;
  object-fit: cover;
}
.shop-icon.facebook {
  background: #1877f2;
  box-shadow: 0 8px 18px rgba(24, 119, 242, .12);
}
.shop-icon.tiktok { box-shadow: 0 8px 18px rgba(0, 0, 0, .11); }
.shop-icon.shopee { box-shadow: 0 8px 18px rgba(238, 90, 36, .13); }
.shop-icon.lazada {
  box-shadow: 0 8px 18px rgba(21, 53, 179, .12);
}
.shop-icon.line {
  box-shadow: 0 8px 18px rgba(6, 199, 0, .12);
}
.shop-channel h2 { margin: 0 0 4px; color: var(--green-950); font-size: 38px; font-weight: 600; }
.shop-channel p { margin: 0 0 25px; color: var(--muted); }
.shop-link {
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.cta {
  position: relative;
  height: 670px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}
.cta-image, .cta-image::after { position: absolute; inset: 0; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-image::after {
  content: "";
  background: rgba(5, 34, 20, .69);
}
.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 30px;
  text-align: center;
}
.cta-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.22;
}
.cta-copy > p:not(.eyebrow) { max-width: 570px; margin: 0 auto; color: rgba(255, 255, 255, .75); }
.cta-actions { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }

.site-footer {
  padding: 70px max(32px, calc((100vw - 1180px) / 2)) calc(82px + env(safe-area-inset-bottom));
  background: var(--green-950);
  color: #fff;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 50px;
  padding-bottom: 0;
  border-bottom: 0;
}
.footer-brand img { width: 190px; }
.footer-top p { margin: 0; color: rgba(255, 255, 255, .6); }
.back-top { padding-bottom: 5px; border-bottom: 1px solid rgba(255, 255, 255, .4); font-size: 12px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 720px;
  margin: 58px 0;
}
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links h3 { margin: 0 0 18px; color: #b7c993; font-family: var(--serif); font-size: 14px; font-style: italic; font-weight: 500; }
.footer-links a { margin: 5px 0; color: rgba(255, 255, 255, .7); font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .43);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.footer-credit { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav-shell { width: calc(100vw - 48px); height: 76px; }
  .brand img { width: 150px; }
  .menu-toggle { display: block; }
  .language { margin-left: 4px; }
  .main-nav {
    position: fixed;
    inset: 76px 0 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 44px 7vw;
    background: var(--green-950);
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .main-nav.is-open { transform: none; }
  .main-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 22px;
  }
  .main-nav a::after { display: none; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-copy { width: min(650px, calc(100vw - 80px)); }
  .category-card { min-height: 390px; padding: 28px; }
  .category-card img { height: 230px; }
  .story { grid-template-columns: 1fr; }
  .story-copy { max-width: 660px; }
  .product-card { padding: 25px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 36px); }
  .section { padding: 82px 18px; }
  .product-categories { padding-inline: 18px; }
  .product-categories .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product-categories .section-heading > p {
    width: 100%;
    white-space: normal;
  }
  .nav-shell { width: calc(100vw - 36px); }
  .brand img { width: 132px; }
  .language {
    position: relative;
    z-index: 101;
    order: 2;
    display: flex;
    margin-left: auto;
    font-size: 14px;
  }
  .menu-toggle {
    order: 3;
    margin-left: 12px;
  }
  .hero { min-height: 590px; height: 90svh; }
  .hero-copy {
    left: 22px;
    width: calc(100vw - 44px);
    transform: translateY(-40%);
  }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(44px, 13vw, 65px); }
  .hero-copy > p:not(.eyebrow) { font-size: 15px; }
  .hero-shade { background: linear-gradient(90deg, rgba(5, 26, 17, .82), rgba(5, 26, 17, .24)), linear-gradient(0deg, rgba(5, 26, 17, .35), transparent); }
  .hero-slide > img { object-position: 59% center; }
  .hero-slide > video { object-position: center 20%; }
  .hero-controls { right: 20px; bottom: 28px; }
  .scroll-cue { display: none; }
  .quality {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .quality .section-intro { transform: none; }
  .quality-badge { top: 60px; right: 50%; width: 82px; transform: translateX(50%) rotate(7deg); }
  .section-intro h2, .section-heading h2 { font-size: 35px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 38px; }
  .section-heading > p {
    width: 100%;
    margin-bottom: 0;
    justify-self: start;
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
  }
  .category-grid, .recipe-grid, .product-grid { grid-template-columns: 1fr; }
  .category-grid .category-card,
  .category-grid .category-card:nth-child(1),
  .category-grid .category-card:nth-child(2),
  .category-grid .category-card:nth-child(3),
  .category-grid .category-card:nth-child(4),
  .category-grid .category-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .home-product-promo { margin-bottom: 38px; padding: 0; }
  .home-promo-heading { display: block; padding: 0 4px 10px; }
  .home-promo-heading > p:last-child { display: none; }
  .home-promo-label { flex-wrap: wrap; gap: 5px; }
  .home-promo-label strong { font-size: 14px; }
  .home-promo-grid { grid-template-columns: 1fr; gap: 12px; padding-top: 10px; }
  .home-promo-card {
    display: block;
    min-height: 0;
    padding: 14px 14px 13px;
    text-align: center;
  }
  .home-promo-card::before {
    top: 0;
    left: 24px;
    width: 34px;
    height: 56px;
  }
  .home-promo-card::after {
    top: 17px;
    left: 24px;
    width: 34px;
    font-size: 8px;
  }
  .home-promo-card > span { top: 6px; left: 7px; font-size: 9px; }
  .home-promo-image { height: 180px; overflow: hidden; }
  .home-promo-image img { width: auto; height: 150px; max-width: 88%; max-height: 150px; }
  .home-promo-card:first-child .home-promo-image img {
    transform: translateY(-1px) scale(1.7);
  }
  .home-promo-card h3 {
    min-height: 48px;
    margin: 8px 0 0;
    padding: 10px 1px 0;
    border-top: 1px solid rgba(17, 59, 35, .15);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
  }
  .home-promo-card:nth-child(2) h3 {
    font-size: 18px;
    letter-spacing: 0;
    white-space: normal;
  }
  .home-promo-link { margin-top: 9px; padding: 6px 9px; font-size: 11px; }
  .home-promo-link b { margin-left: 3px; font-size: 12px; }

  .category-card { min-height: 410px; }
  .category-card img { height: 270px; }
  .story { gap: 55px; }
  .story-copy h2 { font-size: 43px; }
  .story-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .story-main { height: 290px; }
  .story-small, .story-wide { height: 205px; }
  .recipe-image { height: 420px; }
  .product-card { min-height: auto; }
  .product-card img { height: 290px; }
  .cta { height: 640px; }
  .cta-copy h2 { font-size: 41px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
  .shop-page { padding: 104px 14px 28px; }
  .shop-shell { min-height: calc(100svh - 132px); padding: 54px 20px; border-radius: 0; }
  .shop-content h1 { font-size: 42px; }
  .shop-lead { margin-bottom: 32px; font-size: 16px; }
  .shop-channels { grid-template-columns: 1fr; }
  .shop-channel,
  .shop-channel:nth-child(4) { grid-column: auto; }
  .shop-channel { padding: 26px 20px 24px; border-radius: 26px; }
  .shop-icon { width: 94px; height: 94px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
