/* =================================================================
   BioBizz — Эко-пчеловодство
   Honey landing · GSAP + Three.js + Lenis
   ================================================================= */

/* ---------- RESET ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
img,svg{display:block;max-width:100%}
button{font:inherit;color:inherit;background:none;border:none;cursor:pointer}
a{color:inherit;text-decoration:none}
ul{list-style:none}
::selection{background:var(--honey);color:var(--ink)}

/* ---------- TOKENS ---------- */
:root{
  --ink:#150c02;
  --ink-2:#1f1306;
  --ink-soft:#2a1a09;
  --cream:#f7eed8;
  --cream-2:#efe1c2;
  --cream-3:#e6d4ac;
  --honey:#f2a200;
  --honey-2:#ffb52e;
  --honey-glow:#ffcf63;
  --amber:#c87616;
  --propolis:#5c3a17;
  --meadow:#8a934f;
  --sky:#9bbcd0;

  --line-d:rgba(247,238,216,.14);
  --line-l:rgba(21,12,2,.14);

  --font-serif:"Cormorant Garamond",Georgia,serif;
  --font-sans:"Manrope",system-ui,sans-serif;
  --font-mega:"Unbounded","Manrope",sans-serif;

  --pad:clamp(1.25rem,5vw,7rem);
  --maxw:1600px;
  --ease:cubic-bezier(.22,1,.36,1);
  --comb:url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f2a200' fill-opacity='0.10' fill-rule='evenodd'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- BASE ---------- */
html{background:var(--ink)}
body{
  font-family:var(--font-sans);
  background:var(--ink);
  color:var(--cream);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.ic{width:1em;height:1em;fill:none;stroke:currentColor;flex:none}
/* sprite symbols carry their own fill/stroke */
.ic use{}

/* hide native cursor on fine pointers (custom cursor takes over) */
@media (hover:hover) and (pointer:fine){
  body{cursor:none}
  a,button,[data-magnetic]{cursor:none}
}

/* ---------- TYPE UTILITIES ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:.6em;
  font-size:.72rem;font-weight:600;letter-spacing:.28em;text-transform:uppercase;
  color:var(--honey-2);
}
.eyebrow .ic{width:1.15em;height:1.15em;color:var(--honey)}
.eyebrow--center{justify-content:center}

.sec-head{
  display:flex;align-items:baseline;gap:1rem;
  padding-bottom:clamp(2rem,5vw,4rem);
  font-weight:600;letter-spacing:.22em;text-transform:uppercase;font-size:.72rem;
  color:var(--amber);
}
.sec-head .sec-index{
  font-family:var(--font-mega);font-weight:700;font-size:.9rem;letter-spacing:0;
  color:var(--honey);
}
.sec-head--light{color:rgba(247,238,216,.6)}
.sec-head--light .sec-index{color:var(--honey-2)}

.h-display{
  font-family:var(--font-serif);
  font-weight:600;
  font-size:clamp(2.4rem,6vw,5.4rem);
  line-height:1.02;
  letter-spacing:-.01em;
}
.price{font-family:var(--font-sans);font-weight:800;letter-spacing:-.02em}
.price i{font-style:normal;font-weight:600;opacity:.7;margin-left:.12em}

/* ---------- BUTTONS ---------- */
.btn{
  position:relative;display:inline-flex;align-items:center;gap:.7em;
  padding:1.05em 1.6em;border-radius:100px;
  font-weight:700;font-size:.92rem;letter-spacing:.01em;
  transition:transform .5s var(--ease),background .4s,color .4s,box-shadow .4s;
  will-change:transform;
}
.btn .ic{width:1.05em;height:1.05em;transition:transform .45s var(--ease)}
.btn--primary{
  background:linear-gradient(100deg,var(--honey-2),var(--honey) 55%,var(--amber));
  color:#241200;
  box-shadow:0 10px 34px -12px rgba(242,162,0,.7), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 18px 48px -14px rgba(242,162,0,.9)}
.btn--primary:hover .ic{transform:translateX(4px)}
.btn--lg{padding:1.25em 2.1em;font-size:1.05rem}
.btn--ghost{border:1px solid var(--line-d);color:var(--cream)}
.btn--ghost:hover{border-color:var(--honey);color:var(--honey-2);transform:translateY(-2px)}
.btn--ghost-dark{border-color:var(--line-l);color:var(--ink)}
.btn--ghost-dark:hover{border-color:var(--amber);color:var(--amber)}

.iconbtn{
  display:grid;place-items:center;width:2.9rem;height:2.9rem;border-radius:50%;
  background:var(--ink);color:var(--honey-2);
  transition:transform .45s var(--ease),background .35s,color .35s;
  flex:none;
}
.iconbtn .ic{width:1.15rem;height:1.15rem;stroke-width:2.2}
.iconbtn:hover{transform:scale(1.12) rotate(90deg);background:var(--honey);color:var(--ink)}

/* ---------- CUSTOM CURSOR ---------- */
.cursor{
  position:fixed;top:0;left:0;z-index:9000;pointer-events:none;
  width:14px;height:14px;border-radius:50%;
  background:var(--honey);
  mix-blend-mode:difference;
  transform:translate(-50%,-50%);
  transition:width .35s var(--ease),height .35s var(--ease),background .3s,opacity .3s;
  display:none;
}
@media (hover:hover) and (pointer:fine){.cursor{display:grid;place-items:center}}
.cursor.is-hover{width:74px;height:74px;mix-blend-mode:normal;background:rgba(242,162,0,.18);
  border:1px solid var(--honey)}
.cursor.is-down{transform:translate(-50%,-50%) scale(.8)}
.cursor__label{
  font-family:var(--font-sans);font-size:.62rem;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--honey-2);opacity:0;transition:opacity .25s;white-space:nowrap;
}
.cursor.is-hover .cursor__label{opacity:1}

/* ---------- SCROLL PROGRESS DROP ---------- */
.progress{position:fixed;right:clamp(1rem,2vw,2rem);bottom:clamp(1rem,3vw,2.4rem);z-index:120;width:34px;height:50px}
.progress svg{width:100%;height:100%;overflow:visible}
.progress path{fill:none;stroke:var(--line-d);stroke-width:2}
.progress .fillpath{stroke:var(--honey)}
@media (max-width:740px){.progress{display:none}}

/* =================================================================
   PRELOADER
   ================================================================= */
.preloader{
  position:fixed;inset:0;z-index:10000;
  background:radial-gradient(120% 120% at 50% 0%,#22150a,var(--ink) 70%);
  display:grid;place-content:center;justify-items:center;gap:1.4rem;
  text-align:center;
}
.preloader::after{content:"";position:absolute;inset:0;background-image:var(--comb);background-size:34px;opacity:.5;pointer-events:none}
.preloader__mark{position:relative;width:84px;height:84px;display:grid;place-items:center;color:var(--honey)}
.preloader__hex{position:absolute;inset:0;width:84px;height:84px;fill:none;stroke:var(--honey);stroke-width:2;
  stroke-dasharray:300;stroke-dashoffset:300;animation:hexdraw 1.6s var(--ease) forwards;opacity:.55}
@keyframes hexdraw{to{stroke-dashoffset:0}}
.preloader__mark .ic{width:38px;height:38px;color:var(--honey-2);animation:beepulse 1.6s ease-in-out infinite}
@keyframes beepulse{50%{transform:translateY(-4px) rotate(-4deg)}}
.preloader__word{font-family:var(--font-serif);font-weight:600;font-size:clamp(2.4rem,7vw,3.6rem);color:var(--cream);letter-spacing:.01em}
.preloader__word span{color:var(--honey-2);font-style:italic}
.preloader__count{font-family:var(--font-mega);font-weight:700;font-size:1rem;color:var(--honey)}
.preloader__count i{font-style:normal;opacity:.6}
.preloader__bar{width:min(240px,60vw);height:2px;background:var(--line-d);overflow:hidden;border-radius:2px}
.preloader__bar span{display:block;height:100%;width:0;background:var(--honey)}
.preloader__tag{font-size:.66rem;letter-spacing:.4em;text-transform:uppercase;color:rgba(247,238,216,.4)}

/* =================================================================
   NAV
   ================================================================= */
.nav{position:fixed;top:0;left:0;width:100%;z-index:200;
  transition:transform .5s var(--ease),background .4s,backdrop-filter .4s,border-color .4s;
  border-bottom:1px solid transparent}
.nav.is-scrolled{background:rgba(21,12,2,.72);backdrop-filter:blur(14px);border-color:var(--line-d)}
.nav.is-hidden{transform:translateY(-100%)}
.nav__inner{max-width:var(--maxw);margin:0 auto;padding:1.1rem var(--pad);
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem}
.nav__logo{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--font-serif);font-size:1.5rem;font-weight:600}
.nav__logo .ic{width:1.5rem;height:1.5rem;color:var(--honey)}
.nav__logo span{display:flex;flex-direction:column;line-height:.95}
.nav__logo i{font-style:normal;font-family:var(--font-sans);font-size:.52rem;font-weight:600;
  letter-spacing:.34em;text-transform:uppercase;color:var(--honey-2);margin-top:.15em}
.nav__links{display:flex;gap:2rem;font-size:.85rem;font-weight:500}
.nav__links a{position:relative;padding:.3em 0;color:rgba(247,238,216,.78);transition:color .3s}
.nav__links a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--honey);transition:width .4s var(--ease)}
.nav__links a:hover{color:var(--cream)}
.nav__links a:hover::after{width:100%}
.nav__cta{display:inline-flex;align-items:center;gap:.5em;padding:.7em 1.2em;border-radius:100px;
  background:var(--honey);color:#241200;font-weight:700;font-size:.82rem;
  transition:transform .45s var(--ease),box-shadow .4s}
.nav__cta .ic{width:1em;height:1em;transition:transform .4s var(--ease)}
.nav__cta:hover{transform:translateY(-2px);box-shadow:0 12px 30px -10px rgba(242,162,0,.8)}
.nav__cta:hover .ic{transform:translateX(3px)}
.nav__burger{display:none;flex-direction:column;gap:5px;width:34px;height:34px;align-items:center;justify-content:center}
.nav__burger i{width:22px;height:2px;background:var(--cream);transition:transform .4s var(--ease),opacity .3s}
.nav.is-open .nav__burger i:nth-child(1){transform:translateY(3.5px) rotate(45deg)}
.nav.is-open .nav__burger i:nth-child(2){transform:translateY(-3.5px) rotate(-45deg)}

/* =================================================================
   HERO
   ================================================================= */
.hero{position:relative;min-height:100svh;display:flex;flex-direction:column;justify-content:center;
  padding:8rem var(--pad) 4rem;overflow:hidden;isolation:isolate}
.hero__webgl{position:absolute;inset:0;z-index:-2}
.hero__webgl canvas{display:block;width:100%!important;height:100%!important}
.hero__glow{position:absolute;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(60% 50% at 78% 30%,rgba(242,162,0,.22),transparent 70%),
    radial-gradient(80% 70% at 10% 90%,rgba(92,58,23,.4),transparent 70%);
}
.hero::after{content:"";position:absolute;inset:0;z-index:-1;background-image:var(--comb);background-size:38px;opacity:.35;pointer-events:none;
  mask-image:radial-gradient(70% 70% at 50% 40%,#000,transparent)}
.hero__grid{width:100%;max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(2rem,5vw,5rem);align-items:center}

.hero__title{font-family:var(--font-serif);font-weight:600;
  font-size:clamp(3.4rem,9.5vw,9.5rem);line-height:.9;letter-spacing:-.02em;
  margin:1.6rem 0 1.8rem}
.hero__title .line{display:block;overflow:hidden}
.hero__title em{font-style:italic;color:var(--honey-2)}
.hero__title .line--accent{
  color:transparent;-webkit-text-stroke:1.4px var(--honey);text-stroke:1.4px var(--honey);
  font-style:italic;font-weight:500;
}
.hero__sub{max-width:34ch;font-size:clamp(1rem,1.3vw,1.18rem);color:rgba(247,238,216,.82);line-height:1.6}
.hero__actions{display:flex;flex-wrap:wrap;gap:1rem;margin:2.2rem 0 2rem}
.hero__trust{display:flex;flex-wrap:wrap;gap:1.4rem;font-size:.82rem;color:rgba(247,238,216,.62);font-weight:500}
.hero__trust li{display:inline-flex;align-items:center;gap:.5em}
.hero__trust .ic{width:1.2em;height:1.2em;color:var(--honey)}

.hero__visual{position:relative}
.hero__photo{position:relative;border-radius:18px;overflow:hidden;aspect-ratio:3/4;
  box-shadow:0 50px 90px -40px rgba(0,0,0,.9), 0 0 0 1px var(--line-d);
  will-change:transform}
.hero__photo img{width:100%;height:120%;object-fit:cover;margin-top:-10%}
.hero__photo::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(21,12,2,.5))}
.hero__badge{position:absolute;left:1rem;bottom:1rem;z-index:2;display:flex;align-items:center;gap:.7rem;
  padding:.7rem 1rem;border-radius:14px;background:rgba(21,12,2,.55);backdrop-filter:blur(8px);
  border:1px solid var(--line-d)}
.hero__badge .ic{width:1.6rem;height:1.6rem;color:var(--honey-2)}
.hero__badge span{display:flex;flex-direction:column;font-size:.72rem;color:rgba(247,238,216,.7);line-height:1.3}
.hero__badge b{color:var(--cream);font-size:.92rem;font-weight:700}
.hero__chip{position:absolute;z-index:3;padding:.7rem 1rem;border-radius:12px;font-size:.78rem;font-weight:600;
  background:var(--cream);color:var(--ink);box-shadow:0 16px 40px -16px rgba(0,0,0,.7)}
.hero__chip b{color:var(--amber)}
.hero__chip--1{top:8%;right:-4%}
.hero__chip--2{bottom:14%;right:-7%}
.hero__scroll{position:absolute;left:var(--pad);bottom:1.6rem;display:inline-flex;align-items:center;gap:.6rem;
  font-size:.68rem;letter-spacing:.3em;text-transform:uppercase;color:rgba(247,238,216,.55)}
.hero__scroll .ic{width:1.3rem;height:1.3rem;color:var(--honey);animation:bob 1.8s ease-in-out infinite}
@keyframes bob{50%{transform:translateY(6px)}}

/* =================================================================
   MARQUEE
   ================================================================= */
.marquee{border-block:1px solid var(--line-d);padding:1.1rem 0;overflow:hidden;background:var(--ink-2)}
.marquee__track{display:flex;align-items:center;width:max-content;will-change:transform}
.marquee__track>*{margin-right:2.4rem;flex:none}
.marquee__track span{font-family:var(--font-serif);font-style:italic;font-size:clamp(1.6rem,3vw,2.6rem);color:var(--cream);white-space:nowrap}
.marquee__track .ic{width:clamp(1.1rem,2vw,1.7rem);height:clamp(1.1rem,2vw,1.7rem);color:var(--honey)}

/* =================================================================
   SECTION SHELL
   ================================================================= */
section{position:relative}
.philosophy,.principles,.products,.sets,.reviews{max-width:var(--maxw);margin:0 auto;padding:clamp(5rem,11vw,10rem) var(--pad)}

/* =================================================================
   PHILOSOPHY / DIAGONAL TYPE
   ================================================================= */
.philosophy{overflow:hidden}
.diag{position:relative;margin:clamp(2rem,5vw,4rem) 0 clamp(3rem,7vw,6rem);
  transform:rotate(-6deg) scale(1.08);transform-origin:center;will-change:transform}
.diag__row{overflow:hidden;display:flex;padding:.1em 0}
.diag__flow{display:flex;align-items:center;width:max-content;white-space:nowrap;will-change:transform;
  font-family:var(--font-mega);font-weight:800;text-transform:uppercase;letter-spacing:-.02em;
  font-size:clamp(2.4rem,9vw,8.5rem);line-height:1.06}
.diag__flow>*{margin-right:clamp(1.4rem,4vw,4rem);flex:none}
.diag__flow .ic{width:.62em;height:.62em;color:var(--honey)}
.diag__flow--fill span{color:var(--cream)}
.diag__flow--out span{color:transparent;-webkit-text-stroke:1.5px var(--amber);text-stroke:1.5px var(--amber)}
.diag__flow--out .ic{fill:var(--honey);stroke:none}
.philosophy__body{display:grid;grid-template-columns:1.2fr .8fr;gap:clamp(2rem,5vw,5rem);align-items:start}
.lede{font-family:var(--font-serif);font-size:clamp(1.5rem,2.6vw,2.4rem);line-height:1.34;color:var(--cream);font-weight:500}
.philosophy__sign{display:flex;gap:1rem;align-items:flex-start;padding-top:.5rem;
  border-top:1px solid var(--line-d)}
.philosophy__sign .ic{width:2.2rem;height:2.2rem;color:var(--honey);flex:none;margin-top:.2rem}
.philosophy__sign p{font-size:.98rem;color:rgba(247,238,216,.72);line-height:1.6}
.philosophy__sign b{color:var(--cream)}

/* =================================================================
   PROBLEM (cream)
   ================================================================= */
.problem{background:var(--cream);color:var(--ink);padding:clamp(5rem,11vw,10rem) var(--pad);
  border-radius:clamp(24px,4vw,48px) clamp(24px,4vw,48px) 0 0}
.problem .sec-head--light{color:rgba(21,12,2,.5)}
.problem .sec-head--light .sec-index{color:var(--amber)}
.problem__grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,6vw,6rem);align-items:center}
.problem__col .h-display{color:var(--ink);max-width:14ch}
.problem__text{margin:1.6rem 0;font-size:1.05rem;line-height:1.7;color:rgba(21,12,2,.74);max-width:46ch}
.pullquote{font-family:var(--font-serif);font-style:italic;font-size:clamp(1.3rem,2.2vw,1.8rem);line-height:1.4;
  color:var(--amber);padding-left:1.4rem;border-left:3px solid var(--honey);position:relative}
.pullquote .ic{width:1.4rem;height:1.4rem;color:var(--honey);position:absolute;left:-.7rem;top:-1.4rem;fill:var(--honey);stroke:none}

.compare{display:grid;grid-template-columns:1fr auto 1fr;gap:clamp(.6rem,1.5vw,1.4rem);align-items:stretch}
.compare__col{padding:1.8rem;border-radius:18px}
.compare__col h3{display:flex;align-items:center;gap:.5em;font-size:1rem;font-weight:800;margin-bottom:1.1rem;text-transform:uppercase;letter-spacing:.04em}
.compare__col h3 .ic{width:1.3em;height:1.3em}
.compare__col ul{display:flex;flex-direction:column;gap:.8rem;font-size:.92rem;line-height:1.4}
.compare__col li{padding-left:1rem;position:relative}
.compare__col li::before{content:"";position:absolute;left:0;top:.6em;width:5px;height:5px;border-radius:50%}
.compare__col--bad{background:#efe1c2;color:rgba(21,12,2,.62)}
.compare__col--bad h3{color:var(--propolis)}
.compare__col--bad li::before{background:rgba(92,58,23,.5)}
.compare__col--good{background:linear-gradient(160deg,var(--ink),var(--ink-soft));color:var(--cream)}
.compare__col--good h3{color:var(--honey-2)}
.compare__col--good li::before{background:var(--honey)}
.compare__vs{align-self:center;color:var(--amber)}
.compare__vs .ic{width:2.4rem;height:2.4rem}

/* =================================================================
   LAND (split media + panel)
   ================================================================= */
.land{background:var(--cream);color:var(--ink);display:grid;grid-template-columns:1fr 1fr;align-items:stretch}
.land__media{position:relative;overflow:hidden;min-height:60vh}
.land__media img{position:absolute;inset:0;width:100%;height:115%;object-fit:cover;will-change:transform}
.land__panel{padding:clamp(4rem,8vw,8rem) clamp(1.5rem,5vw,6rem)}
.land__panel .h-display{color:var(--ink);max-width:13ch;margin-bottom:1.4rem}
.land__text{font-size:1.05rem;line-height:1.7;color:rgba(21,12,2,.74);max-width:50ch}
.stats{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem;margin:2.6rem 0}
.stat{padding:1.4rem;border-radius:16px;background:#fff7e6;border:1px solid var(--line-l)}
.stat .ic{width:1.7rem;height:1.7rem;color:var(--amber);margin-bottom:.8rem}
.stat b{display:block;font-family:var(--font-mega);font-weight:700;font-size:clamp(1.6rem,3vw,2.3rem);color:var(--ink);line-height:1}
.stat span{font-size:.82rem;color:rgba(21,12,2,.6);margin-top:.4rem;display:block}
.land__note{display:flex;gap:.8rem;align-items:flex-start;font-size:.95rem;line-height:1.55;color:rgba(21,12,2,.7);
  padding:1.2rem 1.4rem;background:#fff7e6;border-radius:14px;border:1px dashed var(--amber)}
.land__note .ic{width:1.3rem;height:1.3rem;color:var(--amber);fill:var(--amber);stroke:none;flex:none;margin-top:.1rem}

/* =================================================================
   PRINCIPLES
   ================================================================= */
.principles__title{font-family:var(--font-serif);font-weight:600;font-size:clamp(2rem,4.5vw,3.6rem);
  line-height:1.05;max-width:18ch;margin-bottom:clamp(2.5rem,5vw,4rem)}
.principles__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,1.6vw,1.5rem)}
.principle{position:relative;padding:2.2rem 2rem 2.4rem;border-radius:20px;
  background:linear-gradient(170deg,var(--ink-2),var(--ink));border:1px solid var(--line-d);
  overflow:hidden;transition:transform .5s var(--ease),border-color .4s}
.principle::before{content:"";position:absolute;inset:0;background-image:var(--comb);background-size:30px;opacity:0;transition:opacity .5s}
.principle:hover{transform:translateY(-6px);border-color:rgba(242,162,0,.45)}
.principle:hover::before{opacity:.5}
.principle__no{font-family:var(--font-mega);font-weight:700;font-size:.85rem;color:var(--amber);opacity:.7}
.principle .ic{width:2.6rem;height:2.6rem;color:var(--honey);margin:1.2rem 0 1.4rem;position:relative}
.principle h3{font-family:var(--font-serif);font-size:1.6rem;font-weight:600;margin-bottom:.6rem;position:relative}
.principle p{font-size:.92rem;line-height:1.6;color:rgba(247,238,216,.68);position:relative}

/* =================================================================
   NUMBERS (dark band, big type)
   ================================================================= */
.numbers{background:linear-gradient(180deg,var(--ink),#0f0801);padding:clamp(5rem,11vw,10rem) var(--pad);overflow:hidden}
.numbers__head{max-width:var(--maxw);margin:0 auto clamp(3rem,6vw,5rem)}
.numbers__head .h-display{max-width:18ch}
.numbers__grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(2rem,5vw,5rem) clamp(2rem,6vw,7rem)}
.bignum{border-top:1px solid var(--line-d);padding-top:1.6rem}
.bignum b{display:block;font-family:var(--font-mega);font-weight:800;
  font-size:clamp(3rem,9vw,7rem);line-height:.9;letter-spacing:-.03em;
  background:linear-gradient(120deg,var(--honey-glow),var(--honey),var(--amber));
  -webkit-background-clip:text;background-clip:text;color:transparent;margin-bottom:.8rem}
.bignum>span{font-size:clamp(1rem,1.4vw,1.25rem);color:rgba(247,238,216,.7);line-height:1.5;max-width:30ch;display:block}
.bignum em{font-style:normal;color:var(--cream);font-weight:600}

/* =================================================================
   PRODUCTS
   ================================================================= */
.products__title,.sets__title,.reviews__title{font-family:var(--font-serif);font-weight:600;
  font-size:clamp(2.4rem,6vw,5rem);line-height:1;margin-bottom:clamp(2.5rem,5vw,4rem)}

.featured{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(1.5rem,4vw,4rem);align-items:center;
  background:linear-gradient(150deg,var(--ink-2),var(--ink));border:1px solid var(--line-d);
  border-radius:28px;padding:clamp(1rem,2vw,1.6rem);margin-bottom:clamp(2rem,4vw,3.5rem);overflow:hidden}
.featured__media{position:relative;border-radius:20px;overflow:hidden;aspect-ratio:4/5}
.featured__media img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--ease)}
.featured:hover .featured__media img{transform:scale(1.06)}
.featured__tag{position:absolute;top:1rem;left:1rem;display:inline-flex;align-items:center;gap:.4em;
  padding:.4em .8em;border-radius:100px;background:var(--honey);color:var(--ink);font-size:.7rem;font-weight:800;
  text-transform:uppercase;letter-spacing:.08em}
.featured__tag .ic{width:1em;height:1em;fill:var(--ink);stroke:none}
.featured__body{padding:1rem clamp(1rem,2vw,2rem) 1rem 0}
.featured__name{font-family:var(--font-serif);font-size:clamp(2rem,4vw,3.2rem);font-weight:600;line-height:1}
.featured__desc{margin:1.1rem 0 1.8rem;color:rgba(247,238,216,.72);line-height:1.65;max-width:48ch}
.featured__pickLabel{font-size:.75rem;text-transform:uppercase;letter-spacing:.18em;color:var(--amber);display:block;margin-bottom:.8rem}
.weights{display:flex;flex-wrap:wrap;gap:.6rem}
.weight{padding:.7em 1.1em;border-radius:100px;border:1px solid var(--line-d);font-size:.86rem;font-weight:600;
  color:rgba(247,238,216,.75);transition:all .3s var(--ease)}
.weight:hover{border-color:var(--honey);color:var(--cream)}
.weight.is-active{background:var(--honey);color:var(--ink);border-color:var(--honey)}
.featured__foot{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;margin-top:2rem;
  padding-top:1.6rem;border-top:1px solid var(--line-d)}
.featured__price{display:flex;align-items:baseline;gap:.15rem;flex-wrap:wrap}
.featured__price .price{font-size:clamp(2.2rem,4vw,3rem);color:var(--honey-2)}
.featured__price i{font-size:1.4rem;color:var(--honey-2);font-weight:600;font-style:normal}
.featured__price small{flex-basis:100%;font-size:.78rem;color:rgba(247,238,216,.5);font-weight:500;margin-top:.2rem}

.prodgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,1.6vw,1.5rem)}
.product{border:1px solid var(--line-d);border-radius:20px;overflow:hidden;background:var(--ink-2);
  transition:transform .5s var(--ease),border-color .4s;display:flex;flex-direction:column}
.product:hover{transform:translateY(-6px);border-color:rgba(242,162,0,.4)}
.product__media{aspect-ratio:4/3;overflow:hidden}
.product__media img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--ease)}
/* crop the corner watermark on the sourced holst photo */
.product__media img[src*="propolis-holst"]{object-position:left top;transform:scale(1.14);transform-origin:left top}
.product:hover .product__media img[src*="propolis-holst"]{transform:scale(1.19)}
.product:hover .product__media img{transform:scale(1.07)}
.product__info{padding:1.5rem 1.5rem 1.4rem;display:flex;flex-direction:column;flex:1}
.product__info h3{font-family:var(--font-serif);font-size:1.5rem;font-weight:600;line-height:1.05}
.product__info h3 span{font-family:var(--font-sans);font-size:.72rem;font-weight:600;color:var(--amber);
  text-transform:uppercase;letter-spacing:.1em;margin-left:.4em;vertical-align:middle}
.product__info p{font-size:.86rem;line-height:1.55;color:rgba(247,238,216,.62);margin:.7rem 0 1.3rem;flex:1}
.product__foot{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.product__foot .price{font-size:1.5rem;color:var(--cream)}
.product__foot .price i{font-size:.9rem}
.product--cta{background:linear-gradient(160deg,var(--honey),var(--amber));color:var(--ink);border:none}
.product__ctaInner{padding:2rem;display:flex;flex-direction:column;align-items:flex-start;gap:.6rem;height:100%;justify-content:center}
.product__ctaInner .ic{width:2.6rem;height:2.6rem;color:var(--ink)}
.product__ctaInner h3{font-family:var(--font-serif);font-size:1.8rem;font-weight:600}
.product__ctaInner p{font-size:.9rem;line-height:1.5;color:rgba(21,12,2,.7);margin-bottom:.6rem}

/* =================================================================
   TASTING (full-bleed image band)
   ================================================================= */
.tasting{position:relative;padding:clamp(6rem,14vw,12rem) var(--pad);color:var(--cream);overflow:hidden;isolation:isolate}
.tasting::before{content:"";position:absolute;inset:0;z-index:-2;
  background:url("../assets/products/set-roy.jpg") center/cover fixed}
.tasting::after{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(90deg,rgba(15,8,1,.92),rgba(15,8,1,.55))}
.tasting__inner{max-width:var(--maxw);margin:0 auto}
.tasting .h-display{max-width:16ch;margin-bottom:clamp(2.5rem,5vw,4rem)}
.tasting__steps{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1.5rem,3vw,3rem)}
.tstep{border-top:1px solid var(--honey);padding-top:1.4rem}
.tstep__no{font-family:var(--font-mega);font-weight:700;font-size:.85rem;color:var(--honey-2)}
.tstep h3{font-family:var(--font-serif);font-size:1.9rem;font-weight:600;margin:.5rem 0 .7rem}
.tstep p{font-size:.95rem;line-height:1.6;color:rgba(247,238,216,.8);max-width:30ch}

/* =================================================================
   SETS
   ================================================================= */
.sets__sub{max-width:52ch;color:rgba(247,238,216,.7);font-size:1.05rem;line-height:1.6;margin:-2rem 0 clamp(2.5rem,5vw,4rem)}
.sets__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,1.6vw,1.5rem)}
.set{border:1px solid var(--line-d);border-radius:20px;overflow:hidden;background:var(--ink-2);
  display:flex;flex-direction:column;transition:transform .5s var(--ease),border-color .4s}
.set:hover{transform:translateY(-6px);border-color:rgba(242,162,0,.4)}
.set__media{aspect-ratio:16/10;overflow:hidden}
.set__media img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--ease)}
.set:hover .set__media img{transform:scale(1.06)}
.set__body{padding:1.5rem;display:flex;flex-direction:column;flex:1;gap:.5rem}
.set__flag{display:inline-flex;align-items:center;gap:.4em;align-self:flex-start;
  padding:.35em .75em;border-radius:100px;font-size:.66rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;
  background:rgba(242,162,0,.16);color:var(--honey-2)}
.set__flag .ic{width:1em;height:1em}
.set__flag--gold{background:var(--honey);color:var(--ink)}
.set__flag--gold .ic{stroke:var(--ink)}
.set__body h3{font-family:var(--font-serif);font-size:1.8rem;font-weight:600;line-height:1}
.set__body p{font-size:.86rem;line-height:1.55;color:rgba(247,238,216,.62);flex:1}
.set__foot{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:.4rem}
.set__foot .price{font-size:1.5rem;color:var(--cream)}
.set__foot .price i{font-size:.9rem}
.set--feature{border-color:rgba(242,162,0,.45);background:linear-gradient(160deg,#241608,var(--ink-2))}
.set--max{grid-column:span 1;border-color:rgba(242,162,0,.5)}
.set--max .set__foot .price{color:var(--honey-2)}

/* =================================================================
   REVIEWS
   ================================================================= */
.reviews__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,1.6vw,1.5rem)}
.review{padding:2rem;border-radius:20px;border:1px solid var(--line-d);background:var(--ink-2);
  display:flex;flex-direction:column;gap:1.1rem;transition:transform .5s var(--ease),border-color .4s}
.review:hover{transform:translateY(-5px);border-color:rgba(242,162,0,.4)}
.review__stars{display:flex;gap:.25rem;color:var(--honey)}
.review__stars .ic{width:1rem;height:1rem;fill:var(--honey);stroke:none}
.review blockquote{font-family:var(--font-serif);font-size:1.25rem;line-height:1.45;color:var(--cream);font-style:italic;flex:1}
.review figcaption{display:flex;flex-direction:column;border-top:1px solid var(--line-d);padding-top:1rem}
.review figcaption b{font-weight:700}
.review figcaption span{font-size:.78rem;color:rgba(247,238,216,.5)}
.reviews__more{display:inline-flex;align-items:center;gap:.6em;margin-top:2.5rem;font-weight:700;color:var(--honey-2)}
.reviews__more .ic{width:1.1em;height:1.1em;transition:transform .4s var(--ease)}
.reviews__more:hover .ic{transform:translateX(5px)}

/* =================================================================
   ULEY
   ================================================================= */
.uley{background:var(--cream);color:var(--ink);padding:clamp(5rem,11vw,10rem) var(--pad);overflow:hidden}
.uley__inner{max-width:var(--maxw);margin:0 auto}
.uley .sec-head--light{color:rgba(21,12,2,.5)}
.uley .sec-head--light .sec-index{color:var(--amber)}
.uley__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,6vw,6rem);align-items:center}
.uley__lead .h-display{color:var(--ink);max-width:12ch;margin-bottom:1.2rem}
.uley__lead p{font-size:1.1rem;line-height:1.6;color:rgba(21,12,2,.72);max-width:40ch;margin-bottom:2rem}
.uley__list{display:flex;flex-direction:column;gap:1rem}
.uley__list li{display:flex;align-items:flex-start;gap:.9rem;font-size:1.05rem;line-height:1.45;
  padding:1.2rem 1.4rem;background:#fff7e6;border-radius:14px;border:1px solid var(--line-l)}
.uley__list .ic{width:1.4rem;height:1.4rem;color:var(--amber);flex:none;margin-top:.15rem;stroke-width:2.4}

/* =================================================================
   FINAL CTA
   ================================================================= */
.cta{position:relative;padding:clamp(6rem,14vw,12rem) var(--pad);text-align:center;overflow:hidden;isolation:isolate}
.cta__bg{position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(70% 90% at 50% 120%,rgba(242,162,0,.4),transparent 70%),
    radial-gradient(50% 60% at 50% -10%,rgba(92,58,23,.5),transparent 70%),
    var(--ink)}
.cta::after{content:"";position:absolute;inset:0;z-index:-1;background-image:var(--comb);background-size:42px;opacity:.4;
  mask-image:radial-gradient(60% 60% at 50% 60%,#000,transparent)}
.cta__inner{max-width:60rem;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:1.4rem}
.cta__title{font-family:var(--font-serif);font-weight:600;font-size:clamp(2.6rem,7.5vw,6.5rem);line-height:.98;letter-spacing:-.02em;text-align:center;max-width:18ch}
.cta__title .cword{padding:0 .04em}
.cta__sub{font-size:clamp(1rem,1.4vw,1.2rem);color:rgba(247,238,216,.75);max-width:42ch}
.cta__actions{margin:.8rem 0}
.cta__trust{display:inline-flex;align-items:flex-start;gap:.7rem;max-width:48ch;font-size:.86rem;line-height:1.5;
  color:rgba(247,238,216,.55);text-align:left;margin-top:1rem}
.cta__trust .ic{width:1.4rem;height:1.4rem;color:var(--honey);flex:none;margin-top:.1rem}

/* =================================================================
   FOOTER
   ================================================================= */
.footer{background:#0d0701;padding:clamp(4rem,8vw,7rem) var(--pad) 2rem;overflow:hidden}
.footer__top{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1fr 1.4fr;gap:3rem;
  padding-bottom:clamp(3rem,6vw,5rem)}
.footer__logo{font-family:var(--font-serif);font-size:clamp(2.5rem,5vw,4rem);font-weight:600;line-height:.9;display:inline-flex;flex-direction:column}
.footer__logo sup{font-size:.3em;color:var(--honey);vertical-align:super}
.footer__logo i{font-style:normal;font-family:var(--font-sans);font-size:.7rem;font-weight:600;letter-spacing:.34em;
  text-transform:uppercase;color:var(--honey-2);margin-top:.6rem}
.footer__cols{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.footer__col{display:flex;flex-direction:column;gap:.8rem}
.footer__h{font-size:.72rem;text-transform:uppercase;letter-spacing:.2em;color:var(--amber);margin-bottom:.4rem}
.footer__col a,.footer__col p{font-size:.92rem;color:rgba(247,238,216,.68);transition:color .3s;line-height:1.5}
.footer__col a:hover{color:var(--honey-2)}
.footer__big{font-family:var(--font-mega);font-weight:800;font-size:clamp(2.4rem,13vw,13rem);line-height:.86;
  white-space:nowrap;text-align:center;color:transparent;-webkit-text-stroke:1px rgba(242,162,0,.22);text-stroke:1px rgba(242,162,0,.22);
  letter-spacing:0;margin:.5rem 0;user-select:none;overflow:hidden}
.footer__bottom{max-width:var(--maxw);margin:0 auto;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  padding-top:2rem;border-top:1px solid var(--line-d);font-size:.78rem;color:rgba(247,238,216,.45)}

/* =================================================================
   REVEAL STATES (gated to .js; GSAP animates to visible)
   ================================================================= */
.js [data-reveal]:not([data-split]){opacity:0;transform:translateY(32px)}
.js [data-split]{opacity:0}
.js .char,.js .word,.js .lineMask>span{will-change:transform}
.js [data-clip]{--clip:100;clip-path:inset(0 0 calc(var(--clip) * 1%) 0)}
.char{display:inline-block}
.cword{display:inline-block;white-space:nowrap}

/* =================================================================
   BEE SWARM (cursor followers)
   ================================================================= */
.bee-layer{position:fixed;inset:0;z-index:8000;pointer-events:none}
.bee{position:fixed;top:0;left:0;width:30px;height:30px;opacity:0;
  transition:opacity .45s var(--ease);will-change:transform;filter:drop-shadow(0 4px 6px rgba(0,0,0,.4))}
.bee-layer.is-on .bee{opacity:1}
.bee svg{width:100%;height:100%;overflow:visible}
.bee .wing{fill:rgba(255,255,255,.78);transform-box:fill-box;transform-origin:30% 50%;
  animation:wingbeat .09s linear infinite alternate}
.bee .wing--r{transform-origin:70% 50%;animation-delay:.045s}
@keyframes wingbeat{from{transform:rotate(-6deg) scaleX(1)}to{transform:rotate(20deg) scaleX(.6)}}
.bee__trail{position:fixed;top:0;left:0;width:6px;height:6px;border-radius:50%;background:var(--honey);
  opacity:0;pointer-events:none;z-index:7999;filter:blur(1px)}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width:1080px){
  .hero__grid{grid-template-columns:1fr;gap:3rem}
  .hero__visual{max-width:440px}
  .hero__chip--1{right:0}.hero__chip--2{right:-2%}
  .philosophy__body,.problem__grid,.uley__grid{grid-template-columns:1fr}
  .land{grid-template-columns:1fr}
  .land__media{min-height:50vh}
  .principles__grid,.prodgrid,.sets__grid,.reviews__grid,.tasting__steps{grid-template-columns:1fr 1fr}
  .featured{grid-template-columns:1fr}
  .numbers__grid{grid-template-columns:1fr 1fr}
  .tasting::before{background-attachment:scroll}
}
@media (max-width:760px){
  :root{--pad:1.25rem}
  .nav__links{position:fixed;inset:0;flex-direction:column;justify-content:center;align-items:center;gap:2rem;
    background:rgba(15,8,1,.97);backdrop-filter:blur(10px);font-size:1.6rem;font-family:var(--font-serif);
    transform:translateY(-100%);transition:transform .6s var(--ease);pointer-events:none}
  .nav.is-open .nav__links{transform:translateY(0);pointer-events:auto}
  .nav__cta{display:none}
  .nav__burger{display:flex;z-index:300}
  .hero{padding-top:7rem}
  .hero__chip{display:none}
  .principles__grid,.prodgrid,.sets__grid,.reviews__grid,.tasting__steps,.numbers__grid,.stats,.compare{grid-template-columns:1fr}
  .compare{gap:1rem}
  .compare__vs{transform:rotate(90deg)}
  .footer__top{grid-template-columns:1fr;gap:2rem}
  .footer__cols{grid-template-columns:1fr 1fr}
  .diag__line--2{margin-left:2vw}
  .featured__foot{flex-direction:column;align-items:flex-start}
}
@media (max-width:440px){
  .footer__cols{grid-template-columns:1fr}
  .hero__trust{gap:.8rem 1.2rem}
}

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
  .js [data-reveal]:not([data-split]),.js [data-split]{opacity:1!important;transform:none!important}
}
