/* Base styles and critical utilities also work before the CDN is available. */
html { -webkit-text-size-adjust: 100%; tab-size: 4; }
button { font-family: inherit; line-height: inherit; border-style: solid; }
img, svg { vertical-align: middle; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.rotate-180 { transform: rotate(180deg); }

@font-face {
  font-family: Inter;
  src: url("../assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Pantry Serif";
  src: url("../assets/fonts/Serif-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Pantry Serif";
  src: url("../assets/fonts/Serif-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Noto Malayalam";
  src: url("../assets/fonts/Malayalam.woff2") format("woff2");
  font-display: swap;
}
:root {
  --baby-lime: #8dc53e;
  --baby-green: #168020;
  --forest: #0b4f27;
  --cream: #fff8e8;
  --beige: #f3e8d3;
  --spice-red: #a7371f;
  --earth: #56301e;
  --cocoa: #29170f;
  --gold: #d5a62b;
  --ink: #25251f;
  --muted: #62675a;
  --line: #234f2929;
  --serif: "Pantry Serif", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
  --gutter: clamp(22px, 5.5vw, 106px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../assets/textures/grain.svg");
  opacity: 0.035;
  pointer-events: none;
  z-index: 100;
}
::selection {
  color: var(--cream);
  background: var(--forest);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  line-height: 1.09;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(38px, 4.4vw, 76px);
}
h3 {
  font-family: var(--serif);
  line-height: 1.22;
  letter-spacing: -0.025em;
}
em {
  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button:disabled {
  cursor: default;
  opacity: 0.35;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
picture {
  display: block;
}
svg {
  display: inline-block;
}
button,
input {
  font: inherit;
}
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--spice-red);
  outline-offset: 6px;
  border-radius: 4px;
}
[hidden] {
  display: none !important;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.section-pad {
  padding: clamp(70px, 8.5vw, 150px) var(--gutter);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.handwritten {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.04em;
  font-size: 25px;
  line-height: 1.3;
}
.malayalam {
  font-family: "Noto Malayalam", sans-serif;
  font-size: 14px;
  line-height: 2;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 16px 25px;
  border: 1px solid var(--forest);
  border-radius: 100px;
  background: var(--forest);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--baby-lime);
  transform: translateY(105%);
  transition: transform 0.3s;
  z-index: -1;
}
.button:hover::before {
  transform: translateY(0);
}
.button:hover {
  color: var(--forest);
  border-color: var(--baby-lime);
}
.button .icon,
.text-link .icon {
  transition: transform 0.25s;
}
.button:hover .icon,
.text-link:hover .icon {
  transform: translate(2px, -2px);
}
.button-small {
  font-size: 10px;
  min-height: 43px;
  padding: 10px 19px;
  gap: 15px;
}
.button-lime {
  background: var(--baby-lime);
  color: var(--forest);
  border-color: var(--baby-lime);
}
.button-lime::before {
  background: var(--cream);
}
.text-link {
  display: inline-flex;
  gap: 17px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.text-link:hover::after {
  transform: scaleX(1);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 200;
  background: var(--forest);
  color: white;
  padding: 12px 25px;
}
.skip-link:focus {
  top: 10px;
}
.announcement {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  background: var(--forest);
  color: var(--cream);
  font-size: 9px;
  letter-spacing: 0.055em;
}
.announcement-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.announcement-right span {
  color: var(--baby-lime);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff8e8f5;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: #fff8e8ec;
  backdrop-filter: blur(16px);
  border-color: var(--line);
  box-shadow: 0 4px 20px #29170f05;
}
.nav-shell {
  height: 94px;
  margin: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}
.scrolled .nav-shell {
  border-bottom-color: transparent;
}




.desktop-nav {
  display: flex;
  gap: clamp(13px, 1.8vw, 32px);
  align-items: center;
}
.desktop-nav a {
  position: relative;
  font-size: 10px;
  white-space: nowrap;
  padding: 10px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.desktop-nav a:hover::after {
  transform: scaleX(1);
}
.menu-toggle,
.mobile-menu {
  display: none;
}
.hero {
  position: relative;
  padding: 42px var(--gutter) 0;
  overflow: hidden;
  min-height: 760px;
  height: calc(100svh - 126px);
  max-height: 1050px;
  display: flex;
  flex-direction: column;
}
.hero-heading {
  text-align: center;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 9px;
  margin-bottom: 17px;
}
.tiny-star {
  font-size: 19px;
  color: var(--baby-green);
}
h1 {
  font-size: clamp(66px, 7.4vw, 138px);
  line-height: 1.03;
  letter-spacing: -0.067em;
}
.title-line {
  display: block;
}
.title-line em {
  color: var(--baby-green);
}
.hero-bottom {
  position: relative;
  flex: 1;
  min-height: 380px;
}
.hero-copy {
  position: absolute;
  top: 20%;
  left: 0;
  width: 270px;
  z-index: 5;
}
.hero-copy > p {
  max-width: 260px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  margin-bottom: 24px;
}
.hero-copy .button {
  padding: 14px 22px;
  font-size: 11px;
  gap: 23px;
}
.hero-whatsapp {
  display: flex;
  width: max-content;
  font-size: 10px;
  gap: 10px;
  margin-top: 8px;
}
.hero-origin {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  font-size: 9px;
  line-height: 1.7;
  color: var(--muted);
}
.origin-line {
  width: 27px;
  height: 1px;
  background: #8e9b7c;
}
.hero-art {
  position: absolute;
  left: 25%;
  right: 0;
  top: -28%;
  bottom: 0;
  max-width: 960px;
}
.hero-halo {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  left: 19%;
  top: 0;
  background: radial-gradient(
    ellipse,
    #e8d9a36b 0%,
    #ede4c559 45%,
    #fff8e800 72%
  );
  border-radius: 50%;
}
.pantry-shelf {
  position: absolute;
  width: 81%;
  height: 44px;
  left: 11%;
  bottom: 18px;
  background: radial-gradient(ellipse, #5d563822, transparent 70%);
  border-radius: 50%;
}
.hero-jar {
  position: absolute;
  width: 43%;
  height: 100%;
  bottom: 0;
}
.hero-jar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.jar-left {
  left: 9%;
  transform: rotate(-11deg) scale(0.82);
  bottom: -9px;
}
.jar-right {
  right: 0;
  transform: rotate(10deg) scale(0.82);
  bottom: -2px;
}
.jar-center {
  left: 32%;
  transform: rotate(-3deg);
  z-index: 2;
}
.hero-botanical {
  position: absolute;
  right: -11%;
  top: 1%;
  width: 35%;
  transform: rotate(34deg);
  opacity: 0.5;
}
.hero-lemon {
  position: absolute;
  width: 19%;
  bottom: 2%;
  left: 22%;
  transform: rotate(-16deg);
  z-index: 3;
}
.hero-chilli {
  position: absolute;
  width: 23%;
  bottom: 0;
  right: 10%;
  transform: rotate(-17deg);
  z-index: 3;
}
.hero-annotation {
  position: absolute;
  right: 1%;
  top: 29%;
  font-size: 24px;
  transform: rotate(7deg);
  z-index: 4;
}
.hero-annotation span {
  display: block;
  font-size: 44px;
  line-height: 0.8;
  margin-left: 30px;
}
.round-seal {
  position: absolute;
  left: 6%;
  top: 9%;
  border: 1px solid #769059;
  outline: 1px solid #769059;
  outline-offset: -7px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-direction: column;
  transform: rotate(-15deg);
  background: #fff8e888;
}
.round-seal span {
  font-size: 7px;
  letter-spacing: 0.14em;
}
.round-seal .icon {
  width: 31px;
  height: 31px;
  stroke-width: 1.1;
}
.mustard {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #614027;
  position: absolute;
  box-shadow: 9px 8px 0 -1px #866c30, 20px -7px 0 -2px #45381e;
}
.seed-one {
  left: 15%;
  bottom: 10%;
}
.seed-two {
  right: 21%;
  bottom: 4%;
  transform: rotate(80deg);
}
.seed-three {
  right: 9%;
  bottom: 9%;
  transform: rotate(-42deg);
}
.hero-foot {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 59px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  letter-spacing: 0.13em;
}
.hero-foot > span:first-child {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0;
  font-size: 15px;
}
.hero-foot a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.025em;
}
.hero-foot a span {
  font-size: 20px;
}
.marquee {
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-track > div {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.marquee-track span {
  font-size: 23px;
  line-height: 1;
  color: var(--baby-lime);
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.intro {
  text-align: center;
  position: relative;
  padding-top: 90px;
  padding-bottom: 95px;
}
.intro-ornament {
  font-size: 41px;
  color: var(--baby-green);
  line-height: 1;
  margin-bottom: 26px;
}
.intro .eyebrow {
  margin-bottom: 27px;
}
.intro h2 {
  font-size: clamp(32px, 3.3vw, 58px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}
.intro h2 em {
  color: var(--baby-green);
}
.intro-copy {
  margin: 26px auto 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.intro .malayalam {
  font-size: 12px;
  color: #718258;
}
.collection {
  background: #f3efdf;
  padding-top: 82px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 42px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  padding-bottom: 5px;
}
.section-heading h2 em {
  color: var(--baby-green);
}
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 50px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  min-height: 44px;
  transition: background 0.2s, color 0.2s;
}
.filter:hover {
  border-color: var(--line);
}
.filter.active {
  background: var(--forest);
  color: var(--cream);
}
.filter > span:not(.food-mark) {
  font-size: 8px;
  opacity: 0.6;
}
.food-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  flex-shrink: 0;
  color: var(--baby-green);
}
.food-mark::after {
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}
.food-mark.nonveg {
  color: var(--spice-red);
}
.food-mark.nonveg::after {
  border-radius: 0;
  background: none;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-bottom: 6px solid currentColor;
}
.filter.active .food-mark {
  color: var(--cream);
}
.collection-note {
  font-size: 21px;
  transform: rotate(-4deg);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 46px 30px;
}
.product-card {
  min-width: 0;
}
.product-art {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 425px;
  background: #e4d8b6;
  isolation: isolate;
}
.product-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../assets/textures/grain.svg");
  opacity: 0.1;
  mix-blend-mode: multiply;
}
.product-tag {
  position: absolute;
  top: 23px;
  left: 25px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.13em;
  z-index: 3;
}
.art-word {
  position: absolute;
  top: 61px;
  left: 28px;
  font-family: var(--serif);
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  z-index: -1;
}
.product-art picture {
  position: absolute;
  inset: 40px 8% -9%;
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.product-art .product-jar {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.product-card:hover .product-art picture {
  transform: rotate(-4deg) scale(1.055);
}
.art-dates picture {
  inset: 30px -3% -17% 29%;
  transform: rotate(8deg);
}
.product-signature:hover .art-dates picture {
  transform: rotate(3deg) scale(1.05);
}
.card-lemon {
  position: absolute;
  bottom: 23px;
  left: 10%;
  width: 26%;
  transform: rotate(-12deg);
}
.card-botanical {
  position: absolute;
  right: -5%;
  top: 4%;
  width: 47%;
  opacity: 0.24;
  transform: rotate(15deg);
  z-index: -1;
}
.art-note {
  position: absolute;
  bottom: 33px;
  left: 27px;
  font-size: 23px;
  transform: rotate(-7deg);
}
.art-dates .art-note {
  left: auto;
  right: 25px;
  bottom: 20px;
  font-size: 18px;
}
.art-prawn {
  background: #ded9c9;
}
.art-prawn picture {
  inset: 35px -10% -20% 10%;
  transform: rotate(-9deg);
}
.art-prawn .art-word {
  color: #797664;
}
.card-chilli {
  position: absolute;
  bottom: 6px;
  left: 6%;
  width: 31%;
  transform: rotate(-25deg);
}
.art-beef {
  background: #dac0a4;
}
.art-beef picture {
  transform: rotate(8deg);
  inset: 35px 8% -20% -9%;
}
.art-beef .art-word {
  left: auto;
  right: 32px;
  color: #785b45;
}
.art-beef .card-chilli {
  left: auto;
  right: 4%;
  transform: rotate(5deg);
}
.art-mango {
  background: #ced4b1;
}
.art-mango picture {
  inset: 5px -10% -16% 22%;
  transform: rotate(-7deg);
}
.art-mango .art-word {
  color: #4d6542;
}
.featured-grid .product-card:nth-child(3) {
  grid-column: 1;
  max-width: 82%;
}
.featured-grid .product-card:nth-child(4) {
  margin-left: -21%;
  grid-column: 2;
}
.product-info {
  padding: 20px 3px 0;
}
.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.product-title-row h3 {
  font-size: 25px;
}
.product-info > p {
  color: var(--muted);
  font-size: 11px;
  max-width: 370px;
  margin: 9px 0 10px;
}
.product-info .text-link {
  font-size: 10px;
}
.product-info .icon {
  width: 16px;
  height: 16px;
}
.pantry-heading {
  margin-top: 80px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.pantry-heading h3 {
  font-size: 31px;
  margin-top: 10px;
}
.carousel-controls {
  display: flex;
  gap: 10px;
}
.round-button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  transition: background 0.2s;
}
.round-button:hover:not(:disabled) {
  background: #dce4c6;
}
.pantry-track {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  gap: 19px;
  padding: 3px 0 24px;
  scrollbar-width: thin;
  scrollbar-color: #829271 transparent;
}
.pantry-card {
  flex: 0 0 calc((100% - 57px) / 4);
  min-width: 225px;
  scroll-snap-align: start;
  background: #fff8e8b3;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 282px;
  position: relative;
}
.pantry-card .food-mark {
  position: absolute;
  right: 22px;
  top: 25px;
}
.pantry-glyph {
  font-family: var(--serif);
  font-size: 52px;
  color: #74875a;
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 24px;
}
.pantry-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.pantry-card p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 15px;
}
.pantry-card .text-link {
  margin-top: auto;
  width: 100%;
  justify-content: space-between;
  font-size: 10px;
}
.noscript-note {
  margin-top: 25px;
}
.signature-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #e9edda;
  position: relative;
}
.signature-visual {
  padding: 70px 30px 65px var(--gutter);
  border-right: 1px solid var(--line);
}
.signature-sticky {
  position: sticky;
  top: 135px;
  text-align: center;
  padding-bottom: 20px;
}
.signature-sticky .eyebrow {
  font-size: 8px;
  margin-bottom: 20px;
}
.signature-sticky h2 {
  font-size: clamp(32px, 3.7vw, 64px);
}
.signature-sticky h2 em {
  color: #487045;
}
.signature-art {
  position: relative;
  height: 390px;
  margin-top: 4px;
}
.signature-circle {
  position: absolute;
  left: 50%;
  top: 45px;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  border: 1px solid #82946b5c;
  border-radius: 50%;
}
.signature-art picture {
  position: absolute;
  inset: -17px 0 -40px;
  z-index: 2;
}
.signature-jar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-7deg);
}
.signature-leaf {
  position: absolute;
  width: 210px;
  right: -25px;
  top: 6%;
  transform: rotate(30deg);
  opacity: 0.4;
}
.signature-lemon {
  position: absolute;
  width: 138px;
  left: 5%;
  bottom: 22px;
  z-index: 3;
}
.signature-note {
  position: absolute;
  right: -2px;
  bottom: 30px;
  transform: rotate(7deg);
  font-size: 20px;
  z-index: 3;
}
.signature-sticky .button {
  font-size: 10px;
  min-height: 46px;
  padding: 12px 20px;
  gap: 15px;
}
.signature-story {
  padding: 35px var(--gutter) 35px 65px;
}
.signature-block {
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
  min-height: 300px;
}
.signature-block:last-child {
  border: 0;
}
.chapter {
  font-size: 8px;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #5c7351;
}
.signature-block h3 {
  font-size: clamp(32px, 3.1vw, 52px);
  margin: 23px 0 21px;
  line-height: 1.18;
  letter-spacing: -0.05em;
}
.signature-block p {
  font-size: 12px;
  color: var(--muted);
  max-width: 330px;
  line-height: 1.9;
}
.signature-block em {
  color: #65834b;
}
.quality {
  padding-top: 95px;
  padding-bottom: 95px;
}
.quality h2 {
  font-size: clamp(35px, 4vw, 64px);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 35px;
}
.benefit-grid article {
  padding: 30px 30px 10px;
  border-right: 1px solid var(--line);
}
.benefit-grid article:first-child {
  padding-left: 0;
}
.benefit-grid article:last-child {
  border: 0;
  padding-right: 0;
}
.benefit-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.benefit-top > span {
  font-size: 10px;
  color: #738667;
}
.benefit-icon {
  width: 39px;
  height: 39px;
  stroke: currentColor;
  stroke-width: 1.25;
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.benefit-grid h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.benefit-grid p {
  font-size: 11px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 200px;
}
.our-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9%;
  padding-top: 40px;
}
.story-art {
  min-height: 515px;
  background: #e5ddc9;
  position: relative;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  isolation: isolate;
  overflow: hidden;
}
.recipe-paper {
  padding: 42px 31px 35px;
  background: #fcf7e8;
  box-shadow: 0 10px 20px #544f2910;
  transform: rotate(-6deg);
  width: 92%;
  position: relative;
  z-index: 2;
}
.recipe-paper .eyebrow {
  font-size: 7px;
}
.recipe-leaf {
  width: 46px;
  height: 46px;
  stroke: var(--forest);
  stroke-width: 1;
  fill: none;
  display: block;
  margin: 25px auto;
}
.recipe-paper > p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: -0.03em;
}
.recipe-paper .handwritten {
  font-size: 19px;
  display: block;
  margin-top: 15px;
  color: #739051;
}
.paper-signature {
  font-size: 8px;
  margin-top: 35px;
  line-height: 1.9;
}
.paper-signature strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}
.story-art > img {
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 280px;
  transform: rotate(-20deg);
  z-index: 3;
  opacity: 0.7;
  pointer-events: none;
}
.story-caption {
  position: absolute;
  bottom: 16px;
  font-size: 7px;
  letter-spacing: 0.16em;
}
.story-copy .eyebrow {
  margin-bottom: 25px;
}
.story-copy h2 {
  font-size: clamp(35px, 4.1vw, 65px);
  margin-bottom: 29px;
}
.story-copy h2 em {
  color: var(--baby-green);
}
.story-copy > p:not(.eyebrow):not(.handwritten) {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.95;
  max-width: 400px;
}
.story-copy .handwritten {
  font-size: 25px;
  margin-top: 28px;
  color: #68804c;
  transform: rotate(-3deg);
}
.meal-break {
  background: #6a311f;
  min-height: 500px;
  padding: 100px var(--gutter);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.meal-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 45%, #b27d38 0%, transparent 65%);
  z-index: -1;
}
.meal-content {
  position: relative;
  z-index: 2;
}
.meal-content .eyebrow {
  font-size: 9px;
  color: #edcea2;
  margin-bottom: 25px;
}
.meal-content h2 {
  font-size: clamp(45px, 5.8vw, 98px);
  letter-spacing: -0.055em;
}
.meal-content h2 em {
  color: #ddc48b;
}
.meal-content .malayalam {
  font-size: 12px;
  color: #edd8ba;
  margin-top: 29px;
}
.meal-jar {
  position: absolute;
  width: 460px;
  right: 7%;
  height: 115%;
  top: -4%;
  object-fit: contain;
  transform: rotate(14deg);
}
.meal-leaf {
  position: absolute;
  right: -3%;
  bottom: -8%;
  width: 370px;
  filter: brightness(2.4);
  opacity: 0.35;
  transform: rotate(-24deg);
  z-index: -1;
}
.meal-lemon {
  position: absolute;
  right: 4%;
  bottom: 5%;
  width: 180px;
  transform: rotate(-15deg);
}
.ingredients {
  min-height: 600px;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 65px;
}
.ingredients-center {
  max-width: 485px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.ingredients-center .eyebrow {
  margin-bottom: 23px;
}
.ingredients-center h2 {
  font-size: clamp(38px, 4.5vw, 73px);
}
.ingredients-center h2 em {
  color: var(--baby-green);
}
.ingredients-center > p:not(.eyebrow) {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 345px;
  margin: 23px auto;
}
.ingredient-promise {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 8px;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.ingredient-promise .icon {
  width: 23px;
  height: 23px;
}
.ingredient-item {
  position: absolute;
  width: 170px;
  z-index: 1;
}
.ingredient-item span {
  display: block;
  font-size: 22px;
}
.ingredient-lemon {
  right: 7%;
  top: 90px;
  transform: rotate(14deg);
}
.ingredient-chilli {
  left: 6%;
  bottom: 100px;
  transform: rotate(-10deg);
}
.ingredient-leaf {
  position: absolute;
  left: 5%;
  top: 10px;
  width: 195px;
  transform: rotate(-38deg);
  opacity: 0.65;
}
.ingredient-label {
  position: absolute;
  font-size: 19px;
}
.label-leaf {
  top: 160px;
  left: 9%;
  transform: rotate(-12deg);
}
.label-spice {
  bottom: 167px;
  right: 5%;
  font-size: 18px;
  transform: rotate(-7deg);
}
.ingredient-footer {
  margin-top: 100px;
  font-size: 8px;
  letter-spacing: 0.14em;
  display: flex;
  justify-content: center;
  gap: 23px;
  align-items: center;
}
.ingredient-footer b {
  color: #a88f4e;
}
.spice-scatter {
  position: absolute;
  right: 13%;
  bottom: 225px;
  width: 90px;
  height: 80px;
  transform: rotate(-12deg);
}
.spice-scatter i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #563b21;
  position: absolute;
  box-shadow: inset 2px 2px 2px #d2b38250;
}
.spice-scatter i:nth-child(2) {
  left: 15px;
  top: 20px;
  width: 6px;
  height: 6px;
}
.spice-scatter i:nth-child(3) {
  left: 35px;
  top: 8px;
}
.spice-scatter i:nth-child(4) {
  left: 18px;
  top: 43px;
}
.spice-scatter i:nth-child(5) {
  left: 50px;
  top: 28px;
}
.spice-scatter i:nth-child(6) {
  left: 70px;
  top: 45px;
  width: 5px;
  height: 5px;
}
.spice-scatter i:nth-child(7) {
  left: 44px;
  top: 61px;
  width: 6px;
  height: 6px;
}
.spice-scatter i:nth-child(8) {
  left: 79px;
  top: 12px;
}
.delivery {
  background: #f1eddd;
  padding-top: 85px;
  padding-bottom: 80px;
}
.order-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin: 50px 0 40px;
}
.order-steps li {
  position: relative;
}
.order-steps li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 10px;
  color: #7b8b67;
  font-size: 23px;
  font-weight: 200;
}
.step-number {
  font-family: var(--serif);
  font-style: italic;
  display: block;
  font-size: 43px;
  line-height: 1.5;
  color: #81976b;
  margin-bottom: 23px;
}
.order-steps h3 {
  font-size: 23px;
  margin-bottom: 14px;
}
.order-steps p {
  font-size: 11px;
  color: var(--muted);
  max-width: 210px;
  line-height: 1.9;
}
.delivery-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 33px;
}
.delivery-bottom > .button {
  font-size: 11px;
  gap: 14px;
}
.delivery-bottom > p {
  font-size: 9px;
  color: var(--muted);
}
.delivery-bottom > p span {
  margin-left: 14px;
  font-weight: 600;
  color: var(--forest);
}
.delivery-bottom small {
  font-size: 8px;
  display: block;
  margin-top: 2px;
}
.order-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--forest);
  color: var(--cream);
  padding: 75px var(--gutter);
  min-height: 420px;
  isolation: isolate;
  overflow: hidden;
}
.order-banner .eyebrow {
  font-size: 8px;
  color: #aeca94;
  margin-bottom: 20px;
}
.order-banner h2 {
  font-size: clamp(40px, 4.7vw, 78px);
}
.order-banner h2 em {
  color: #aace79;
}
.order-banner p:not(.eyebrow) {
  font-size: 12px;
  margin: 20px 0 25px;
  color: #dce6cc;
}
.order-banner > .banner-art {
  position: relative;
  min-height: 280px;
  align-self: stretch;
}
.banner-art > img {
  position: absolute;
  inset: -150px 0 -140px;
  width: 100%;
  height: calc(100% + 290px);
  object-fit: contain;
  transform: rotate(13deg);
  z-index: 1;
}
.banner-halo {
  position: absolute;
  inset: 0;
  aspect-ratio: 1;
  max-width: 340px;
  max-height: 340px;
  border-radius: 50%;
  background: #2b683c;
  transform: translate(10%, 0);
}
.banner-art .handwritten {
  position: absolute;
  right: -3%;
  bottom: -10px;
  color: #cbd9b8;
  font-size: 15px;
  font-family: "Noto Malayalam", sans-serif;
  transform: rotate(-8deg);
  z-index: 2;
}
.contact {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 55px;
  padding-top: 85px;
  padding-bottom: 85px;
}
.contact h2 {
  font-size: clamp(32px, 3.5vw, 58px);
  margin-top: 20px;
}
.contact h2 em {
  color: var(--baby-green);
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.contact-details .eyebrow {
  font-size: 8px;
  color: #778467;
}
.contact-details p {
  font-size: 11px;
  line-height: 1.9;
  margin-top: 10px;
}
.contact-phone {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 10px 0 1px;
}
.contact-details .text-link {
  font-size: 10px;
}
.site-footer {
  padding: 40px var(--gutter) 0;
  background: #e8eddb;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-top > p {
  font-size: 10px;
  line-height: 2;
  color: #526a45;
}
.footer-top .malayalam {
  font-size: 10px;
}
.footer-top > .text-link {
  font-size: 11px;
}
.footer-display {
  font-family: var(--serif);
  font-size: clamp(64px, 11.2vw, 220px);
  letter-spacing: -0.065em;
  line-height: 1.4;
  margin: 24px 0 16px;
  position: relative;
  white-space: nowrap;
}
.footer-display em {
  color: #728c52;
}
.footer-display > img {
  position: absolute;
  right: -8%;
  top: -54px;
  width: 200px;
  opacity: 0.25;
  transform: rotate(32deg);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 8px;
  color: #5a6b50;
}
.footer-bottom nav {
  display: flex;
  gap: 20px;
}
.footer-bottom nav a {
  padding: 8px 0;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.back-top {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.floating-order {
  position: fixed;
  right: 23px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  background: var(--forest);
  border: 1px solid #aac387;
  border-radius: 100px;
  padding: 15px;
  box-shadow: 0 4px 20px #173e2326;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.floating-order.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-order > span {
  font-size: 10px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s;
}
.floating-order:hover > span,
.floating-order:focus-visible > span {
  max-width: 160px;
}
.floating-arrow {
  display: none;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 55px;
  }
  .hero-art {
    top: -20%;
    left: 25%;
    right: 3%;
    max-width: none;
  }
  .hero-copy {
    width: 300px;
    top: 22%;
  }
  .hero-copy > p {
    font-size: 14px;
    max-width: 290px;
  }
  .hero-copy .button {
    font-size: 12px;
  }
  .hero-annotation {
    font-size: 30px;
  }
  .product-art {
    height: 520px;
  }
  .signature-art {
    height: 480px;
  }
  .signature-circle {
    width: 340px;
    height: 340px;
  }
  .signature-block {
    min-height: 350px;
  }
  .hero-foot {
    min-height: 70px;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  
  .nav-shell {
    height: 102px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 13px;
  }
  .desktop-nav a {
    font-size: 9px;
  }
  .nav-order {
    font-size: 9px;
    padding: 10px 14px;
    gap: 9px;
  }
  
  
  
  .hero {
    min-height: 750px;
  }
  .hero-art {
    left: 24%;
    right: -5%;
    top: -17%;
  }
  .hero-copy {
    width: 235px;
    top: 23%;
  }
  .hero-copy > p {
    font-size: 11px;
    max-width: 220px;
  }
  .hero-annotation {
    right: 2%;
    top: 17%;
    font-size: 21px;
  }
  .round-seal {
    left: 4%;
    top: 11%;
    width: 93px;
    height: 93px;
    gap: 5px;
  }
  .round-seal span {
    font-size: 6px;
  }
  .product-art {
    height: 350px;
  }
  .art-word {
    font-size: 36px;
  }
  .signature-story {
    padding-left: 40px;
  }
  .signature-art {
    height: 340px;
  }
  .signature-note {
    font-size: 17px;
  }
  .signature-lemon {
    width: 115px;
    left: 0;
  }
  .benefit-grid article {
    padding-right: 20px;
    padding-left: 20px;
  }
  .benefit-grid h3 {
    font-size: 23px;
  }
  .story-art {
    min-height: 455px;
    padding: 35px 20px;
  }
  .recipe-paper {
    padding: 30px 22px;
  }
  .recipe-paper > p {
    font-size: 20px;
  }
  .meal-jar {
    right: 0;
    width: 410px;
  }
  .ingredient-item {
    width: 135px;
  }
  .ingredient-leaf {
    left: 1%;
    width: 155px;
  }
  .label-leaf {
    left: 3%;
    top: 140px;
  }
  .label-spice {
    right: 3%;
    font-size: 15px;
  }
  .ingredient-chilli {
    left: 3%;
  }
  .ingredients-center {
    max-width: 420px;
  }
  .order-steps {
    gap: 24px;
  }
  .order-steps h3 {
    font-size: 20px;
  }
  .order-banner {
    min-height: 370px;
  }
  .contact {
    gap: 35px;
  }
  .footer-top .malayalam {
    font-size: 9px;
  }
}
@media (max-width: 1199px) {
  .desktop-nav {
    display: none;
  }
  .nav-order {
    margin-left: auto;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    position: relative;
    z-index: 2;
  }
  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: var(--forest);
    transition: transform 0.25s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 9px;
    background: var(--cream);
    padding: 30px var(--gutter) 40px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100svh - 85px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    box-shadow: 0 20px 20px #29170f10;
  }
  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu > .eyebrow {
    margin-bottom: 15px;
  }
  .mobile-menu > a {
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.4;
    padding: 4px 0;
  }
  .mobile-menu > .handwritten {
    margin-top: 20px;
    font-size: 22px;
    color: var(--baby-green);
  }
}
@media (max-width: 900px) {
  .nav-shell {
    height: 82px;
  }
  .hero {
    min-height: 730px;
    height: auto;
    padding-top: 35px;
  }
  .hero-bottom {
    min-height: 460px;
  }
  .hero-art {
    top: 0;
    left: 22%;
    right: -8%;
  }
  .hero-copy {
    top: 30%;
    width: 195px;
  }
  .hero-copy > p {
    max-width: 180px;
    font-size: 10px;
  }
  .hero-copy .button {
    padding: 12px 16px;
    font-size: 10px;
    gap: 10px;
    min-height: 46px;
  }
  .hero-annotation {
    right: 7%;
    top: 8%;
    font-size: 19px;
  }
  .hero-origin {
    margin-top: 20px;
  }
  .round-seal {
    left: 6%;
    top: 0;
  }
  .hero-foot > span:last-child {
    display: none;
  }
  .hero-foot {
    min-height: 57px;
  }
  .hero-foot a {
    font-size: 8px;
  }
  .signature-visual {
    padding-left: 25px;
  }
  .signature-story {
    padding-right: 30px;
    padding-left: 30px;
  }
  .signature-art {
    height: 315px;
  }
  .signature-note {
    right: -4px;
    font-size: 15px;
  }
  .signature-leaf {
    width: 160px;
    right: -12px;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid article {
    padding: 25px !important;
  }
  .benefit-grid article:nth-child(2) {
    border-right: 0;
  }
  .benefit-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .benefit-grid h3 br {
    display: none;
  }
  .benefit-grid p {
    max-width: none;
  }
  .our-story {
    gap: 6%;
    padding-top: 20px;
  }
  .recipe-paper > p {
    font-size: 17px;
  }
  .recipe-paper .handwritten {
    font-size: 16px;
  }
  .recipe-paper .eyebrow {
    font-size: 6px;
  }
  .story-art {
    min-height: 420px;
  }
  .story-copy > p:not(.eyebrow):not(.handwritten) {
    font-size: 11px;
  }
  .story-copy .handwritten {
    font-size: 20px;
  }
  .meal-break {
    min-height: 430px;
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .meal-jar {
    width: 350px;
    right: -5%;
    opacity: 0.9;
  }
  .meal-content h2 {
    font-size: 55px;
  }
  .ingredients-center {
    max-width: 360px;
  }
  .ingredients {
    padding-top: 110px;
    min-height: 580px;
  }
  .ingredient-lemon {
    right: 1%;
    top: 70px;
    width: 120px;
  }
  .ingredient-chilli {
    width: 130px;
    left: 2%;
  }
  .label-spice {
    right: 1%;
    bottom: 150px;
    width: 135px;
  }
  .ingredient-footer {
    font-size: 7px;
    gap: 13px;
    letter-spacing: 0.06em;
  }
  .order-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .order-steps li:nth-child(2)::after {
    display: none;
  }
  .order-steps li::after {
    right: 15px !important;
  }
  .step-number {
    margin-bottom: 10px;
  }
  .order-steps p {
    max-width: 260px;
  }
  .order-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .banner-art > img {
    inset: -100px -30px -100px;
    width: calc(100% + 60px);
    height: calc(100% + 200px);
  }
  .banner-halo {
    transform: translate(5%, 25%);
  }
  .banner-art .handwritten {
    font-size: 11px;
    right: -15%;
    bottom: -15px;
  }
  .footer-top > p {
    max-width: 260px;
  }
  .footer-top .malayalam {
    font-size: 8px;
  }
  .footer-top > .text-link {
    font-size: 10px;
  }
  .contact {
    grid-template-columns: 1.2fr 1fr;
  }
  .contact-phone {
    font-size: 23px;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 91px;
  }
  .announcement {
    height: 29px;
    justify-content: center;
    font-size: 8px;
  }
  .announcement-right {
    display: none;
  }
  .nav-shell {
    height: 74px;
    gap: 12px;
  }
  
  
  
  
  .nav-order {
    font-size: 8px;
    min-height: 37px;
    padding: 9px 12px;
    gap: 6px;
  }
  .nav-order .icon {
    width: 14px;
    height: 14px;
  }
  .menu-toggle {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
  }
  .hero {
    padding: 30px 22px 0;
    min-height: 0;
    height: auto;
    max-height: none;
  }
  .hero-eyebrow {
    font-size: 7px;
    letter-spacing: 0.13em;
    gap: 7px;
    margin-bottom: 17px;
  }
  .tiny-star {
    font-size: 14px;
  }
  h1 {
    font-size: clamp(43px, 11.25vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.06em;
  }
  .hero-bottom {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: initial;
  }
  .hero-art {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% + 34px);
    margin-left: -17px;
    height: 335px;
    margin-top: -4px;
    order: 0;
  }
  .hero-jar {
    width: 47%;
  }
  .jar-left {
    left: 1%;
    bottom: -12px;
    transform: rotate(-12deg) scale(0.78);
  }
  .jar-right {
    right: 0;
    bottom: -11px;
    transform: rotate(11deg) scale(0.78);
  }
  .jar-center {
    left: 25%;
    bottom: -6px;
    width: 52%;
    transform: rotate(-4deg);
  }
  .hero-halo {
    width: 85%;
    left: 7%;
    top: 0;
  }
  .hero-botanical {
    right: -10%;
    top: 2%;
    width: 31%;
    opacity: 0.35;
  }
  .hero-lemon {
    left: 12%;
    bottom: 5%;
    width: 23%;
  }
  .hero-chilli {
    right: 5%;
    bottom: 4%;
    width: 28%;
  }
  .round-seal {
    left: 0;
    top: 9%;
    width: 69px;
    height: 69px;
    outline-offset: -5px;
    gap: 4px;
  }
  .round-seal span {
    font-size: 4.5px;
    letter-spacing: 0.12em;
  }
  .round-seal .icon {
    width: 22px;
    height: 22px;
  }
  .hero-annotation {
    right: 0;
    top: 10%;
    font-size: 16px;
    transform: rotate(7deg);
  }
  .hero-annotation span {
    font-size: 30px;
    margin-left: 10px;
  }
  .pantry-shelf {
    bottom: 20px;
    width: 95%;
    left: 0;
  }
  .mustard {
    width: 5px;
    height: 5px;
  }
  .seed-one {
    left: 8%;
    bottom: 8%;
  }
  .seed-two {
    right: 22%;
    bottom: 5%;
  }
  .seed-three {
    right: 5%;
    bottom: 9%;
  }
  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    text-align: center;
    padding: 0 0 22px;
    margin-top: 2px;
    order: 1;
  }
  .hero-copy > p {
    font-size: 11px;
    line-height: 1.8;
    max-width: 290px;
    margin: 0 auto 19px;
  }
  .hero-copy > p br {
    display: none;
  }
  .hero-copy .button {
    padding: 14px 22px;
    font-size: 11px;
    gap: 24px;
    min-height: 49px;
  }
  .hero-whatsapp {
    margin: 8px auto 0;
    font-size: 9px;
  }
  .hero-origin {
    display: none;
  }
  .hero-foot {
    min-height: 49px;
    font-size: 8px;
  }
  .hero-foot > span:first-child {
    font-size: 12px;
  }
  .hero-foot a {
    gap: 9px;
    font-size: 8px;
  }
  .hero-foot a span {
    font-size: 16px;
  }
  .marquee {
    padding: 16px 0;
  }
  .marquee-track > div {
    font-size: 8px;
    gap: 24px;
    padding-right: 24px;
  }
  .marquee-track span {
    font-size: 18px;
  }
  .intro {
    padding-top: 61px;
    padding-bottom: 63px;
  }
  .intro-ornament {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .intro .eyebrow {
    font-size: 7px;
    margin-bottom: 22px;
  }
  .intro h2 {
    font-size: 29px;
    line-height: 1.35;
    letter-spacing: -0.045em;
  }
  .intro h2 br {
    display: none;
  }
  .intro-copy {
    font-size: 10px;
    line-height: 1.9;
    margin: 20px auto 15px;
    max-width: 290px;
  }
  .intro-copy br {
    display: none;
  }
  .intro .malayalam {
    font-size: 10px;
  }
  .collection {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    margin-bottom: 13px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .section-heading > p {
    margin-top: 16px;
    font-size: 10px;
  }
  .section-heading > p br {
    display: none;
  }
  .collection-toolbar {
    margin-bottom: 20px;
  }
  .collection-note {
    display: none;
  }
  .filter-group {
    width: 100%;
    gap: 2px;
    justify-content: space-between;
  }
  .filter {
    font-size: 8px;
    padding: 9px 10px;
    gap: 6px;
    min-height: 40px;
  }
  .filter > span:not(.food-mark) {
    font-size: 7px;
  }
  .filter .food-mark {
    width: 11px;
    height: 11px;
  }
  .filter .food-mark::after {
    width: 5px;
    height: 5px;
  }
  .filter .food-mark.nonveg::after {
    width: 0;
    height: 0;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .featured-grid .product-card:nth-child(3) {
    max-width: none;
    grid-column: auto;
  }
  .featured-grid .product-card:nth-child(4) {
    margin: 0;
    grid-column: auto;
  }
  .product-art {
    height: 335px;
  }
  .art-word {
    font-size: 37px;
    top: 58px;
    left: 23px;
  }
  .product-tag {
    font-size: 7px;
    top: 20px;
    left: 22px;
  }
  .product-info {
    padding-top: 16px;
  }
  .product-title-row h3 {
    font-size: 24px;
  }
  .product-info > p {
    font-size: 10px;
    margin-top: 8px;
    max-width: 300px;
  }
  .product-info .text-link {
    font-size: 10px;
  }
  .product-art picture {
    inset: 20px -2% -22% 15%;
  }
  .art-dates picture {
    inset: 18px -8% -21% 21%;
    transform: rotate(8deg);
  }
  .art-beef picture {
    inset: 25px 15% -25% -9%;
  }
  .art-beef .art-word {
    right: 22px;
  }
  .art-mango picture {
    inset: 15px -9% -19% 15%;
  }
  .art-note {
    font-size: 20px;
    left: 20px;
    bottom: 24px;
  }
  .art-dates .art-note {
    font-size: 16px;
    right: 16px;
  }
  .pantry-heading {
    margin-top: 42px;
    padding-top: 25px;
    gap: 8px;
  }
  .pantry-heading .eyebrow {
    font-size: 7px;
  }
  .pantry-heading h3 {
    font-size: 24px;
    max-width: 220px;
  }
  .carousel-controls {
    gap: 6px;
  }
  .round-button {
    width: 38px;
    height: 38px;
  }
  .round-button .icon {
    width: 18px;
    height: 18px;
  }
  .pantry-track {
    margin-right: calc(-1 * var(--gutter));
    padding-right: var(--gutter);
    gap: 12px;
  }
  .pantry-card {
    min-width: 235px;
    min-height: 277px;
    padding: 22px;
  }
  .pantry-card h3 {
    font-size: 25px;
  }
  .pantry-card p {
    font-size: 11px;
  }
  .signature-section {
    display: block;
  }
  .signature-visual {
    padding: 52px 22px 37px;
    border-right: 0;
  }
  .signature-sticky {
    position: relative;
    top: auto;
    padding: 0;
  }
  .signature-sticky h2 {
    font-size: 38px;
  }
  .signature-sticky .eyebrow {
    font-size: 7px;
    margin-bottom: 19px;
  }
  .signature-art {
    height: 320px;
    max-width: 360px;
    margin: 10px auto;
  }
  .signature-art picture {
    inset: -20px 0 -35px;
  }
  .signature-circle {
    width: 240px;
    height: 240px;
    top: 34px;
  }
  .signature-leaf {
    width: 170px;
    right: -10px;
  }
  .signature-lemon {
    width: 120px;
    left: 0;
  }
  .signature-note {
    right: 0;
    font-size: 16px;
  }
  .signature-story {
    padding: 0 25px 35px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .signature-block {
    padding: 29px 0;
    min-height: 0;
  }
  .signature-block:first-child {
    border-top: 1px solid var(--line);
  }
  .chapter {
    font-size: 7px;
  }
  .signature-block h3 {
    font-size: 31px;
    margin: 15px 0;
  }
  .signature-block h3 br {
    display: none;
  }
  .signature-block p {
    font-size: 11px;
    max-width: none;
  }
  .quality {
    padding-top: 59px;
    padding-bottom: 55px;
  }
  .quality h2 {
    font-size: 38px;
  }
  .benefit-grid {
    margin-top: 25px;
  }
  .benefit-grid article {
    padding: 24px 15px !important;
  }
  .benefit-grid article:nth-child(odd) {
    padding-left: 0 !important;
  }
  .benefit-grid article:nth-child(even) {
    padding-right: 0 !important;
  }
  .benefit-top {
    margin-bottom: 23px;
  }
  .benefit-top > span {
    font-size: 8px;
  }
  .benefit-icon {
    width: 32px;
    height: 32px;
  }
  .benefit-grid h3 {
    font-size: 23px;
    line-height: 1.2;
  }
  .benefit-grid h3 br {
    display: block;
  }
  .benefit-grid p {
    font-size: 10px;
    line-height: 1.85;
  }
  .our-story {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 10px;
    padding-bottom: 59px;
  }
  .story-art {
    min-height: 440px;
    max-width: 430px;
    width: 100%;
    margin: auto;
  }
  .recipe-paper {
    padding: 32px 29px;
    width: 87%;
  }
  .recipe-paper > p {
    font-size: 21px;
  }
  .recipe-paper .handwritten {
    font-size: 19px;
  }
  .recipe-paper .eyebrow {
    font-size: 7px;
  }
  .story-art > img {
    right: -90px;
    width: 230px;
  }
  .story-copy .eyebrow {
    font-size: 8px;
    margin-bottom: 19px;
  }
  .story-copy h2 {
    font-size: 40px;
    margin-bottom: 22px;
  }
  .story-copy > p:not(.eyebrow):not(.handwritten) {
    font-size: 11px;
    margin-bottom: 17px;
  }
  .story-copy .handwritten {
    font-size: 23px;
    margin-top: 24px;
  }
  .meal-break {
    min-height: 590px;
    padding: 53px 25px;
  }
  .meal-content h2 {
    font-size: 45px;
  }
  .meal-content .eyebrow {
    font-size: 7px;
    margin-bottom: 20px;
  }
  .meal-content .malayalam {
    font-size: 9px;
    margin-top: 20px;
  }
  .meal-jar {
    width: 300px;
    height: 360px;
    right: -13px;
    top: auto;
    bottom: -46px;
    transform: rotate(14deg);
  }
  .meal-lemon {
    width: 120px;
    right: auto;
    left: 25px;
    bottom: 23px;
  }
  .meal-leaf {
    width: 280px;
    right: auto;
    left: -54px;
    bottom: -30px;
    transform: rotate(34deg);
  }
  .ingredients {
    min-height: 570px;
    padding-top: 98px;
    padding-bottom: 45px;
  }
  .ingredients-center {
    max-width: 310px;
  }
  .ingredients-center .eyebrow {
    font-size: 7px;
    margin-bottom: 22px;
  }
  .ingredients-center h2 {
    font-size: 41px;
  }
  .ingredients-center > p:not(.eyebrow) {
    font-size: 11px;
    max-width: 270px;
    line-height: 1.9;
    margin-top: 25px;
  }
  .ingredient-promise {
    font-size: 7px;
    margin-top: 2px;
  }
  .ingredient-leaf {
    width: 130px;
    left: -40px;
    top: -28px;
    opacity: 0.4;
  }
  .label-leaf {
    font-size: 16px;
    left: 55px;
    top: 31px;
  }
  .ingredient-lemon {
    right: -7px;
    top: 6px;
    width: 94px;
    transform: rotate(15deg);
  }
  .ingredient-item span {
    font-size: 15px;
  }
  .ingredient-chilli {
    width: 120px;
    bottom: 70px;
    left: 17px;
    transform: rotate(-5deg);
  }
  .label-spice {
    bottom: 99px;
    right: 17px;
    font-size: 14px;
    width: 143px;
  }
  .spice-scatter {
    right: 45px;
    bottom: 127px;
    transform: scale(0.75);
  }
  .ingredient-footer {
    font-size: 6px;
    letter-spacing: 0.03em;
    gap: 7px;
    margin-top: 165px;
    flex-wrap: wrap;
  }
  .delivery {
    padding-top: 53px;
    padding-bottom: 50px;
  }
  .delivery .section-heading h2 {
    font-size: 39px;
  }
  .delivery .section-heading > p {
    font-size: 10px;
  }
  .order-steps {
    gap: 27px 25px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .step-number {
    font-size: 37px;
    margin-bottom: 13px;
  }
  .order-steps h3 {
    font-size: 23px;
    max-width: 140px;
    margin-bottom: 12px;
  }
  .order-steps p {
    font-size: 10px;
    line-height: 1.9;
  }
  .order-steps li::after {
    font-size: 19px !important;
    right: 0 !important;
    top: 8px !important;
  }
  .delivery-bottom {
    display: block;
    text-align: center;
    padding-top: 24px;
  }
  .delivery-bottom > .button {
    font-size: 10px;
    gap: 16px;
  }
  .delivery-bottom > p {
    margin-top: 18px;
    font-size: 8px;
  }
  .delivery-bottom small {
    font-size: 7px;
    line-height: 1.8;
    margin-top: 5px;
  }
  .order-banner {
    display: block;
    padding: 51px 25px 28px;
    min-height: 650px;
  }
  .order-banner h2 {
    font-size: 43px;
  }
  .order-banner .eyebrow {
    font-size: 7px;
  }
  .order-banner p:not(.eyebrow) {
    font-size: 10px;
    margin: 21px 0;
  }
  .order-banner .button {
    font-size: 11px;
    min-height: 47px;
    padding: 13px 21px;
  }
  .order-banner > .banner-art {
    position: absolute;
    bottom: -2px;
    right: 9px;
    width: 245px;
    height: 320px;
    min-height: 0;
  }
  .banner-art > img {
    inset: -33px -30px -30px;
    width: calc(100% + 60px);
    height: calc(100% + 63px);
  }
  .banner-halo {
    width: 250px;
    height: 250px;
    transform: translate(-6%, 5%);
  }
  .banner-art .handwritten {
    right: 170px;
    bottom: 62px;
    width: 155px;
    font-size: 12px;
    transform: rotate(-15deg);
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 55px;
    padding-bottom: 53px;
  }
  .contact h2 {
    font-size: 39px;
  }
  .contact > .eyebrow {
    font-size: 8px;
  }
  .contact-details {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .contact-details .eyebrow {
    font-size: 7px;
  }
  .contact-details p {
    font-size: 10px;
    line-height: 1.9;
  }
  .contact-phone {
    font-size: 18px;
    white-space: nowrap;
    gap: 6px;
  }
  .contact-phone .icon {
    width: 15px;
    height: 15px;
  }
  .contact-details .text-link {
    font-size: 8px;
    gap: 7px;
  }
  .contact-details .text-link .icon {
    width: 16px;
    height: 16px;
  }
  .site-footer {
    padding-top: 32px;
    padding-bottom: 73px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 23px;
  }
  .footer-top 
  .footer-top > p {
    grid-row: 2;
    grid-column: 1/-1;
    max-width: none;
    font-size: 9px;
  }
  .footer-top .malayalam {
    font-size: 9px;
  }
  .footer-top > .text-link {
    grid-column: 2;
    grid-row: 1;
    font-size: 9px;
    gap: 10px;
  }
  .footer-display {
    font-size: clamp(38px, 10.3vw, 63px);
    margin: 26px 0 22px;
    letter-spacing: -0.06em;
  }
  .footer-display > img {
    width: 130px;
    right: -23%;
    top: -50px;
    opacity: 0.2;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 0;
    font-size: 7px;
  }
  .footer-bottom nav {
    order: -1;
    flex-basis: 100%;
    gap: 0;
    justify-content: space-between;
    font-size: 8px;
  }
  .back-top {
    width: 31px;
    height: 31px;
    font-size: 16px;
  }
  .floating-order {
    left: 15px;
    right: 15px;
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 13px 18px;
    min-height: 51px;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
  }
  .floating-order > span {
    max-width: none !important;
    font-size: 11px;
  }
  .floating-arrow {
    display: block;
    margin-left: auto;
  }
  .floating-order > .icon:first-child {
    margin-right: auto;
  }
  .mobile-menu > a {
    font-size: 30px;
  }
  .mobile-menu .eyebrow {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .marquee-track {
    transform: none !important;
  }
  [data-reveal],
  [data-reveal-image],
  [data-reveal-lines] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .hero-jar,
  .product-art picture {
    transition: none !important;
  }
}

/* Filtered collections reflow without the editorial offsets. */
.featured-grid.is-filtered .product-card {
  grid-column: auto;
  max-width: none;
  margin-left: 0;
}
.contact-details {
  min-width: 0;
}
.contact-details > div {
  min-width: 0;
}
@media (max-width: 600px) {
  .contact-details {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .contact-phone {
    font-size: 16px;
    gap: 4px;
  }
  .contact-details .text-link {
    flex-wrap: wrap;
  }
  .signature-art {
    overflow: clip;
  }
}

.marquee {
  position: relative;
}
.marquee-toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  background: var(--forest);
  color: var(--cream);
  border: 0;
  z-index: 2;
  font-size: 16px;
  box-shadow: -10px 0 15px var(--forest);
}
@media (prefers-reduced-motion: reduce) {
  .marquee-toggle {
    display: none;
  }
}

/* Final composition and readability refinements. */
.product-info > p {
  font-size: 12px;
}
.product-info .text-link {
  font-size: 11px;
}
@media (min-width: 901px) {
  .hero-art {
    top: -18%;
  }
  .round-seal {
    left: 1%;
    top: 27%;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .desktop-nav a {
    font-size: 9px;
  }
  .hero-copy > p {
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  .hero-annotation {
    right: 13px;
  }
  .product-info > p {
    font-size: 11px;
  }
  .hero-copy > p {
    font-size: 12px;
  }
}

/* Native progressive enhancement when GSAP is not installed. */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .native-motion .signature-section {
      view-timeline-name: --pickle-story;
    }
    .native-motion .signature-jar {
      animation: signature-turn linear both;
      animation-timeline: --pickle-story;
      animation-range: contain 0% contain 100%;
    }
    .native-motion [data-parallax] {
      animation: ingredient-drift linear both;
      animation-timeline: view();
    }
  }
}
@keyframes signature-turn {
  from {
    transform: rotate(-7deg) scale(1);
  }
  to {
    transform: rotate(5deg) scale(1.04);
  }
}
@keyframes ingredient-drift {
  from {
    translate: 0 10px;
  }
  to {
    translate: 0 -10px;
  }
}

/* Official branding and accessibility audit refinements. */
:root { --header-height: 124px; }
html { scroll-padding-top: calc(var(--header-height) + 20px); }
.nav-shell { height: var(--header-height); }
.wordmark { display: inline-flex; align-items: center; justify-content: center; width: 92px; flex-shrink: 0; line-height: 1; }
.wordmark img { width: 100%; height: auto; object-fit: contain; }
.footer-top .wordmark { width: 110px; }
.desktop-nav { gap: clamp(16px, 1.7vw, 28px); }
.desktop-nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: 16px; font-weight: 500; }
.nav-order { min-height: 48px; padding: 12px 20px; font-size: 14px; gap: 12px; }
.order-label-short { display: none; }
.menu-toggle { min-width: 44px; min-height: 44px; }
.mobile-menu { max-height: calc(100svh - var(--header-height) - 34px); overscroll-behavior: contain; }
.hero { height: calc(100svh - var(--header-height) - 32px); }
.signature-sticky { top: calc(var(--header-height) + 25px); }
.button, .hero-copy .button, .signature-sticky .button, .delivery-bottom > .button,
.order-banner .button { font-size: 14px; min-height: 48px; }
.text-link, .hero-whatsapp, .product-info .text-link, .pantry-card .text-link,
.contact-details .text-link, .footer-top > .text-link { font-size: 13px; min-height: 44px; }
.filter { font-size: 13px; min-height: 44px; }
.filter > span:not(.food-mark) { font-size: 11px; }
.hero-copy > p, .intro-copy, .section-heading > p, .product-info > p, .pantry-card p,
.signature-block p, .benefit-grid p, .story-copy > p:not(.eyebrow):not(.handwritten),
.order-steps p, .ingredients-center > p:not(.eyebrow), .order-banner p:not(.eyebrow),
.contact-details p { font-size: 14px; }
.footer-bottom { font-size: 11px; }
.footer-bottom nav { gap: 20px; font-size: 13px; }
.footer-bottom nav a { display: inline-flex; align-items: center; min-height: 44px; }
.floating-order > span { font-size: 14px; }
.contact-details .text-link { flex-wrap: wrap; }
@media (max-width: 1199px) {
  :root { --header-height: 108px; }
  .wordmark { width: 76px; }
  .nav-order { margin-left: auto; }
  .desktop-nav { display: none; }
}
@media (max-width: 900px) {
  .hero { height: auto; }
  .signature-sticky { top: 133px; }
}
@media (max-width: 600px) {
  :root { --header-height: 100px; }
  .nav-shell { gap: 12px; }
  .wordmark { width: 68px; }
  .footer-top .wordmark { width: 90px; }
  .nav-order { min-height: 44px; padding: 10px 12px; font-size: 12px; gap: 8px; }
  .nav-order .icon { width: 18px; height: 18px; }
  .menu-toggle { width: 44px; height: 44px; }
  .signature-sticky { top: auto; }
  .filter { font-size: 11px; padding: 9px 8px; }
  .filter > span:not(.food-mark) { font-size: 10px; }
  .hero-copy > p, .intro-copy, .section-heading > p, .product-info > p, .pantry-card p,
  .signature-block p, .benefit-grid p, .story-copy > p:not(.eyebrow):not(.handwritten),
  .order-steps p, .ingredients-center > p:not(.eyebrow), .order-banner p:not(.eyebrow),
  .contact-details p { font-size: 13px; }
  .footer-bottom nav { font-size: 12px; gap: 8px; flex-wrap: wrap; }
  .footer-bottom > span { max-width: calc(100% - 50px); }
  .footer-top > .text-link { font-size: 13px; }
  .floating-order { min-height: 54px; }
}
@media (max-width: 430px) {
  .contact-details { grid-template-columns: 1fr; gap: 25px; }
  .contact-phone { font-size: 23px; }
}
@media (max-width: 359px) {
  .order-label-full { display: none; }
  .order-label-short { display: inline; }
}

/* Contrast and focus refinements confirmed by the accessibility audit. */
.intro .malayalam, .benefit-top > span, .contact-details .eyebrow { color: #526746; }
.chapter { color: #4e6742; font-size: 11px; }
.story-copy .handwritten, .recipe-paper .handwritten { color: #506b3f; }
.step-number { color: #607b4e; }
.filter.active > span:not(.food-mark) { opacity: 1; }
.round-button, .back-top { min-width: 44px; min-height: 44px; }
.site-header.scrolled { background: #fff8e8fa; }
.no-script-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 15px var(--gutter); }
.no-script-nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: 14px; }
@media (min-width: 901px) { .hero-art { top: -6%; } }
@media (min-width: 601px) and (max-height: 800px) {
  .signature-sticky { position: static; }
}

/* Keep the hero ingredients around the products without obscuring the jars. */
.hero-jar {
  z-index: 2;
}
.jar-center {
  z-index: 3;
}
.hero-lemon {
  left: 3%;
  bottom: -1%;
  width: 14%;
  z-index: 1;
}
.hero-chilli {
  right: 1%;
  bottom: -2%;
  width: 16%;
  z-index: 1;
}
@media (max-width: 600px) {
  .hero-lemon {
    left: 1%;
    bottom: -3%;
    width: 18%;
  }
  .hero-chilli {
    right: 0;
    bottom: -3%;
    width: 21%;
  }
}
