:root {
  --timberwolf: #dfddd1;
  --olivine: #9fbb78;
  --palm-leaf: #799851;
  --dark-moss: #47622a;
  --kombu: #374426;
  --coffee: #5a3725;
  --espresso: #2f2018;
  --gold: #b9905a;
  --royal-gold: #d9b44a;
  --warm-yellow: #f0cb55;
  --cream: #f7f1e5;
  --white: #fffdf7;
  --muted: #756d60;
  --shadow: 0 24px 70px rgba(47, 32, 24, 0.14);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(121, 152, 81, 0.22), transparent 31rem),
    radial-gradient(circle at 95% 22%, rgba(217, 180, 74, 0.14), transparent 26rem),
    linear-gradient(135deg, #f7f0df, var(--timberwolf) 54%, #e4d7be);
  color: var(--espresso);
  font-family: Inter, Manrope, Lato, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(71, 98, 42, 0.045) 25%, transparent 25%) 0 0 / 44px 44px,
    linear-gradient(225deg, rgba(217, 180, 74, 0.035) 25%, transparent 25%) 0 0 / 44px 44px,
    radial-gradient(circle at center, transparent 0 58%, rgba(71, 98, 42, 0.04) 59% 62%, transparent 63%) 0 0 / 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.16));
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(26, 42, 23, 0.96), rgba(55, 68, 38, 0.94) 58%, rgba(47, 32, 24, 0.92)),
    var(--kombu);
  border-bottom: 1px solid rgba(240, 203, 85, 0.24);
  box-shadow: 0 1rem 2.5rem rgba(47, 32, 24, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: min(15rem, 42vw);
}

.brand-logo {
  display: none;
  width: auto;
  max-width: min(20rem, 36vw);
  height: clamp(2.625rem, 4.2vw, 3.5rem);
  min-height: 2.625rem;
  object-fit: contain;
}

.brand--image-loaded .brand-logo {
  display: block;
}

.brand--image-loaded .brand-fallback {
  display: none;
}

.brand-fallback {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 203, 85, 0.34);
  border-radius: 50%;
  color: var(--cream);
  background:
    radial-gradient(circle at 35% 25%, rgba(240, 203, 85, 0.32), transparent 35%),
    linear-gradient(145deg, var(--dark-moss), var(--kombu));
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.brand-name,
.brand-tagline {
  display: block;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 0.12rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
}

.brand-kopi {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.brand-herba {
  font-weight: 300;
  letter-spacing: 0.02em;
}

.brand-script,
.pack-forest {
  color: var(--warm-yellow);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-weight: 400;
  letter-spacing: 0;
}

.brand-script {
  margin-left: 0.05rem;
  font-size: 1.08rem;
  text-transform: none;
}

.brand-tagline {
  max-width: 11rem;
  color: rgba(247, 241, 229, 0.72);
  font-size: 0.66rem;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: rgba(247, 241, 229, 0.82);
  font-size: 0.88rem;
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--warm-yellow);
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--warm-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions,
.language-switcher,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.language-switcher {
  padding: 0.18rem;
  border: 1px solid rgba(240, 203, 85, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.09);
}

.lang-btn,
.menu-toggle {
  cursor: pointer;
  border: 0;
  font: inherit;
}

.lang-btn {
  min-width: 2.3rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  color: rgba(247, 241, 229, 0.76);
  background: transparent;
  font-size: 0.73rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn.is-active {
  color: var(--espresso);
  background: var(--warm-yellow);
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--white);
  background: rgba(255, 253, 247, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.55rem;
  padding: 0.65rem 1.1rem;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero .button-primary[data-whatsapp-link] {
  display: none;
}

.button-primary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--dark-moss), var(--kombu));
  box-shadow: 0 14px 32px rgba(71, 98, 42, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(71, 98, 42, 0.34);
}

.button-soft,
.button-outline {
  color: var(--espresso);
  background: rgba(255, 253, 247, 0.62);
  border-color: rgba(90, 55, 37, 0.16);
}

.button-soft:hover,
.button-outline:hover,
.button-soft:focus-visible,
.button-outline:focus-visible {
  border-color: rgba(71, 98, 42, 0.36);
  background: rgba(255, 253, 247, 0.9);
}

.site-header .button-outline {
  color: var(--cream);
  background: rgba(255, 253, 247, 0.08);
  border-color: rgba(240, 203, 85, 0.3);
}

.site-header .button-outline:hover,
.site-header .button-outline:focus-visible {
  color: var(--espresso);
  border-color: rgba(240, 203, 85, 0.72);
  background: var(--warm-yellow);
}

.button-small {
  min-height: 2.35rem;
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(240, 203, 85, 0.28);
  background: rgba(255, 253, 247, 0.08);
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.27rem auto;
  background: var(--cream);
  transition: transform 0.2s ease;
}

.is-menu-open .menu-toggle span:first-child {
  transform: translateY(0.28rem) rotate(45deg);
}

.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-0.28rem) rotate(-45deg);
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.1rem, 5vw, 5.5rem);
}

.section::after {
  position: absolute;
  inset: auto clamp(1.1rem, 5vw, 5.5rem) 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 180, 74, 0.55), rgba(71, 98, 42, 0.24), transparent);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(20rem, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: calc(var(--header-height) + 4rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 240, 223, 0.72), rgba(247, 240, 223, 0.18));
}

.hero::before {
  display: none;
  content: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 7.5rem;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(217, 180, 74, 0.28), transparent),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(71, 98, 42, 0.08) 20px 21px);
  opacity: 0.5;
}

.hero-content,
.hero-visual {
  z-index: 1;
}

.section > :not(.section-deco-beans):not(.showcase-deco):not(.bean) {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.95rem;
  color: var(--dark-moss);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Inter, Manrope, Lato, "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.9rem, 6.6vw, 5.9rem);
  letter-spacing: -0.01em;
}

.hero-title {
  position: relative;
  max-width: 12ch;
  padding-bottom: 1.1rem;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 7vw, 6.35rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title::after {
  position: absolute;
  left: 0.08em;
  bottom: 0;
  width: min(8.5rem, 42%);
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--royal-gold), rgba(71, 98, 42, 0.55), transparent);
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-main {
  color: var(--espresso);
}

.hero-title-accent {
  margin-top: 0.05em;
  color: var(--dark-moss);
  font-style: italic;
  text-shadow: 0 0.08em 0 rgba(217, 180, 74, 0.14);
}

.hero-title--zh {
  max-width: 8.5em;
  font-family: "Noto Serif SC", "Songti SC", "Microsoft YaHei UI", "Microsoft YaHei", serif;
  font-size: clamp(3rem, 6.1vw, 5.55rem);
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.hero-title--zh .hero-title-accent {
  margin-top: 0.12em;
  color: var(--dark-moss);
  font-style: normal;
  letter-spacing: 0.14em;
}

.hero-title--bm {
  max-width: 11ch;
}

h2 {
  max-width: 16ch;
  font-size: clamp(2.05rem, 4.1vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.hero-copy {
  max-width: 38rem;
  margin: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(28rem, 46vw, 42rem);
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  width: min(76vw, 38rem);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 44%, rgba(204, 244, 184, 0.86), rgba(143, 179, 102, 0.5) 31%, rgba(71, 98, 42, 0.22) 56%, transparent 72%);
  filter: blur(15px);
  opacity: 0.74;
  transform: translate3d(0, 0, 0) scale(0.96);
  animation: heroHerbalAura 11.5s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-visual::after {
  display: none;
  content: none;
}

.product-photo-plate {
  --plate-gap: clamp(1.6rem, 4vw, 2.7rem);
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(86vw, 32rem);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(217, 180, 74, 0.2);
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 253, 247, 0.96), rgba(247, 241, 229, 0.78) 58%, rgba(223, 221, 209, 0.5)),
    linear-gradient(145deg, rgba(255, 253, 247, 0.9), rgba(247, 241, 229, 0.74));
  box-shadow:
    0 2.2rem 5rem rgba(47, 32, 24, 0.16),
    0 0 0 1px rgba(255, 253, 247, 0.55) inset,
    0 0 3.8rem rgba(71, 98, 42, 0.13),
    0 0 2.7rem rgba(217, 180, 74, 0.13);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.12s linear, box-shadow 0.24s ease;
}

.product-photo-plate--hero {
  width: min(88vw, 34rem);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-photo-plate--hero::before {
  display: none;
  content: none;
}

.product-photo-plate--hero .product-photo {
  width: min(92%, 31rem);
  filter: drop-shadow(0 1.45rem 2.1rem rgba(47, 32, 24, 0.22));
}

.product-photo-plate--hero.product-photo-plate--fallback {
  overflow: hidden;
  border: 1px solid rgba(217, 180, 74, 0.2);
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 253, 247, 0.96), rgba(247, 241, 229, 0.78) 58%, rgba(223, 221, 209, 0.5)),
    linear-gradient(145deg, rgba(255, 253, 247, 0.9), rgba(247, 241, 229, 0.74));
  box-shadow:
    0 2.2rem 5rem rgba(47, 32, 24, 0.16),
    0 0 0 1px rgba(255, 253, 247, 0.55) inset,
    0 0 3.8rem rgba(71, 98, 42, 0.13),
    0 0 2.7rem rgba(217, 180, 74, 0.13);
}

.product-photo-plate::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 30% 20%, rgba(217, 180, 74, 0.1), transparent 26%),
    radial-gradient(circle at 72% 78%, rgba(71, 98, 42, 0.12), transparent 30%);
  pointer-events: none;
}

.product-photo-plate.product-photo-plate--hero::before,
.product-photo-plate.product-photo-plate--hero::after {
  display: none;
  content: none;
  background: none;
  box-shadow: none;
  filter: none;
}

.product-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(80%, 28rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1.2rem 1.8rem rgba(47, 32, 24, 0.18));
}

.product-photo-plate .product-placeholder,
.product-photo-plate .showcase-pack {
  display: none;
  transform: none;
}

.product-photo-plate--fallback .product-placeholder,
.product-photo-plate--fallback .showcase-pack {
  display: flex;
}

.product-placeholder {
  position: relative;
  width: min(78vw, 24rem);
  aspect-ratio: 0.68;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  overflow: hidden;
  padding: 2.1rem;
  border: 1px solid rgba(217, 180, 74, 0.38);
  border-radius: 0.5rem;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(217, 180, 74, 0.88) 0 10%, transparent 10%),
    radial-gradient(circle at 72% 15%, rgba(240, 203, 85, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(160deg, var(--palm-leaf), var(--dark-moss) 42%, var(--kombu));
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.12s linear;
}

.product-placeholder::before {
  position: absolute;
  inset: 1.1rem;
  content: "";
  border: 1px solid rgba(240, 203, 85, 0.34);
  border-radius: 0.35rem;
  background:
    linear-gradient(135deg, rgba(247, 241, 229, 0.06) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(225deg, rgba(247, 241, 229, 0.05) 25%, transparent 25%) 0 0 / 28px 28px;
}

.product-placeholder::after {
  position: absolute;
  top: 13%;
  left: 50%;
  width: 10rem;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240, 203, 85, 0.26), transparent 70%);
  transform: translateX(-50%);
}

.placeholder-shine {
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-14deg);
  animation: shine 6s ease-in-out infinite;
}

.pack-kopi,
.pack-brand,
.pack-herba,
.pack-forest,
.pack-subtitle,
.pack-weight {
  position: relative;
  z-index: 2;
}

.pack-kopi {
  color: rgba(247, 241, 229, 0.92);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.pack-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.08rem;
  line-height: 0.95;
}

.pack-herba {
  color: rgba(247, 241, 229, 0.9);
  font-size: clamp(2.15rem, 4.6vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.pack-forest {
  margin-left: 0.1rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.pack-subtitle,
.pack-weight {
  color: rgba(247, 241, 229, 0.82);
}

.pack-subtitle {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  text-align: center;
}

.pack-weight {
  margin-top: 2.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steam {
  position: absolute;
  width: 0.16rem;
  height: 7rem;
  border-radius: 999px;
  background: linear-gradient(transparent, rgba(255, 253, 247, 0.72), transparent);
  filter: blur(1px);
  animation: steam 4.8s ease-in-out infinite;
}

.steam-one {
  top: 7%;
  left: 42%;
}

.steam-two {
  top: 12%;
  left: 54%;
  animation-delay: 1.2s;
}

.steam-three {
  top: 17%;
  left: 63%;
  animation-delay: 2.2s;
}

.bean {
  position: absolute;
  z-index: 0;
  width: clamp(2.8rem, 5vw, 4.5rem);
  aspect-ratio: 0.68;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 23%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #7a4a2f, #352016);
  box-shadow: inset -0.65rem -0.9rem 1.2rem rgba(0, 0, 0, 0.14);
  opacity: 0.3;
  transform: rotate(25deg);
  animation: floatBean 6.2s ease-in-out infinite alternate;
}

.bean::after {
  position: absolute;
  top: 12%;
  left: 45%;
  width: 0.24rem;
  height: 76%;
  content: "";
  border-radius: 50%;
  background: rgba(247, 241, 229, 0.22);
  transform: rotate(8deg);
}

.bean-one {
  top: 22%;
  left: -1.5rem;
}

.bean-two {
  right: 6%;
  bottom: 14%;
  animation-delay: 1.8s;
}

.bean-three {
  right: 40%;
  bottom: 5%;
  width: clamp(2rem, 3.8vw, 3.2rem);
  animation-delay: 3s;
}

.section-deco-beans,
.showcase-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bean-deco,
.leaf-deco {
  position: absolute;
  display: block;
  transform: translate3d(0, var(--deco-y, 0), 0) rotate(var(--bean-rotate, 25deg));
  will-change: transform;
}

.bean-deco {
  width: var(--bean-size, 4rem);
  aspect-ratio: 0.68;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 23%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(122, 74, 47, 0.92), rgba(53, 32, 22, 0.92));
  box-shadow:
    inset -0.65rem -0.9rem 1.2rem rgba(0, 0, 0, 0.11),
    0 1rem 2.5rem rgba(47, 32, 24, 0.08);
  opacity: var(--bean-opacity, 0.13);
  animation: beanDecoFloat var(--bean-speed, 7.2s) ease-in-out infinite alternate;
  animation-delay: var(--bean-delay, 0s);
}

.bean-deco::after {
  position: absolute;
  top: 12%;
  left: 45%;
  width: 0.24rem;
  height: 76%;
  content: "";
  border-radius: 50%;
  background: rgba(247, 241, 229, 0.2);
  transform: rotate(8deg);
}

.bean-deco--large {
  --bean-size: clamp(7rem, 12vw, 11rem);
  --bean-opacity: 0.1;
  --bean-speed: 8.8s;
}

.bean-deco--medium {
  --bean-size: clamp(4.2rem, 7vw, 6.2rem);
  --bean-opacity: 0.12;
  --bean-speed: 7.8s;
}

.bean-deco--small {
  --bean-size: clamp(2.2rem, 4vw, 3.1rem);
  --bean-opacity: 0.11;
  --bean-speed: 6.8s;
}

.bean-deco--soft {
  filter: blur(0.2px);
  mix-blend-mode: multiply;
}

.leaf-deco {
  width: var(--leaf-size, 5rem);
  aspect-ratio: 0.6;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, rgba(159, 187, 120, 0.82), rgba(71, 98, 42, 0.76));
  box-shadow: inset -0.8rem -0.8rem 1.2rem rgba(47, 32, 24, 0.1);
  opacity: var(--leaf-opacity, 0.16);
  animation: leafDecoFloat var(--leaf-speed, 13s) ease-in-out infinite;
  animation-delay: var(--leaf-delay, 0s);
}

.leaf-deco--gold {
  --leaf-opacity: 0.13;
  background: linear-gradient(145deg, rgba(240, 203, 85, 0.72), rgba(185, 144, 90, 0.48));
}

.leaf-deco--green {
  --leaf-opacity: 0.18;
}

.section-deco-beans--story .bean-deco--large {
  right: -3.2rem;
  top: 4rem;
  --bean-rotate: -26deg;
}

.section-deco-beans--story .bean-deco--medium {
  left: -2rem;
  bottom: 3.5rem;
  --bean-rotate: 18deg;
  --bean-delay: 1.8s;
}

.section-deco-beans--ingredients .bean-deco:nth-child(1) {
  left: 5%;
  top: 28%;
  --bean-rotate: -18deg;
  --bean-opacity: 0.075;
}

.section-deco-beans--ingredients .bean-deco:nth-child(2) {
  right: 6%;
  top: 45%;
  --bean-rotate: 33deg;
  --bean-opacity: 0.075;
  --bean-delay: 1.3s;
}

.section-deco-beans--ingredients .bean-deco:nth-child(3) {
  left: 48%;
  bottom: 8%;
  --bean-rotate: 12deg;
  --bean-opacity: 0.065;
  --bean-delay: 2.2s;
}

.section-deco-beans--benefits .bean-deco--medium {
  right: 6%;
  top: 3rem;
  --bean-rotate: 24deg;
}

.section-deco-beans--benefits .bean-deco--small {
  right: 15%;
  top: 9.4rem;
  --bean-rotate: -19deg;
  --bean-opacity: 0.09;
  --bean-delay: 1.5s;
}

.showcase-deco {
  z-index: 1;
}

.showcase-deco .bean-deco:nth-child(1) {
  left: 9%;
  top: 17%;
  --bean-rotate: -23deg;
  --bean-opacity: 0.17;
}

.showcase-deco .bean-deco:nth-child(2) {
  right: 13%;
  bottom: 18%;
  --bean-rotate: 31deg;
  --bean-opacity: 0.13;
  --bean-delay: 1.7s;
}

.showcase-deco .leaf-deco--gold {
  right: 18%;
  top: 12%;
  --leaf-size: 4.4rem;
  transform: translate3d(0, var(--deco-y, 0), 0) rotate(37deg);
}

.showcase-deco .leaf-deco--green {
  left: 16%;
  bottom: 11%;
  --leaf-size: 5.3rem;
  transform: translate3d(0, var(--deco-y, 0), 0) rotate(-28deg);
  --leaf-delay: 1.1s;
}

.section-deco-beans--drink .bean-deco:nth-child(1) {
  left: 28%;
  top: 42%;
  --bean-rotate: 16deg;
  --bean-opacity: 0.08;
}

.section-deco-beans--drink .bean-deco:nth-child(2) {
  right: 28%;
  top: 49%;
  --bean-rotate: -28deg;
  --bean-opacity: 0.08;
  --bean-delay: 1.4s;
}

.section-deco-beans--contact .bean-deco--large {
  right: 4%;
  bottom: 0.4rem;
  --bean-rotate: 28deg;
  --bean-opacity: 0.08;
}

.section-deco-beans--contact .leaf-deco--gold {
  right: 13%;
  bottom: 6rem;
  --leaf-size: 4.6rem;
  --leaf-opacity: 0.14;
  transform: translate3d(0, var(--deco-y, 0), 0) rotate(-32deg);
}

.story {
  background:
    radial-gradient(circle at 50% 8%, rgba(217, 180, 74, 0.08), transparent 24rem),
    rgba(255, 253, 247, 0.48);
}

.story-grid,
.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.story-copy {
  display: grid;
  justify-items: center;
  max-width: 54rem;
  text-align: center;
}

.story-copy .section-kicker {
  margin-bottom: 0.8rem;
}

.story-copy h2 {
  max-width: 18ch;
}

.story-copy p {
  max-width: 47rem;
  margin-top: 1.2rem;
}

.story-text p,
.showcase-copy p,
.ritual-copy p,
.contact-panel p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
  width: min(100%, 60rem);
}

.story-point {
  position: relative;
  min-height: 10.5rem;
  overflow: hidden;
  padding: 1.15rem;
  border: 1px solid rgba(71, 98, 42, 0.14);
  border-radius: 0.45rem;
  background:
    linear-gradient(135deg, rgba(217, 180, 74, 0.06) 0 1px, transparent 1px 32px),
    rgba(255, 253, 247, 0.7);
  color: var(--dark-moss);
  box-shadow: 0 16px 38px rgba(47, 32, 24, 0.065);
}

.story-point::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.18rem;
  content: "";
  background: linear-gradient(var(--royal-gold), rgba(71, 98, 42, 0.44));
}

.story-point__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  color: var(--kombu);
}

.story-point__icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.story-point__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-point__icon .icon-gold {
  stroke: var(--royal-gold);
}

.story-point__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(71, 98, 42, 0.42);
  font-family: Inter, Manrope, Lato, "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.story-point h3 {
  max-width: 12rem;
  color: var(--dark-moss);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.25;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.ingredient-grid,
.benefit-grid,
.steps-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.ingredient-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1rem);
}

.ingredient-card,
.benefit-card,
.step-card,
.trust-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(71, 98, 42, 0.14);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(217, 180, 74, 0.055) 0 1px, transparent 1px 34px),
    rgba(255, 253, 247, 0.68);
  box-shadow: 0 18px 44px rgba(47, 32, 24, 0.07);
}

.ingredient-card::before,
.benefit-card::before,
.step-card::before,
.trust-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.22rem;
  content: "";
  background: linear-gradient(var(--royal-gold), rgba(71, 98, 42, 0.55));
}

.ingredient-image {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 253, 247, 0.9) 0 8%, transparent 9%),
    radial-gradient(circle at 66% 43%, rgba(159, 187, 120, 0.55) 0 14%, transparent 15%),
    linear-gradient(135deg, rgba(71, 98, 42, 0.06) 25%, transparent 25%) 0 0 / 30px 30px,
    linear-gradient(135deg, rgba(185, 144, 90, 0.22), rgba(121, 152, 81, 0.32)),
    var(--timberwolf);
}

.ingredient-image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 520ms ease,
    filter 520ms ease;
}

.ingredient-card:hover .ingredient-image img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.ingredient-image::before {
  position: absolute;
  inset: 16% 18%;
  content: "";
  border-radius: 42% 58% 50% 50%;
  background: var(--ingredient-color, var(--palm-leaf));
  box-shadow:
    0 1rem 2rem rgba(47, 32, 24, 0.12),
    inset -1rem -1.1rem 1.6rem rgba(47, 32, 24, 0.12);
  transform: rotate(var(--ingredient-rotate, -8deg));
}

.ingredient-image::after {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  content: "AI image prompt ready";
  color: rgba(47, 32, 24, 0.62);
  font-size: 0.72rem;
}

.ingredient-image--photo:not(.ingredient-image--fallback)::before,
.ingredient-image--photo:not(.ingredient-image--fallback)::after {
  display: none;
}

.ingredient-image--photo:not(.ingredient-image--fallback) {
  background:
    linear-gradient(145deg, rgba(217, 180, 74, 0.14), rgba(71, 98, 42, 0.08)),
    var(--timberwolf);
}

.ingredient-image--photo:not(.ingredient-image--fallback)::selection {
  background: transparent;
}

.ingredient-body,
.benefit-card,
.step-card,
.trust-card {
  padding: 1.35rem;
}

.ingredient-body {
  padding: 1rem 1.05rem 1.15rem;
}

.ingredient-body p,
.benefit-card p,
.step-card p,
.trust-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.ingredient-body p {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.benefit-card {
  min-height: 13rem;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  color: var(--kombu);
  background: linear-gradient(145deg, var(--warm-yellow), var(--royal-gold));
}

.benefit-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ritual-section {
  overflow: hidden;
  min-height: auto;
  display: block;
  background:
    linear-gradient(135deg, rgba(55, 68, 38, 0.95), rgba(71, 98, 42, 0.91)),
    repeating-linear-gradient(135deg, rgba(240, 203, 85, 0.08) 0 1px, transparent 1px 34px),
    var(--kombu);
  color: var(--cream);
}

.ritual-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 12% 16%, rgba(240, 203, 85, 0.11), transparent 14rem),
    linear-gradient(135deg, rgba(247, 241, 229, 0.018) 25%, transparent 25%) 0 0 / 38px 38px;
  z-index: 0;
}

.ritual-section .eyebrow,
.ritual-section p {
  color: rgba(247, 241, 229, 0.78);
}

.ritual-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(32.5rem, 58vw, 42rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(240, 203, 85, 0.2);
  border-radius: 0.55rem;
  box-shadow:
    0 2rem 4.8rem rgba(0, 0, 0, 0.24),
    0 0 0 0.6rem rgba(240, 203, 85, 0.035);
}

.ritual-orbit {
  position: absolute;
  left: 12%;
  bottom: 6%;
  width: min(48vw, 29rem);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 203, 85, 0.13);
  border-radius: 50%;
  transform: scale(0.92);
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.is-visible .ritual-orbit {
  opacity: 1;
  transform: scale(1);
}

.ritual-photo-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(247, 241, 229, 0.12);
}

.ritual-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ritual-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 31, 18, 0) 0 44%, rgba(20, 31, 18, 0.08) 68%, rgba(20, 31, 18, 0.2)),
    radial-gradient(circle at 82% 18%, rgba(240, 203, 85, 0.08), transparent 32%);
}

.ritual-photo-stage::after {
  position: absolute;
  inset: 1rem;
  z-index: 3;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(240, 203, 85, 0.18);
  border-radius: 0.35rem;
}

.ritual-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: 30% center;
  opacity: 1;
  visibility: visible;
  filter: saturate(1) contrast(1.02) brightness(1.03);
}

.ritual-copy {
  position: relative;
  z-index: 4;
  width: min(40rem, 46%);
  margin-left: auto;
  padding: clamp(1.6rem, 3.4vw, 3rem);
  border: 1px solid rgba(240, 203, 85, 0.1);
  background:
    linear-gradient(135deg, rgba(24, 38, 21, 0.74), rgba(31, 49, 27, 0.42)),
    linear-gradient(135deg, rgba(247, 241, 229, 0.025) 25%, transparent 25%) 0 0 / 34px 34px;
  border-radius: 0.6rem;
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(1.5px);
}

.ritual-copy h2 {
  max-width: 13ch;
  line-height: 1.06;
}

.ritual-bean,
.ritual-leaf {
  position: absolute;
  opacity: 0;
}

.ritual-bean {
  width: 2.7rem;
  aspect-ratio: 0.7;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #8a5634, #3b2418);
}

.ritual-bean::after {
  position: absolute;
  inset: 14% auto 14% 48%;
  width: 0.18rem;
  content: "";
  border-radius: 50%;
  background: rgba(247, 241, 229, 0.24);
}

.ritual-leaf {
  width: 3.4rem;
  aspect-ratio: 0.58;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, var(--olivine), var(--dark-moss));
  box-shadow: inset -0.6rem -0.7rem 1rem rgba(47, 32, 24, 0.12);
}

.is-visible .ritual-bean,
.is-visible .ritual-leaf {
  opacity: 0.82;
  animation: ritualFloat 7.4s ease-in-out infinite;
}

.ritual-bean-one {
  top: 9%;
  left: 22%;
  transform: rotate(24deg);
}

.ritual-bean-two {
  right: 17%;
  bottom: 22%;
  transform: rotate(-18deg);
  animation-delay: 1.1s;
}

.ritual-leaf-one {
  right: 24%;
  top: 13%;
  transform: rotate(35deg);
  animation-delay: 0.6s;
}

.ritual-leaf-two {
  left: 17%;
  bottom: 20%;
  transform: rotate(-22deg);
  animation-delay: 1.6s;
}

.showcase {
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 180, 74, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(255, 253, 247, 0.42), rgba(223, 221, 209, 0.56));
}

.showcase-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 30rem;
}

.product-photo-plate--showcase {
  --plate-gap: clamp(1.5rem, 3.6vw, 2.4rem);
  width: min(86vw, 32rem);
  aspect-ratio: 0.78;
  box-shadow:
    0 2rem 4.6rem rgba(47, 32, 24, 0.14),
    0 0 0 1px rgba(255, 253, 247, 0.58) inset,
    0 0 3.2rem rgba(71, 98, 42, 0.12),
    0 0 2.2rem rgba(217, 180, 74, 0.12);
}

.product-photo-plate--showcase .product-photo {
  width: 100%;
  height: 100%;
  border-radius: 0.58rem;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1rem 1.45rem rgba(47, 32, 24, 0.14));
}

.showcase-pack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(80vw, 25rem);
  aspect-ratio: 0.86;
  overflow: hidden;
  border: 1px solid rgba(217, 180, 74, 0.34);
  border-radius: 0.5rem;
  background:
    linear-gradient(90deg, rgba(217, 180, 74, 0.82) 0 10%, transparent 10%),
    radial-gradient(circle at 50% 18%, rgba(240, 203, 85, 0.22), transparent 30%),
    linear-gradient(150deg, var(--palm-leaf), var(--dark-moss) 45%, var(--kombu));
  box-shadow: var(--shadow);
}

.showcase-pack::before {
  position: absolute;
  inset: 1.2rem;
  content: "";
  border: 1px solid rgba(240, 203, 85, 0.3);
  background:
    linear-gradient(135deg, rgba(247, 241, 229, 0.055) 25%, transparent 25%) 0 0 / 30px 30px,
    linear-gradient(225deg, rgba(247, 241, 229, 0.045) 25%, transparent 25%) 0 0 / 30px 30px;
}

.showcase-pack::after {
  position: absolute;
  inset: auto 12% 10%;
  height: 2.6rem;
  content: "";
  border-radius: 50%;
  background: rgba(47, 32, 24, 0.16);
  filter: blur(20px);
}

.showcase-pack > span {
  position: relative;
  z-index: 1;
}

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

.step-card {
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  padding-top: 1.45rem;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.step-card::after {
  position: absolute;
  right: 1.25rem;
  bottom: 1.15rem;
  left: 1.25rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(217, 180, 74, 0.7), rgba(71, 98, 42, 0.16), transparent);
}

.step-card:hover {
  border-color: rgba(217, 180, 74, 0.28);
  box-shadow: 0 22px 50px rgba(47, 32, 24, 0.1);
  transform: translateY(-0.18rem);
}

.step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  margin-bottom: 1.2rem;
}

.step-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 0;
  color: var(--kombu);
  background: transparent;
  box-shadow: none;
  transition: transform 260ms ease;
}

.step-card:hover .step-card__icon {
  transform: translateY(-0.12rem);
}

.step-card__icon svg {
  width: 3.15rem;
  height: 3.15rem;
}

.step-card__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card__icon .icon-gold {
  stroke: var(--royal-gold);
}

.step-card__number,
.trust-card span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  border: 1px solid rgba(71, 98, 42, 0.18);
  border-radius: 50%;
  color: var(--dark-moss);
  font-family: Inter, Manrope, Lato, "Segoe UI", Arial, sans-serif;
  font-weight: 500;
}

.step-card__number {
  width: 2.35rem;
  font-size: 0.86rem;
}

.trust-card span {
  margin-bottom: 1.1rem;
}

.step-card h3 {
  margin-top: 0;
}

.trust {
  background: rgba(255, 253, 247, 0.5);
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: calc(100vw - clamp(2.2rem, 10vw, 11rem));
  max-width: none;
  gap: 1rem;
}

.trust .section-heading p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.trust-card {
  display: flex;
  flex-direction: column;
  min-height: 13.2rem;
}

.trust-card--video {
  gap: 0.8rem;
}

.trust-card h3 {
  margin-top: 0.95rem;
  color: var(--dark-moss);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.2;
}

.trust-video,
.trust-media {
  position: relative;
  margin: auto 0 0;
  width: 100%;
  overflow: hidden;
  padding: 0.4rem;
  border: 1px solid rgba(217, 180, 74, 0.24);
  border-radius: 0.55rem;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.82), rgba(247, 241, 229, 0.66)),
    radial-gradient(circle at 85% 20%, rgba(217, 180, 74, 0.13), transparent 42%);
  box-shadow: 0 1rem 2.4rem rgba(47, 32, 24, 0.08);
}

.trust-video video,
.trust-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.38rem;
  object-fit: cover;
  background: rgba(55, 68, 38, 0.08);
}

.trust-media img {
  height: auto;
}

.trust-media--contain img {
  object-fit: contain;
  object-position: center;
}

.trust-video figcaption {
  display: none;
}

.trust-card[hidden],
.trust-card--hidden {
  display: none !important;
}

.trust-video__fallback {
  display: none;
  margin: 0.65rem 0 0;
  color: var(--dark-moss);
  font-size: 0.82rem;
  line-height: 1.4;
}

.trust-media .trust-media__fallback {
  display: none;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
  text-align: center;
}

.trust-video--fallback video {
  display: none;
}

.trust-video--fallback .trust-video__fallback {
  display: block;
}

.trust-media--fallback {
  min-height: 8rem;
  display: grid;
  place-items: center;
}

.trust-media.trust-media--fallback .trust-media__fallback {
  display: block;
}

.contact {
  padding-bottom: 4rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3rem);
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(71, 98, 42, 0.16);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.78), rgba(223, 221, 209, 0.72)),
    radial-gradient(circle at right, rgba(159, 187, 120, 0.18), transparent 28rem);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 15ch;
  margin-bottom: 1.15rem;
}

.contact-copy p:last-child {
  max-width: 34rem;
}

.contact-methods {
  display: grid;
  gap: 0.85rem;
}

.contact-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  min-height: 6.2rem;
  padding: 1rem;
  border: 1px solid rgba(71, 98, 42, 0.13);
  border-radius: 0.6rem;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.64);
  box-shadow: 0 0.9rem 2.2rem rgba(47, 32, 24, 0.07);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217, 180, 74, 0.38);
  box-shadow: 0 1.2rem 2.7rem rgba(47, 32, 24, 0.1);
}

.contact-method--primary {
  border-color: rgba(217, 180, 74, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.78), rgba(247, 241, 229, 0.6)),
    radial-gradient(circle at 92% 20%, rgba(217, 180, 74, 0.16), transparent 42%);
}

.contact-method--wechat {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-color: rgba(217, 180, 74, 0.2);
  background:
    radial-gradient(circle at 86% 28%, rgba(217, 180, 74, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.72), rgba(247, 241, 229, 0.6));
}

.contact-method-icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  aspect-ratio: 1;
  border-radius: 999px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--palm-leaf), var(--kombu));
  box-shadow: 0 0.8rem 1.8rem rgba(71, 98, 42, 0.18);
}

.contact-method-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.contact-method strong,
.contact-method span,
.contact-method small {
  display: block;
}

.contact-method strong {
  margin-bottom: 0.16rem;
  color: var(--dark-moss);
  font-weight: 600;
}

.contact-method span span {
  color: var(--muted);
  font-size: 0.93rem;
}

.contact-method small {
  margin-top: 0.32rem;
  color: var(--palm-leaf);
  font-weight: 500;
}

.wechat-qr {
  display: grid;
  place-items: center;
  width: clamp(7.2rem, 13vw, 8.6rem);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0.38rem;
  border: 1px solid rgba(71, 98, 42, 0.16);
  border-radius: 0.55rem;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 0.8rem 1.8rem rgba(47, 32, 24, 0.08);
}

.wechat-qr img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.35rem;
  object-fit: cover;
}

.wechat-qr .wechat-qr__fallback {
  display: none;
  max-width: 8rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
}

.wechat-qr.wechat-qr--fallback .wechat-qr__fallback {
  display: block;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 5.5rem);
  color: rgba(247, 241, 229, 0.78);
  background: var(--kombu);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  display: none;
  place-items: center;
  width: 3.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  background: #1f8f55;
  box-shadow: 0 14px 32px rgba(31, 143, 85, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(31, 143, 85, 0.38);
}

.whatsapp-float svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(3.2rem) scale(0.985);
  transition: opacity 0.85s ease, filter 0.85s ease, transform 0.85s ease;
}

.reveal-delay {
  transition-delay: 0.14s;
}

.reveal-delay-more {
  transition-delay: 0.25s;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes shine {
  0%,
  58% {
    transform: translateX(0) skewX(-14deg);
  }
  78%,
  100% {
    transform: translateX(420%) skewX(-14deg);
  }
}

@keyframes steam {
  0% {
    opacity: 0;
    transform: translate3d(0, 1rem, 0) rotate(0deg);
  }
  35% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate3d(0.55rem, -2.4rem, 0) rotate(9deg);
  }
}

@keyframes floatBean {
  0%,
  100% {
    transform: translateY(0) rotate(25deg);
  }
  50% {
    transform: translateY(-1.9rem) rotate(47deg);
  }
}

@keyframes beanDecoFloat {
  0%,
  100% {
    transform: translate3d(0, var(--deco-y, 0), 0) rotate(var(--bean-rotate, 25deg));
  }
  50% {
    transform: translate3d(0.75rem, calc(var(--deco-y, 0) - 1.45rem), 0) rotate(calc(var(--bean-rotate, 25deg) + 13deg));
  }
}

@keyframes leafDecoFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: -0.35rem -0.8rem;
  }
}

@keyframes ritualFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -1.1rem;
  }
}

@keyframes heroHerbalAura {
  0% {
    opacity: 0.55;
    transform: translate3d(-2.35rem, 1.65rem, 0) scale(1);
  }
  50% {
    opacity: 0.88;
    transform: translate3d(2.75rem, -2.05rem, 0) scale(1.1);
  }
  100% {
    opacity: 0.64;
    transform: translate3d(1.3rem, 2.25rem, 0) scale(1.04);
  }
}

@keyframes heroHerbalAuraSecondary {
  0% {
    opacity: 0.38;
    transform: translate3d(1.9rem, -1.2rem, 0) scale(0.99);
  }
  50% {
    opacity: 0.62;
    transform: translate3d(-1.95rem, 1.55rem, 0) scale(1.07);
  }
  100% {
    opacity: 0.46;
    transform: translate3d(0.65rem, 1.45rem, 0) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-visual::before,
  .hero-visual::after {
    animation: none;
    opacity: 0.56;
    transform: none;
  }

  .hero-visual::after {
    opacity: 0.34;
  }
}

@media (max-width: 1120px) {
  .site-header {
    gap: 0.75rem;
  }

  .brand {
    min-width: 11.5rem;
  }

  .brand-logo {
    max-width: min(14rem, 28vw);
  }

  .brand-tagline,
  .button-small {
    display: none;
  }

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

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

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    justify-items: start;
    padding: 1.2rem clamp(1rem, 5vw, 2rem) 1.8rem;
    border-bottom: 1px solid rgba(240, 203, 85, 0.22);
    background:
      linear-gradient(135deg, rgba(26, 42, 23, 0.98), rgba(55, 68, 38, 0.97) 60%, rgba(47, 32, 24, 0.96)),
      var(--kombu);
    box-shadow: 0 20px 40px rgba(47, 32, 24, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .is-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .story-grid,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-photo-plate--hero .product-photo {
    width: min(88%, 28rem);
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-panel h2 {
    max-width: 18ch;
  }

  .contact-methods {
    max-width: 40rem;
  }

  .ritual-section {
    min-height: auto;
    padding-top: clamp(4.5rem, 10vw, 6rem);
    padding-bottom: clamp(4.5rem, 10vw, 6rem);
  }

  .ritual-section::before {
    background:
      radial-gradient(circle at 14% 12%, rgba(240, 203, 85, 0.1), transparent 12rem),
      linear-gradient(135deg, rgba(247, 241, 229, 0.035) 25%, transparent 25%) 0 0 / 34px 34px;
  }

  .ritual-copy {
    order: 1;
    width: 100%;
    max-width: 44rem;
    margin: 0;
    padding: 0;
    border-left: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .ritual-copy h2 {
    max-width: 13ch;
  }

  .ritual-visual {
    position: relative;
    inset: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-items: stretch;
    justify-content: stretch;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .ritual-photo-stage {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: auto;
    min-height: clamp(19rem, 56vw, 31rem);
    border: 1px solid rgba(240, 203, 85, 0.2);
    border-radius: 0.55rem;
    box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.18);
  }

  .ritual-photo {
    position: absolute;
    inset: 0;
    object-position: 32% center;
    min-height: 0;
  }

  .ritual-orbit {
    left: auto;
    right: -5rem;
    bottom: -5rem;
    width: min(68vw, 20rem);
    opacity: 0.35;
  }

  h1 {
    max-width: 13ch;
  }

  .hero-title {
    max-width: 13ch;
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-title--zh {
    max-width: 9em;
    font-size: clamp(2.8rem, 8.5vw, 4.6rem);
  }

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

  .section-deco-beans--ingredients .bean-deco:nth-child(2),
  .section-deco-beans--ingredients .bean-deco:nth-child(3),
  .section-deco-beans--benefits .bean-deco--small,
  .section-deco-beans--drink .bean-deco:nth-child(2) {
    display: none;
  }

  .bean-deco {
    --bean-opacity: 0.08;
    --bean-speed: 9.6s;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    max-width: min(11rem, 36vw);
    height: clamp(2.125rem, 8vw, 2.625rem);
    min-height: 2.25rem;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 2.35rem;
  }

  .language-switcher {
    gap: 0.1rem;
  }

  .lang-btn {
    min-width: 2rem;
    padding: 0.3rem 0.45rem;
  }

  .section {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .product-photo-plate--hero {
    width: min(92vw, 26rem);
  }

  .product-photo-plate--hero .product-photo {
    width: min(92%, 22rem);
  }

  .product-photo-plate--showcase {
    width: min(92vw, 25rem);
  }

  .contact-panel {
    padding: 1.45rem;
  }

  .contact-method {
    min-height: auto;
    padding: 0.9rem;
  }

  .contact-method--wechat {
    grid-template-columns: auto 1fr;
  }

  .contact-method-icon {
    width: 2.5rem;
  }

  .wechat-qr {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(58vw, 10rem);
    margin-top: 0.35rem;
  }

  .ritual-section {
    gap: 1.25rem;
  }

  .ritual-visual {
    min-height: 18rem;
  }

  .ritual-photo {
    object-position: 28% center;
  }

  .ritual-photo-overlay {
    background:
      linear-gradient(180deg, rgba(20, 31, 18, 0.04), rgba(20, 31, 18, 0.2)),
      radial-gradient(circle at 78% 16%, rgba(240, 203, 85, 0.12), transparent 30%);
  }

  .ritual-bean,
  .ritual-leaf {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-title {
    max-width: 12ch;
    padding-bottom: 0.85rem;
    font-size: clamp(2.85rem, 13vw, 4.15rem);
    line-height: 1.02;
  }

  .hero-title--zh {
    max-width: 8.8em;
    font-size: clamp(2.35rem, 10.5vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: 0.05em;
  }

  .hero-title--zh .hero-title-accent {
    letter-spacing: 0.08em;
  }

  .hero-title--bm {
    max-width: 11.5ch;
    font-size: clamp(2.55rem, 12vw, 3.9rem);
  }

  h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .story-points,
  .ingredient-grid,
  .benefit-grid,
  .steps-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
    padding-top: 1.25rem;
  }

  .step-card__top {
    margin-bottom: 1rem;
  }

  .step-card__icon {
    width: 2.85rem;
  }

  .step-card__icon svg {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hero-visual {
    min-height: 25rem;
  }

  .hero-visual::before {
    width: min(96vw, 27rem);
    opacity: 0.56;
    filter: blur(20px);
    animation-name: heroHerbalAuraMobile;
    animation-duration: 14s;
  }

  .hero-visual::after {
    display: none;
  }

  .bean {
    animation-duration: 8.4s;
  }

  .bean-deco {
    --bean-speed: 9.8s;
  }

  .product-placeholder {
    width: min(86vw, 20rem);
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
  }

  .section-deco-beans--story .bean-deco--medium,
  .section-deco-beans--ingredients,
  .section-deco-beans--drink,
  .showcase-deco .bean-deco:nth-child(2),
  .showcase-deco .leaf-deco--gold,
  .section-deco-beans--contact .leaf-deco--gold {
    display: none;
  }

  .section-deco-beans--story .bean-deco--large {
    right: -4.5rem;
    top: 2rem;
    --bean-opacity: 0.07;
  }

  .section-deco-beans--benefits .bean-deco--medium {
    right: -1.5rem;
    top: 2rem;
    --bean-opacity: 0.07;
  }

  .showcase-deco .bean-deco:nth-child(1) {
    left: -0.5rem;
    top: 9%;
    --bean-opacity: 0.1;
  }

  .showcase-deco .leaf-deco--green {
    right: -0.8rem;
    left: auto;
    bottom: 10%;
    --leaf-opacity: 0.1;
  }

  .section-deco-beans--contact .bean-deco--large {
    right: -5rem;
    bottom: 1rem;
    --bean-opacity: 0.06;
  }
}

@keyframes heroHerbalAuraMobile {
  0% {
    opacity: 0.4;
    transform: translate3d(-1.05rem, 0.8rem, 0) scale(0.99);
  }
  50% {
    opacity: 0.6;
    transform: translate3d(1.35rem, -0.95rem, 0) scale(1.06);
  }
  100% {
    opacity: 0.46;
    transform: translate3d(0.55rem, 1.15rem, 0) scale(1.01);
  }
}

@keyframes heroHerbalAuraSecondaryMobile {
  0% {
    opacity: 0.22;
    transform: translate3d(0.65rem, -0.45rem, 0) scale(0.99);
  }
  50% {
    opacity: 0.34;
    transform: translate3d(-0.85rem, 0.65rem, 0) scale(1.04);
  }
  100% {
    opacity: 0.26;
    transform: translate3d(0.25rem, 0.55rem, 0) scale(1);
  }
}

@media (max-width: 420px) {
  .header-actions {
    gap: 0.4rem;
  }

  .language-switcher {
    padding: 0.12rem;
  }

  .lang-btn {
    min-width: 1.82rem;
    padding-inline: 0.36rem;
    font-size: 0.68rem;
  }
}
