/* ============================================================
   Hariram's Home Needs — Design Tokens
   Palette: white / cream base, ghee-gold accent, leaf-green accent
   Style: iOS-style glassmorphism — frosted panels over soft
   blurred colour blobs, floating pill navigation, rounded corners
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  /* colour */
  --white:        #ffffff;
  --cream:        #fbfaf5;
  --ink:          #17271d;
  --ink-soft:     #4c5c50;

  --green-deep:   #1f5a3c;
  --green:        #2f7a4f;
  --green-fresh:  #6fb85a;
  --green-pale:   #e6f2e6;

  --gold:         #fca311;
  --gold-deep:    #c57f0d;
  --gold-pale:    #fff1db;

  --glass-fill:   linear-gradient(135deg, rgba(255,255,255,.68), rgba(255,255,255,.32));
  --glass-fill-strong: linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,.5));
  --glass-border: rgba(255,255,255,.7);
  --glass-shadow: 0 10px 40px rgba(20,60,35,.14), inset 0 1px 0 rgba(255,255,255,.6);

  /* type */
  --display: 'Fraunces', serif;
  --body: 'Manrope', sans-serif;

  /* layout */
  --maxw: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ---------- page transitions ---------- */
body{
  animation:page-in .6s cubic-bezier(.22,.61,.36,1) both;
}
body.page-out{
  animation:page-out .32s cubic-bezier(.4,0,1,1) both;
}
@keyframes page-in{
  from{ opacity:0; }
  to{ opacity:1; }
}
@keyframes page-out{
  from{ opacity:1; }
  to{ opacity:0; }
}

/* a soft glass sheen that sweeps across on page-in, echoing light catching glass */
body::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;
  background:linear-gradient(115deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  background-size:250% 250%;
  background-position:120% 0%;
  opacity:0;
  animation:sheen-sweep .7s ease-out both;
}
@keyframes sheen-sweep{
  0%{ opacity:.9; background-position:120% 0%; }
  100%{ opacity:0; background-position:-20% 0%; }
}

@media (prefers-reduced-motion: reduce){
  body, body.page-out, body::before{ animation:none !important; opacity:1 !important; filter:none !important; }
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{font-family:var(--display);margin:0;font-weight:600;letter-spacing:-.01em;}
p{margin:0;line-height:1.65;color:var(--ink-soft);}

:focus-visible{
  outline:3px solid var(--gold-deep);
  outline-offset:3px;
  border-radius:8px;
}

/* ---------- ambient background blobs (the "glass on iPhone" light) ---------- */
.bg-blobs{
  position:fixed;
  inset:0;
  z-index:-1;
  overflow:hidden;
  pointer-events:none;
}
.bg-blobs span{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:.55;
}
.blob-1{ width:520px; height:520px; top:-180px; left:-140px; background:var(--green-fresh); }
.blob-2{ width:460px; height:460px; top:120px; right:-180px; background:var(--gold); opacity:.5;}
.blob-3{ width:420px; height:420px; bottom:-160px; left:20%; background:var(--green-deep); opacity:.35;}
.blob-4{ width:360px; height:360px; bottom:10%; right:5%; background:var(--gold-deep); opacity:.3;}

/* ---------- glass utility ---------- */
.glass{
  background:var(--glass-fill);
  -webkit-backdrop-filter:blur(22px) saturate(160%);
  backdrop-filter:blur(22px) saturate(160%);
  border:1px solid var(--glass-border);
  box-shadow:var(--glass-shadow);
  border-radius:var(--radius-lg);
}
.glass-strong{
  background:var(--glass-fill-strong);
  -webkit-backdrop-filter:blur(26px) saturate(170%);
  backdrop-filter:blur(26px) saturate(170%);
  border:1px solid var(--glass-border);
  box-shadow:var(--glass-shadow);
}

/* ---------- container ---------- */
.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 28px;
}

/* ============== NAV ============== */
.nav-shell{
  position:sticky;
  top:18px;
  z-index:100;
  display:flex;
  justify-content:center;
  padding:0 20px;
}
.nav{
  position:relative;
  width:100%;
  max-width:var(--maxw);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px 12px 20px;
  border-radius:100px;
  isolation:isolate;
  /* cancel the .glass utility class's own filter/background on this element —
     those live on ::before instead, so this element never becomes a
     containing block for its position:fixed mobile-menu descendant */
  background:transparent;
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
  box-shadow:none;
  border:none;
}
.nav::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  border:1px solid var(--glass-border);
  box-shadow:var(--glass-shadow);
  /* stronger frost than the generic .glass utility so page content scrolling
     underneath never reads through clearly enough to clash with nav text */
  background:linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.8));
  -webkit-backdrop-filter:blur(30px) saturate(180%);
  backdrop-filter:blur(30px) saturate(180%);
}
.nav-links a,
.brand-tagline{
  text-shadow:0 1px 1px rgba(255,255,255,.5);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-logo{
  height:34px;
  width:auto;
  display:block;
  flex-shrink:0;
}
.brand-tagline{
  font-size:.64rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--green-deep);
  padding-left:10px;
  border-left:1px solid rgba(31,90,60,.25);
  line-height:1.3;
  white-space:nowrap;
}

.footer-brand .brand{margin-bottom:4px;}
.footer-brand .brand-logo{height:30px;}

.nav-links{
  display:flex;
  align-items:center;
  gap:4px;
}
.nav-links a{
  padding:10px 18px;
  border-radius:100px;
  font-size:.92rem;
  font-weight:600;
  color:var(--ink-soft);
  transition:background .2s ease,color .2s ease;
}
.nav-links a:hover{background:rgba(47,122,79,.1);color:var(--green-deep);}
.nav-links a.active{
  background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color:#fff;
  box-shadow:0 4px 14px rgba(31,90,60,.35);
}

.nav-toggle{
  display:none;
  width:42px;height:42px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.6);
  align-items:center;justify-content:center;
  cursor:pointer;
}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{
  content:'';
  display:block;
  width:18px;height:2px;
  background:var(--green-deep);
  position:relative;
  transition:.2s;
}
.nav-toggle span::before{position:absolute;top:-6px;}
.nav-toggle span::after{position:absolute;top:6px;}

/* ============== SECTION SPACING ============== */
section{padding:96px 0;}
.section-tight{padding:64px 0;}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--green-deep);
  background:var(--green-pale);
  padding:7px 14px;
  border-radius:100px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:'';
  width:6px;height:6px;border-radius:50%;
  background:var(--gold-deep);
}

/* ============== HERO ============== */
.hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
  padding-top:56px;
  padding-bottom:40px;
}
.hero h1{
  font-size:clamp(2.4rem, 4.6vw, 3.8rem);
  line-height:1.05;
  color:var(--ink);
}
.hero h1 em{
  font-style:normal;
  color:var(--green-deep);
  background:linear-gradient(180deg, transparent 62%, var(--gold-pale) 62%);
}
.hero p.lead{
  margin-top:22px;
  font-size:1.12rem;
  max-width:46ch;
}
.hero-ctas{
  display:flex;
  gap:14px;
  margin-top:34px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:15px 28px;
  border-radius:100px;
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  border:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color:var(--green-deep);
  box-shadow:0 10px 26px rgba(221,154,31,.4);
}
.btn-ghost{
  background:rgba(255,255,255,.55);
  color:var(--green-deep);
  border:1px solid rgba(255,255,255,.8);
  backdrop-filter:blur(10px);
}

.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:36px;
}
.chip{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 16px;
  border-radius:100px;
  font-size:.82rem;
  font-weight:600;
  color:var(--green-deep);
}
.chip svg{width:14px;height:14px;flex-shrink:0;}

/* ---------- dollop visual (signature element) ---------- */
.dollop-stage{
  position:relative;
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.dollop{
  position:relative;
  width:78%;
  aspect-ratio:1/1;
  border-radius:44% 56% 62% 38% / 48% 42% 58% 52%;
  background:
    radial-gradient(120% 120% at 28% 22%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 34%),
    radial-gradient(140% 140% at 70% 78%, var(--green-deep) 0%, transparent 55%),
    linear-gradient(150deg, #fed694 0%, var(--gold) 38%, var(--gold-deep) 70%, var(--green) 100%);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px);
  box-shadow:
    0 30px 60px rgba(31,90,60,.28),
    inset 0 2px 0 rgba(255,255,255,.7),
    inset 0 -30px 50px rgba(31,90,60,.25);
  animation:float 7s ease-in-out infinite;
}
.dollop::after{
  content:'';
  position:absolute;
  top:16%; left:20%;
  width:26%; height:18%;
  border-radius:50%;
  background:rgba(255,255,255,.75);
  filter:blur(6px);
}
@keyframes float{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-14px) rotate(2deg); }
}
.ring{
  position:absolute;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.6);
}
.ring-1{width:100%;height:100%;}
.ring-2{width:118%;height:118%;border-color:rgba(111,184,90,.35);}

@media (prefers-reduced-motion: reduce){
  .dollop{animation:none;}
}

/* ---------- real product photo in the hero ---------- */
.shot-glow{
  position:absolute;
  width:78%;
  aspect-ratio:1/1;
  border-radius:50%;
  background:radial-gradient(circle, rgba(252,163,17,.32) 0%, rgba(111,184,90,.18) 55%, transparent 76%);
  filter:blur(10px);
}
.product-shot{
  position:relative;
  max-height:92%;
  max-width:80%;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 26px 34px rgba(31,90,60,.32));
  animation:float 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce){
  .product-shot{animation:none;}
}

/* ============== CARDS / GRIDS ============== */
.grid{
  display:grid;
  gap:24px;
}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

.card{
  padding:32px 28px;
  border-radius:var(--radius-md);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{transform:translateY(-4px);}
.card-icon{
  width:52px;height:52px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  background:linear-gradient(135deg, var(--green-fresh), var(--green-deep));
  box-shadow:0 8px 18px rgba(31,90,60,.3);
}
.card-icon svg{width:26px;height:26px;stroke:#fff;}
.card h3{font-size:1.2rem;margin-bottom:10px;color:var(--ink);}
.card p{font-size:.95rem;}

.section-head{
  max-width:640px;
  margin-bottom:52px;
}
.section-head h2{
  font-size:clamp(1.8rem,3vw,2.6rem);
  color:var(--ink);
}
.section-head p{margin-top:14px;font-size:1.05rem;}
.center{text-align:center;margin-left:auto;margin-right:auto;}

/* ============== TIMELINE (process) ============== */
.timeline{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.tl-step{
  padding:26px 20px;
  border-radius:var(--radius-md);
  position:relative;
}
.tl-num{
  font-family:var(--display);
  font-size:1.6rem;
  font-weight:700;
  color:var(--gold-deep);
  margin-bottom:10px;
  display:block;
}
.tl-step h4{font-size:.98rem;margin-bottom:6px;color:var(--ink);}
.tl-step p{font-size:.85rem;}

/* ---------- process flow (home page) — linear, left to right ---------- */
.process-path{
  position:relative;
  padding:20px 0 10px;
}
.process-flow-wrap{
  display:flex;
  align-items:center;
  gap:40px;
  max-width:1180px;
  margin:0 auto;
}
.flow-endpoint-card{
  flex:0 0 auto;
  width:150px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.flow-endpoint-img{
  width:140px;
  height:140px;
  border-radius:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  box-sizing:border-box;
  background:var(--glass-fill);
  -webkit-backdrop-filter:blur(18px);
  backdrop-filter:blur(18px);
  border:1px solid var(--glass-border);
  box-shadow:0 18px 34px rgba(31,90,60,.18);
}
.flow-endpoint-img img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.flow-endpoint-jar{padding:10px 30px;}
.flow-endpoint-card span{
  font-family:var(--display);
  font-weight:700;
  font-size:.92rem;
  color:var(--ink);
  text-align:center;
}
.process-flow{
  position:relative;
  flex:1;
  min-width:0;
  aspect-ratio:970/340;
  height:auto;
}
.flow-svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:1;
}
.flow-dot{
  filter:drop-shadow(0 0 4px rgba(252,163,17,.7));
  opacity:0;
  transition:opacity .8s ease;
}
.process-path.in-view .flow-dot{opacity:1;}

.curve-reveal{
  opacity:1;
  transition:opacity .5s ease .15s;
}
.curve-dots{
  opacity:0;
  transition:opacity .6s ease;
}
.process-path.in-view .curve-dots{
  opacity:.7;
}
.process-path.in-view .curve-reveal.is-drawn{
  opacity:0;
}
@media (prefers-reduced-motion: reduce){
  .curve-reveal{opacity:0 !important;}
  .curve-dots{opacity:.7 !important;transition:none !important;}
  .flow-dot{display:none;}
}

/* each node is an anchor point; the dot and its text label are independently
   positioned from that SAME anchor, so the dot always sits exactly on the
   path regardless of which side (above/below) the text label is on */
.flow-node{
  position:absolute;
  z-index:2;
}
.node-dot{
  position:absolute;
  top:0;
  left:0;
  transform:translate(-50%,-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--display);
  font-weight:700;
  font-size:1.02rem;
  color:#fff;
  background:linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow:0 8px 18px rgba(197,127,13,.4), 0 0 0 6px var(--cream);
  transition:transform .3s ease, box-shadow .3s ease;
}
.flow-node:hover .node-dot{
  transform:translate(-50%,-50%) scale(1.15);
  box-shadow:0 14px 28px rgba(197,127,13,.55), 0 0 0 6px var(--cream);
}
.node-text{
  position:absolute;
  left:0;
  width:150px;
  transform:translateX(-50%);
  text-align:center;
  border-radius:20px;
  padding:14px 10px;
  box-sizing:border-box;
  cursor:default;
  transition:transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.node-text--below{top:22px;}
.node-text--above{bottom:22px;}
.flow-node:hover .node-text{
  background:var(--glass-fill);
  -webkit-backdrop-filter:blur(16px);
  backdrop-filter:blur(16px);
  box-shadow:var(--glass-shadow);
}
.flow-node:hover .node-text--below{transform:translateX(-50%) translateY(6px);}
.flow-node:hover .node-text--above{transform:translateX(-50%) translateY(-6px);}
.node-text h4{font-size:.9rem;margin-bottom:5px;color:var(--ink);transition:color .3s ease;}
.node-text p{font-size:.78rem;line-height:1.4;}
.flow-node:hover .node-text h4{color:var(--green-deep);}

@media (prefers-reduced-motion: reduce){
  .node-text,.node-dot,.node-text h4{transition:none !important;}
}

@media (max-width:900px){
  .process-flow-wrap{flex-direction:column;gap:28px;}
  .flow-endpoint-card{width:auto;}
  .flow-endpoint-img{width:120px;height:120px;}
  .process-flow{width:100%;height:auto;aspect-ratio:auto;}
  .flow-svg{display:none;}
  .flow-node{
    position:static;
    display:flex;
    align-items:center;
    gap:16px;
    width:100%;
    margin-bottom:14px;
  }
  .node-dot{position:static;transform:none;flex-shrink:0;}
  .flow-node:hover .node-dot{transform:none;}
  .node-text{
    position:static;
    transform:none;
    width:auto;
    flex:1;
    text-align:left;
    top:auto;
    bottom:auto;
    padding:16px 14px;
  }
  .flow-node:hover .node-text--below,
  .flow-node:hover .node-text--above{transform:none;}
  .node-text p{max-width:none;}
}

/* ============== CTA BAND ============== */
.cta-band{
  padding:56px 48px;
  border-radius:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  background:linear-gradient(135deg, rgba(47,122,79,.92), rgba(31,90,60,.94));
  color:#fff;
  box-shadow:0 20px 50px rgba(20,60,35,.35);
}
.cta-band h3{color:#fff;font-size:1.7rem;max-width:34ch;}
.cta-band p{color:rgba(255,255,255,.8);margin-top:8px;}

/* ============== FOOTER ============== */
footer{
  padding:56px 0 32px;
}
.footer-inner{
  padding:40px;
  border-radius:var(--radius-lg);
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:40px;
}
.footer-brand p{margin-top:14px;font-size:.9rem;max-width:32ch;}
.footer-col h5{
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--green-deep);
  margin-bottom:14px;
}
.footer-col li{margin-bottom:10px;}
.footer-col a{font-size:.92rem;color:var(--ink-soft);transition:color .2s;}
.footer-col a:hover{color:var(--green-deep);}

.social-row{
  display:flex;
  gap:10px;
  margin-top:16px;
}
.social-row a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(31,90,60,.08);
  color:var(--green-deep);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.social-row a:hover{
  background:var(--green-deep);
  color:#fff;
  transform:translateY(-3px);
}
.social-row svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.footer-bottom{
  text-align:center;
  font-size:.8rem;
  color:var(--ink-soft);
  margin-top:28px;
}

/* ============== PAGE HEADER (inner pages) ============== */
.page-head{
  padding:70px 0 30px;
  text-align:center;
}
.page-head .eyebrow{margin-bottom:16px;}
.page-head h1{font-size:clamp(2.1rem,4vw,3.1rem);}
.page-head p{max-width:56ch;margin:16px auto 0;font-size:1.05rem;}

/* ============== TESTIMONIALS (carousel, 3-up) ============== */
.testimonial-carousel{
  display:flex;
  align-items:center;
  gap:18px;
}
.testimonial-viewport{
  flex:1;
  overflow:hidden;
  padding:20px 36px 48px;
  margin:-20px -36px -48px;
}
.testimonial-track{
  display:flex;
  gap:24px;
  transition:transform .45s cubic-bezier(.22,.61,.36,1);
}
.testimonial-card{
  flex:0 0 calc((100% - 48px) / 3);
  box-sizing:border-box;
  padding:30px 28px 26px;
  border-radius:var(--radius-md);
  display:flex;
  flex-direction:column;
  min-height:290px;
  position:relative;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(20,60,35,.12), inset 0 1px 0 rgba(255,255,255,.6);
  transition:transform .3s ease, box-shadow .3s ease;
}
.testimonial-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:4px;
  background:linear-gradient(90deg, var(--gold), var(--green));
  opacity:.8;
}
.testimonial-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 28px rgba(31,90,60,.16);
}
.testimonial-quote-mark{
  font-family:var(--display);
  font-size:2.6rem;
  line-height:1;
  color:var(--gold);
  opacity:.9;
  margin-bottom:2px;
}
.testimonial-stars{
  display:flex;
  gap:3px;
  margin-bottom:12px;
}
.testimonial-stars svg{width:15px;height:15px;fill:var(--gold-deep);}
.testimonial-quote{
  font-size:.95rem;
  color:var(--ink-soft);
  line-height:1.62;
  flex-grow:1;
  margin-bottom:22px;
}
.testimonial-person{
  display:flex;
  align-items:center;
  gap:12px;
  padding-top:18px;
  border-top:1px solid rgba(31,90,60,.1);
}
.testimonial-avatar{
  width:46px;
  height:46px;
  border-radius:50%;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow:0 6px 14px rgba(31,90,60,.28);
  overflow:hidden;
}
.testimonial-avatar img{width:100%;height:100%;object-fit:cover;}
.testimonial-avatar svg{width:20px;height:20px;stroke:#fff;}
.testimonial-name{font-size:.92rem;font-weight:700;color:var(--ink);}
.testimonial-role{font-size:.78rem;color:var(--ink-soft);}

.carousel-arrow{
  flex-shrink:0;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.7);
  background:var(--glass-fill);
  -webkit-backdrop-filter:blur(16px);
  backdrop-filter:blur(16px);
  box-shadow:var(--glass-shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:var(--green-deep);
  transition:transform .2s ease, background .2s ease, opacity .2s ease;
}
.carousel-arrow:hover{transform:translateY(-2px);background:rgba(255,255,255,.75);}
.carousel-arrow svg{width:20px;height:20px;}
.carousel-arrow.is-disabled{opacity:.35;pointer-events:none;}

@media (max-width:980px){
  .testimonial-card{flex:0 0 calc((100% - 24px) / 2);}
}
@media (max-width:640px){
  .testimonial-card{flex:0 0 100%;}
  .testimonial-carousel{gap:10px;}
  .carousel-arrow{width:38px;height:38px;}
  .carousel-arrow svg{width:16px;height:16px;}
}

/* ============== BLOG LISTING ============== */
.tag-pill{
  display:inline-flex;
  align-items:center;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:6px 13px;
  border-radius:100px;
  background:var(--green-pale);
  color:var(--green-deep);
  margin-bottom:16px;
}

.blog-featured{
  padding:44px;
  border-radius:var(--radius-lg);
  margin-bottom:22px;
}
.blog-featured h2{
  font-size:clamp(1.4rem,2.4vw,1.8rem);
  color:var(--ink);
  margin-bottom:14px;
  max-width:26ch;
}
.blog-featured p{font-size:1.02rem;max-width:66ch;}
.blog-meta{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.78rem;
  color:var(--ink-soft);
  margin-bottom:4px;
}
.blog-meta span::after{content:'·';margin-left:10px;color:var(--ink-soft);}
.blog-meta span:last-child::after{content:'';}
.read-link{
  margin-top:20px;
  font-weight:700;
  color:var(--green-deep);
  font-size:.95rem;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.read-link svg{width:14px;height:14px;transition:transform .2s;}
.blog-featured:hover .read-link svg{transform:translateX(4px);}

.blog-more-note{
  display:flex;
  align-items:center;
  gap:18px;
  padding:26px 30px;
  border-radius:var(--radius-md);
}
.blog-more-note .card-icon{margin-bottom:0;flex-shrink:0;}
.blog-more-note h4{font-family:var(--display);font-size:1.02rem;color:var(--ink);margin-bottom:4px;}
.blog-more-note p{font-size:.88rem;}

@media (max-width:640px){
  .blog-more-note{flex-direction:column;text-align:center;}
}

/* ============== ARTICLE ============== */
.article-head{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  padding:66px 0 32px;
}
.article-head h1{font-size:clamp(2rem,4vw,2.9rem);}
.article-meta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  font-size:.85rem;
  color:var(--ink-soft);
  margin-top:18px;
}
.article-meta span::after{content:'·';margin-left:10px;}
.article-meta span:last-child::after{content:'';}

.article-body{
  max-width:760px;
  margin:0 auto;
  padding:52px 58px 48px;
  border-radius:var(--radius-lg);
  background:linear-gradient(160deg, rgba(255,255,255,.86), rgba(255,255,255,.66));
  -webkit-backdrop-filter:blur(24px) saturate(150%);
  backdrop-filter:blur(24px) saturate(150%);
  border:1px solid rgba(255,255,255,.8);
  box-shadow:var(--glass-shadow);
}
.article-body p{
  font-size:1.06rem;
  margin-bottom:20px;
  color:var(--ink-soft);
}
.article-body h2{
  font-size:1.45rem;
  color:var(--ink);
  margin:40px 0 16px;
}
.article-body h2 .num{
  color:var(--gold-deep);
  margin-right:10px;
}
.article-body ul{
  margin:0 0 20px;
  padding-left:0;
}
.article-body ul li{
  list-style:none;
  padding:12px 0 12px 30px;
  position:relative;
  font-size:1rem;
  color:var(--ink-soft);
  border-bottom:1px solid rgba(31,90,60,.08);
}
.article-body ul li::before{
  content:'';
  position:absolute;
  left:0;top:19px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--gold-deep);
}
.article-body h3{
  font-size:1.12rem;
  color:var(--ink);
  margin:32px 0 14px;
}
.article-body table{
  width:100%;
  border-collapse:collapse;
  margin:24px 0;
  font-size:.94rem;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(31,90,60,.12);
}
.article-body th{
  background:var(--green-pale);
  color:var(--green-deep);
  text-align:left;
  padding:12px 16px;
  font-weight:700;
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.article-body td{
  padding:12px 16px;
  border-top:1px solid rgba(31,90,60,.08);
  color:var(--ink-soft);
}
.article-body tr:nth-child(even) td{background:rgba(31,90,60,.03);}
.article-body .check-list li{padding-left:34px;}
.article-body .check-list li::before{
  content:'\2713';
  width:auto;height:auto;
  background:none;
  color:var(--green-deep);
  font-weight:700;
  font-size:.9rem;
  border-radius:0;
  top:11px;
}
.callout{
  padding:24px 26px;
  border-radius:var(--radius-sm);
  margin:32px 0;
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:var(--green-pale);
  border:1px solid rgba(31,90,60,.12);
  box-shadow:none;
}
.callout svg{width:22px;height:22px;stroke:var(--green-deep);flex-shrink:0;margin-top:2px;}
.callout p{margin:0;font-size:.94rem;color:var(--ink);}
.article-cta{
  margin-top:44px;
  padding:34px;
  border-radius:var(--radius-md);
  text-align:center;
  background:linear-gradient(135deg, rgba(47,122,79,.1), rgba(244,185,63,.14));
  border:1px solid rgba(31,90,60,.12);
  box-shadow:none;
}
.article-cta h3{font-size:1.25rem;margin-bottom:10px;color:var(--ink);}
.article-cta p{margin-bottom:22px;}
.back-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.88rem;
  font-weight:700;
  color:var(--green-deep);
  margin-bottom:8px;
}
.back-link svg{width:14px;height:14px;}

@media (max-width:720px){
  .article-body{padding:36px 26px;}
  .blog-featured{padding:32px 26px;}
}

/* ============== ABOUT PAGE ============== */
.logo-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}
.logo-chip{
  width:170px;
  height:84px;
  border-radius:var(--radius-sm);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  filter:grayscale(1);
  opacity:.6;
  transition:opacity .2s ease, filter .2s ease;
}
.logo-chip:hover{filter:grayscale(0);opacity:1;}
.logo-chip span{
  font-family:var(--display);
  font-weight:700;
  font-size:.95rem;
  color:var(--ink-soft);
  text-align:center;
  line-height:1.25;
}
.logo-note{
  text-align:center;
  font-size:.82rem;
  color:var(--ink-soft);
  margin-top:22px;
}
.about-hero{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:56px;
  align-items:center;
  padding:20px 0 40px;
}
.about-hero p{margin-top:16px;font-size:1.02rem;}
.value-grid{grid-template-columns:repeat(4,1fr);}

.story-figure{
  aspect-ratio:4/5;
  border-radius:var(--radius-lg);
  position:relative;
  overflow:hidden;
  background:linear-gradient(160deg, var(--green-pale), var(--gold-pale));
}
.story-figure .dollop{width:60%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}
.story-figure .ring{display:none;}

.blog-image{
  aspect-ratio:3/2;
  border-radius:var(--radius-lg);
  position:relative;
  overflow:hidden;
  background:linear-gradient(160deg, var(--green-pale), var(--gold-pale));
}

/* ============== FAQ ACCORDION ============== */
.faq-list{
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.faq-item{
  border-radius:var(--radius-md);
  padding:2px 26px;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:20px 30px 20px 0;
  font-weight:700;
  color:var(--ink);
  font-size:.98rem;
  position:relative;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:'+';
  position:absolute;
  right:0;
  top:16px;
  font-size:1.4rem;
  line-height:1;
  color:var(--gold-deep);
  font-weight:400;
  transition:transform .25s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item .faq-answer{
  padding:0 0 22px;
  margin:0;
  font-size:.92rem;
  color:var(--ink-soft);
  line-height:1.6;
}

/* ============== PRODUCT DETAIL PAGES ============== */
.pd-hero{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:48px;
  align-items:center;
  padding:44px;
  border-radius:var(--radius-lg);
  position:relative;
}
.pd-hero .dollop-stage{min-height:260px;}
.pd-tagline{
  font-family:var(--display);
  font-size:1.1rem;
  color:var(--green-deep);
  margin-bottom:14px;
}
.pd-section{max-width:840px;margin:0 auto;}
.pd-section h2{
  font-size:1.5rem;
  color:var(--ink);
  margin-bottom:16px;
  text-align:center;
}
.pd-section > p{
  text-align:center;
  font-size:1.02rem;
  color:var(--ink-soft);
  max-width:70ch;
  margin:0 auto;
}
.pd-checklist{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:8px;
}
.pd-checklist li{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-size:.9rem;
  color:var(--ink);
}
.pd-checklist li svg{width:16px;height:16px;stroke:var(--green-deep);flex-shrink:0;}
.pd-ingredients{
  padding:32px 36px;
  border-radius:var(--radius-md);
  text-align:center;
}
.pd-ingredients .main-ingredient{
  font-family:var(--display);
  font-size:1.15rem;
  color:var(--ink);
  margin-bottom:14px;
}
.pd-nots{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin-top:16px;
}
.pd-nots span{
  font-size:.78rem;
  font-weight:700;
  color:var(--ink-soft);
  background:rgba(31,90,60,.06);
  padding:6px 13px;
  border-radius:100px;
}
.pd-tag-cloud{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:8px;
}
.pd-tag-cloud span{
  font-size:.84rem;
  font-weight:600;
  color:var(--green-deep);
  background:var(--green-pale);
  padding:8px 16px;
  border-radius:100px;
}
.pd-storage{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:24px 28px;
  border-radius:var(--radius-md);
  max-width:640px;
  margin:0 auto;
}
.pd-storage svg{width:24px;height:24px;stroke:var(--gold-deep);flex-shrink:0;margin-top:2px;}
.pd-storage p{margin:0;font-size:.92rem;color:var(--ink);text-align:left;}
.pd-quote{
  text-align:center;
  font-family:var(--display);
  font-size:1.25rem;
  font-weight:500;
  color:var(--ink);
  max-width:60ch;
  margin:0 auto;
  line-height:1.5;
}
.pd-breadcrumb{
  font-size:.82rem;
  color:var(--ink-soft);
  margin-bottom:18px;
  text-align:center;
}
.pd-breadcrumb a{color:var(--green-deep);font-weight:600;}

@media (max-width:820px){
  .pd-hero{grid-template-columns:1fr;padding:32px 24px;}
  .pd-checklist{grid-template-columns:1fr;}
}

/* ============== PRODUCTS PAGE ============== */
.badge-soon{
  display:inline-block;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:6px 12px;
  border-radius:100px;
  background:var(--green-pale);
  color:var(--green-deep);
  margin-bottom:14px;
}
.product-featured.coming-soon{
  border:1.5px dashed rgba(31,90,60,.28);
}
.paneer-stack{
  position:relative;
  width:66%;
  height:66%;
}
.paneer-cube{
  position:absolute;
  border-radius:20px;
  background:linear-gradient(150deg, #ffffff 0%, #f7f2e6 55%, #ece4cf 100%);
  box-shadow:0 18px 30px rgba(31,90,60,.2), inset 0 1px 0 rgba(255,255,255,.9);
}
.paneer-cube.cube-1{width:64%;height:64%;top:6%;left:2%;transform:rotate(-7deg);}
.paneer-cube.cube-2{width:58%;height:58%;top:28%;left:32%;transform:rotate(9deg);}
.paneer-cube.cube-3{width:50%;height:50%;top:46%;left:10%;transform:rotate(-4deg);}

/* -- compact "available now" product cards (podi range) -- */
.product-grid{grid-template-columns:repeat(2,1fr);}
.product-card{
  padding:32px;
  border-radius:var(--radius-md);
  display:flex;
  flex-direction:column;
}
.podi-swatch{
  width:64px;height:64px;
  border-radius:50%;
  margin-bottom:18px;
  box-shadow:0 10px 20px rgba(31,90,60,.18), inset 0 1px 0 rgba(255,255,255,.4);
  background-size:9px 9px, 9px 9px, cover;
  background-position:1px 1px, 5px 5px, center;
}
.podi-paruppu{
  background-image:
    radial-gradient(rgba(255,255,255,.5) 1px, transparent 1.3px),
    radial-gradient(rgba(255,255,255,.35) 1px, transparent 1.3px),
    linear-gradient(140deg, #d98a3d 0%, #a85a1f 55%, #7a3d14 100%);
}
.podi-idli{
  background-image:
    radial-gradient(rgba(255,255,255,.7) 1.3px, transparent 1.6px),
    radial-gradient(rgba(255,255,255,.4) 1px, transparent 1.3px),
    linear-gradient(140deg, #c1502e 0%, #96331c 55%, #6b2313 100%);
}

/* -- top corner label: Available Now / Coming Soon -- */
.product-featured{position:relative;}
.corner-tag{
  position:absolute;
  top:26px;
  left:26px;
  z-index:2;
  padding:8px 16px;
  border-radius:100px;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 8px 16px rgba(0,0,0,.14);
}
.corner-tag.is-available{
  background:linear-gradient(135deg, var(--gold), var(--gold-deep));
  color:#fff;
}
.corner-tag.is-soon{
  background:var(--green-deep);
  color:#fff;
}

/* -- milk / oil visual variants (reuse the dollop blob shape) -- */
.dollop.milk-dollop{
  background:
    radial-gradient(120% 120% at 28% 22%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(150deg, #ffffff 0%, #eef1e6 40%, #d7e0cd 75%, var(--green) 100%);
}
.dollop.oil-dollop{
  background:
    radial-gradient(120% 120% at 28% 22%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(150deg, #f3d17a 0%, #c98a2e 40%, #8a5a1a 75%, var(--green) 100%);
}
.dollop.coconut-dollop{
  background:
    radial-gradient(120% 120% at 28% 22%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(150deg, #fffaf0 0%, #fdf1d6 40%, #e8d29c 75%, var(--green) 100%);
}
.dollop.groundnut-dollop{
  background:
    radial-gradient(120% 120% at 28% 22%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(150deg, #f6d488 0%, #d9a53f 40%, #a8721f 75%, var(--green) 100%);
}
.dollop.sesame-dollop{
  background:
    radial-gradient(120% 120% at 28% 22%, rgba(255,255,255,.75) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(150deg, #e8b563 0%, #b8792f 40%, #6b3f16 75%, var(--green) 100%);
}

/* -- large podi swatch for featured-card visual stage -- */
.podi-swatch-lg{
  width:66%;
  aspect-ratio:1/1;
  border-radius:50%;
  box-shadow:0 24px 40px rgba(31,90,60,.28), inset 0 2px 0 rgba(255,255,255,.35);
  background-size:11px 11px, 11px 11px, cover;
  background-position:1px 1px, 6px 6px, center;
}

.product-card h3{font-size:1.15rem;color:var(--ink);margin-bottom:10px;}
.product-card p{font-size:.92rem;flex-grow:1;}
.product-card .sizes{margin:18px 0 20px;}
.product-card .btn{align-self:flex-start;}

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


.product-featured{
  padding:44px;
  border-radius:var(--radius-lg);
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:44px;
  align-items:center;
  margin-bottom:32px;
}
.product-featured .dollop-stage{aspect-ratio:auto;height:320px;}
.badge{
  display:inline-block;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:6px 12px;
  border-radius:100px;
  background:var(--gold-pale);
  color:var(--gold-deep);
  margin-bottom:14px;
}
.variant-list{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.variant{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  border-radius:16px;
  background:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.7);
}
.variant strong{font-family:var(--display);font-size:1.02rem;color:var(--ink);}
.variant span{font-size:.85rem;color:var(--ink-soft);}
.sizes{display:flex;gap:8px;flex-wrap:wrap;}
.size-pill{
  font-size:.76rem;
  font-weight:700;
  padding:5px 12px;
  border-radius:100px;
  background:var(--green-pale);
  color:var(--green-deep);
}

.upcoming-grid{grid-template-columns:repeat(3,1fr);}
.upcoming-card{
  padding:30px 26px;
  border-radius:var(--radius-md);
  border:1.5px dashed rgba(31,90,60,.28);
  background:rgba(255,255,255,.32);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height:220px;
  justify-content:center;
}
.upcoming-card .card-icon{
  background:rgba(255,255,255,.6);
  box-shadow:none;
  border:1.5px dashed rgba(221,154,31,.4);
}
.upcoming-card .card-icon svg{stroke:var(--gold-deep);}
.upcoming-card h4{font-family:var(--display);font-size:1.08rem;color:var(--ink);margin-bottom:6px;}
.upcoming-card p{font-size:.85rem;}
.soon-badge{
  margin-top:14px;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--green-deep);
  background:var(--green-pale);
  padding:5px 12px;
  border-radius:100px;
}

/* ============== CONTACT PAGE ============== */
.contact-grid{
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:start;
}
.contact-info{padding:38px;}
.info-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:18px 0;
  border-bottom:1px solid rgba(31,90,60,.1);
}
.info-row:last-child{border-bottom:none;}
.info-icon{
  width:42px;height:42px;border-radius:12px;
  background:var(--green-pale);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.info-icon svg{width:20px;height:20px;stroke:var(--green-deep);}
.info-row h4{font-size:.95rem;margin-bottom:4px;color:var(--ink);}
.info-row p{font-size:.9rem;}

.form-card{padding:38px;}
.form-row{margin-bottom:18px;}
.form-row label{
  display:block;
  font-size:.82rem;
  font-weight:700;
  color:var(--green-deep);
  margin-bottom:8px;
}
.form-row input, .form-row textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(31,90,60,.18);
  background:rgba(255,255,255,.6);
  font-family:var(--body);
  font-size:.95rem;
  color:var(--ink);
  resize:vertical;
}
.form-row input:focus, .form-row textarea:focus{
  outline:2px solid var(--gold-deep);
  outline-offset:1px;
}
.form-note{font-size:.8rem;margin-top:14px;color:var(--ink-soft);}

.map-note{
  margin-top:24px;
  padding:22px;
  border-radius:var(--radius-md);
  display:flex;
  gap:14px;
  align-items:center;
}
.map-note svg{width:24px;height:24px;stroke:var(--gold-deep);flex-shrink:0;}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px){
  .hero,.about-hero,.contact-grid,.product-featured{grid-template-columns:1fr;}
  .hero{padding-top:30px;}
  .dollop-stage{max-width:340px;margin:0 auto;}
  .grid-3,.grid-4,.value-grid,.upcoming-grid{grid-template-columns:repeat(2,1fr);}
  .timeline{grid-template-columns:repeat(2,1fr);}
  .footer-inner{grid-template-columns:1fr 1fr;}
  .cta-band{flex-direction:column;text-align:center;}
}

@media (max-width: 720px){
  .nav-links{
    position:fixed;
    inset:0;
    z-index:200;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:100px 32px 60px;
    border-radius:0;
    background:linear-gradient(160deg, rgba(255,255,255,.97), rgba(251,250,245,.97));
    -webkit-backdrop-filter:blur(30px);
    backdrop-filter:blur(30px);
    border:none;
    box-shadow:none;
    display:none;
    gap:6px;
    overflow-y:auto;
  }
  .nav-links.open{display:flex;}
  .nav-links a{
    display:block;
    width:100%;
    max-width:340px;
    text-align:center;
    padding:18px 20px;
    margin:6px 0;
    font-size:1.15rem;
    border-radius:16px;
  }
  .nav-links a.active{padding:18px 20px;}
  .nav-toggle{
    display:flex;
    position:relative;
    z-index:210;
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after{
    transition:transform .25s ease, opacity .2s ease, top .25s ease;
  }
  .nav-toggle.is-open span{background:transparent;}
  .nav-toggle.is-open span::before{transform:rotate(45deg);top:0;}
  .nav-toggle.is-open span::after{transform:rotate(-45deg);top:0;}
  section{padding:64px 0;}
  .grid-3,.grid-4,.value-grid,.upcoming-grid,.timeline{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr;}
  .cta-band{padding:36px 26px;}
}

body.nav-open{overflow:hidden;}

