/* ============================================================
   SHORITU — premium daylight fruit commerce
   Palette: deep orchard green + refined cream neutrals + gold +
   the brand orange reserved for action. Type: Bricolage Grotesque
   display, Plus Jakarta Sans body, Baloo Da 2 / Hind Siliguri Bengali.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Hind+Siliguri:wght@400;500;600;700&family=Baloo+Da+2:wght@500;600;700;800&display=swap');

:root {
  /* ---- premium palette ---- */
  --ink: #16282d;
  --ink-soft: #465a60;
  --ink-mute: #80918f;

  --green-950: #062417;
  --green-900: #083320;
  --green-800: #0a4429;
  --green-700: #0c5733;
  --green-600: #0f6f40;
  --green-400: #3a9c63;
  --green-300: #76c195;

  --orange: #f3701f;
  --orange-deep: #d2570f;
  --orange-soft: #ffd9b8;

  --gold: #c79a3c;
  --gold-bright: #e0b85a;
  --gold-soft: #f0dca0;

  --cream: #fbf4e6;
  --cream-2: #f4e8d2;
  --paper: #fffdf7;
  --line: #e9dcc4;
  --line-soft: #f0e7d6;

  --shadow-sm: 0 1px 2px rgba(22,40,45,.05), 0 2px 8px rgba(22,40,45,.05);
  --shadow-md: 0 18px 44px -22px rgba(12,87,51,.32);
  --shadow-lg: 0 40px 90px -40px rgba(8,51,32,.55);
  --shadow-gold: 0 20px 50px -24px rgba(199,154,60,.55);

  --ease: cubic-bezier(.18,.78,.28,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);

  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);

  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-bn: 'Baloo Da 2', 'Hind Siliguri', sans-serif;
  --font-bn-body: 'Hind Siliguri', 'Baloo Da 2', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--orange); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--green-600), var(--green-800));
  border-radius: 99px; border: 2px solid var(--cream-2);
}

.bn { font-family: var(--font-bn); font-weight: 600; }
.bn-body { font-family: var(--font-bn-body); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ================= shared bits ================= */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--green-600);
}
.kicker::before {
  content: ""; width: 30px; height: 1.5px; background: currentColor; opacity: .7;
}
.kicker.on-dark { color: var(--gold-bright); }

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .4s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .4s var(--ease); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 14px 30px -12px rgba(243,112,31,.6); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 22px 40px -16px rgba(22,40,45,.5); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-gold { background: linear-gradient(120deg, var(--gold-bright), var(--gold)); color: var(--green-950); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-outline { box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink); background: rgba(255,255,255,.5); }
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn-ghost { padding-left: 4px; padding-right: 4px; color: var(--ink); }
.btn-ghost::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 8px; height: 1.5px;
  background: currentColor; transform-origin: left; transition: transform .45s var(--ease);
}
.btn-ghost:hover::after { transform: scaleX(.55); }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.sec-head h2 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.0;
  font-size: clamp(34px, 5vw, 66px); margin-top: 14px; color: var(--ink);
}
.sec-head .lead { max-width: 440px; color: var(--ink-soft); font-size: 16px; margin-top: 14px; }
.on-dark .sec-head h2, .sec-head h2.on-dark { color: var(--cream); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ================= HEADER ================= */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  padding: 18px var(--pad);
  background: linear-gradient(180deg, rgba(251,244,230,.72), rgba(251,244,230,0));
  transition: padding .4s var(--ease), background .4s, box-shadow .4s, backdrop-filter .4s;
}
.hdr.scrolled {
  padding: 11px var(--pad);
  background: rgba(251,244,230,.82);
  backdrop-filter: saturate(150%) blur(16px);
  box-shadow: 0 1px 0 rgba(22,40,45,.06), 0 10px 30px -24px rgba(8,51,32,.4);
}
.hdr-in { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 30px; }
.logo { flex-shrink: 0; }
.logo img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; flex: 1; }
.nav a {
  position: relative; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); padding: 6px 0;
  transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.hdr-icons { display: flex; align-items: center; gap: 6px; }
.iconbtn {
  width: 42px; height: 42px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .2s, color .2s, transform .2s;
}
.iconbtn svg { width: 19px; height: 19px; }
.iconbtn:hover { background: rgba(15,111,64,.1); color: var(--green-700); transform: translateY(-1px); }
.cart {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px 10px 14px;
  border-radius: 999px; background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 700;
  transition: background .25s, transform .2s;
}
.cart:hover { background: var(--green-700); transform: translateY(-1px); }
.cart svg { width: 17px; height: 17px; }
.cart .count {
  min-width: 22px; padding: 2px 7px; border-radius: 999px;
  background: var(--gold-bright); color: var(--green-950); font-size: 11px; font-weight: 800; text-align: center;
}
.cart .price { color: rgba(255,255,255,.6); font-size: 12px; }
.burger { display: none; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 120; background: var(--cream);
  display: flex; flex-direction: column; padding: 84px var(--pad) 32px;
  transform: translateY(-101%); transition: transform .55s var(--ease); overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 600; font-size: 30px; color: var(--ink);
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.mclose { position: absolute; top: 22px; right: var(--pad); width: 44px; height: 44px; border-radius: 999px; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.mclose svg { width: 20px; height: 20px; }

/* ================= HERO (sticky scroll story) ================= */
.hero { position: relative; height: 460vh; background: var(--cream); }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* layered daylight background */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 78% 8%, rgba(243,112,31,.16), transparent 52%),
    radial-gradient(120% 90% at 12% 96%, rgba(15,111,64,.16), transparent 55%),
    linear-gradient(176deg, #fff8ec 0%, #fdeed6 42%, #f6e4c6 100%);
}
.hero-sun {
  position: absolute; top: -22vh; left: 50%; transform: translateX(-50%);
  width: 90vh; height: 90vh; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,236,196,.95) 0%, rgba(255,224,160,.4) 38%, transparent 66%);
  filter: blur(2px); will-change: transform;
}
.hero-scene {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1s var(--ease-soft);
  will-change: opacity, transform;
}
.hero-scene.show { opacity: 1; transform: scale(1); }
.hero-scene::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(251,244,230,.76) 0%, rgba(251,244,230,.48) 36%, rgba(251,244,230,.14) 58%, transparent 78%),
    linear-gradient(180deg, rgba(251,244,230,.42) 0%, rgba(251,244,230,.2) 38%, rgba(8,42,26,.38) 100%);
}
.hero:not(.brand-scene) .hero-scene::after {
  background: linear-gradient(180deg, rgba(8,42,26,.12) 0%, rgba(8,42,26,.36) 38%, rgba(6,36,23,.68) 100%);
}

/* directional orchard foreground pieces */
.hero-fruits {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none; overflow: hidden; will-change: opacity;
}
.ff {
  position: absolute;
  opacity: .94;
  filter: drop-shadow(0 32px 34px rgba(6,36,23,.2));
  will-change: transform;
}
.ff img { width: 100%; height: auto; }
.ff-left {
  width: clamp(360px, 44vw, 760px);
  left: max(-250px, -14vw);
  bottom: max(-150px, -12vh);
}
.ff-right {
  width: clamp(360px, 43vw, 740px);
  right: max(-260px, -15vw);
  bottom: max(-150px, -12vh);
}
.ff-top {
  width: clamp(390px, 42vw, 720px);
  left: 50%;
  top: clamp(-340px, -36vh, -245px);
  transform: translateX(-50%);
}

.hero-stage {
  position: relative; z-index: 5; width: 100%; max-width: var(--maxw);
  padding: 0 var(--pad); display: grid; place-items: center;
}
.hero-step {
  grid-area: 1 / 1; width: 100%; max-width: 940px; text-align: center;
  opacity: 0; transform: translateY(32px); pointer-events: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.hero-step.active { opacity: 1; transform: none; pointer-events: auto; }

/* brand moment (step 0) */
.hero-brand { display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--green-700);
  background: rgba(255,255,255,.6); padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.hero-h1 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; line-height: .96;
  font-size: clamp(42px, 6.4vw, 104px); color: var(--ink); margin: 20px 0 0;
}
.hero-h1 .em { color: var(--orange); font-style: italic; }
.hero-h1 .leaf { color: var(--green-600); }
.hero-bn {
  display: block; font-family: var(--font-bn); font-weight: 700; line-height: 1.1;
  font-size: clamp(24px, 3.4vw, 52px); color: var(--green-700); margin-top: 30px;
}
.hero-sub { max-width: 560px; margin: 26px auto 0; font-size: clamp(15px,1.4vw,18px); color: var(--ink-soft); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* story steps (1-3) */
.hero-story { color: #fff; max-width: 720px; margin: 0 auto; }
.hero-story .idx {
  font-size: 13px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-soft);
}
.hero-story h2 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.0;
  font-size: clamp(36px, 6vw, 92px); margin: 16px 0 0; text-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.hero-story p { max-width: 560px; margin: 20px auto 0; font-size: clamp(15px,1.5vw,19px); color: rgba(255,255,255,.86); }
.hero-story .hero-cta { margin-top: 28px; }

/* progress rail + scroll cue */
.hero-rail {
  position: absolute; right: clamp(16px, 3vw, 42px); top: 50%; transform: translateY(-50%);
  z-index: 6; display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.hero-rail .r {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(22,40,45,.2);
  transition: background .3s, transform .3s, box-shadow .3s; position: relative;
}
.hero-rail .r.on { background: var(--orange); transform: scale(1.5); box-shadow: 0 0 0 4px rgba(243,112,31,.18); }
.hero-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft);
  transition: opacity .4s;
}
.hero-cue .ch { width: 22px; height: 36px; border: 1.5px solid var(--ink-soft); border-radius: 999px; position: relative; }
.hero-cue .ch::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; border-radius: 4px;
  background: var(--orange); transform: translateX(-50%); animation: cue 1.5s var(--ease) infinite;
}
@keyframes cue { 0%{opacity:0; top:7px} 40%{opacity:1} 100%{opacity:0; top:18px} }

/* ================= MARQUEE ================= */
.marquee {
  background: var(--green-900); color: var(--cream); overflow: hidden;
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 10;
}
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: slide 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .it {
  display: inline-flex; align-items: center; gap: 24px; padding: 0 24px;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(20px,2.4vw,34px); letter-spacing: -.01em;
}
.marquee .star { color: var(--gold-bright); font-size: .7em; }
@keyframes slide { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ================= STATS ================= */
.stats { background: var(--cream); padding: clamp(46px,6vw,84px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,28px); }
.stat { text-align: center; padding: 14px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1;
  font-size: clamp(40px, 5.2vw, 76px);
  background: linear-gradient(140deg, var(--green-700), var(--green-400)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .n .suf { color: var(--orange); -webkit-text-fill-color: var(--orange); }
.stat .l { margin-top: 10px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.stat .bn { display: block; font-size: 13px; color: var(--green-600); margin-top: 3px; letter-spacing: 0; }

/* ================= PRODUCTS ================= */
.products { background: var(--paper); padding: clamp(56px,7vw,108px) 0; position: relative; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: clamp(34px,4vw,56px); }
.pcard {
  position: relative; display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.pcard-media { position: relative; aspect-ratio: 1.05/1; background: radial-gradient(circle at 50% 60%, #fff, var(--cream)); overflow: hidden; }
.pcard-media img { position: absolute; inset: 8% 12%; width: 76%; height: 84%; object-fit: contain; filter: drop-shadow(0 20px 24px rgba(22,40,45,.12)); transition: transform 1s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.08) rotate(-2deg); }
.pcard-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; z-index: 2; }
.badge { font-size: 9.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; }
.badge.best { background: var(--gold-bright); color: var(--green-950); }
.badge.sale { background: var(--orange); color: #fff; }
.badge.new { background: var(--green-700); color: #fff; }
.fav {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border-radius: 999px;
  background: rgba(255,255,255,.9); color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: transform .25s, color .2s, background .2s;
}
.fav svg { width: 18px; height: 18px; }
.fav:hover { transform: scale(1.12); color: var(--orange); }
.fav.on { color: #fff; background: var(--orange); }
.fav.on svg { fill: currentColor; }
.pcard-body { display: flex; flex-direction: column; gap: 7px; padding: 18px 18px 20px; flex: 1; }
.pcard-cat { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--green-600); }
.pcard-title { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.1; color: var(--ink); }
.pcard-bn { font-family: var(--font-bn-body); font-size: 14px; color: var(--orange-deep); margin-top: -2px; }
.pcard-rate { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.pcard-rate .stars { color: var(--gold); letter-spacing: 1px; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 10px; }
.price { display: inline-flex; align-items: baseline; gap: 8px; }
.price .now { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink); }
.price .unit { font-size: 12px; font-weight: 600; color: var(--ink-mute); }
.price .was { font-size: 13px; color: var(--ink-mute); text-decoration: line-through; }
.add {
  display: inline-flex; align-items: center; gap: 0; overflow: hidden; border-radius: 999px;
  background: var(--green-700); color: #fff; padding: 10px; font-size: 12px; font-weight: 800; letter-spacing: .04em;
  transition: gap .4s var(--ease), background .25s, padding .4s, transform .2s;
}
.add svg { width: 16px; height: 16px; flex-shrink: 0; }
.add .lbl { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .45s var(--ease); }
.pcard:hover .add { gap: 8px; padding: 10px 16px 10px 14px; }
.pcard:hover .add .lbl { max-width: 120px; }
.add:hover { background: var(--orange); }
.add.added { background: var(--gold); color: var(--green-950); }

/* fly-to-cart dot */
.fly { position: fixed; z-index: 200; width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--orange)); pointer-events: none;
  box-shadow: 0 6px 16px rgba(243,112,31,.5); }

/* ================= MANGO VARIETY SPOTLIGHT ================= */
.variety { background: linear-gradient(165deg, var(--green-900), var(--green-950)); color: var(--cream); position: relative; overflow: hidden; padding: clamp(56px,7vw,116px) 0; }
.variety::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 480px at 88% 6%, rgba(199,154,60,.18), transparent 60%),
              radial-gradient(640px 460px at 4% 96%, rgba(243,112,31,.14), transparent 60%);
  pointer-events: none;
}
.variety .wrap { position: relative; z-index: 2; }
.variety .sec-head h2 { color: var(--cream); }
.variety .sec-head .lead { color: rgba(251,244,230,.66); }
.variety-stage { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px,4vw,64px); align-items: center; margin-top: clamp(34px,4vw,56px); }

.variety-visual { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.variety-disc {
  position: absolute; width: 84%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, rgba(255,255,255,.16), rgba(255,255,255,.02) 60%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.variety-ring { position: absolute; width: 96%; aspect-ratio: 1; border-radius: 50%; border: 1px dashed rgba(224,184,90,.3); animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.variety-fruit {
  position: relative; z-index: 3; width: 78%; aspect-ratio: 1; object-fit: contain;
  filter: drop-shadow(0 50px 45px rgba(0,0,0,.46));
  transition: opacity .5s var(--ease), transform .7s var(--ease);
}
.variety-fruit.swap { opacity: 0; transform: scale(.86) rotate(-6deg); }
/* Real product photos (object storage) are rectangular — crop them into a clean circle
   that sits inside the disc so the rectangle corners never overlap the ring/disc. */
.variety-fruit.is-photo {
  width: 74%; object-fit: cover; border-radius: 50%;
  box-sizing: border-box; border: 5px solid rgba(251,244,230,.92);
  background: var(--green-900);
  filter: drop-shadow(0 34px 38px rgba(0,0,0,.46));
}
.variety-price-tag {
  position: absolute; right: 4%; bottom: 8%; z-index: 4; background: var(--cream); color: var(--green-950);
  border-radius: 16px; padding: 12px 18px; box-shadow: var(--shadow-lg); text-align: center; min-width: 116px;
}
.variety-price-tag .now { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1; }
.variety-price-tag .unit { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-600); margin-top: 3px; }

.variety-info { min-height: 1px; }
.variety-name { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: .98; font-size: clamp(40px,5.4vw,82px); color: var(--cream); }
.variety-name .bn { display: block; font-family: var(--font-bn); font-size: clamp(24px,3vw,44px); color: var(--gold-bright); margin-top: 4px; font-weight: 700; }
.variety-desc { max-width: 480px; margin-top: 18px; color: rgba(251,244,230,.8); font-size: clamp(15px,1.4vw,18px); }
.variety-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 26px; }
.vmeta .k { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
.vmeta .v { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--cream); margin-top: 4px; }
.sweet { display: flex; align-items: center; gap: 4px; margin-top: 6px; }
.sweet i { width: 18px; height: 6px; border-radius: 3px; background: rgba(255,255,255,.16); transition: background .4s; }
.sweet i.on { background: var(--gold-bright); }

.variety-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.vtab {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: rgba(251,244,230,.75);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); transition: all .3s var(--ease);
}
.vtab .bn { font-family: var(--font-bn-body); font-weight: 600; opacity: .8; }
.vtab:hover { box-shadow: inset 0 0 0 1px var(--gold-bright); color: var(--cream); }
.vtab.on { background: var(--gold-bright); color: var(--green-950); box-shadow: none; }
.vtab.on .bn { opacity: 1; }
.variety-progress { margin-top: 22px; height: 3px; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; max-width: 480px; }
.variety-progress i { display: block; height: 100%; width: 0; background: var(--gold-bright); }

/* ================= FOOTER (slim) ================= */
.foot { background: var(--green-950); color: rgba(251,244,230,.7); padding: 56px 0 40px; }
.foot-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot img { height: 40px; }
.foot .note { font-size: 13px; max-width: 460px; }
.foot a.up { color: var(--gold-bright); font-weight: 700; }

/* toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(140%);
  z-index: 210; background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); display: inline-flex; align-items: center; gap: 10px;
  transition: transform .5s var(--ease);
}
.toast .ic { color: var(--gold-bright); display: inline-flex; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ================= FARM-TO-TABLE VIDEO BAND ================= */
.videoband {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  overflow: hidden; color: var(--cream);
}
.videoband-bg { position: absolute; inset: -10% 0; background-size: cover; background-position: center; will-change: transform; }
.videoband-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .82;
}
.videoband-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(6,36,23,.86) 0%, rgba(6,36,23,.55) 45%, rgba(8,51,32,.35) 100%);
}
.videoband .wrap { position: relative; z-index: 2; width: 100%; }
.videoband-inner { max-width: 760px; }
.videoband h2 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.0;
  font-size: clamp(36px, 5.4vw, 80px); margin: 18px 0 0; text-shadow: 0 10px 40px rgba(0,0,0,.4);
}
.videoband p { max-width: 520px; margin-top: 20px; font-size: clamp(15px,1.5vw,19px); color: rgba(251,244,230,.82); }
.videoband-play {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 36px; color: var(--cream);
}
.videoband-play .circ {
  position: relative; width: 78px; height: 78px; border-radius: 999px; flex-shrink: 0;
  background: var(--cream); color: var(--green-800); display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 50px rgba(0,0,0,.4); transition: transform .35s var(--ease), background .25s, color .25s;
}
.videoband-play .circ svg { width: 26px; height: 26px; margin-left: 4px; }
.videoband-play:hover .circ { transform: scale(1.07); background: var(--gold-bright); }
.videoband-play .circ::before {
  content: ""; position: absolute; inset: -10px; border-radius: 999px; border: 1.5px solid rgba(251,244,230,.4);
  animation: ripple 2.6s ease-out infinite;
}
@keyframes ripple { 0%{transform:scale(.85);opacity:1} 100%{transform:scale(1.5);opacity:0} }
.videoband-play .txt b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.videoband-play .txt span { font-size: 13px; color: rgba(251,244,230,.7); }
.videoband-stats { display: flex; gap: clamp(24px,4vw,56px); margin-top: 48px; flex-wrap: wrap; }
.videoband-stats .vs .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px,3.4vw,48px); color: var(--gold-soft); }
.videoband-stats .vs .l { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,244,230,.65); margin-top: 2px; }

/* cinemagraph modal */
.video-modal {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 5vw; background: rgba(6,20,13,.8); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.video-modal.open { opacity: 1; pointer-events: auto; }
.video-frame {
  position: relative; width: min(1100px, 100%); aspect-ratio: 16/9; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-lg); transform: scale(.94); transition: transform .5s var(--ease); background: #000;
}
.video-modal.open .video-frame { transform: scale(1); }
.video-frame .farm-film { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-frame .vgrad { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 58%, rgba(6,20,13,.54)); }
.video-frame .cap {
  position: absolute; left: 26px; bottom: 22px; z-index: 2; color: var(--cream); display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.video-frame .cap .live { width: 8px; height: 8px; border-radius: 999px; background: var(--orange); box-shadow: 0 0 0 4px rgba(243,112,31,.25); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35 } }
.video-close {
  position: absolute; top: 16px; right: 16px; z-index: 4; width: 44px; height: 44px; border-radius: 999px; background: rgba(251,244,230,.92);
  color: var(--green-900); display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.28); backdrop-filter: blur(8px);
}
.video-close svg { width: 20px; height: 20px; }

/* ================= WHY SHORITU (sticky brand story) ================= */
.why { position: relative; background: var(--cream); }
.why-track { height: 360vh; }
.why-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,80px); align-items: center; width: 100%; }
.why-visual { position: relative; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity 1s var(--ease-soft), transform 1.4s var(--ease-soft); }
.why-img.show { opacity: 1; transform: scale(1); }
.why-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,36,23,.55)); }
.why-badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2; color: var(--cream);
  font-family: var(--font-bn); font-weight: 700; font-size: clamp(20px,2.4vw,30px);
}
.why-text { position: relative; }
.why-counter { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .1em; color: var(--green-600); }
.why-counter b { color: var(--ink); font-size: 19px; }
.why-steps { position: relative; margin-top: 14px; min-height: 260px; }
.why-step { position: absolute; inset: 0; opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); pointer-events: none; }
.why-step.active { opacity: 1; transform: none; pointer-events: auto; }
.why-step h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.02; font-size: clamp(30px,3.6vw,56px); color: var(--ink); }
.why-step .bn { display: block; font-family: var(--font-bn); font-size: clamp(18px,2vw,26px); color: var(--orange-deep); margin-top: 8px; font-weight: 600; }
.why-step p { max-width: 460px; margin-top: 16px; color: var(--ink-soft); font-size: clamp(15px,1.4vw,18px); }
.why-rail { display: flex; gap: 10px; margin-top: 32px; }
.why-rail .seg { width: 46px; height: 4px; border-radius: 99px; background: var(--line); overflow: hidden; }
.why-rail .seg i { display: block; height: 100%; width: 0; background: var(--green-600); }
.why-rail .seg.done i { width: 100%; }

/* ================= REVIEWS ================= */
.reviews { background: var(--cream); padding: clamp(56px,7vw,108px) 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(34px,4vw,56px); }
.rcard {
  display: flex; flex-direction: column; gap: 16px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 22px; padding: 30px; transition: transform .4s var(--ease), box-shadow .4s;
}
.rcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rcard.feat { grid-row: span 2; background: linear-gradient(165deg, var(--green-800), var(--green-950)); border-color: rgba(255,255,255,.08); color: var(--cream); justify-content: space-between; }
.rcard .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.rcard .tag { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green-600); }
.rcard.feat .tag { color: var(--gold-bright); }
.rcard .quote { font-family: var(--font-display); font-weight: 600; font-size: 21px; line-height: 1.3; color: var(--ink); }
.rcard.feat .quote { font-size: clamp(24px,2.2vw,32px); color: var(--cream); }
.rcard .quote-bn { font-family: var(--font-bn-body); font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.rcard.feat .quote-bn { color: rgba(251,244,230,.78); }
.rcard .author { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.rcard.feat .author { border-top-color: rgba(255,255,255,.12); }
.rcard .avatar { width: 46px; height: 46px; border-radius: 999px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--gold-bright); color: var(--green-950); font-weight: 800; font-size: 15px; object-fit: cover; }
.rcard.feat .avatar { background: var(--gold); }
.rcard .who b { display: block; color: var(--ink); font-weight: 700; font-size: 15px; }
.rcard .who span { font-size: 13px; color: var(--ink-mute); }
.rcard.feat .who b { color: var(--cream); }
.rcard.feat .who span { color: rgba(251,244,230,.6); }

/* ================= BLOG / STORIES ================= */
.blogsec { background: var(--paper); padding: clamp(56px,7vw,108px) 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(34px,4vw,56px); }
.bcard { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); transition: transform .45s var(--ease), box-shadow .45s; cursor: pointer; }
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bcard-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.bcard-media .img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.1s var(--ease); }
.bcard:hover .bcard-media .img { transform: scale(1.08); }
.bcard-cat { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(251,244,230,.92); color: var(--green-800); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; }
.bcard-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 26px; flex: 1; }
.bcard-meta { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--ink-mute); }
.bcard h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.16; color: var(--ink); }
.bcard p { color: var(--ink-soft); font-size: 14.5px; }
.bcard .more { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-weight: 700; font-size: 14px; }
.bcard .more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.bcard:hover .more svg { transform: translateX(4px); }

/* ================= FULL FOOTER ================= */
.footer { background: var(--green-950); color: rgba(251,244,230,.66); padding: clamp(56px,7vw,96px) 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: clamp(28px,4vw,56px); }
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; font-size: 14.5px; line-height: 1.7; }
.footer-brand .bn-body { color: var(--gold-soft); display: block; margin-top: 12px; }
.footer-col h4 { color: var(--cream); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 7px 0; font-size: 14.5px; color: rgba(251,244,230,.66); transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer-news p { font-size: 14.5px; margin-bottom: 16px; }
.footer-news .field { display: flex; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 6px 6px 6px 18px; }
.footer-news input { flex: 1; background: none; border: none; outline: none; color: var(--cream); font-size: 14px; font-family: inherit; }
.footer-news input::placeholder { color: rgba(251,244,230,.45); }
.footer-news button { background: var(--orange); color: #fff; border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: 13px; transition: background .2s, transform .2s; }
.footer-news button:hover { background: var(--gold-bright); color: var(--green-950); transform: translateX(2px); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); color: var(--cream); transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--gold-bright); color: var(--green-950); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: clamp(40px,5vw,64px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.footer-bot .pays { display: flex; gap: 8px; align-items: center; }
.footer-bot .pays span { padding: 5px 11px; border-radius: 7px; background: rgba(255,255,255,.07); font-size: 11px; font-weight: 700; letter-spacing: .04em; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line); padding-bottom: 22px; }
  .variety-stage { grid-template-columns: 1fr; }
  .variety-visual { max-width: 440px; margin: 0 auto; }
  .cart .label, .cart .price { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .why { padding-top: clamp(40px, 6vw, 72px); }
  .why-sticky { position: static; height: auto; min-height: 0; padding: 0; align-items: flex-start; }
  .why-track { height: auto; }
  .why-visual { max-width: 380px; }
  .hero-fruits { display: none !important; }
  .why-steps { position: static; min-height: 0; display: grid; gap: 22px; }
  .why-step { position: static; opacity: 1; transform: none; pointer-events: auto; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
  .why-step:last-child { border-bottom: none; }
  .why-rail { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .rcard.feat { grid-row: span 1; grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand, .footer-news { grid-column: span 2; }
}

@media (max-width: 720px) {
  :root { --pad: 18px; }
  .hero { height: 420vh; }
  .hero-rail { right: 12px; }
  .ff-left { width: clamp(280px, 72vw, 420px); left: -190px; bottom: -92px; }
  .ff-right { width: clamp(280px, 72vw, 420px); right: -190px; bottom: -92px; }
  .ff-top { width: clamp(300px, 74vw, 440px); top: -230px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pcard-title { font-size: 17px; }
  .price .now { font-size: 19px; }
  .marquee .it { font-size: 22px; gap: 18px; }
  .variety-meta { gap: 18px; }
  .logo img { height: 34px; }
  .foot-in { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rcard.feat { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer { padding: 36px 0 24px !important; }
  .footer-top { grid-template-columns: 1fr; gap: 28px !important; }
  .footer-brand { grid-column: span 1; }
  .footer-brand img { margin-bottom: 12px !important; }
  .footer-brand p { margin-bottom: 8px !important; font-size: 13.5px !important; line-height: 1.6 !important; }
  .footer-brand .bn-body { margin-top: 8px !important; }
  .footer-social { margin-top: 14px !important; }
  .footer-social a { width: 34px !important; height: 34px !important; }
  .footer-col h4 { margin-bottom: 10px !important; font-size: 11px !important; }
  .footer-col a { padding: 4px 0 !important; font-size: 13.5px !important; }
  .footer-col-account, .footer-col-corporate {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 16px !important;
  }
  .footer-col-account h4, .footer-col-corporate h4 {
    grid-column: span 2 !important;
  }
  .footer-news { grid-column: span 1; }
  .footer-news h4 { margin-bottom: 10px !important; font-size: 11px !important; }
  .footer-news p { font-size: 13.5px !important; margin-bottom: 10px !important; }
  .footer-news .field { padding: 4px 4px 4px 14px !important; }
  .footer-news button { padding: 8px 14px !important; font-size: 12px !important; }
  .footer-bot { margin-top: 24px !important; padding-top: 16px !important; }
  .videoband { min-height: 76vh; }
  .videoband-stats { gap: 24px; }
}

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

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .variety-ring, .hero-cue .ch::after,
  .videoband-play .circ::before, .video-frame .cap .live { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
