* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fbfff0;
  color: #154b2a;
  font-family: Nunito, Arial, sans-serif;
  overflow-x: hidden;
}
.wipe {
  position: fixed;
  inset: 0;
  background: #eaf79d;
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: right;
  pointer-events: none;
}
.wipe.play {
  animation: wipe 0.7s cubic-bezier(0.8, 0, 0.2, 1);
}
@keyframes wipe {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }
  45% {
    transform: scaleX(1);
    transform-origin: right;
  }
  55% {
    transform: scaleX(1);
    transform-origin: left;
  }
  100% {
    transform: scaleX(0);
    transform-origin: left;
  }
}
.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(224, 245, 105, 0.22),
    transparent 68%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 28px));
  height: 70px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(15, 92, 44, 0.1);
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 12px;
  box-shadow: 0 15px 38px rgba(35, 76, 32, 0.1);
  transition: 0.3s;
}
.header.scrolled {
  top: 7px;
  box-shadow: 0 18px 42px rgba(35, 76, 32, 0.16);
}
.brand {
  width: 90px;
  height: 58px;
  display: grid;
  place-items: center;
}
.brand img {
  width: 80px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}
.header nav a {
  font-size: 12px;
  font-weight: 900;
  color: #174e2d;
  text-decoration: none;
  padding: 11px 11px;
  border-radius: 14px;
  transition: 0.2s;
}
.header nav a:hover,
.header nav a.active {
  background: #eaf8bc;
  color: #c20d12;
}
.order {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  background: #0d6130;
  color: #fff;
  padding: 13px 17px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
}
.order b {
  font-size: 16px;
}
.svg-icon {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.hamburger {
  display: none;
}
.section {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 110px 0;
  position: relative;
}
.section-narrow {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.hero {
  min-height: 770px;
  padding-top: 150px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
}
.hero-bg {
  position: absolute;
  z-index: -2;
  left: -30vw;
  right: -30vw;
  top: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 15% 35%,
    #f1fa6e 0,
    #e7f4a0 25%,
    #fbfff0 64%
  );
}
.eyebrow {
  display: inline-flex;
  background: #fff3d4;
  color: #0d5f2f;
  padding: 8px 13px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.hero h1 {
  font: 800 clamp(56px, 6.5vw, 88px)/0.82 "Baloo 2";
  letter-spacing: -2px;
  color: #0b5e2e;
  margin: 20px 0 8px;
}
.hero h1 em,
.section-title em,
.about-copy em,
.location-copy em,
.contact h2 em {
  font-style: normal;
  color: #d80c12;
}
.yellow-brush {
  height: 11px;
  width: 320px;
  background: #efc80c;
  clip-path: polygon(0 38%, 100% 0, 97% 72%, 5% 100%);
  transform: rotate(-3deg);
  margin-bottom: 18px;
}
.hero-copy > p {
  max-width: 510px;
  color: #5d735f;
  line-height: 1.7;
  font-size: 15px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 26px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.25s;
}
.btn:hover {
  transform: translateY(-4px);
}
.btn.red {
  background: #d80c12;
  color: #fff;
  box-shadow: 0 10px 22px rgba(216, 12, 18, 0.2);
}
.btn.white {
  background: #fff;
  color: #18512f;
  border: 1px solid #abc69d;
}
.btn.green {
  background: #0d6130;
  color: #fff;
  box-shadow: 0 10px 22px rgba(13, 97, 48, 0.2);
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
}
.hero-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 7px;
  align-items: center;
  min-width: 0;
}
.circle-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0e6030;
  color: #eaf79d;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  flex: none;
}
.tea-icon svg,
.sugar-icon svg {
  stroke-width: 1.7;
}
.svg-circle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-points span > b,
.hero-points span > small {
  display: block;
}
.hero-points b {
  font-size: 11px;
}
.hero-points small {
  font-size: 9px;
  color: #748477;
}
.hero-frame {
  position: relative;
  border-radius: 30px;
}
.hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  box-shadow: 0 32px 65px rgba(49, 73, 25, 0.2);
}
.hero-badge-now {
  position: absolute;
  z-index: 7;
  left: -42px;
  top: -34px;
  width: 185px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 18px rgba(20, 66, 27, 0.18));
  transform: rotate(-2deg);
  transition: transform 0.35s ease;
}
.hero-badge-now:hover {
  transform: rotate(-2deg) translateY(-4px) scale(1.03);
}
.hero-badge-sugar {
  position: absolute;
  z-index: 7;
  right: -54px;
  top: 50%;
  width: 155px;
  height: auto;
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 16px 22px rgba(20, 66, 27, 0.2));
  transition: transform 0.35s ease;
}
.hero-badge-sugar:hover {
  transform: translateY(-50%) scale(1.03);
}
.tea-leaf-decor {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.tea-leaf {
  position: absolute;
  width: clamp(54px, 7vw, 108px);
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  filter: saturate(1.08) drop-shadow(0 10px 14px rgba(37, 84, 25, 0.16));
  will-change: transform;
}
.leaf-top-left {
  left: -18px;
  top: 86px;
  transform: rotate(-28deg);
  animation: leafTopLeft 8s ease-in-out infinite;
}
.leaf-top-right {
  right: -20px;
  top: 105px;
  transform: rotate(25deg);
  animation: leafTopRight 10s ease-in-out infinite;
}
.leaf-left {
  left: -35px;
  top: 46%;
  transform: rotate(18deg) scale(0.72);
  animation: leafSideLeft 9s ease-in-out infinite;
}
.leaf-right {
  right: -35px;
  top: 53%;
  transform: rotate(-22deg) scale(0.72);
  animation: leafSideRight 11s ease-in-out infinite;
}
.leaf-bottom-left {
  left: 2%;
  bottom: -42px;
  transform: rotate(38deg) scale(0.8);
  animation: leafBottomLeft 9.5s ease-in-out infinite;
}
.leaf-bottom-right {
  right: 1%;
  bottom: -45px;
  transform: rotate(-35deg) scale(0.82);
  animation: leafBottomRight 8.7s ease-in-out infinite;
}
@keyframes leafTopLeft {
  0%,
  100% {
    transform: translate(0, 0) rotate(-28deg);
  }
  50% {
    transform: translate(18px, 20px) rotate(-10deg);
  }
}
@keyframes leafTopRight {
  0%,
  100% {
    transform: translate(0, 0) rotate(25deg);
  }
  50% {
    transform: translate(-22px, 25px) rotate(42deg);
  }
}
@keyframes leafSideLeft {
  0%,
  100% {
    transform: translate(0, 0) rotate(18deg) scale(0.72);
  }
  50% {
    transform: translate(18px, -18px) rotate(2deg) scale(0.76);
  }
}
@keyframes leafSideRight {
  0%,
  100% {
    transform: translate(0, 0) rotate(-22deg) scale(0.72);
  }
  50% {
    transform: translate(-20px, 20px) rotate(-40deg) scale(0.76);
  }
}
@keyframes leafBottomLeft {
  0%,
  100% {
    transform: translate(0, 0) rotate(38deg) scale(0.8);
  }
  50% {
    transform: translate(28px, -18px) rotate(20deg) scale(0.84);
  }
}
@keyframes leafBottomRight {
  0%,
  100% {
    transform: translate(0, 0) rotate(-35deg) scale(0.82);
  }
  50% {
    transform: translate(-25px, -22px) rotate(-18deg) scale(0.86);
  }
}
.trust {
  margin-top: -52px;
  position: relative;
  z-index: 8;
  background: rgba(255, 255, 249, 0.94);
  border: 1px solid #dfe8ce;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  padding: 16px 18px;
  box-shadow: 0 20px 45px rgba(45, 78, 33, 0.09);
  backdrop-filter: blur(10px);
}
.trust div {
  text-align: center;
}
.trust b,
.trust small {
  display: block;
}
.trust b {
  font-size: 10px;
}
.trust small {
  font-size: 8px;
  color: #778378;
  margin-top: 3px;
}
.trust i {
  border-left: 1px dashed #cbd8b8;
}
.section-title {
  max-width: 570px;
}
.section-title.center {
  margin: 0 auto 38px;
  text-align: center;
}
.section-title h2,
.about-copy h2,
.location-copy h2,
.contact h2 {
  font: 800 clamp(46px, 5vw, 65px)/0.88 "Baloo 2";
  color: #0c5e2e;
  margin: 15px 0;
}
.section-title p,
.about-copy p,
.location-copy p {
  color: #667768;
  line-height: 1.7;
}
.promo {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 38px;
  align-items: center;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.voucher,
.talent {
  min-height: 320px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
.voucher {
  background: #f5ffb7;
  border: 1px solid #dbe99d;
  padding: 21px;
}
.limited {
  display: inline-block;
  background: #d80c12;
  color: #fff;
  border-radius: 99px;
  padding: 6px 9px;
  font-size: 8px;
  font-weight: 900;
}
.voucher > div {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
.voucher small {
  font-weight: 900;
  color: #c20e12;
}
.voucher strong {
  font-size: 26px;
  color: #d80c12;
  line-height: 1;
}
.voucher em {
  font: 900 43px "Baloo 2";
  color: #d80c12;
  font-style: normal;
  line-height: 1;
}
.voucher label {
  font-size: 9px;
  color: #5b6d5e;
}
.voucher b {
  font-size: 9px;
  background: #fff;
  border: 1px dashed #d80c12;
  padding: 7px 8px;
  border-radius: 6px;
  width: max-content;
  margin-top: 10px;
}
.voucher-cup {
  position: absolute;
  right: -10px;
  top: 82px;
  font-size: 118px;
  filter: drop-shadow(0 10px 9px rgba(70, 50, 20, 0.18));
  animation: cup 4s ease-in-out infinite;
}
@keyframes cup {
  50% {
    transform: translateY(-9px) rotate(3deg);
  }
}
.voucher button {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  border: 0;
  border-radius: 11px;
  padding: 11px;
  background: #0d6130;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  z-index: 3;
}
.voucher-image {
  position: absolute;
  right: 100px;
  top: 58%;
  transform: translateY(-50%);

  width: 150px;
  height: 200px;

  object-fit: contain;
}
.talent {
  background: linear-gradient(145deg, #176b37, #0a5028);
  color: #fff;
  padding: 20px;
}
.script {
  font: 21px "Patrick Hand";
  color: #eaf79d;
}
.talent h3 {
  font: 900 32px/0.72 "Baloo 2";
  margin: 0;
}
.talent h3 i {
  font: normal 22px "Patrick Hand";
  color: #eaf79d;
}
.talent ul {
  list-style: none;
  padding: 0;
  font-size: 9px;
  line-height: 1.9;
  max-width: 230px;
}
.talent a {
  display: inline-block;
  background: #eaf79d;
  color: #0d5f2f;
  text-decoration: none;
  border-radius: 9px;
  padding: 15px 30px;
  font-size: 12px;
  font-weight: 900;
  margin-top: 40px;
}
.talent-face {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 125px;
}
.talent-image {
  position: absolute;
  right: -20px;
  bottom: 2px;
  width: 250px;
  height: 250px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}
.talent {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.talent-copy {
  position: relative;
  z-index: 3;

  width: 45%;
  min-height: 100%;

  padding: 30px 24px 28px;

  background: rgba(5, 91, 43, 0.88);
  border-radius: 22px 0 0 22px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.size-switch {
  display: flex;
  width: max-content;
  margin: 0 auto 25px;
  background: #fff;
  border: 1px solid #d7e5c1;
  padding: 4px;
  border-radius: 99px;
}
.size {
  border: 0;
  background: none;
  border-radius: 99px;
  padding: 10px 20px;
  font-weight: 900;
  color: #245b3a;
  cursor: pointer;
}
.size.active {
  background: #0d6130;
  color: #fff;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.menu-card {
  background: #fffdf5;
  border: 1px solid #e0e8cf;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(45, 79, 34, 0.06);
  transition: 0.3s;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(45, 79, 34, 0.13);
}
.menu-art {
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(145deg, #edf8b8, #fffdf0);
  display: grid;
  place-items: center;
  font-size: 105px;
  position: relative;
}
.menu-art:before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #e1f19c;
}
.menu-art:first-letter {
  position: relative;
}
.menu-art > span {
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 24px;
  z-index: 2;
}
.menu-card h3 {
  font: 800 18px "Baloo 2";
  margin: 11px 5px 1px;
}
.menu-card p {
  font-size: 9px;
  color: #748176;
  margin: 0 5px 11px;
  min-height: 28px;
}
.menu-card > div:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 5px 5px;
}
.menu-card > div:last-child b {
  color: #d80c12;
  font-size: 17px;
}
.menu-card > div:last-child a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0d6130;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
/* ========================================
   MENU V8 - VISUAL PRODUCT CARDS
======================================== */
.menu-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(220, 246, 160, 0.34),
    transparent 42%
  );
}
.menu-v8-heading {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}
.menu-v8-heading h2 {
  margin: 15px 0 8px;
  font: 900 clamp(42px, 5vw, 68px)/0.98 "Baloo 2";
  color: #0b6532;
  letter-spacing: -1.8px;
}
.menu-v8-heading h2 em {
  color: #d80c12;
  font-style: normal;
}
.menu-v8-heading p {
  margin: 0 auto;
  max-width: 650px;
  color: #65756a;
  font-size: 14px;
  line-height: 1.7;
}
.menu-grid-v8 {
  gap: 12px;
  align-items: stretch;
}
.menu-card-v8 {
  padding: 10px 10px 12px;
  border-radius: 22px;
  background: rgba(255, 255, 250, 0.94);
}
.menu-art-v8 {
  height: 220px;
  border-radius: 15px;
  background: linear-gradient(145deg, #edf8b8, #fffdf0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.menu-art-v8:before {
  display: none;
}
.menu-art-v8 .menu-product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}
.menu-card-v8:hover .menu-product-img {
  transform: scale(1.035);
}
.menu-content-v8 {
  display: flex;
  flex-direction: column;

  padding: 14px 18px 16px 14px;

  min-height: 145px;
  box-sizing: border-box;
}
.menu-content-v8 h3 {
  margin: 0 0 7px;

  color: #0b5f30;

  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;

  min-height: 40px;

  display: flex;
  align-items: flex-start;
}
.menu-content-v8 p {
  margin: 0;

  min-height: 30px;

  color: #718077;

  font-size: 9px;
  line-height: 1.45;
}
.menu-bottom-v8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-bottom-v8 b {
  color: #d80c12;

  font-size: 16px;
  font-weight: 900;

  white-space: nowrap;
}
.menu-bottom-v8 a {
  transform: translateX(8px);
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

  margin-left: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #0d6130;
  color: #fff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 900;

  box-sizing: border-box;
}
.menu-bottom-v8 a:hover {
  transform: translateX(3px);
  background: #087438;
}
.menu-benefits-v8 {
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1.15fr;
  align-items: center;
  gap: 14px;
  border: 1px solid #dfe9cf;
  border-radius: 22px;
  background: rgba(255, 255, 250, 0.95);
  box-shadow: 0 16px 35px rgba(45, 79, 34, 0.07);
}
.menu-benefits-v8 > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.menu-benefits-v8 > div > span {
  width: 38px;
  height: 38px;
  border: 1.7px solid #0d6130;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0d6130;
  font-weight: 900;
  font-size: 13px;
  flex: 0 0 auto;
}
.menu-benefits-v8 p {
  margin: 0;
  color: #0d6130;
  font-size: 10px;
  line-height: 1.2;
}
.menu-benefits-v8 p b,
.menu-benefits-v8 p small {
  display: block;
}
.menu-benefits-v8 p small {
  font-size: 9px;
  font-weight: 500;
  margin-top: 3px;
}
.menu-benefits-v8 > i {
  height: 35px;
  border-left: 1px dashed #c9d7b8;
}
.menu-slogan-v8 {
  justify-self: end;
  padding: 9px 14px;
  color: #fff;
  background: #126a36;
  border-radius: 12px;
  transform: rotate(-2deg);
  font: 900 17px/0.9 "Patrick Hand";
  text-align: center;
}

@media (max-width: 1060px) {
  .menu-grid-v8 {
    grid-template-columns: repeat(3, 1fr);
  }
  .menu-benefits-v8 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .menu-benefits-v8 > i {
    display: none;
  }
  .menu-slogan-v8 {
    justify-self: center;
  }
}
@media (max-width: 820px) {
  .menu-grid-v8 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .menu-v8-heading h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .menu-v8-heading p {
    font-size: 12px;
  }
  .menu-grid-v8 {
    grid-template-columns: 1fr;
  }
  .menu-art-v8 {
    height: 250px;
  }
  .menu-benefits-v8 {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .menu-benefits-v8 > div {
    justify-content: flex-start;
  }
  .menu-slogan-v8 {
    justify-self: start;
  }
}
.menu-card-v8.is-jumbo .menu-product-img {
  transform: scale(1.035);
}
.menu-card-v8.is-jumbo:hover .menu-product-img {
  transform: scale(1.07);
}
.specs {
  margin-top: 45px;
  border-radius: 28px;
  background: #f7efe4;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 45px rgba(45, 79, 34, 0.08);
}
.spec-copy {
  padding: 36px;
}
.spec-copy h3 {
  font: 900 42px "Baloo 2";
  margin: 10px 0;
  color: #0d6030;
}
.spec-copy p {
  color: #6b776d;
  font-size: 12px;
  line-height: 1.6;
}
.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.spec-table > div {
  background: #fff;
  border: 1px solid #e2d6c6;
  border-radius: 14px;
  padding: 12px;
}
.spec-table b,
.spec-table span,
.spec-table small {
  display: block;
}
.spec-table b {
  font: 900 24px "Baloo 2";
  color: #0d6030;
}
.spec-table span {
  font-size: 11px;
  font-weight: 900;
  color: #d80c12;
}
.spec-table small {
  font-size: 8px;
  color: #6d786e;
  line-height: 1.5;
  margin-top: 4px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.pills span {
  background: #fff;
  padding: 6px 8px;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 900;
}
.specs > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 780px;
  object-fit: contain;
  object-position: center;
}
.measurement-note {
  font-size: 10px;
  color: #7a8379;
  margin: 10px 4px;
}
.measurement-note code {
  background: #edf4db;
  padding: 2px 4px;
  border-radius: 4px;
}
.stand-section {
  padding-top: 90px;
}
.stand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.stand-card {
  background: #fff;
  border: 1px solid #dfe9cf;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(44, 79, 34, 0.07);
  transition: 0.3s;
}
.stand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(44, 79, 34, 0.13);
}
.stand-photo {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #eaf2d4;
}
.stand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-label {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #0d6130;
  color: #fff;
  border-radius: 99px;
  padding: 6px 9px;
  font-size: 8px;
  font-weight: 900;
}
.placeholder-photo {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f5a0, #f9ffe9);
}
.placeholder-photo > div {
  text-align: center;
  color: #0d6130;
  padding: 20px;
}
.placeholder-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px dashed #0d6130;
  font-size: 25px;
}
.placeholder-photo b,
.placeholder-photo small {
  display: block;
}
.placeholder-photo b {
  font-family: "Baloo 2";
  font-size: 22px;
}
.placeholder-photo small {
  font-size: 9px;
  color: #6c796d;
}
.stand-info {
  padding: 20px;
}
.stand-tag {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.4px;
  color: #d80c12;
}
.stand-info h3 {
  font: 900 31px "Baloo 2";
  margin: 2px 0 5px;
  color: #0d6030;
}
.address {
  min-height: 52px;
  color: #6c786e;
  font-size: 10px;
  line-height: 1.55;
}
.map-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #0d6030;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
}
.map-link svg,
.location-note svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.location {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 45px;
  align-items: center;
}
.location-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 20px 0;
}
.location-note div {
  display: flex;
  flex-direction: column;
}
.location-note b {
  font-size: 11px;
}
.location-note small {
  font-size: 9px;
  color: #748174;
  margin-top: 3px;
}
.map-card {
  height: 410px;
  border-radius: 30px;
  background: #e4efc9;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  color: #0d6030;
}
.map-lines {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(#c6d8b1 1px, transparent 1px),
    linear-gradient(90deg, #c6d8b1 1px, transparent 1px);
  background-size: 45px 45px;
  transform: rotate(-8deg);
}
.road {
  position: absolute;
  width: 120%;
  height: 46px;
  border: 8px solid #c6d6b1;
  background: #fff;
  border-radius: 99px;
}
.road.a {
  top: 30%;
  transform: rotate(25deg);
}
.road.b {
  top: 68%;
  transform: rotate(-20deg);
}
.pin {
  font-size: 75px;
  color: #d80c12;
  z-index: 3;
  animation: pin 1.8s ease-in-out infinite;
}
@keyframes pin {
  50% {
    transform: translateY(-10px);
  }
}
.map-card b {
  position: absolute;
  bottom: 24px;
  z-index: 4;
  font-size: 10px;
  letter-spacing: 2px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo > img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 25px 55px rgba(40, 66, 28, 0.17);
}
.about-photo .about-badge-sugar {
  position: absolute;
  right: -52px;
  top: 48%;
  width: 145px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(-50%);
  filter: drop-shadow(0 16px 22px rgba(20, 66, 27, 0.18));
  z-index: 5;
  transition: transform 0.35s ease;
}

.about-photo .about-badge-sugar:hover {
  transform: translateY(-50%) scale(1.03);
}

.about-photo .about-badge-sugar:hover {
  transform: translateY(-50%) scale(1.03);
}
.about-badge-sugar:hover {
  transform: translateY(-50%) scale(1.03);
}
.about-copy blockquote {
  border-left: 5px solid #f0c80b;
  padding: 8px 0 8px 15px;
  margin: 24px 0;
  font: 26px "Patrick Hand";
  color: #0d6030;
}
.contact-box {
  background: #0d6030;
  border-radius: 33px;
  padding: 50px 55px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 55px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.contact-box:after {
  position: absolute;
  right: -15px;
  bottom: -45px;
  font-size: 180px;
  opacity: 0.07;
}
.contact h2 {
  color: #fff;
}
.contact-links {
  display: grid;
  gap: 9px;
  position: relative;
  z-index: 3;
}
.contact-links a {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #155b30;
  text-decoration: none;
  padding: 11px 13px;
  border-radius: 13px;
  transition: 0.25s;
}
.contact-links a:hover {
  transform: translateX(7px);
}
.app-icon {
  width: 37px;
  height: 37px;
  border-radius: 11px;
  background: #eaf8bc;
  display: grid;
  place-items: center;
  color: #0d6130;
}
.app-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-points > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-rp {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  color: #fff;
  transform: translateY(12px);
}
.price-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.price-feature > span:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.price-rp {
  flex-shrink: 0;
  font-size: 12px;
  transform: translateY(3px);
}
.contact-links small,
.contact-links b {
  display: block;
}
.contact-links small {
  font-size: 8px;
  color: #738077;
}
.contact-links b {
  font-size: 11px;
}
.contact-links i {
  font-style: normal;
  font-weight: 900;
}
footer {
  background: #094d29;
  color: #d8ead3;
  padding: 24px max(16px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 60px;
  height: 45px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.footer-brand p {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
}
.footer-brand small {
  font-size: 8px;
  color: #c5dfbf;
}
footer > small {
  font-size: 9px;
}
#top {
  position: absolute;
  right: max(16px, calc((100% - 1180px) / 2));
  top: -24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #0d6130;
  color: #eaf79d;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.17);
  cursor: pointer;
}
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #0d6130;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
  transform: translateY(120px);
  opacity: 0;
  transition: 0.3s;
  z-index: 300;
}
.toast.show {
  transform: none;
  opacity: 1;
}
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left {
  transform: translateX(-55px);
}
.reveal-right {
  transform: translateX(55px);
}
.reveal-up {
  transform: translateY(42px);
}
.visible {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
@media (max-width: 1060px) {
  .header nav a {
    padding: 9px 7px;
    font-size: 10px;
  }
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust {
    grid-template-columns: repeat(5, 1fr);
  }
  .trust i {
    display: none;
  }
  .trust div {
    padding: 4px;
  }
  .stand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 0;
    background: none;
    margin-left: auto;
    margin-right: 8px;
  }
  .hamburger span {
    width: 23px;
    height: 2px;
    background: #0d6030;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dfe8cf;
    border-radius: 18px;
    padding: 7px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
  }
  .header nav.open {
    display: flex;
  }
  .header nav a {
    width: 100%;
    padding: 11px;
  }
  .order {
    font-size: 9px;
    padding: 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }
  .hero-copy {
    text-align: center;
  }
  .yellow-brush {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-points {
    justify-content: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    margin-top: 25px;
  }
  .hero-photo {
    height: 430px;
  }
  .promo,
  .location,
  .about {
    grid-template-columns: 1fr;
  }
  .promo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .specs > img {
    width: 100%;
    height: auto;
  }
  .contact-box {
    grid-template-columns: 1fr;
  }
  .stand-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .header {
    width: calc(100% - 16px);
  }
  .brand {
    width: 68px;
  }
  .brand img {
    width: 62px;
  }
  .order {
    display: none;
  }
  .section {
    width: calc(100% - 22px);
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-photo {
    height: 310px;
  }
  .hero-badge-now {
    left: -12px;
    top: -20px;
    width: 128px;
  }
  .hero-badge-sugar {
    right: -16px;
    width: 105px;
  }
  .about-badge-sugar {
    right: -8px;
    width: 100px;
  }
  .hero-points {
    gap: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-points > div {
    grid-template-columns: 32px 1fr;
  }
  .circle-icon {
    width: 32px;
    height: 32px;
  }
  .trust {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .trust div {
    padding: 7px;
  }
  .promo-grid,
  .menu-grid,
  .stand-grid {
    grid-template-columns: 1fr;
  }
  .menu-art {
    height: 220px;
  }
  .spec-copy {
    padding: 28px 22px;
  }
  .spec-table {
    grid-template-columns: 1fr;
  }
  .about-photo img {
    height: 350px;
  }
  .contact-box {
    padding: 35px 24px;
  }
  .footer-brand {
    max-width: 70%;
  }
  .footer > small {
    display: none;
  }
  .tea-leaf {
    opacity: 0.58;
  }
}
/* ===== ARTIKEL PORJO V8 ===== */
.article-section {
  padding-top: 85px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-card {
  background: #fffdf7;
  border: 1px solid #dfe9cf;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(44, 79, 34, 0.07);
  transition: 0.3s ease;
}
.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 48px rgba(44, 79, 34, 0.14);
}
.article-cover {
  display: block;
  height: 225px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: #eaf3cf;
}
.article-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-cover img {
  transform: scale(1.05);
}
.article-cover span {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0d6130;
  color: #eaf79d;
  font: 900 14px "Baloo 2";
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.12);
}
.tea-cover {
  background: linear-gradient(145deg, #dff29d, #fff9dc);
}
.tea-cover img {
  object-position: center 55%;
  filter: saturate(0.9);
}
.manggis-cover {
  background: radial-gradient(
    circle at 65% 35%,
    #fff7dd 0 25%,
    #e7f39e 26% 58%,
    #cce77e 59% 100%
  );
}
.manggis-cover img {
  object-position: center 55%;
  filter: saturate(0.9);
}
.citrus-cover {
  background: #d9ef9d;
}
.citrus-cover img {
  object-position: center 55%;
  filter: saturate(0.9);
}
.article-body {
  padding: 20px 20px 22px;
}
.article-body > small {
  font-size: 8px;
  letter-spacing: 1.4px;
  font-weight: 900;
  color: #d80c12;
}
.article-body h3 {
  font: 900 24px/1.02 "Baloo 2";
  color: #0d6030;
  margin: 7px 0 8px;
}
.article-body p {
  font-size: 10px;
  line-height: 1.65;
  color: #6b776d;
  margin: 0 0 17px;
  min-height: 49px;
}
.read-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0d6030;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
}
.read-more b {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #0d6130;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: 0.25s;
}
.article-card:hover .read-more b {
  transform: translateX(4px);
}

/* ===== ARTICLE DETAIL ===== */
.article-page {
  padding-top: 125px;
  min-height: 100vh;
}
.article-shell {
  width: min(920px, calc(100% - 32px));
  margin: auto;
}
.article-hero {
  background: linear-gradient(135deg, #eaf79d, #fffbea);
  border: 1px solid #dfe9cf;
  border-radius: 32px;
  padding: 48px 55px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(44, 79, 34, 0.08);
}
.article-hero:after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #0d6130;
  opacity: 0.08;
}
.article-hero .eyebrow {
  position: relative;
  z-index: 2;
}
.article-hero h1 {
  position: relative;
  z-index: 2;
  font: 900 clamp(45px, 7vw, 76px)/0.88 "Baloo 2";
  color: #0d6030;
  margin: 15px 0;
}
.article-hero h1 em {
  color: #d80c12;
  font-style: normal;
}
.article-hero .lead {
  position: relative;
  z-index: 2;
  max-width: 690px;
  color: #667768;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.article-meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.article-meta span {
  background: #fff;
  border: 1px solid #dfe8cf;
  border-radius: 99px;
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 900;
  color: #0d6030;
}
.article-content {
  background: #fffdf7;
  border: 1px solid #e0e8cf;
  border-radius: 28px;
  padding: 42px 50px;
  margin: 22px 0 60px;
  box-shadow: 0 14px 35px rgba(44, 79, 34, 0.05);
}
.article-content h2 {
  font: 900 32px/1.05 "Baloo 2";
  color: #0d6030;
  margin: 30px 0 10px;
}
.article-content h2:first-child {
  margin-top: 0;
}
.article-content h3 {
  font: 900 21px "Baloo 2";
  color: #0d6030;
  margin: 24px 0 8px;
}
.article-content p,
.article-content li {
  font: 500 15px/1.85 "Nunito";
  color: #59675c;
}
.article-content ul {
  padding-left: 20px;
}
.article-content .article-callout {
  background: #eff8c6;
  border-left: 5px solid #f0c80b;
  border-radius: 14px;
  padding: 17px 19px;
  margin: 22px 0;
  color: #245d39;
}
.article-content .article-note {
  background: #f8efe5;
  border: 1px solid #e7dac8;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 12px;
  line-height: 1.7;
  color: #6b6257;
}
.article-content a {
  color: #0d6030;
  font-weight: 800;
}
.article-sources {
  border-top: 1px dashed #cbd8b8;
  margin-top: 32px;
  padding-top: 20px;
}
.article-sources h3 {
  font-size: 18px;
}
.article-sources li {
  font-size: 11px;
  line-height: 1.6;
  margin-bottom: 6px;
}
.back-article {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d6030;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 18px;
}
.back-article:hover {
  transform: translateX(-3px);
}
.article-footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #e2ead5;
}
.article-footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eaf79d;
  border-radius: 12px;
  padding: 11px 14px;
  text-decoration: none;
  color: #0d6030;
  font-size: 10px;
  font-weight: 900;
}
@media (max-width: 820px) {
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-hero {
    padding: 38px 28px;
  }
  .article-content {
    padding: 32px 28px;
  }
}
@media (max-width: 560px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
  .article-cover {
    height: 240px;
  }
  .article-page {
    padding-top: 105px;
  }
  .article-hero {
    border-radius: 25px;
    padding: 32px 22px;
  }
  .article-hero h1 {
    font-size: 48px;
  }
  .article-content {
    border-radius: 22px;
    padding: 26px 20px;
  }
  .article-content p,
  .article-content li {
    font-size: 14px;
  }
  .article-footer-nav {
    flex-direction: column;
  }
}
