:root {
  --rice: #f6f0e3;
  --milk: #fffdf7;
  --forest: #073f2b;
  --forest-soft: #0d563c;
  --herb: #6e8b55;
  --matcha: #c8d64b;
  --turmeric: #c58b2a;
  --bark: #2d271f;
  --muted: #706c63;
  --line: #d9d2c2;
  --display: "Newsreader", Georgia, serif;
  --sans: "Instrument Sans", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --max: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--rice);
  color: var(--bark);
  font: 400 16px/1.5 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--matcha); color: var(--forest); }
:focus-visible { outline: 3px solid var(--turmeric); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: 12px;
  padding: 10px 15px;
  background: var(--forest);
  color: white;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: none; }
.scroll-progress { position: fixed; z-index: 100; left: 0; top: 0; width: 100%; height: 3px; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--matcha); transform: scaleX(0); transform-origin: left; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.eyebrow { display: block; margin: 0 0 15px; color: var(--herb); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section { padding: clamp(82px, 10vw, 150px) 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 40px; margin-bottom: 64px; }
.section-heading h2 { margin: 0; color: var(--forest); font: 500 clamp(48px, 6vw, 84px)/.95 var(--display); letter-spacing: -.045em; }
.section-heading p { justify-self: end; max-width: 430px; margin: 0; color: var(--muted); font-size: 17px; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

.announce-bar { position: fixed; z-index: 51; top: 0; left: 0; width: 100%; background: var(--forest); color: rgba(248,243,232,.85); text-align: center; padding: 8px 16px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.announce-bar .bar-sep { color: var(--matcha); opacity: .7; }

.site-header { position: fixed; z-index: 50; top: 36px; left: 0; width: 100%; color: var(--forest); background: rgba(255,253,247,.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.site-header.is-sticky { box-shadow: 0 1px rgba(7,63,43,.12); border-bottom-color: transparent; }
.nav-shell { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.site-header.is-sticky .nav-shell { height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: 38px; height: 42px; display: block; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--forest); }
.brand-text small { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--herb); }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
.nav-links > a { position: relative; }
.nav-links > a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.bag-button, .menu-button { border: 0; padding: 0; background: transparent; color: inherit; cursor: pointer; }
.bag-button { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.bag-count { min-width: 25px; height: 25px; padding: 0 7px; display: grid; place-items: center; border-radius: 20px; background: var(--forest); color: white; font-size: 11px; }
.menu-button { display: none; width: 38px; height: 38px; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 22px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; }

.button { min-height: 52px; padding: 0 23px; border: 1px solid var(--forest); display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: transparent; color: var(--forest); font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; }
.button-primary:hover { background: var(--forest-soft); }
.button-light { border-color: white; background: white; color: var(--forest); }
.button-full { width: 100%; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }

.hero { background: var(--rice); padding-top: 116px; }
.hero-body { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; min-height: calc(100svh - 116px); padding: 60px 0 80px; }
.hero-copy { max-width: 600px; }
.hero-product { display: grid; place-items: center; }
.hero-product img { width: 100%; max-width: 520px; mix-blend-mode: multiply; filter: drop-shadow(0 24px 40px rgba(7,63,43,.14)); animation: hero-float 6s ease-in-out infinite; }
@keyframes hero-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero h1 { margin: 0; max-width: 690px; color: var(--forest); font: 500 clamp(60px, 7vw, 106px)/.92 var(--display); letter-spacing: -.055em; }
.hero h1 span { display: block; overflow: hidden; margin-block: -.12em -.16em; padding-block: .12em .16em; }
.hero h1 i { display: block; font-style: normal; animation: line-up .9s var(--ease) both; }
.hero h1 span:nth-child(2) i { animation-delay: .12s; }
.hero-lede { max-width: 460px; margin: 27px 0 0; color: #31493c; font-size: clamp(16px, 1.35vw, 19px); }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 32px; }
.fact-line { display: flex; flex-wrap: wrap; gap: 9px 20px; margin-top: 42px; color: #44574c; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.fact-line span { display: flex; align-items: center; gap: 8px; }
.fact-line span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--herb); }
.ticker { overflow: hidden; padding: 13px 0; background: var(--forest); color: #f8f3e8; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 26px; min-width: max-content; animation: ticker 25s linear infinite; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.ticker-track span::after { content: "✦"; margin-left: 26px; color: var(--matcha); }

.ingredients { overflow: hidden; background: var(--milk); }
.ingredient-stage { position: relative; min-height: 800px; display: grid; place-items: center; }
.ingredient-core { position: relative; z-index: 2; width: 240px; height: 240px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: white; text-align: center; box-shadow: 0 28px 70px rgba(7,63,43,.18); }
/* Inner orbit ring at R=195, Outer orbit ring at R=320 */
.ingredient-core::before { content: ""; position: absolute; inset: -75px; border: 1px dashed rgba(7,63,43,.18); border-radius: 50%; }
.ingredient-core::after  { content: ""; position: absolute; inset: -200px; border: 1px dashed rgba(7,63,43,.14); border-radius: 50%; }
.ingredient-core strong { display: block; font: 500 42px/1 var(--display); }
.ingredient-core small { display: block; margin-top: 8px; color: #cbd8ca; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

/* Orbit items */
.orbit { position: absolute; z-index: 3; width: 110px; color: var(--forest); font-size: 11px; font-weight: 700; text-align: center; }
.orbit img { display: block; width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 8px; border: 2px solid rgba(200,214,75,.4); box-shadow: 0 4px 14px rgba(7,63,43,.18); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.orbit:hover img { transform: scale(1.12); box-shadow: 0 8px 24px rgba(7,63,43,.28); }
.orbit span { display: block; }

/* Inner ring — 5 items, R=195px, 72° apart starting from top */
.orbit-1  { transform: translate(0px,    -195px); }
.orbit-2  { transform: translate(185px,  -60px);  }
.orbit-3  { transform: translate(115px,  158px);  }
.orbit-4  { transform: translate(-115px, 158px);  }
.orbit-5  { transform: translate(-185px, -60px);  }

/* Outer ring — 6 items, R=320px, 60° apart starting from 30° */
.orbit-6  { transform: translate(160px,  -277px); }
.orbit-7  { transform: translate(320px,  0px);    }
.orbit-8  { transform: translate(160px,  277px);  }
.orbit-9  { transform: translate(-160px, 277px);  }
.orbit-10 { transform: translate(-320px, 0px);    }
.orbit-11 { transform: translate(-160px, -277px); }

.ingredient-note { max-width: 700px; margin: 30px auto 0; color: var(--muted); font-size: 13px; text-align: center; }

.ritual-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.ritual-step { position: relative; min-height: 430px; padding: 38px 34px; overflow: hidden; border-right: 1px solid var(--line); }
.ritual-step:last-child { border-right: 0; }
.step-number { color: rgba(7,63,43,.14); font: 400 90px/1 var(--display); }
.ritual-step h3 { margin: 0 0 10px; color: var(--forest); font: 500 40px/1 var(--display); }
.ritual-step p { max-width: 280px; margin: 0; color: var(--muted); font-size: 14px; }
.ritual-shape { position: absolute; right: -20px; top: 60px; width: 180px; height: 180px; border: 1px solid rgba(7,63,43,.18); border-radius: 50%; transition: transform .7s var(--ease); }
.ritual-step:hover .ritual-shape { transform: scale(1.12) rotate(15deg); }
.ritual-shape::after { content: ""; position: absolute; inset: 28%; border-radius: 50%; background: var(--matcha); opacity: .75; }
.ritual-step:nth-child(2) .ritual-shape { border-radius: 30% 70% 58% 42%/52% 44% 56% 48%; background: rgba(110,139,85,.11); }
.ritual-step:nth-child(3) .ritual-shape::after { background: var(--turmeric); }

.featured-product { padding-top: 0; }
.product-stage { min-height: 760px; display: grid; grid-template-columns: minmax(0,1.22fr) minmax(380px,.78fr); border: 1px solid var(--line); background: var(--milk); }
.product-gallery { position: relative; min-width: 0; display: grid; place-items: center; overflow: hidden; background: #ece8d9; }
.product-gallery::after { content: ""; position: absolute; inset: auto 8% 6%; height: 26px; border-radius: 50%; background: rgba(36,45,30,.18); filter: blur(15px); }
.product-gallery img { position: relative; z-index: 2; width: min(68%,560px); max-height: 670px; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 28px 22px rgba(30,44,31,.18)); transition: opacity .3s, transform .7s var(--ease); }
.product-gallery:hover img { transform: translateY(-8px) rotate(-1deg); }
.gallery-controls { position: absolute; z-index: 5; left: 24px; bottom: 24px; display: flex; gap: 8px; }
.gallery-control { border: 1px solid var(--line); padding: 10px 13px; background: rgba(255,253,247,.9); font-size: 11px; font-weight: 700; cursor: pointer; }
.gallery-control.is-active { border-color: var(--forest); background: var(--forest); color: white; }
.product-summary { padding: clamp(48px, 6vw, 86px); display: flex; flex-direction: column; justify-content: center; }
.product-summary h1, .product-summary h2 { margin: 0; color: var(--forest); font: 500 clamp(48px, 5vw, 72px)/.95 var(--display); letter-spacing: -.045em; }
.product-meta { padding: 24px 0; display: flex; align-items: end; justify-content: space-between; border-bottom: 1px solid var(--line); }
.price { color: var(--forest); font: 500 40px/1 var(--display); }
.price small { display: block; margin-top: 7px; color: var(--muted); font: 500 11px/1.3 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.product-description { margin: 24px 0; color: var(--muted); }
.product-points { margin: 0 0 28px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; list-style: none; font-size: 12px; font-weight: 700; }
.product-points li::before { content: "✓"; margin-right: 8px; color: var(--herb); }
.purchase-row { display: grid; grid-template-columns: 112px 1fr; gap: 12px; }
.quantity { min-height: 52px; border: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; text-align: center; }
.quantity button { height: 100%; border: 0; background: transparent; color: var(--forest); font-size: 20px; cursor: pointer; }
.microcopy { margin: 14px 0 0; color: var(--muted); font-size: 11px; }
.support-line { margin-top: 28px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.support-line a { color: var(--forest); font-weight: 700; }

.philosophy { position: relative; overflow: hidden; background: var(--forest); color: white; }
.philosophy::before { content: ""; position: absolute; width: 580px; height: 580px; right: -150px; top: -220px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,255,255,.02), 0 0 0 200px rgba(255,255,255,.015); pointer-events: none; }
.philosophy .eyebrow { color: var(--matcha); }
.philosophy-intro { position: relative; max-width: 700px; margin-bottom: 56px; }
.philosophy-intro h2 { margin: 0 0 20px; color: white; font: 500 clamp(42px,6vw,82px)/.95 var(--display); letter-spacing: -.045em; }
.philosophy-intro h2 em { color: var(--matcha); font-style: normal; }
.philosophy-intro p { max-width: 560px; margin: 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.6; }
.philosophy-beliefs { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); margin-bottom: 60px; }
.belief { background: rgba(7,63,43,.5); padding: 28px 22px; }
.belief strong { display: block; font-size: 13px; font-weight: 700; letter-spacing: .02em; margin-bottom: 10px; color: white; }
.belief p { margin: 0; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.6); }
.philosophy-quote { position: relative; margin: 0; padding-top: 52px; border-top: 1px solid rgba(255,255,255,.18); font: 400 clamp(28px,4.5vw,64px)/.95 var(--display); letter-spacing: -.04em; text-align: center; }

.product-page { padding-top: 116px; }
.product-page .product-stage { min-height: calc(100svh - 116px); border-top: 0; }
.detail-block { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; padding: 60px 0; border-top: 1px solid var(--line); }
.detail-block:first-child { border-top: 0; }
.detail-block h2 { margin: 0; color: var(--forest); font: 500 clamp(40px,4vw,60px)/1 var(--display); letter-spacing: -.035em; }
.detail-content { color: var(--muted); }
.detail-content > p:first-child { margin-top: 0; }
.ingredient-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.ingredient-list li { min-height: 88px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: end; color: var(--forest); font-weight: 700; }
.usage-list { margin: 0; padding: 0; list-style: none; counter-reset: usage; }
.usage-list li { position: relative; min-height: 78px; padding: 18px 0 18px 58px; border-bottom: 1px solid var(--line); }
.usage-list li::before { counter-increment: usage; content: "0" counter(usage); position: absolute; left: 0; top: 17px; color: var(--herb); font: 500 25px/1 var(--display); }
.label-note { padding: 22px; border-left: 3px solid var(--turmeric); background: rgba(197,139,42,.08); color: var(--bark); }
.product-cta { padding: 70px 0; background: var(--forest); color: white; }
.product-cta-layout { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.product-cta h2 { margin: 0; max-width: 650px; font: 400 clamp(46px,6vw,78px)/.95 var(--display); letter-spacing: -.04em; }

.site-footer { padding: 55px 0 28px; background: var(--milk); }
.footer-top { padding-bottom: 55px; display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 30px; }
.footer-top h2 { max-width: 650px; margin: 0; color: var(--forest); font: 500 clamp(42px,5vw,72px)/.95 var(--display); }
.footer-links { display: grid; gap: 12px; text-align: right; font-size: 14px; font-weight: 700; }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 30px; color: var(--muted); font-size: 11px; }

.bag-backdrop { position: fixed; z-index: 89; inset: 0; opacity: 0; pointer-events: none; background: rgba(7,35,25,.42); transition: opacity .35s; }
.bag-backdrop.is-open { opacity: 1; pointer-events: auto; }
.bag-drawer { position: fixed; z-index: 90; right: 0; top: 0; width: min(470px,100%); height: 100dvh; padding: 28px; display: flex; flex-direction: column; background: var(--milk); transform: translateX(100%); transition: transform .45s var(--ease); }
.bag-drawer.is-open { transform: none; }
.bag-header { padding-bottom: 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.bag-header h2 { margin: 0; color: var(--forest); font: 500 35px/1 var(--display); }
.bag-close { border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.bag-item { padding: 28px 0; display: grid; grid-template-columns: 100px 1fr; gap: 18px; }
.bag-item img { width: 100px; height: 125px; object-fit: contain; background: #eeeade; mix-blend-mode: multiply; }
.bag-item h3 { margin: 7px 0; color: var(--forest); font: 500 24px/1.05 var(--display); }
.bag-item small { color: var(--muted); }
.bag-empty { padding: 34px 0; color: var(--muted); }
.bag-footer { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.bag-total { display: flex; justify-content: space-between; margin-bottom: 18px; font-weight: 700; }
.bag-footer p { color: var(--muted); font-size: 11px; }

@keyframes header-in { from { transform: translateY(-100%); } }
@keyframes hero-in { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
@keyframes line-up { from { transform: translateY(110%); } }
@keyframes sunwash { to { transform: translate(4%,-2%) scale(1.06); } }
@keyframes shadow-drift { to { opacity: .11; transform: translate(48px,18px) rotate(-17deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes img-shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes float-up { 0%,100% { transform: translateY(0); opacity: .45; } 50% { transform: translateY(-7px); opacity: 1; } }
@keyframes spin-swirl { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ray-pulse { 0%,100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes scoop-rock { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }


/* ---- Image loading skeleton ---- */
.hero-skeleton {
  position: absolute;
  z-index: -4;
  inset: 0;
  background: linear-gradient(90deg, var(--rice) 25%, rgba(255,255,255,.55) 50%, var(--rice) 75%);
  background-size: 300% 100%;
  animation: img-shimmer 1.8s ease-in-out infinite;
  transition: opacity .5s;
}
.hero.img-loaded .hero-skeleton { opacity: 0; pointer-events: none; }


/* ---- Size selector ---- */
.size-selector { display: flex; gap: 8px; margin: 0 0 18px; }
.size-option {
  position: relative;
  flex: 1;
  min-height: 66px;
  padding: 12px 10px 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, background .2s;
}
.size-option:hover { border-color: var(--herb); }
.size-option.is-active { border-color: var(--forest); background: rgba(7,63,43,.05); }
.size-option-weight { display: block; color: var(--forest); font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.size-option-price { display: block; color: var(--herb); font: 500 20px/1.1 var(--display); margin-top: 3px; }
.size-option-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  background: var(--forest);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- Visual ritual icons ---- */
.ritual-icon { width: 88px; height: 88px; color: var(--forest); margin-bottom: 4px; }
.ritual-icon .spoon-body { animation: scoop-rock 3.5s ease-in-out infinite; transform-origin: 66px 62px; }
.ritual-icon .sp1 { animation: float-up 2.4s ease-in-out infinite; }
.ritual-icon .sp2 { animation: float-up 2.4s ease-in-out .4s infinite; }
.ritual-icon .sp3 { animation: float-up 2.4s ease-in-out .8s infinite; }
.ritual-icon .swirl { transform-origin: 50px 56px; animation: spin-swirl 4s linear infinite; }
.ritual-icon .ray { animation: ray-pulse 2s ease-in-out infinite; }
.ritual-icon .ray:nth-child(3) { animation-delay: .2s; }
.ritual-icon .ray:nth-child(4) { animation-delay: .4s; }
.ritual-icon .ray:nth-child(5) { animation-delay: .6s; }
.ritual-icon .ray:nth-child(6) { animation-delay: .8s; }
.ritual-icon .ray:nth-child(7) { animation-delay: 1s; }
.ritual-icon .ray:nth-child(8) { animation-delay: 1.2s; }

.ritual-step h3 { margin: 16px 0 10px; color: var(--forest); font: 500 40px/1 var(--display); }

/* ---- Benefits section ---- */
.benefits-section { background: var(--rice); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.benefit-card {
  background: white;
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 3px solid var(--matcha);
  box-shadow: 0 2px 18px rgba(7,63,43,.07);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(7,63,43,.12); }
.benefit-icon {
  width: 58px;
  height: 58px;
  background: var(--forest);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 26px;
  height: 26px;
  color: var(--matcha);
}
.benefit-body { display: flex; flex-direction: column; gap: 8px; }
.benefit-card strong {
  display: block;
  color: var(--forest);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.perfect-for {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.perfect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.perfect-tags span {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: .03em;
  background: white;
}

/* ---- Bag product visual ---- */
.bag-product-visual {
  position: relative;
  width: 100px;
  height: 125px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-soft) 100%);
  overflow: hidden;
  flex-shrink: 0;
}
.bag-product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 20%, rgba(200,214,75,.22), transparent 55%);
  pointer-events: none;
}
.bag-product-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  padding: 8px;
  background: transparent !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.4)) brightness(1.05);
}
.bag-product-leaf {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 56px;
  height: 56px;
  color: var(--matcha);
  opacity: .18;
  pointer-events: none;
}

@media (max-width: 980px) {
  .section-heading { grid-template-columns: 1fr; }
  .section-heading p { justify-self: start; }
  .nav-links > a { display: none; }
  .menu-button { display: block; }
  .mobile-menu { position: fixed; z-index: 48; inset: 0; padding: 110px 24px 35px; background: var(--milk); transform: translateY(-110%); transition: transform .4s var(--ease); display: flex; flex-direction: column; gap: 6px; }
  .mobile-menu.is-open { transform: none; }
  .mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--forest); font: 500 36px/1 var(--display); }
  .hero-body { grid-template-columns: 1fr; min-height: auto; padding: 60px 0 80px; }
  .hero-product { order: -1; }
  .hero-product img { max-width: 380px; }
  .ingredient-stage { margin: -60px; transform: scale(.82); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-beliefs { grid-template-columns: repeat(2,1fr); }
  .ritual-step { padding: 30px 22px; }
  .ritual-step h3 { font-size: 34px; }
  .product-stage { grid-template-columns: 1fr; }
  .product-gallery { min-height: 620px; }
  .detail-block { grid-template-columns: 1fr; gap: 30px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
}

@media (max-width: 680px) {
  .container { width: calc(100% - 32px); }
  .announce-bar { font-size: 10px; padding: 7px 12px; gap: 6px; }
  .announce-bar .bar-sep { display: none; }
  .site-header { top: 32px; }
  .nav-shell { height: 64px; }
  .brand-logo { width: 28px; height: 32px; }
  .brand-text strong { font-size: 12px; }
  .hero { padding-top: 96px; }
  .hero-body { padding: 40px 0 60px; gap: 32px; }
  .hero-copy { width: 100%; }
  .philosophy-beliefs { grid-template-columns: 1fr; }
  .product-page { padding-top: 96px; }
  .product-page .product-stage { min-height: calc(100svh - 96px); }
  .hero h1 { font-size: clamp(48px,14vw,58px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { border: 0; text-align: center; }
  .fact-line { gap: 10px 15px; margin-top: 30px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2 { font-size: 49px; }
  .section-heading p { font-size: 15px; }
  .ingredient-stage { min-height: 0; margin: 0; padding: 5px 0 24px; display: flex; justify-content: flex-start; gap: 10px; overflow-x: auto; border: 0; transform: none; scroll-snap-type: x mandatory; }
  .ingredient-core { flex: 0 0 160px; height: 160px; scroll-snap-align: start; }
  .ingredient-core::before, .ingredient-core::after { display: none; }
  .orbit { position: static; flex: 0 0 120px; height: 160px; display: grid; place-content: center; border: 1px solid var(--line); background: var(--rice); transform: none; scroll-snap-align: start; }
  .orbit img { width: 60px; height: 60px; }
  .ingredient-card figcaption { inset: auto 12px 11px; }
  .ingredient-card figcaption strong { font-size: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .perfect-for { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ritual-grid { grid-template-columns: 1fr; }
  .ritual-step { min-height: 320px; border-right: 0; border-bottom: 1px solid var(--line); }
  .ritual-step h3 { margin-top: 50px; }
  .product-stage { border-inline: 0; }
  .product-gallery { min-height: 470px; }
  .product-gallery img { width: 78%; max-height: 430px; }
  .product-summary { padding: 42px 24px; }
  .product-points { grid-template-columns: 1fr; }
  .purchase-row { grid-template-columns: 1fr; }
  .quantity { height: 52px; }
  .product-page { padding-top: 76px; }
  .product-page .product-stage { min-height: 0; }
  .ingredient-list { grid-template-columns: 1fr 1fr; }
  .product-cta-layout { align-items: stretch; flex-direction: column; }
  .product-cta .button { width: 100%; }
  .philosophy-layout { gap: 36px; }
  .philosophy blockquote { font-size: 50px; }
  .footer-top h2 { font-size: 45px; }
  .footer-bottom { flex-direction: column; gap: 9px; }
  .bag-drawer { padding: 22px; }
  .ticker-track { animation-duration: 18s; }
}

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