/* ==========================================================
   Swarn Life — top bar / nav / hero
   ========================================================== */

:root{
  --forest: #14301F;
  --forest-2: #1B3A2B;
  --cream: #FAF6EC;
  --cream-2: #F1EADA;
  --paper: #FFFDF8;
  --lime: #C6FF3D;
  --lime-dark: #9FE000;
  --terracotta: #FF6B45;
  --ink: #16221B;
  --ink-soft: #4A5A50;
  --line: rgba(20,48,31,.12);

  --font-display: "Fraunces", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --container: 1240px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --nav-h: 88px;
  --topbar-h: 40px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }

.noise-overlay{
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.reveal{
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .8s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes reveal{
  to{ opacity: 1; transform: translateY(0); }
}

/* ============ TOP BAR ============ */
.topbar{
  height: var(--topbar-h);
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  position: relative;
  z-index: 60;
}
.topbar__marquee{
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.topbar__track{
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  padding-left: 24px;
  animation: marquee 22s linear infinite;
}
.topbar__track span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: .92;
}
.tb-icon{ flex-shrink: 0; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.topbar__side{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  opacity: .85;
}
.topbar__side a:hover{ opacity: .7; }
.topbar__divider{ opacity: .4; }
@media (max-width: 720px){
  .topbar__side{ display: none; }
}

/* ============ NAV ============ */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(250, 246, 236, .7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.nav.is-scrolled{
  background: rgba(250, 246, 236, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(20,48,31,.08);
}
.nav__inner{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img{
  height: 68px;
  width: auto;
}
.nav__logo-text{
  display: flex;
  flex-direction: column;
  gap: 1px;
  white-space: nowrap;
}
.nav__logo-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1;
  color: var(--forest);
}
.nav__logo-title em{
  font-style: italic;
  color: var(--terracotta);
}
.nav__logo-sub{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 640px){
  :root{ --nav-h: 84px; }
  .nav__logo img{ height: 64px; }
  .nav__logo-title{ font-size: 18px; }
  .nav__logo-sub{ font-size: 9px; }
}

.nav__links{
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 auto;
}
.nav__links a{
  position: relative;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav__links a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--lime-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav__links a:hover{ color: var(--forest); }
.nav__links a:hover::after{ transform: scaleX(1); transform-origin: left; }

.nav__actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  white-space: nowrap;
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, background .22s ease;
}
.btn--primary{
  background: var(--lime);
  color: var(--forest);
  box-shadow: 0 0 0 rgba(198,255,61,0);
}
.btn--primary:hover{
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(159,224,0,.6);
}
.btn--ghost{
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover{
  border-color: var(--forest);
  transform: translateY(-2px);
}
.btn--sm{ padding: 10px 18px; font-size: 13.5px; display: none; }
.btn--lg{ padding: 16px 26px; font-size: 15.5px; }
@media (min-width: 860px){ .btn--sm{ display: inline-flex; } }

.nav__burger{
  width: 40px; height: 40px;
  border: none; background: none;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav__burger span{
  width: 21px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 860px){ .nav__burger{ display: none; } }

.nav__links{ display: none; }
@media (min-width: 860px){ .nav__links{ display: flex; } }

.nav__drawer-close{
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.nav__drawer-close:hover{
  background: var(--lime);
  transform: rotate(90deg);
}

.nav__drawer{
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(78vw, 320px);
  z-index: 200;
  background: var(--paper);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 100px 28px 26px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.16,1,.3,1);
  box-shadow: -20px 0 40px -10px rgba(20,48,31,.2);
  overflow-y: auto;
}
.nav__drawer.is-open{
  transform: translateX(0);
}
.nav__drawer a{
  padding: 13px 4px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav__drawer .btn{ margin-top: 14px; align-self: flex-start; }
@media (min-width: 860px){ .nav__drawer{ display: none; } }

.nav__backdrop{
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(20,48,31,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.nav__backdrop.is-open{
  opacity: 1;
  visibility: visible;
}
@media (min-width: 860px){ .nav__backdrop{ display: none; } }

/* ============ HERO ============ */
.hero{
  position: relative;
  padding: 64px 28px 0;
  overflow: hidden;
}
.hero__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}
@media (max-width: 968px){
  .hero__inner{
    grid-template-columns: 1fr;
    padding-bottom: 40px;
    gap: 56px;
  }
}

.hero__blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: .55;
}
.hero__blob--1{
  width: 620px; height: 620px;
  top: -220px; right: -160px;
  background: radial-gradient(circle at 30% 30%, #C6FF3D, transparent 70%);
}
.hero__blob--2{
  width: 460px; height: 460px;
  bottom: -180px; left: -140px;
  background: radial-gradient(circle at 60% 40%, #FF6B45, transparent 70%);
  opacity: .28;
}
.hero__dots{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(20,48,31,.18) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 900px 600px at 78% 30%, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 900px 600px at 78% 30%, #000 40%, transparent 75%);
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
  box-shadow: 0 4px 14px -6px rgba(20,48,31,.15);
}
.badge__dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(159,224,0,.22);
}

.hero__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--forest);
  margin: 22px 0 20px;
}
.accent{
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--terracotta);
}
.accent__squiggle{
  position: absolute;
  left: 0; bottom: -.14em;
  width: 100%;
  height: .22em;
}

.hero__sub{
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 34px;
}

.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}
.hero__cta .btn svg{ transition: transform .25s ease; }
.hero__cta .btn:hover svg{ transform: translateX(3px); }

.hero__stats{
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.stat{
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  border-left: 2px solid var(--lime-dark);
}
.stat strong{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--forest);
  font-weight: 600;
}
.stat__star{ flex-shrink: 0; }
.stat span{
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---- visual ---- */
.hero__visual{
  position: relative;
  display: flex;
  justify-content: center;
}
.visual{
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.02;
}
.visual__card--main{
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(155deg, #E9F5C9 0%, var(--lime) 46%, #A9E634 100%);
  box-shadow: 0 40px 70px -30px rgba(20,48,31,.45);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.visual__card--main::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.5) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .5;
}
.visual__grid{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vcell{
  background: rgba(255,253,248,.92);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
  text-align: center;
  padding: 14px;
  box-shadow: 0 10px 24px -14px rgba(20,48,31,.35);
  transition: transform .3s ease;
}
.vcell:hover{ transform: translateY(-4px); }
.vcell:nth-child(2){ margin-top: 18px; }
.vcell:nth-child(3){ margin-bottom: 18px; }
.vcell img{
  width: 76px;
  height: 76px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 14px -4px rgba(20,48,31,.35);
}

.chip{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
  box-shadow: 0 16px 34px -14px rgba(20,48,31,.35);
  border: 1px solid var(--line);
  z-index: 2;
}
.chip--verified{ top: 4%; right: -6%; }
.chip--rating{ bottom: 16%; left: -10%; }
.chip--sourced{ bottom: -4%; right: 6%; }
.chip__stars{ display: inline-flex; align-items: center; gap: 1px; }

@media (max-width: 640px){
  .chip{ font-size: 11px; padding: 8px 12px; }
  .chip--verified{ top: -4%; right: 0; }
  .chip--rating{ display: none; }
  .chip--sourced{ bottom: -14%; right: 0; }
  .hero__visual{ margin-bottom: 40px; }
}

.float-a{ animation: floatY 5.5s ease-in-out infinite; }
.float-b{ animation: floatY 6.5s ease-in-out infinite .4s; }
.float-c{ animation: floatY 5s ease-in-out infinite .8s; }
@keyframes floatY{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* ---- bottom scrolling word marquee ---- */
.hero__marquee{
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid var(--line);
  background: var(--forest);
  overflow: hidden;
  padding: 16px 0;
}
.hero__marquee-track{
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: marquee2 26s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: rgba(250,246,236,.85);
}
.hero__marquee-track span{
  display: inline-flex;
  align-items: center;
  margin-right: 28px;
}
.hero__marquee-track span::after{
  content: "•";
  margin-left: 28px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--lime);
}
@keyframes marquee2{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ============ ABOUT US ============ */
.about{
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 100px 28px;
}
.about__blob{
  position: absolute;
  z-index: 0;
  width: 520px; height: 520px;
  left: -220px; bottom: -220px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  background: radial-gradient(circle at 50% 50%, var(--terracotta), transparent 70%);
}
.about__inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 968px){
  .about__inner{ grid-template-columns: 1fr; gap: 56px; }
}

.about__visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__ring{
  position: relative;
  width: clamp(240px, 28vw, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 40% 35%, #F1F9DC, var(--cream-2) 72%);
  box-shadow: 0 30px 60px -24px rgba(20,48,31,.25);
}
.about__ring-dashed{
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed var(--lime-dark);
  opacity: .6;
  animation: spin 40s linear infinite;
}
@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
.about__logo{
  width: 74%;
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(20,48,31,.2));
}
.about__chip-1{ top: 6%; right: -8%; }
.about__chip-2{ bottom: 4%; left: -10%; }
@media (max-width: 640px){
  .about__chip-1{ right: 0; }
  .about__chip-2{ left: 0; }
}

.about__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--forest);
  margin: 20px 0 18px;
}
.about__sub{
  font-size: clamp(15.5px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 36px;
}

.about__values{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 38px;
}
@media (max-width: 768px){
  .about__values{ grid-template-columns: 1fr; }
}

.about__cta-row{
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about__story-link{
  font-size: 14.5px;
  font-weight: 800;
  color: var(--forest);
  border-bottom: 2px solid var(--lime-dark);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.about__story-link:hover{ color: var(--terracotta); border-color: var(--terracotta); }

.value{
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}
.value__icon{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(198,255,61,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.value h3{
  font-size: 15px;
  font-weight: 800;
  color: var(--forest);
  margin: 0 0 6px;
}
.value p{
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ HOW IT WORKS / SOURCING ============ */
.sourcing{
  position: relative;
  overflow: hidden;
  background: var(--forest);
  padding: 100px 28px;
}
.sourcing__blob{
  position: absolute;
  z-index: 0;
  width: 560px; height: 560px;
  right: -220px; top: -220px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
  background: radial-gradient(circle at 50% 50%, var(--lime), transparent 70%);
}
.sourcing__inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}
.sourcing__head{
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.sourcing__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--paper);
  margin: 20px 0 14px;
}
.sourcing__sub{
  font-size: clamp(15.5px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(250,246,236,.72);
  margin: 0;
}

.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .steps{ grid-template-columns: 1fr; }
}

.step{
  position: relative;
  background: rgba(250,246,236,.06);
  border: 1px solid rgba(250,246,236,.14);
  border-radius: var(--radius-md);
  padding: 26px 22px 24px;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.step:hover{
  background: rgba(250,246,236,.1);
  border-color: rgba(250,246,236,.28);
  transform: translateY(-4px);
}
.step__num{
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--lime);
  opacity: .35;
}
.step__icon{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(198,255,61,.16);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3{
  font-size: 16px;
  font-weight: 800;
  color: var(--paper);
  margin: 0 0 8px;
}
.step p{
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(250,246,236,.68);
  margin: 0;
}

/* ============ PRODUCTS / SHOP ============ */
.shop{
  position: relative;
  background: var(--cream);
  padding: 100px 28px;
}
.shop__inner{
  max-width: var(--container);
  margin: 0 auto;
}
.shop__head{
  max-width: 640px;
  margin: 0 auto 8px;
  text-align: center;
}
.shop__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--forest);
  margin: 20px 0 14px;
}
.shop__sub{
  font-size: clamp(15.5px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 30px;
}

.shop__filters{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
}
.filter-pill{
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 13.5px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.filter-pill:hover{ border-color: var(--forest); color: var(--forest); }
.filter-pill.is-active{
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
}

.shop__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 860px){
  .shop__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .shop__grid{ grid-template-columns: 1fr; }
}

.product{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.product:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -22px rgba(20,48,31,.28);
}

.product__media{
  position: relative;
  aspect-ratio: 1 / .85;
  background: var(--cream);
  overflow: hidden;
}
.product__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.product:hover .product__media img{ transform: scale(1.05); }

.product__ribbon{
  position: absolute;
  top: 14px; left: 14px;
  background: var(--lime);
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .02em;
}

.product__body{ padding: 18px 18px 20px; }
.product__tag{
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.product__body h3{
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--forest);
  margin: 6px 0 8px;
}
.product__body h3 a{
  color: inherit;
  text-decoration: none;
}
.product__media a{ display: block; height: 100%; }
.product__rating{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 14px;
}
.product__rating span{ color: var(--ink-soft); font-weight: 600; }

.product__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__price{ display: flex; align-items: baseline; gap: 8px; }
.product__price strong{
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--forest);
}
.product__price del{ font-size: 13px; color: var(--ink-soft); opacity: .7; }

.product__add{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lime);
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .25s ease;
}
.product__add:hover{
  background: var(--lime-dark);
  transform: scale(1.1);
}

.shop__more{ text-align: center; margin-top: 48px; }

/* ============ TESTIMONIALS ============ */
.testimonials{
  position: relative;
  background: var(--forest-2);
  padding: 100px 0;
  overflow: hidden;
}
.testimonials__head{
  max-width: 640px;
  margin: 0 auto 52px;
  padding: 0 28px;
  text-align: center;
}
.testimonials__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--paper);
  margin: 20px 0 14px;
}
.testimonials__sub{
  font-size: clamp(15.5px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(250,246,236,.7);
  margin: 0;
}

.testimonials__viewport{
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonials__track{
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 28px;
}

.t-card{
  flex-shrink: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(250,246,236,.06);
  border: 1px solid rgba(250,246,236,.14);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.t-card__stars{ display: flex; gap: 2px; }
.t-card__quote{
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(250,246,236,.9);
  margin: 0;
  flex: 1;
}
.t-card__person{
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-card__avatar{
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--forest);
}
.t-card__avatar--a{ background: var(--lime); }
.t-card__avatar--b{ background: #F8CBA6; }
.t-card__avatar--c{ background: #C7DFCF; }
.t-card__name{ font-weight: 800; font-size: 14px; color: var(--paper); }
.t-card__meta{ font-size: 12px; color: rgba(250,246,236,.6); }

/* ============ FAQ ============ */
.faq{
  background: var(--paper);
  padding: 100px 28px;
}
.faq__inner{
  max-width: 780px;
  margin: 0 auto;
}
.faq__head{
  max-width: 560px;
  margin: 0 auto 44px;
  text-align: center;
}
.faq__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--forest);
  margin: 20px 0 14px;
}
.faq__sub{
  font-size: clamp(15.5px, 1.4vw, 17px);
  color: var(--ink-soft);
  margin: 0;
}

.faq__list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item{
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq__item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--forest);
  transition: background .2s ease;
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__item summary::marker{ content: ""; }
.faq__item summary:hover{ background: rgba(20,48,31,.04); }

.faq__icon{
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(198,255,61,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}
.faq__icon svg{ transition: transform .3s ease; }
.faq__item[open] .faq__icon{ background: var(--lime); }
.faq__item[open] .faq__icon svg{ transform: rotate(45deg); }

.faq__answer{ padding: 0 22px 22px; }
.faq__answer p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq__item[open] .faq__answer{ animation: faqFade .25s ease; }
@keyframes faqFade{
  from{ opacity: 0; transform: translateY(-4px); }
  to{ opacity: 1; transform: translateY(0); }
}

.faq__more{
  text-align: center;
  margin: 40px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.faq__more a{
  font-weight: 800;
  color: var(--forest);
  border-bottom: 2px solid var(--lime-dark);
}

/* ============ FOOTER ============ */
.footer{
  background: var(--forest);
  color: rgba(250,246,236,.75);
}
.footer__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.footer__newsletter{
  border-bottom: 1px solid rgba(250,246,236,.12);
}
.footer__newsletter-inner{
  padding: 44px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__newsletter-inner h3{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--paper);
  margin: 0 0 6px;
}
.footer__newsletter-inner p{
  font-size: 14px;
  color: rgba(250,246,236,.62);
  margin: 0;
}
.footer__form{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.footer__form input{
  width: 240px;
  max-width: 100%;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid rgba(250,246,236,.25);
  background: rgba(250,246,236,.06);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
}
.footer__form input::placeholder{ color: rgba(250,246,236,.45); }
.footer__form input:focus{
  outline: none;
  border-color: var(--lime);
}
.footer__form .btn{ padding: 13px 22px; font-size: 14px; white-space: nowrap; }
.footer__form .btn:disabled{ opacity: .6; cursor: default; }
@media (max-width: 640px){
  .footer__form{ flex-direction: column; align-items: stretch; width: 100%; }
  .footer__form input{ width: 100%; }
  .footer__form .btn{ justify-content: center; }
}
.footer__form.is-done p{
  color: var(--lime);
  font-weight: 700;
  font-size: 14.5px;
}

.footer__main{ padding: 60px 0; }
.footer__grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 860px){
  .footer__grid{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer__brand{ grid-column: 1 / -1; }
}
@media (max-width: 520px){
  .footer__grid{ grid-template-columns: 1fr; }
}

.footer__logo{
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
@media (max-width: 640px){
  .footer__logo{ height: 78px; }
}
.footer__brand p{
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(250,246,236,.6);
  max-width: 320px;
  margin: 0 0 20px;
}
.footer__socials{ display: flex; gap: 10px; }
.footer__social{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,236,.2);
  color: rgba(250,246,236,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer__social:hover{
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest);
  transform: translateY(-2px);
}

.footer__col h4{
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--paper);
  margin: 0 0 18px;
}
.footer__col{ display: flex; flex-direction: column; }
.footer__col a{
  font-size: 14px;
  color: rgba(250,246,236,.65);
  margin-bottom: 13px;
  width: fit-content;
  transition: color .2s ease;
}
.footer__col a:hover{ color: var(--lime); }
.footer__hours{
  font-size: 12.5px;
  color: rgba(250,246,236,.5);
  margin: 4px 0 0;
}

.footer__bottom{ border-top: 1px solid rgba(250,246,236,.12); }
.footer__bottom-inner{
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-inner p{
  font-size: 13px;
  color: rgba(250,246,236,.5);
  margin: 0;
}
.footer__legal{ display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a{
  font-size: 13px;
  color: rgba(250,246,236,.5);
  transition: color .2s ease;
}
.footer__legal a:hover{ color: var(--lime); }

/* ============ ABOUT PAGE HEADER ============ */
.nav__links a[aria-current="page"]{ color: var(--forest); }
.nav__links a[aria-current="page"]::after{ transform: scaleX(1); }

.about-hero{
  background: var(--cream);
  padding: 56px 28px 20px;
}
.about-hero__inner{
  max-width: var(--container);
  margin: 0 auto;
}
.breadcrumb{
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.breadcrumb a{ color: var(--forest); font-weight: 700; }
.breadcrumb a:hover{ text-decoration: underline; }

.about-hero__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--forest);
  margin: 20px 0 16px;
  max-width: 780px;
}
.about-hero__sub{
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 34px;
}
.about-hero__stats{ margin-bottom: 8px; }

/* ============ CTA BAND ============ */
.cta-band{
  background: linear-gradient(135deg, #EAF6C9 0%, var(--lime) 100%);
  padding: 80px 28px;
  text-align: center;
}
.cta-band__inner{
  max-width: 560px;
  margin: 0 auto;
}
.cta-band__inner h2{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--forest);
  margin: 0 0 12px;
}
.cta-band__inner p{
  font-size: 16px;
  color: var(--ink);
  opacity: .8;
  margin: 0 0 28px;
}

/* ============ PRODUCT DETAIL PAGE ============ */
.pdp{
  padding: 40px 28px 100px;
  background: var(--cream);
}
.pdp__inner{
  max-width: var(--container);
  margin: 0 auto;
}
.pdp__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
  margin-top: 24px;
}
@media (max-width: 900px){
  .pdp__grid{ grid-template-columns: 1fr; gap: 32px; }
}

.pdp__gallery{ position: relative; }
.pdp__image-frame{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 60px -30px rgba(20,48,31,.3);
}
.pdp__image-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp__gallery .product__ribbon{ position: absolute; top: 16px; left: 16px; z-index: 2; }

.pdp__info{ padding-top: 4px; }
.pdp__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  color: var(--forest);
  margin: 10px 0 6px;
}
.pdp__subtitle{
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.pdp__rating{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 20px;
}
.pdp__rating span{ color: var(--ink-soft); font-weight: 600; }

.pdp__price-row{
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.pdp__price{
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--forest);
}
.pdp__mrp{ font-size: 16px; color: var(--ink-soft); opacity: .7; }
.pdp__save{
  background: rgba(198,255,61,.32);
  color: var(--forest);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}
.pdp__tax-note{
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.pdp__benefits{
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pdp__benefits li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}
.pdp__benefits svg{ flex-shrink: 0; margin-top: 2px; }

.pdp__qty-row{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.pdp__qty{
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.pdp__qty button{
  width: 40px;
  height: 40px;
  background: var(--paper);
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  cursor: pointer;
  transition: background .2s ease;
}
.pdp__qty button:hover{ background: var(--cream); }
.pdp__qty-value{
  width: 42px;
  text-align: center;
  font-weight: 700;
  color: var(--forest);
  font-size: 15px;
}

.pdp__actions{
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.pdp__actions .btn{ flex: 1; min-width: 200px; justify-content: center; }

.pdp__trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip--static{ position: static; }

.pdp__details{ margin-top: 72px; }
.pdp__details-head{
  max-width: 560px;
  margin: 0 0 26px;
}

.pdp__related{ margin-top: 84px; }
.pdp__related-head{
  max-width: 560px;
  margin: 0 0 30px;
}

/* ============ CONTACT PAGE ============ */
.contact-methods{
  background: var(--cream);
  padding: 20px 28px 60px;
}
.contact-cards{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px){
  .contact-cards{ grid-template-columns: 1fr; }
}

.contact-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-card--wa{
  background: linear-gradient(155deg, #EAF6D0, #CDEB9C);
  border-color: transparent;
}
.contact-card__icon{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(198,255,61,.32);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-card--wa .contact-card__icon{ background: rgba(255,253,248,.7); }
.contact-card h3{
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 8px;
}
.contact-card p{
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.contact-card__tel{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-card__tel a{
  font-weight: 800;
  color: var(--forest);
  font-size: 15px;
}
.contact-card__tel a:hover{ color: var(--terracotta); }
.contact-card .btn{ font-size: 14px; padding: 12px 20px; }

.contact-main{
  background: var(--paper);
  padding: 20px 28px 100px;
}
.contact-grid{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; gap: 40px; }
}

.contact-wa-cta{
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}
.contact-wa-cta strong{
  display: block;
  color: var(--paper);
  font-size: 15px;
  margin-bottom: 3px;
}
.contact-wa-cta p{
  font-size: 13px;
  color: rgba(250,246,236,.65);
  margin: 0;
}
.contact-wa-cta > a{
  margin-left: auto;
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.contact-wa-cta > a:hover{ background: var(--lime-dark); transform: translateX(2px); }

.contact-form-card{
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label{
  font-size: 13px;
  font-weight: 800;
  color: var(--forest);
}
.field input,
.field textarea{
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
}
.field textarea{
  min-height: 120px;
  border-radius: 16px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--lime-dark);
}
.contact-form-note{
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
  margin: 14px 0 0;
}
.contact-form-card.is-done .contact-form-note{
  color: var(--forest);
  font-weight: 700;
}

/* ============ LEGAL PAGES ============ */
.legal{
  background: var(--paper);
  padding: 20px 28px 100px;
}
.legal__inner{
  max-width: 760px;
  margin: 0 auto;
}
.legal__updated{
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 40px;
}
.legal__inner h2{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  color: var(--forest);
  margin: 40px 0 14px;
}
.legal__inner h2:first-of-type{ margin-top: 0; }
.legal__inner p{
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.legal__inner ul,
.legal__inner ol{
  margin: 0 0 16px;
  padding-left: 20px;
}
.legal__inner ul{ list-style: disc; }
.legal__inner ol{ list-style: decimal; }
.legal__inner li{
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.legal__inner strong{ color: var(--ink); }
.legal__inner a{ color: var(--forest); font-weight: 700; }
.legal__inner a:hover{ color: var(--terracotta); }

@media (prefers-reduced-motion: reduce){
  .reveal, .topbar__track, .hero__marquee-track, .float-a, .float-b, .float-c, .about__ring-dashed, .faq__item[open] .faq__answer{
    animation: none !important;
  }
  .reveal{ opacity: 1; transform: none; }
}
