/* =========================================================
   Bhatti Organics
   Palette drawn from the farm: eggshell creams, marigold yolk,
   rooster comb, tail-feather green and the logo's fresh leaf.
   ========================================================= */
:root {
  --paper: #FBF8F1;
  --cream: #F6EFE0;
  --sand: #EDE3CC;

  --forest: #0F2A20;
  --forest-2: #173A2D;
  --forest-3: #081C15;

  --leaf: #A3BD30;
  --leaf-deep: #6B861A;
  --leaf-soft: #E8EFCB;

  --yolk: #F2A516;
  --yolk-2: #FFC857;
  --yolk-deep: #DD7A00;
  --comb: #C8371F;

  --cream-egg: #F3E4C8;
  --tan-egg: #E3BD8F;
  --brown-egg: #B8703F;

  --ink: #1D1A14;
  --ink-soft: #625A4C;
  --line: rgba(29, 26, 20, .12);
  --line-light: rgba(255, 255, 255, .16);

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px -6px rgba(40, 30, 10, .18);
  --shadow: 0 30px 60px -30px rgba(40, 30, 10, .45);
  --egg-shape: 50% 50% 50% 50% / 60% 60% 40% 40%;

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .75, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --header-h: 116px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0 0 .45em;
  font-variation-settings: "SOFT" 50;
}
h1 em, h2 em { font-style: italic; font-weight: 400; }
p { margin: 0 0 1em; }
.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
:focus-visible { outline: 2px solid var(--yolk-deep); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1240px, 100% - 48px); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { left: 8px; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; line-height: 1.1; letter-spacing: -.005em;
  white-space: nowrap;
  transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .3s;
}
.btn .ic { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover .ic { transform: translateX(3px); }
.btn:active { transform: scale(.97); }
/* sheen sweep */
.btn::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%); transform: translateX(-120%); transition: transform .8s var(--ease); }
.btn:hover::after { transform: translateX(120%); }
.btn-lg { padding: 17px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-yolk { background: var(--yolk); color: var(--forest-3); box-shadow: 0 12px 30px -12px rgba(221, 122, 0, .75); }
.btn-yolk:hover { background: var(--yolk-2); box-shadow: 0 18px 36px -12px rgba(221, 122, 0, .85); }
.btn-forest { background: var(--forest); color: var(--paper); }
.btn-forest:hover { background: var(--forest-2); }
.btn-glass { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,.22); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-cream { background: var(--paper); color: var(--forest-3); }
.btn-cream:hover { background: #fff; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--leaf-deep); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: currentColor; }
.eyebrow.light { color: var(--yolk-2); }
.sub { color: var(--ink-soft); font-size: 17.5px; max-width: 460px; }
.section { padding: clamp(90px, 11vw, 150px) 0; position: relative; }
.section-head h2 { font-size: clamp(38px, 5.2vw, 68px); }
.section-head.center { text-align: center; max-width: 860px; margin: 0 auto clamp(48px, 6vw, 80px); }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 1.5px; background: currentColor; }
.section-head.center .sub { margin-inline: auto; }
.section-head.split { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px 60px; flex-wrap: wrap; margin-bottom: clamp(44px, 5vw, 70px); }
.section-head.split > div:first-child { max-width: 700px; }
.section-head.split h2 { margin: 0; }
.section-head.split .sub { margin: 0; }

/* ---------- scroll progress ---------- */
.progress-bar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; background: linear-gradient(90deg, var(--leaf), var(--yolk)); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); pointer-events: none; }

/* ---------- header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; color: #fff; transition: background .4s, color .4s, box-shadow .4s, transform .5s var(--ease); }
.site-header.hide { transform: translateY(-100%); }
.announce { background: var(--forest-3); color: #E9E2CF; font-size: 13px; font-weight: 600; letter-spacing: .02em; text-align: center; padding: 8px 16px; }
.announce p { margin: 0; display: flex; align-items: center; justify-content: center; gap: 10px; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 0 rgba(163, 189, 48, .7); animation: pulse 2.2s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(163,189,48,0); } 100% { box-shadow: 0 0 0 0 rgba(163,189,48,0); } }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; transition: height .4s var(--ease); }
.brand { position: relative; display: block; height: 46px; aspect-ratio: 900 / 320; flex: none; }
.brand img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .4s; }
.brand .logo-dark { opacity: 0; }
.menu { display: flex; align-items: center; gap: 34px; font-weight: 600; font-size: 15px; }
.menu a:not(.btn) { position: relative; padding: 6px 0; opacity: .92; }
.menu a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.menu a:not(.btn):hover::after, .menu a.active::after { transform: scaleX(1); transform-origin: left; }
.menu .menu-cta { padding: 12px 22px; font-size: 14.5px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn { position: relative; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; border: 1px solid currentColor; transition: background .25s, color .25s, border-color .25s; }
.cart-btn .ic { width: 21px; height: 21px; }
.cart-btn:hover { background: var(--yolk); color: var(--forest-3); border-color: var(--yolk); }
.cart-btn.bump { animation: bump .6s var(--spring); }
@keyframes bump { 30% { transform: scale(1.22) rotate(-10deg); } 60% { transform: scale(.94) rotate(5deg); } }
.cart-count { position: absolute; top: -5px; right: -5px; min-width: 21px; height: 21px; padding: 0 6px; background: var(--yolk); color: var(--forest-3); font-size: 11.5px; font-weight: 800; border-radius: 999px; display: grid; place-items: center; }
.cart-count[data-n="0"] { display: none; }
.burger { display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid currentColor; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.burger span { width: 18px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

.site-header.scrolled, .site-header.menu-open { background: rgba(251, 248, 241, .9); color: var(--ink); box-shadow: 0 1px 0 var(--line), 0 20px 40px -30px rgba(40,30,10,.35); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); }
.site-header.scrolled .nav { height: 70px; }
.site-header.scrolled .brand .logo-dark, .site-header.menu-open .brand .logo-dark { opacity: 1; }
.site-header.scrolled .brand .logo-light, .site-header.menu-open .brand .logo-light { opacity: 0; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: max(680px, 100svh); display: flex; flex-direction: column; justify-content: flex-end; color: #fff; overflow: hidden; isolation: isolate; background: var(--forest-3); }
.hero-media { position: absolute; inset: -3% 0 -3% 0; z-index: -2; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 66%; animation: heroZoom 2.4s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.18); filter: brightness(.4) saturate(.6); } to { transform: scale(1); filter: none; } }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 28, 21, .55) 0%, rgba(8, 28, 21, .05) 32%, rgba(8, 28, 21, .15) 55%, rgba(8, 28, 21, .88) 100%),
    linear-gradient(90deg, rgba(8, 28, 21, .6) 0%, rgba(8, 28, 21, 0) 60%);
}
/* drifting sun-motes */
.motes { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.motes i { position: absolute; bottom: -20px; width: var(--s, 6px); height: var(--s, 6px); border-radius: 50%; background: radial-gradient(circle, rgba(255,220,140,.95), rgba(255,200,87,0) 70%); left: var(--x); animation: mote var(--d, 14s) linear var(--delay, 0s) infinite; opacity: 0; }
@keyframes mote { 10% { opacity: .9; } 90% { opacity: .6; } 100% { transform: translate(var(--dx, 40px), -110vh); opacity: 0; } }

.hero-inner { padding-top: calc(var(--header-h) + clamp(16px, 4vh, 40px)); padding-bottom: clamp(20px, 4vh, 40px); }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; letter-spacing: .04em; padding: 8px 16px 8px 12px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); margin-bottom: 26px; }
.kicker .ic { width: 16px; height: 16px; color: var(--yolk-2); }
.hero h1 { font-size: clamp(44px, min(6.4vw, 10.5vh), 104px); line-height: .98; letter-spacing: -.035em; font-weight: 400; max-width: 13ch; margin-bottom: 26px; text-shadow: 0 2px 30px rgba(0,0,0,.2); }
.hero h1 em { color: var(--yolk-2); }
.lead { font-size: clamp(17px, 1.45vw, 20px); max-width: 540px; color: rgba(255,255,255,.88); margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; padding-bottom: 36px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 0; margin: 0; border-top: 1px solid var(--line-light); padding-top: 26px; flex: 1; max-width: 900px; }
.hero-stats div { padding-right: 34px; margin-right: 34px; border-right: 1px solid var(--line-light); }
.hero-stats div:last-child { border: 0; margin: 0; padding: 0; }
.hero-stats dt { font-family: var(--f-display); font-size: clamp(28px, 2.8vw, 40px); line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.hero-stats dd { margin: 6px 0 0; font-size: 13.5px; color: rgba(255,255,255,.75); max-width: 150px; line-height: 1.35; }
.scroll-cue { width: 30px; height: 50px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 20px; position: relative; flex: none; }
.scroll-cue span { position: absolute; left: 50%; top: 10px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: #fff; animation: cue 1.8s infinite; }
@keyframes cue { 60% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }


/* word-by-word headline reveal */
.split-words .w { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .04em .2em; margin: 0 -.04em -.2em; }
.split-words .w > span { display: inline-block; transform: translateY(110%) rotate(6deg); transform-origin: 0 100%; transition: transform 1.1s var(--ease); transition-delay: calc(var(--i) * 70ms + 250ms); }
.split-words.in .w > span { transform: none; }

/* ---------- trust strip ---------- */
.trust { background: var(--forest); color: #E9E2CF; overflow: hidden; padding: 20px 0; }
.trust-track { display: flex; gap: 56px; width: max-content; animation: marquee 40s linear infinite; }
.trust:hover .trust-track { animation-play-state: paused; }
.trust span { display: inline-flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.trust .ic { color: var(--leaf); width: 22px; height: 22px; }
@keyframes marquee { to { transform: translateX(calc(-50% - 28px)); } }

/* ---------- manifesto ---------- */
.manifesto { background: var(--paper); text-align: center; }
.manifesto .eyebrow::after { content: ""; width: 28px; height: 1.5px; background: currentColor; }
.statement { font-family: var(--f-display); font-size: clamp(28px, 3.9vw, 54px); line-height: 1.28; letter-spacing: -.02em; max-width: 1080px; margin: 0 auto 44px; font-weight: 400; color: var(--ink); }
.statement em { color: var(--yolk-deep); }
/* words light up as you scroll */
.statement .sw { opacity: .16; transition: opacity .35s linear; }
.statement .sw.lit { opacity: 1; }
.inline-img { display: inline-block; width: 1.9em; height: .95em; border-radius: 999px; overflow: hidden; vertical-align: -.1em; margin: 0 .08em; box-shadow: var(--shadow-sm); transform: scale(.6); opacity: .3; transition: transform .8s var(--spring), opacity .5s; }
.inline-img.lit { transform: none; opacity: 1; }
.inline-img img { width: 100%; height: 100%; object-fit: cover; }
.inline-yolk { display: inline-block; width: .8em; height: .8em; border-radius: 50%; vertical-align: -.06em; background: radial-gradient(circle at 35% 32%, #FFE08A, var(--yolk) 45%, var(--yolk-deep)); box-shadow: 0 0 0 .14em #fff, 0 6px 16px rgba(221,122,0,.45); margin: 0 .1em; animation: yolkPulse 3s ease-in-out infinite; }
@keyframes yolkPulse { 50% { box-shadow: 0 0 0 .14em #fff, 0 0 34px 6px rgba(255,170,30,.55); } }
.story-sign { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sign { font-family: var(--f-display); font-style: italic; font-size: 26px; color: var(--leaf-deep); }
.sign-sub { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }

/* ---------- feature ---------- */
.feature { background: var(--cream); padding: clamp(90px, 11vw, 150px) 0; overflow: hidden; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.feature-media { position: relative; padding: 0 12% 12% 0; }
.fm-main { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.fm-inset { position: absolute; right: 0; bottom: 0; width: 46%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); border: 8px solid var(--cream); box-shadow: var(--shadow); }
.fm-badge { position: absolute; left: -26px; top: 12%; background: var(--forest); color: var(--paper); border-radius: var(--radius); padding: 18px 22px; display: grid; gap: 2px; box-shadow: var(--shadow); animation: floaty 6s ease-in-out infinite; }
.fm-badge .ic { color: var(--leaf); width: 26px; height: 26px; margin-bottom: 8px; }
.fm-badge strong { font-family: var(--f-display); font-weight: 500; font-size: 20px; line-height: 1.1; }
.fm-badge span { font-size: 13px; opacity: .75; }
@keyframes floaty { 50% { transform: translateY(-12px); } }
.feature-copy h2 { font-size: clamp(38px, 4.8vw, 62px); }
.feature-copy h2 em { color: var(--leaf-deep); }
.feature-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 17.5px; }
.points { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.points li { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.pi { width: 48px; height: 48px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; color: var(--leaf-deep); flex: none; transition: background .3s, color .3s, transform .5s var(--spring); }
.points li:hover .pi { background: var(--forest); color: var(--leaf); transform: rotate(-12deg) scale(1.08); }
.points h3 { font-size: 21px; margin: 2px 0 2px; letter-spacing: -.01em; }
.points p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- image wipe reveal ---------- */
.js .wipe { clip-path: inset(100% 0 0 0 round var(--radius-lg)); transition: clip-path 1.3s var(--ease); }
.js .wipe.in { clip-path: inset(0 0 0 0 round var(--radius-lg)); }
.js .wipe img { transform: scale(1.25); transition: transform 1.8s var(--ease); }
.js .wipe.in img { transform: scale(1); }

/* ---------- eggs (shared) ---------- */
.egg {
  --c: var(--cream-egg);
  display: block; position: relative; width: 100%; aspect-ratio: .78; border-radius: var(--egg-shape);
  background: radial-gradient(40% 30% at 34% 26%, rgba(255,255,255,.65), transparent 70%), var(--c);
  box-shadow: inset -10px -16px 24px rgba(0,0,0,.13), inset 6px 8px 14px rgba(255,255,255,.25), 0 22px 30px -18px rgba(60,40,15,.5);
}
.egg.speckle {
  background:
    radial-gradient(40% 30% at 34% 26%, rgba(255,255,255,.6), transparent 70%),
    radial-gradient(circle at 22% 58%, rgba(120,60,25,.32) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 40%, rgba(120,60,25,.28) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 70% 72%, rgba(120,60,25,.32) 0 2px, transparent 3px),
    radial-gradient(circle at 44% 80%, rgba(120,60,25,.28) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 36% 44%, rgba(120,60,25,.22) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 54%, rgba(120,60,25,.28) 0 1.5px, transparent 2.5px),
    var(--c);
}
.e-cream { --c: var(--cream-egg); }
.e-tan { --c: var(--tan-egg); }
.e-brown { --c: var(--brown-egg); }
.e-comb { --c: var(--comb); }
.e-leaf { --c: var(--leaf); }
.e-tail { background: radial-gradient(40% 30% at 34% 26%, rgba(120,255,210,.3), transparent 70%), linear-gradient(160deg, #1f6b56, var(--forest) 55%, #04160f); }
.e-yolk { --c: #FFFDF6; }
.e-yolk .yolk { position: absolute; width: 58%; aspect-ratio: 1; left: 21%; top: 34%; border-radius: 50%; background: radial-gradient(circle at 36% 34%, #FFE08A, var(--yolk) 45%, var(--yolk-deep)); box-shadow: 0 4px 10px rgba(200,100,0,.35); }

/* ---------- palette ---------- */
.palette { background: var(--paper); }
.egg-row { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(7, 1fr); gap: clamp(12px, 2vw, 28px); align-items: end; }
.egg-row li { text-align: center; display: flex; flex-direction: column; align-items: center; cursor: default; }
.egg-row .egg { width: min(100%, 112px); margin-bottom: 20px; transition: transform .6s var(--spring); }
.egg-row li:nth-child(even) .egg { width: min(100%, 124px); }
.egg-row li:hover .egg { animation: wiggle .7s var(--ease); }
@keyframes wiggle { 20% { transform: rotate(-12deg) translateY(-14px); } 45% { transform: rotate(9deg) translateY(-8px); } 70% { transform: rotate(-5deg); } 100% { transform: none; } }
.egg-row b { font-family: var(--f-display); font-weight: 500; font-size: 17px; line-height: 1.2; }
.egg-row small { color: var(--ink-soft); font-size: 13px; }
/* eggs drop in with a bounce */
.js .egg-row li.reveal { transform: none; }
.js .egg-row li.reveal .egg { transform: translateY(-120px) rotate(-30deg); opacity: 0; }
.js .egg-row li.reveal.in .egg { animation: eggDrop 1s var(--ease) both; animation-delay: inherit; }
@keyframes eggDrop {
  0% { transform: translateY(-120px) rotate(-30deg); opacity: 0; }
  55% { transform: translateY(0) rotate(4deg) scaleY(.88) scaleX(1.08); opacity: 1; }
  75% { transform: translateY(-16px) rotate(-3deg); }
  100% { transform: none; opacity: 1; }
}

/* ---------- flock ---------- */
.flock { background: var(--cream); }
.breed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; perspective: 1200px; }
.breed { background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); transform-style: preserve-3d; }
.breed:hover { box-shadow: var(--shadow); }
.plumage {
  --p1: #222; --p2: #C8891E;
  position: relative; height: 240px; display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, transparent 58%, rgba(255,255,255,.12) 60% 66%, transparent 68%) 0 0 / 34px 24px,
    radial-gradient(circle at 50% 100%, transparent 58%, rgba(0,0,0,.1) 60% 66%, transparent 68%) 17px 12px / 34px 24px,
    linear-gradient(150deg, var(--p1), var(--p2));
  animation: feathers 30s linear infinite;
}
@keyframes feathers { to { background-position: 34px 48px, 51px 60px, 0 0; } }
.b-desi .plumage { --p1: #17140F; --p2: #A8691A; }
.b-rir .plumage { --p1: #4E1808; --p2: #B64A1C; }
.b-buff .plumage { --p1: #C08238; --p2: #EEC27F; }
.plumage .egg.big { width: 108px; transform: rotate(-8deg); transition: transform .8s var(--spring); }
.breed:hover .plumage .egg.big { transform: rotate(10deg) scale(1.1) translateY(-6px); }
.breed-tag { position: absolute; top: 18px; left: 18px; padding: 6px 12px; border-radius: 999px; background: rgba(251,248,241,.94); font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.breed-body { padding: 28px 28px 30px; }
.breed-body h3 { font-size: 30px; margin-bottom: 4px; }
.breed-kicker { font-weight: 700; color: var(--leaf-deep); font-size: 14.5px; margin-bottom: 12px; }
.breed-body > p:not(.breed-kicker) { color: var(--ink-soft); font-size: 15.5px; }
.traits { list-style: none; padding: 0; margin: 18px 0 0; }
.traits li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 14px; }
.traits span { color: var(--ink-soft); }
.traits b { text-align: right; font-weight: 700; }
/* glare for tilt cards */
.tilt { position: relative; }
.tilt::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: radial-gradient(circle at var(--gx, 50%) var(--gy, 0%), rgba(255,255,255,.35), transparent 45%); opacity: 0; transition: opacity .3s; }
.tilt:hover::after { opacity: 1; }

/* ---------- farm life bento ---------- */
.farm-life { background: var(--forest); color: var(--paper); overflow: hidden; }
.farm-life h2 { color: #fff; }
.farm-life h2 em { color: var(--yolk-2); }
.farm-life .sub { color: rgba(251,248,241,.7); }
.bento { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(4, 1fr); grid-template-rows: 300px 300px; gap: 16px; }
.bento figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--forest-2); }
.bento img { width: 100%; height: 100%; object-fit: cover; }
.bento figure > img { transition: transform 1.2s var(--ease), filter .6s; }
.bento figure:hover > img { transform: scale(1.07) !important; filter: saturate(1.15); }
.bento figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(8,28,21,.75)); pointer-events: none; }
.bento figcaption { position: absolute; left: 20px; bottom: 18px; z-index: 1; font-family: var(--f-display); font-style: italic; font-size: 19px; color: #fff; transition: transform .5s var(--ease); }
.bento figure:hover figcaption { transform: translateY(-4px); }
.b-1 { grid-row: span 2; }
.b-2 { grid-column: span 2; }
.b-2 img { object-position: 50% 60%; }
.b-4 img { object-position: 50% 55%; }

/* ---------- yolk test ---------- */
.yolk-test { background: var(--paper); }
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; max-width: 1060px; margin-inline: auto; }
.cmp { border-radius: var(--radius-lg); padding: 38px clamp(26px, 3vw, 46px) 40px; }
.cmp h3 { font-size: clamp(24px, 2.3vw, 30px); margin: 24px 0 16px; }
.cmp-them { background: var(--cream); color: #736A5B; }
.cmp-us { background: var(--forest); color: #E6E0CF; box-shadow: var(--shadow); }
.cmp-us h3 { color: #fff; }
.vs { align-self: center; width: 64px; height: 64px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--f-display); font-style: italic; font-size: 22px; }
.fried { position: relative; width: 160px; height: 132px; }
.fried .white { position: absolute; inset: 0; background: #FFFDF8; border-radius: 58% 42% 55% 45% / 50% 60% 40% 50%; box-shadow: 0 16px 30px -18px rgba(0,0,0,.45), inset -6px -8px 16px rgba(0,0,0,.05); }
.fried .yolk { position: absolute; border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.fried .yolk.pale { width: 54px; height: 54px; background: radial-gradient(circle at 36% 34%, #FFF6C2, #F3E07B 60%, #E3CC5C); }
.fried .yolk.rich { width: 68px; height: 68px; background: radial-gradient(circle at 36% 34%, #FFD166, var(--yolk) 45%, #E86A00); box-shadow: 0 0 40px rgba(255,150,0,.5); }
.cmp-them .fried { filter: saturate(.7); }
/* eggs "crack" onto the pan when revealed */
.js .cmp.reveal .fried .white { transform: scale(.2); opacity: 0; transition: transform .9s var(--spring) .2s, opacity .4s .2s; }
.js .cmp.reveal .fried .yolk { transform: translate(-50%, -160%) scale(.4); opacity: 0; transition: transform .8s var(--spring) .55s, opacity .3s .55s; }
.js .cmp.reveal.in .fried .white { transform: none; opacity: 1; }
.js .cmp.reveal.in .fried .yolk { transform: translate(-50%, -50%); opacity: 1; }
.cmp-us.in .fried .yolk.rich { animation: glow 3s ease-in-out 1.5s infinite; }
@keyframes glow { 50% { box-shadow: 0 0 60px 10px rgba(255,150,0,.55); } }
.x-list, .check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 16px; }
.x-list li, .check-list li { display: flex; gap: 12px; align-items: flex-start; }
.x-list li::before, .check-list li::before { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; margin-top: 2px; }
.x-list li::before { content: "✕"; background: #DDD3C0; color: #7C7468; }
.check-list li::before { content: "✓"; background: var(--leaf); color: var(--forest-3); }

/* ---------- shop ---------- */
.shop { background: var(--cream); }
.shop-side { max-width: 500px; display: grid; gap: 20px; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); font-weight: 700; font-size: 14px; background: var(--paper); transition: all .25s; }
.tab:hover { border-color: var(--ink); }
.tab.active { background: var(--forest); border-color: var(--forest); color: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.product { background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: box-shadow .5s var(--ease), transform .5s var(--ease); animation: pop .7s var(--ease) both; animation-delay: calc(var(--i, 0) * 110ms); }
.product:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
@keyframes pop { from { opacity: 0; transform: translateY(30px) scale(.97); } }
.product[hidden] { display: none; }
.p-media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; background: var(--sand); }
.p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.product:hover .p-media img { transform: scale(1.07); }
.p-badge { position: absolute; top: 16px; left: 16px; background: rgba(251,248,241,.95); color: var(--forest); font-weight: 800; font-size: 11.5px; padding: 7px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .1em; }
.p-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 16px; }
.p-body h3 { font-size: 28px; margin: 0; }
.p-desc { color: var(--ink-soft); font-size: 15px; margin: -8px 0 0; }
.field { display: grid; gap: 8px; }
.field-label { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 14px; font-weight: 600; background: #fff; transition: all .2s; }
.pill:hover { border-color: var(--ink); }
.pill[aria-pressed="true"] { background: var(--forest); color: #fff; border-color: var(--forest); }
.pill .dot { display: inline-block; width: 10px; height: 13px; border-radius: var(--egg-shape); margin-right: 6px; vertical-align: -1px; box-shadow: inset -2px -2px 3px rgba(0,0,0,.2); }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; width: max-content; }
.stepper button { width: 42px; height: 40px; font-size: 18px; font-weight: 600; transition: background .15s; }
.stepper button:hover { background: var(--cream); }
.stepper output { min-width: 56px; text-align: center; font-weight: 800; font-size: 15px; }
.bulk-note { background: #FFF3D6; color: #8A4B00; font-size: 14px; font-weight: 600; padding: 10px 14px; border-radius: 12px; animation: pop .5s var(--ease); }
.p-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.p-price { font-family: var(--f-display); font-size: 30px; line-height: 1; letter-spacing: -.02em; }
.p-price .num { display: inline-block; }
.p-price .num.tick { animation: tick .45s var(--spring); }
@keyframes tick { from { transform: translateY(-40%); opacity: .2; } }
.p-price small { display: block; font-family: var(--f-body); font-size: 12.5px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0; margin-top: 7px; }
.add-btn.added { background: var(--leaf); color: var(--forest-3); }
.shop-note { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 40px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 15px; }
.shop-note span { display: inline-flex; align-items: center; gap: 10px; }
.shop-note .ic { color: var(--leaf-deep); }
.shop-note strong { color: var(--ink); }

/* egg that flies to the basket */
.fly-egg { position: fixed; z-index: 200; width: 26px; height: 33px; border-radius: var(--egg-shape); pointer-events: none; background: radial-gradient(40% 30% at 34% 26%, rgba(255,255,255,.7), transparent 70%), var(--tan-egg); box-shadow: inset -4px -6px 8px rgba(0,0,0,.18), 0 10px 20px -6px rgba(0,0,0,.4); }

/* ---------- haldi ---------- */
.haldi { position: relative; overflow: hidden; background: linear-gradient(135deg, #7A4205 0%, #B8680A 45%, #D98C0F 100%); background-size: 200% 200%; animation: haldiShift 16s ease-in-out infinite alternate; color: #FFF4DE; padding: clamp(90px, 11vw, 150px) 0; }
@keyframes haldiShift { to { background-position: 100% 100%; } }
.haldi::before { content: ""; position: absolute; width: 700px; aspect-ratio: 1; right: -200px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(255,210,110,.45), transparent 65%); animation: floaty 9s ease-in-out infinite; }
.haldi-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.haldi h2 { color: #fff; font-size: clamp(40px, 5.2vw, 70px); }
.haldi h2 em { color: #FFE3A1; }
.haldi-copy > p:not(.eyebrow) { color: rgba(255,244,222,.86); font-size: 17.5px; max-width: 520px; }
.haldi .eyebrow.light { color: #FFE3A1; }
.haldi-facts { list-style: none; padding: 0; margin: 32px 0 38px; display: flex; gap: 0; }
.haldi-facts li { padding-right: 30px; margin-right: 30px; border-right: 1px solid rgba(255,244,222,.25); }
.haldi-facts li:last-child { border: 0; }
.haldi-facts b { display: block; font-family: var(--f-display); font-weight: 500; font-size: 38px; line-height: 1; color: #fff; }
.haldi-facts li > span { font-size: 13.5px; opacity: .8; }
.haldi-media { position: relative; height: clamp(460px, 48vw, 620px); }
.haldi-media > div { position: absolute; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(50,20,0,.7); }
.haldi-media img { width: 100%; height: 100%; object-fit: cover; }
.hm-1 { width: 66%; height: 88%; right: 0; top: 0; }
.hm-2 { width: 46%; height: 58%; left: 0; bottom: 0; border: 8px solid #C27410; }
/* turmeric dust */
.dust { position: absolute; inset: 0; pointer-events: none; }
.dust i { position: absolute; width: var(--s, 5px); height: var(--s, 5px); border-radius: 50%; background: #FFD27A; opacity: .0; left: var(--x); top: var(--y); animation: dust var(--d, 9s) ease-in-out var(--delay, 0s) infinite; }
@keyframes dust { 20% { opacity: .7; } 100% { transform: translate(var(--dx, 30px), -140px); opacity: 0; } }

/* ---------- reviews ---------- */
.reviews { background: var(--paper); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { margin: 0; background: var(--cream); border-radius: var(--radius-lg); padding: 34px 32px 30px; display: flex; flex-direction: column; gap: 18px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.review:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: var(--shadow); }
.stars { color: var(--yolk); letter-spacing: 4px; font-size: 17px; }
.js .review.reveal .stars { clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease) .4s; }
.js .review.reveal.in .stars { clip-path: inset(0 0 0 0); }
.review blockquote { margin: 0; font-family: var(--f-display); font-size: 21px; line-height: 1.42; flex: 1; letter-spacing: -.01em; }
.review figcaption { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: var(--yolk-2); display: grid; place-items: center; font-family: var(--f-display); font-size: 19px; }
.review figcaption b { display: block; font-size: 15px; }
.review figcaption small { color: var(--leaf-deep); font-weight: 700; font-size: 12.5px; }

/* ---------- faq ---------- */
.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.faq .section-head { position: sticky; top: 110px; }
.faq .section-head .btn { margin-top: 8px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 26px 56px 26px 0; font-family: var(--f-display); font-size: 21px; position: relative; letter-spacing: -.01em; transition: color .2s, padding .4s var(--ease); }
.faq summary:hover { color: var(--leaf-deep); padding-left: 8px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px; margin-top: -7px; background: linear-gradient(currentColor, currentColor) center / 14px 1.5px no-repeat, linear-gradient(currentColor, currentColor) center / 1.5px 14px no-repeat; transition: transform .45s var(--spring); }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { padding: 0 56px 26px 0; margin: -6px 0 0; color: var(--ink-soft); }
.faq details[open] p { animation: faqIn .5s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } }

/* ---------- cta ---------- */
.cta { position: relative; overflow: hidden; color: #fff; padding: clamp(120px, 14vw, 200px) 0; text-align: center; isolation: isolate; }
.cta-bg { position: absolute; inset: -12% 0; width: 100%; height: 124%; object-fit: cover; z-index: -2; will-change: transform; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,28,21,.55), rgba(8,28,21,.8)); }
.cta-inner { max-width: 820px; }
.cta .eyebrow::after { content: ""; width: 28px; height: 1.5px; background: currentColor; }
.cta h2 { font-size: clamp(42px, 6vw, 80px); color: #fff; }
.cta h2 em { color: var(--yolk-2); }
.cta p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 560px; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
/* fireflies at dusk */
.fireflies { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.fireflies i { position: absolute; left: var(--x); top: var(--y); width: 4px; height: 4px; border-radius: 50%; background: #FFE9A0; box-shadow: 0 0 10px 3px rgba(255,220,120,.7); animation: firefly var(--d, 7s) ease-in-out var(--delay, 0s) infinite alternate; opacity: 0; }
@keyframes firefly { 0% { opacity: 0; transform: translate(0,0); } 30% { opacity: 1; } 60% { opacity: .2; } 100% { opacity: .9; transform: translate(var(--dx, 40px), var(--dy, -30px)); } }

/* ---------- footer ---------- */
.site-footer { background: var(--forest-3); color: rgba(233,226,207,.75); padding: 90px 0 32px; font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.foot-brand img { width: 190px; height: auto; margin-bottom: 22px; }
.foot-brand p { max-width: 330px; }
.site-footer h2 { font-family: var(--f-body); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--yolk-2); margin-bottom: 18px; font-weight: 800; }
.foot-grid > div:not(.foot-brand) { display: flex; flex-direction: column; gap: 11px; }
.foot-contact a, .foot-contact span { display: inline-flex; align-items: center; gap: 10px; }
.foot-contact .ic { width: 17px; height: 17px; color: var(--leaf); }
.site-footer a { transition: color .2s, transform .3s var(--ease); width: fit-content; }
.site-footer a:hover { color: #fff; transform: translateX(4px); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 70px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13.5px; }
.foot-bottom p { margin: 0; }
.foot-word { font-family: var(--f-display); font-style: italic; font-size: clamp(60px, 15vw, 220px); line-height: .9; letter-spacing: -.04em; color: rgba(233,226,207,.06); text-align: center; margin: 60px 0 -20px; white-space: nowrap; overflow: hidden; user-select: none; }

/* ---------- wa float ---------- */
.wa-float { position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 40; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 16px 30px -10px rgba(20,120,60,.65); transition: transform .4s var(--spring); animation: waIn .8s var(--spring) 2s both; }
@keyframes waIn { from { transform: scale(0) rotate(-90deg); } }
.wa-float:hover { transform: scale(1.1) rotate(-8deg); }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: ring 2.6s infinite; }
@keyframes ring { from { transform: scale(1); opacity: .7; } to { transform: scale(1.6); opacity: 0; } }

/* ---------- drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(8, 20, 15, .5); backdrop-filter: blur(3px); z-index: 80; opacity: 0; transition: opacity .3s; }
.overlay.show { opacity: 1; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 90; width: min(440px, 100%); background: var(--paper); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .55s var(--ease); visibility: hidden; box-shadow: -30px 0 60px -30px rgba(0,0,0,.4); }
.drawer.open { transform: none; visibility: visible; }
.drawer.open .line { animation: lineIn .5s var(--ease) both; }
.drawer.open .line:nth-child(2) { animation-delay: .06s; }
.drawer.open .line:nth-child(3) { animation-delay: .12s; }
.drawer.open .line:nth-child(4) { animation-delay: .18s; }
@keyframes lineIn { from { opacity: 0; transform: translateX(30px); } }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 0; font-size: 28px; }
.icon-x { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); font-size: 14px; transition: background .2s, transform .4s var(--spring); }
.icon-x:hover { background: var(--cream); transform: rotate(90deg); }
.free-bar { padding: 14px 24px; background: var(--leaf-soft); font-size: 14px; font-weight: 600; color: var(--forest); }
.free-bar .track { height: 6px; background: rgba(15,42,32,.12); border-radius: 99px; margin-top: 8px; overflow: hidden; }
.free-bar .fill { height: 100%; background: linear-gradient(90deg, var(--leaf-deep), var(--forest)); border-radius: 99px; transition: width .7s var(--ease); }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.empty { text-align: center; padding: 60px 10px; color: var(--ink-soft); }
.empty .egg { width: 76px; margin: 0 auto 22px; animation: floaty 4s ease-in-out infinite; }
.empty h3 { color: var(--ink); font-size: 26px; }
.line { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.line img { width: 70px; height: 70px; border-radius: 14px; object-fit: cover; }
.line h4 { margin: 0; font-size: 15.5px; font-weight: 700; }
.line small { color: var(--ink-soft); font-size: 13px; display: block; }
.line .stepper { margin-top: 8px; }
.line .stepper button { width: 32px; height: 30px; font-size: 15px; }
.line .stepper output { min-width: 30px; font-size: 14px; }
.line-right { text-align: right; display: grid; gap: 6px; justify-items: end; }
.line-right b { font-size: 15.5px; }
.remove { font-size: 12.5px; color: var(--ink-soft); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.remove:hover { color: var(--comb); }
.drawer-foot { padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; display: grid; gap: 10px; }
.sum-row { display: flex; justify-content: space-between; font-size: 15px; }
.sum-row.total { font-family: var(--f-display); font-size: 26px; margin: 4px 0 8px; }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; background: rgba(8, 20, 15, .55); backdrop-filter: blur(4px); }
.modal[hidden] { display: none; }
.modal-box { width: min(560px, 100%); max-height: calc(100dvh - 32px); overflow-y: auto; background: var(--paper); border-radius: 26px; box-shadow: 0 40px 100px -30px rgba(0,0,0,.6); animation: modalIn .55s var(--spring); }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(.95); } }
.co-head { display: flex; justify-content: space-between; align-items: center; padding: 24px 26px 8px; }
.co-head h3 { margin: 0; font-size: 28px; }
.progress { display: flex; gap: 6px; padding: 10px 26px 4px; }
.progress span { flex: 1; height: 4px; border-radius: 99px; background: var(--sand); position: relative; overflow: hidden; }
.progress span::after { content: ""; position: absolute; inset: 0; background: var(--forest); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.progress span.on::after { transform: scaleX(1); }
.co-body { padding: 18px 26px; display: grid; gap: 14px; animation: faqIn .45s var(--ease); }
.co-foot { display: flex; justify-content: space-between; gap: 12px; padding: 16px 26px 26px; }
.form-group { display: grid; gap: 6px; }
.form-group label { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line); background: #fff; font-size: 16px; resize: vertical; transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 4px rgba(163,189,48,.3); }
.form-group .invalid { border-color: var(--comb); animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-6px); } 50% { transform: translateX(6px); } 75% { transform: translateX(-3px); } }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-option { display: block; padding: 18px; border-radius: 16px; border: 1.5px solid var(--line); background: #fff; cursor: pointer; transition: border-color .2s, background .2s; }
.pay-option:has(input:checked) { border-color: var(--forest); background: #F6F9EA; }
.pay-option input { accent-color: var(--forest); width: 18px; height: 18px; margin: 0 10px 0 0; vertical-align: -3px; }
.pay-option b { font-size: 16px; }
.pay-option p { margin: 6px 0 0 28px; font-size: 14.5px; color: var(--ink-soft); }
.review-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.review-line.total { border: 0; font-weight: 800; font-size: 18px; }
.deliver-to { background: #fff; border-radius: 14px; padding: 14px 16px; font-size: 14.5px; border: 1px solid var(--line); }
.confirm { position: relative; text-align: center; padding: 10px 26px 30px; display: grid; gap: 10px; justify-items: center; overflow: hidden; }
.confirm .egg { width: 86px; margin: 10px auto 10px; animation: wobble 1.2s var(--ease) both; }
@keyframes wobble { 0% { transform: scale(.4); } 40% { transform: scale(1.1) rotate(-12deg); } 60% { transform: rotate(10deg); } 80% { transform: rotate(-5deg); } 100% { transform: none; } }
.confirm h3 { font-size: 34px; margin: 0; }
.order-id { font-weight: 800; letter-spacing: .12em; background: var(--leaf-soft); color: var(--forest); padding: 6px 14px; border-radius: 999px; font-size: 14px; }
.confirm p { color: var(--ink-soft); margin: 4px 0 8px; }
.confetti { position: absolute; top: -10px; width: 8px; height: 12px; border-radius: 3px; left: var(--x); background: var(--c); animation: confetti var(--d, 2.4s) var(--ease) var(--delay, 0s) forwards; pointer-events: none; }
@keyframes confetti { to { transform: translate(var(--dx), 520px) rotate(var(--r)); opacity: 0; } }

/* ---------- toast ---------- */
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 120; transform: translate(-50%, calc(100% + 40px)); visibility: hidden; background: var(--forest); color: var(--paper); padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 14.5px; box-shadow: var(--shadow); transition: transform .5s var(--spring), visibility .5s; max-width: calc(100% - 32px); text-align: center; }
.toast.show { transform: translate(-50%, 0); visibility: visible; }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }


/* ---------- membership ---------- */
.family { background: var(--forest-3); color: #E9E2CF; overflow: hidden; isolation: isolate; }
.family-glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 40% at 80% 10%, rgba(242,165,22,.18), transparent 70%), radial-gradient(40% 40% at 5% 90%, rgba(163,189,48,.14), transparent 70%); }
.family h2 { color: #fff; }
.family h2 em { color: var(--yolk-2); }
.family .sub { color: rgba(233,226,207,.72); max-width: 620px; }
.family-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: start; }

.builder { background: var(--paper); color: var(--ink); border-radius: 30px; padding: clamp(24px, 3vw, 40px); box-shadow: 0 50px 100px -40px rgba(0,0,0,.7); }
.b-step { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding-bottom: 26px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.b-num { width: 36px; height: 36px; border-radius: 50%; background: var(--forest); color: var(--yolk-2); display: grid; place-items: center; font-family: var(--f-display); font-size: 17px; }
.b-field h3 { font-size: 22px; margin: 4px 0 14px; }
.plan-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.basket-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.opt { position: relative; text-align: left; padding: 16px 16px 14px; border-radius: 16px; border: 1.5px solid var(--line); background: #fff; transition: border-color .25s, background .25s, transform .35s var(--spring), box-shadow .3s; }
.opt:hover { border-color: var(--ink); transform: translateY(-2px); }
.opt[aria-checked="true"] { border-color: var(--forest); background: #F4F8E6; box-shadow: 0 0 0 3px rgba(163,189,48,.35); }
.opt b { display: block; font-size: 15.5px; }
.opt small { display: block; color: var(--ink-soft); font-size: 13px; line-height: 1.35; margin-top: 3px; }
.opt .tag { position: absolute; top: -10px; right: 12px; background: var(--yolk); color: var(--forest-3); font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.opt .eggs-mini { display: flex; gap: 3px; margin-bottom: 10px; height: 20px; align-items: flex-end; }
.opt .eggs-mini i { width: 11px; height: 14px; border-radius: var(--egg-shape); background: var(--tan-egg); box-shadow: inset -2px -2px 3px rgba(0,0,0,.18); }
.opt .eggs-mini i:nth-child(3n+2) { background: var(--cream-egg); }
.opt .eggs-mini i:nth-child(3n) { background: var(--brown-egg); }
.addon-opts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.addon { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .2s, background .2s; }
.addon input { accent-color: var(--forest); width: 17px; height: 17px; margin: 0; }
.addon:has(input:checked) { border-color: var(--forest); background: #F4F8E6; }
.addon small { color: var(--ink-soft); font-weight: 600; }
.b-total { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: var(--forest); color: #fff; border-radius: 20px; padding: 22px 24px; }
.b-label { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.b-price { font-family: var(--f-display); font-size: 38px; line-height: 1.1; margin: 4px 0; }
.b-price s { font-size: 20px; opacity: .5; margin-right: 6px; }
.b-price strong { font-weight: 500; }
.b-price strong.tick { display: inline-block; animation: tick .45s var(--spring); }
.b-save { display: inline-block; font-size: 13.5px; font-weight: 700; color: var(--forest-3); background: var(--leaf); padding: 4px 10px; border-radius: 999px; }

.family-side { display: grid; gap: 34px; }
.member-card-wrap { perspective: 1000px; }
.member-card {
  position: relative; overflow: hidden; aspect-ratio: 1.586; border-radius: 22px; padding: 26px 28px;
  display: flex; flex-direction: column; color: #F6EFE0;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(242,165,22,.35), transparent 55%),
    radial-gradient(80% 80% at 0% 100%, rgba(163,189,48,.28), transparent 60%),
    linear-gradient(140deg, #1C4434, #0B231A 60%, #06150F);
  box-shadow: 0 40px 70px -30px rgba(0,0,0,.8), inset 0 0 0 1px rgba(255,220,150,.25);
  transform: rotateX(8deg) rotateY(-14deg) rotateZ(2deg);
  transition: transform .8s var(--ease);
  animation: cardFloat 7s ease-in-out infinite;
}
.member-card:hover { transform: none; animation-play-state: paused; }
@keyframes cardFloat { 50% { translate: 0 -10px; } }
.member-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255,236,190,.28) 48%, transparent 60%); transform: translateX(-100%); animation: foil 5s ease-in-out infinite; }
@keyframes foil { 55%, 100% { transform: translateX(100%); } }
.mc-top { display: flex; justify-content: space-between; align-items: flex-start; }
.mc-top img { width: 120px; height: auto; }
.mc-chip { width: 44px; height: 34px; border-radius: 7px; background: linear-gradient(135deg, #F7D58A, #C8912E 50%, #F2C66B); box-shadow: inset 0 0 0 1px rgba(0,0,0,.2); position: relative; }
.mc-chip::after { content: ""; position: absolute; inset: 7px 9px; border: 1px solid rgba(80,50,0,.4); border-radius: 3px; }
.mc-label { margin: auto 0 2px; font-size: 11px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--yolk-2); }
.mc-name { font-family: var(--f-display); font-size: clamp(22px, 2.2vw, 28px); margin: 0 0 16px; color: #fff; min-height: 1.2em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-foot { display: flex; gap: 24px; }
.mc-foot span { display: block; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; opacity: .6; font-weight: 700; }
.mc-foot b { font-size: 14px; font-weight: 700; }
.mc-eggs { position: absolute; right: 22px; bottom: 22px; display: flex; gap: 5px; align-items: flex-end; }
.mc-eggs span { width: 16px; height: 20px; border-radius: var(--egg-shape); background: var(--cream-egg); box-shadow: inset -3px -4px 5px rgba(0,0,0,.2); }
.mc-eggs span:nth-child(2) { background: var(--brown-egg); height: 23px; width: 18px; }
.mc-eggs span:nth-child(3) { background: var(--tan-egg); }

.perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.perks li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.perk-ic { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(163,189,48,.14); color: var(--leaf); flex: none; transition: transform .5s var(--spring), background .3s; }
.perks li:hover .perk-ic { transform: scale(1.12) rotate(-10deg); background: rgba(242,165,22,.2); color: var(--yolk-2); }
.perks h3 { color: #fff; font-size: 19px; margin: 2px 0 2px; }
.perks p { margin: 0; font-size: 14.5px; color: rgba(233,226,207,.66); }

.how { list-style: none; padding: 0; margin: clamp(60px, 7vw, 90px) 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: how; }
.how li { position: relative; padding: 28px 26px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); }
.how li span { font-family: var(--f-display); font-style: italic; font-size: 44px; color: var(--yolk-2); line-height: 1; display: block; margin-bottom: 14px; }
.how h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.how p { margin: 0; color: rgba(233,226,207,.66); font-size: 15px; }
.how li:not(:last-child)::after { content: ""; position: absolute; right: -18px; top: 50%; width: 12px; height: 12px; border-top: 1.5px solid rgba(255,255,255,.3); border-right: 1.5px solid rgba(255,255,255,.3); transform: translateY(-50%) rotate(45deg); }

.areas { margin-top: clamp(50px, 6vw, 80px); padding: clamp(26px, 3vw, 40px); border-radius: 30px; background: linear-gradient(135deg, rgba(163,189,48,.12), rgba(242,165,22,.08)); border: 1px solid rgba(255,255,255,.1); }
.areas-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.areas-head > .ic { width: 30px; height: 30px; color: var(--yolk-2); margin-top: 4px; }
.areas-head h3 { color: #fff; font-size: 26px; margin-bottom: 4px; }
.areas-head p { margin: 0; color: rgba(233,226,207,.7); }
.area-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.area-list li { padding: 9px 16px 9px 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); font-size: 14.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: background .25s, transform .35s var(--spring), border-color .25s; }
.area-list li::before { content: ""; width: 8px; height: 10px; border-radius: var(--egg-shape); background: var(--leaf); }
.area-list li:hover { background: rgba(242,165,22,.18); border-color: var(--yolk); transform: translateY(-3px); }
.js .area-list li { opacity: 0; transform: translateY(12px) scale(.9); }
.js .areas.in .area-list li { animation: areaIn .6s var(--spring) forwards; animation-delay: calc(var(--i) * 45ms + .2s); }
@keyframes areaIn { to { opacity: 1; transform: none; } }
.areas-note { margin: 22px 0 0; font-size: 15px; color: rgba(233,226,207,.72); }
.areas-note a, .u-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--yolk); }
.announce a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--leaf); }

/* subscribe toggle in basket */
.sub-box { border: 1.5px dashed var(--leaf-deep); background: #F7FAEC; border-radius: 16px; padding: 14px 16px; display: grid; gap: 10px; }
.sub-box p { margin: 0; font-size: 14px; font-weight: 700; color: var(--forest); display: flex; align-items: center; gap: 8px; }
.sub-box p .ic { width: 18px; height: 18px; color: var(--leaf-deep); }
.sub-choice { display: flex; flex-wrap: wrap; gap: 6px; }
.sub-choice button { padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 13px; font-weight: 700; transition: all .2s; }
.sub-choice button[aria-pressed="true"] { background: var(--forest); color: #fff; border-color: var(--forest); }
.sum-row.discount { color: var(--leaf-deep); font-weight: 700; }

/* invite popup */
.invite { position: fixed; left: 22px; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 45; width: min(340px, calc(100% - 44px)); background: var(--paper); border-radius: 24px; padding: 26px 24px 22px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.55), 0 0 0 1px var(--line); transform: translateY(30px) scale(.96); opacity: 0; transition: transform .6s var(--spring), opacity .4s; }
.invite.show { transform: none; opacity: 1; }
.invite[hidden] { display: none; }
.invite-x { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; font-size: 12px; }
.invite-egg { width: 52px; margin-bottom: 12px; animation: floaty 4s ease-in-out infinite; }
.invite-kicker { margin: 0 0 4px; font-size: 11.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--leaf-deep); }
.invite h2 { font-size: 28px; margin-bottom: 8px; }
.invite h2 em { color: var(--yolk-deep); }
.invite > p:not(.invite-kicker) { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; }

@media (max-width: 1100px) {
  .family-grid { grid-template-columns: 1fr; }
  .family-side { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (max-width: 760px) {
  .family-side { grid-template-columns: 1fr; }
  .member-card { transform: rotateX(4deg) rotateY(-6deg); }
  .plan-opts, .basket-opts { grid-template-columns: 1fr; }
  .opt { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
  .opt .eggs-mini { margin: 0; grid-row: span 2; width: 56px; flex-wrap: wrap; height: auto; }
  .b-step { grid-template-columns: 1fr; gap: 10px; }
  .how { grid-template-columns: 1fr; }
  .how li::after { display: none; }
  .b-total .btn { width: 100%; }
  .invite { left: 16px; right: 16px; width: auto; bottom: calc(86px + env(safe-area-inset-bottom)); }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .egg-row { grid-template-columns: repeat(4, 1fr); row-gap: 40px; }
  .product-grid, .breed-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, auto); row-gap: 20px; }
  .hero-stats div:nth-child(2) { border: 0; margin: 0; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 260px; }
  .b-1 { grid-row: span 2; }
  .b-2 { grid-column: span 2; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  :root { --header-h: 106px; }
  .menu {
    position: absolute; left: 0; right: 0; top: 100%;
    max-height: calc(100dvh - 100px); overflow-y: auto;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); color: var(--ink); padding: 8px 24px 30px;
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.4);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    font-family: var(--f-display); font-size: 30px; font-weight: 400;
  }
  .menu.open { opacity: 1; visibility: visible; transform: none; }
  .menu a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); opacity: 1; }
  .menu.open a { animation: lineIn .5s var(--ease) both; }
  .menu.open a:nth-child(2) { animation-delay: .04s; }
  .menu.open a:nth-child(3) { animation-delay: .08s; }
  .menu.open a:nth-child(4) { animation-delay: .12s; }
  .menu.open a:nth-child(5) { animation-delay: .16s; }
  .menu.open a:nth-child(6) { animation-delay: .2s; }
  .menu a:not(.btn)::after { display: none; }
  .menu .menu-cta { margin-top: 24px; font-family: var(--f-body); font-size: 16px; padding: 17px; }
  .burger { display: flex; }

  .feature-grid, .haldi-grid, .faq-grid { grid-template-columns: 1fr; }
  .feature-media { max-width: 560px; }
  .compare { grid-template-columns: 1fr; }
  .vs { justify-self: center; margin: -40px 0; position: relative; z-index: 1; }
  .review-grid { grid-template-columns: 1fr; }
  .faq .section-head { position: static; }
  .haldi-media { order: -1; }
  .scroll-cue { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .hide-sm { display: none; }
  .nav { height: 70px; }
  .brand { height: 38px; }
  .site-header.scrolled .nav { height: 64px; }
  .hero { min-height: max(640px, 100svh); }
  .hero-media { inset: 0 0 auto 0; height: 100svh; }
  .hero-media img { object-position: 100% 50%; }
  .hero-inner { padding-top: max(calc(var(--header-h) + 24px), 52svh); }
  .hero-shade { background: linear-gradient(180deg, rgba(8,28,21,.55) 0%, rgba(8,28,21,0) 18%, rgba(8,28,21,0) 38%, rgba(8,28,21,.7) 55%, rgba(8,28,21,.95) 80%, var(--forest-3) 100%); }
  .hero h1 { font-size: clamp(38px, 10.5vw, 52px); }
  .lead { margin-bottom: 28px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-stats dt { font-size: 26px; }
  .hero-stats div { padding-right: 18px; margin-right: 18px; }
  .kicker { font-size: 12.5px; }
  .trust span { font-size: 13px; }
  .statement { font-size: clamp(26px, 7.4vw, 34px); }
  .fm-badge { left: -8px; padding: 14px 16px; }
  .fm-badge strong { font-size: 17px; }
  .egg-row { grid-template-columns: repeat(3, 1fr); column-gap: 14px; }
  .egg-row .egg, .egg-row li:nth-child(even) .egg { width: 72px; }
  .egg-row b { font-size: 15px; }
  .product-grid, .breed-grid { grid-template-columns: 1fr; }
  .p-body, .breed-body { padding: 22px 20px 24px; }
  .bento { grid-auto-rows: 200px; gap: 10px; }
  .bento figcaption { font-size: 16px; left: 14px; bottom: 12px; }
  .haldi-facts li { padding-right: 18px; margin-right: 18px; }
  .haldi-facts b { font-size: 30px; }
  .haldi-media { height: 420px; }
  .cta-actions .btn { flex: 1 1 100%; }
  .foot-grid { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .co-foot .btn { flex: 1; padding-inline: 14px; }
  .shop-note { justify-content: flex-start; flex-direction: column; }
  .wa-float { width: 54px; height: 54px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal, .js .wipe { opacity: 1; transform: none; clip-path: none; }
  .statement .sw, .inline-img { opacity: 1; transform: none; }
  .motes, .fireflies, .dust { display: none; }
}

.fm-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.fm-wrap .fm-main { box-shadow: none; border-radius: 0; }
