/* ═══════════════════════════════════════════════════════════════
   Masala Factory — styles
   Spice palette · mobile-first · warm modern Nepali identity
   ═══════════════════════════════════════════════════════════════ */

:root {
  --chili: #9B3B2A;
  --chili-deep: #7A2C1F;
  --chili-hot: #B04A35;
  --turmeric: #D4A24A;
  --turmeric-soft: #E8C47A;
  --paprika: #C46A45;
  --saffron: #C9893A;
  --earth: #6B4A35;
  --earth-soft: #8B6A52;
  --clove: #3D2A20;
  --ink: #2A1F18;
  --ink-soft: #554033;
  --muted: #7A6556;
  --line: rgba(107, 74, 53, 0.12);
  --cream: #F8F1E6;
  --cream-deep: #EFE2CF;
  --paper: #FCFAF6;
  --white: #FFFFFF;
  --shadow: 0 16px 36px rgba(42, 31, 24, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --wrap: min(1100px, calc(100% - 2rem));
  --header-h: 72px;
  --font-display: "Fraunces", "Mukta", Georgia, serif;
  --font-body: "Outfit", "Mukta", system-ui, sans-serif;
  --font-ne: "Mukta", "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --aurora-x: 50%;
  --aurora-y: 30%;
  --aurora-x2: 70%;
  --aurora-y2: 60%;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 45% at var(--aurora-x) var(--aurora-y), rgba(212, 162, 74, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at var(--aurora-x2) var(--aurora-y2), rgba(155, 59, 42, 0.09), transparent 50%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(212, 162, 74, 0.1), transparent 55%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* ─── Sharp brand cursors (native, zero lag, precise hotspot) ─ */
@media (hover: hover) and (pointer: fine) {
  :root {
    /* Angular chili pointer — tip at 2,1 */
    --cursor-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath fill='%239B3B2A' stroke='%23FDF6EC' stroke-width='1.5' stroke-linejoin='round' d='M3 2 L3 22.5 L9.2 16.8 L13.8 26.2 L17.1 24.8 L12.6 15.5 L21.5 15.5 Z'/%3E%3C/svg%3E") 2 1;
    /* Same pointer with turmeric tip accent for interactive targets */
    --cursor-pointer: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath fill='%239B3B2A' stroke='%23FDF6EC' stroke-width='1.5' stroke-linejoin='round' d='M3 2 L3 22.5 L9.2 16.8 L13.8 26.2 L17.1 24.8 L12.6 15.5 L21.5 15.5 Z'/%3E%3Ccircle cx='7.2' cy='7.2' r='2.1' fill='%23D4A24A' stroke='%23FDF6EC' stroke-width='1'/%3E%3C/svg%3E") 2 1;
  }

  html,
  body {
    cursor: var(--cursor-default), default;
  }

  a,
  button,
  label[for],
  .product-card,
  .pack-select button,
  .filter-bar button,
  .lang-switch button,
  .cart-btn,
  .menu-btn,
  .toast__action,
  summary,
  [role="button"],
  [data-add],
  [data-pack],
  [data-filter],
  [data-set-lang] {
    cursor: var(--cursor-pointer), pointer;
  }

  input,
  textarea,
  select {
    cursor: text;
  }

  input[type="submit"],
  input[type="button"],
  input[type="checkbox"],
  input[type="radio"] {
    cursor: var(--cursor-pointer), pointer;
  }
}

/* Sharp click spark — brand-aligned feedback without laggy cursor */
.click-spark {
  position: fixed;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border: 1.5px solid var(--turmeric);
  background: rgba(155, 59, 42, 0.35);
  transform: rotate(45deg) scale(0.4);
  opacity: 0.95;
  pointer-events: none;
  z-index: 450;
  animation: spark-pop 0.45s var(--ease) forwards;
}
@keyframes spark-pop {
  to {
    transform: rotate(45deg) scale(2.4);
    opacity: 0;
    border-radius: 2px;
  }
}

/* ─── Immersive chrome ─────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 400;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--chili), var(--turmeric), var(--paprika));
  pointer-events: none;
  box-shadow: 0 0 12px rgba(212, 162, 74, 0.45);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  will-change: transform;
  mix-blend-mode: multiply;
}
.ambient__blob--a {
  width: 42vw;
  height: 42vw;
  left: -8%;
  top: 18%;
  background: radial-gradient(circle, rgba(212, 162, 74, 0.45), transparent 70%);
  animation: blob-morph 14s ease-in-out infinite alternate;
}
.ambient__blob--b {
  width: 36vw;
  height: 36vw;
  right: -6%;
  top: 48%;
  background: radial-gradient(circle, rgba(155, 59, 42, 0.28), transparent 70%);
  animation: blob-morph 18s ease-in-out infinite alternate-reverse;
}
.ambient__blob--c {
  width: 28vw;
  height: 28vw;
  left: 40%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(196, 106, 69, 0.25), transparent 70%);
  animation: blob-morph 16s ease-in-out infinite alternate;
}
@keyframes blob-morph {
  0% { border-radius: 42% 58% 60% 40% / 45% 42% 58% 55%; transform: translate3d(0, 0, 0) scale(1); }
  50% { border-radius: 58% 42% 38% 62% / 50% 60% 40% 50%; transform: translate3d(2%, -3%, 0) scale(1.08); }
  100% { border-radius: 40% 60% 55% 45% / 58% 45% 55% 42%; transform: translate3d(-2%, 2%, 0) scale(0.96); }
}

main, .site-header, .site-footer, .festival-bar, .cart, .toast {
  position: relative;
  z-index: 1;
}
.site-header { z-index: 100; }
.cart, .drawer-scrim, .toast { z-index: 210; }
.toast { z-index: 300; }

html[data-lang="ne"] body,
html[data-lang="ne"] button,
html[data-lang="ne"] input,
html[data-lang="ne"] select,
html[data-lang="ne"] textarea {
  font-family: var(--font-ne);
  letter-spacing: 0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--chili-hot); }
button, input, select, textarea { font: inherit; color: inherit; }
address { font-style: normal; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--chili);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

/* ─── Festival bar ─────────────────────────────────────────── */
.festival-bar {
  background: linear-gradient(90deg, #8A3A2A, #B06A40 55%, #C9893A);
  color: var(--white);
  font-size: 0.9rem;
}
.festival-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  min-height: 40px;
}
.festival-bar__inner p { flex: 1; }
.festival-bar__icon {
  color: var(--turmeric-soft);
  flex-shrink: 0;
}
.festival-bar__close {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  padding: 0.2rem;
}
.festival-bar__close:hover { opacity: 1; }
.festival-bar[hidden] { display: none; }

/* ─── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(31, 20, 14, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  animation: mark-breathe 5.5s ease-in-out infinite;
}
.brand__mark--lg {
  width: 56px;
  height: 56px;
  animation: none;
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand__text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav { margin-left: auto; }
.nav ul {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}
.nav a {
  display: block;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav a:hover,
.nav a.is-active {
  background: rgba(142, 27, 16, 0.08);
  color: var(--chili);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-switch {
  display: inline-flex;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}
.lang-switch button.is-active {
  background: var(--chili);
  color: var(--white);
}

.cart-btn,
.menu-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}
.cart-btn:hover,
.menu-btn:hover {
  background: var(--cream);
  border-color: rgba(142, 27, 16, 0.25);
}
.cart-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-btn__count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--chili);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.cart-btn.is-pulse {
  animation: cart-pulse 0.55s var(--ease);
}
.cart-btn.is-pulse .cart-btn__count {
  animation: badge-pop 0.55s var(--ease);
}
@keyframes cart-pulse {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.12); }
}
@keyframes badge-pop {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.35); }
}
.menu-btn { display: none; }
.menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  margin: 3px 0;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.magnetic {
  transition: transform 0.2s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s !important;
}
.btn--primary {
  background: var(--chili);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(155, 59, 42, 0.22);
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 252, 247, 0.18) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn--primary:hover {
  background: var(--chili-hot);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(155, 59, 42, 0.28);
}
.btn--primary:hover::after { transform: translateX(120%); }
.btn--ghost {
  background: rgba(255, 252, 247, 0.12);
  color: var(--white);
  border-color: rgba(255, 252, 247, 0.55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255, 252, 247, 0.22);
  color: var(--white);
}
.btn--gold {
  background: var(--turmeric);
  color: var(--clove);
  box-shadow: 0 10px 24px rgba(233, 164, 25, 0.3);
}
.btn--gold:hover { background: var(--turmeric-soft); color: var(--clove); }
.btn--ghost-ink {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.btn--ghost-ink:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn--block { width: 100%; }
.btn--sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}
.btn--add {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}
.btn--add.is-added {
  background: #2F6B3A;
  box-shadow: none;
  cursor: default;
  transform: none;
}

/* ─── Eyebrow / section heads ──────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chili);
  margin-bottom: 0.75rem;
}
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.section--cream {
  background:
    linear-gradient(180deg, rgba(248, 241, 230, 0.95), rgba(252, 250, 246, 0.98));
}
.section--dark {
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(212, 162, 74, 0.16), transparent 55%),
    linear-gradient(160deg, #2E211A 0%, #4A3024 48%, #241A15 100%);
  color: var(--cream);
}
.section--dark .eyebrow { color: var(--turmeric-soft); }
.section--dark .section-head__lede { color: rgba(251, 246, 238, 0.72); }
.section-head { max-width: 38rem; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: inherit;
}
.section-head__lede {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}
.section-head--center .section-head__lede { margin-inline: auto; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: hero-drift 22s ease-in-out infinite alternate, hero-fade 1.4s ease both;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(42, 31, 24, 0.72) 0%, rgba(42, 31, 24, 0.42) 45%, rgba(42, 31, 24, 0.18) 72%, rgba(42, 31, 24, 0.28) 100%),
    linear-gradient(0deg, rgba(42, 31, 24, 0.45) 0%, transparent 48%);
  animation: veil-settle 1.6s var(--ease) both;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) 0 2.5rem;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.hero__content { max-width: 38rem; }
.hero-anim {
  opacity: 0;
  transform: translateY(22px);
  animation: rise-in 0.95s var(--ease) both;
  animation-delay: calc(0.18s + (var(--d, 0) * 0.12s));
}
.hero .eyebrow {
  color: var(--turmeric-soft);
  margin-bottom: 1rem;
}
.hero__title {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 0.35rem;
  perspective: 600px;
}
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em) rotateX(-50deg);
  transform-origin: bottom;
  animation: char-in 0.9s var(--ease) both;
  animation-delay: calc(0.35s + var(--i, 0) * 0.045s);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.hero__title .char--space { width: 0.28em; }
@keyframes char-in {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
.hero__tagline {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, var(--turmeric-soft), #fff3d0, var(--turmeric-soft));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise-in 0.95s var(--ease) both, shimmer-text 4.5s ease-in-out infinite;
  animation-delay: calc(0.18s + (var(--d, 0) * 0.12s)), 1.4s;
}
@keyframes shimmer-text {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.hero__lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 252, 247, 0.88);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 252, 247, 0.12);
  border: 1px solid rgba(255, 252, 247, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.trust-strip li {
  background: rgba(31, 20, 14, 0.35);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: background 0.35s var(--ease);
}
.trust-strip li:hover { background: rgba(31, 20, 14, 0.5); }
.trust-strip strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--turmeric-soft);
}
.trust-strip span {
  font-size: 0.82rem;
  color: rgba(255, 252, 247, 0.75);
  line-height: 1.35;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(0, -1.8%, 0); }
}
@keyframes hero-fade {
  from { opacity: 0.55; filter: saturate(0.85); }
  to { opacity: 1; filter: saturate(1); }
}
@keyframes veil-settle {
  from { opacity: 0.4; }
  to { opacity: 1; }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mark-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─── Story ────────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.story-figure {
  margin: 0;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.story-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}
.story-figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 0 0;
  border-top: 2px solid var(--chili);
}
.story-figure figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.story-figure figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}
.story-copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--ink-soft);
}
.story-copy blockquote {
  margin: 0.5rem 0 0;
  padding: 1.25rem 0 0 1.25rem;
  border-left: 3px solid var(--turmeric);
}
.story-copy blockquote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}
.story-copy cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chili);
}

.process {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.process__title {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  margin-bottom: 1.75rem;
  max-width: 28rem;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.5rem;
  counter-reset: none;
}
.process__steps li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.process__steps li:hover {
  transform: translateY(-3px);
  border-top-color: var(--turmeric);
}
.process__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--turmeric);
  letter-spacing: 0.08em;
}
.process__steps h4 {
  font-size: 1.1rem;
}
.process__steps p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ─── Split / Made in Nepal ────────────────────────────────── */
.section--split { padding: 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split__media {
  margin: 0;
  min-height: 320px;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(145deg, #FBF6EE 0%, #F0E2CE 100%);
}
.split__copy h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.split__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.tick-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tick-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--chili);
  box-shadow: inset 0 0 0 2px var(--chili), inset 0 0 0 3.5px var(--cream);
}

/* ─── Photo gallery ────────────────────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.photo-gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--line);
}
.photo-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.photo-gallery__item:hover img {
  transform: scale(1.04);
}
.photo-gallery__item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(20, 10, 5, 0.78));
}

.section--split-reverse .split {
  direction: rtl;
}
.section--split-reverse .split > * {
  direction: ltr;
}
.section--split-reverse .split__copy {
  background:
    linear-gradient(145deg, #F5EDE0 0%, #E8D5BC 100%);
}
.section--split-reverse .split__copy .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ─── Products ─────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.filter-bar button {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  padding: 0.55rem 1rem;
  min-height: 40px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-bar button.is-active,
.filter-bar button:hover {
  background: var(--chili);
  border-color: var(--chili);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.product-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.35s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--shine-x, 50%) var(--shine-y, 0%),
    rgba(255, 244, 220, 0.45),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 2;
}
.product-card.is-tilting::before,
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(42, 31, 24, 0.12);
  border-color: rgba(155, 59, 42, 0.18);
}
.product-card.is-tilting {
  box-shadow: 0 24px 48px rgba(42, 31, 24, 0.16);
  border-color: rgba(155, 59, 42, 0.22);
  z-index: 2;
}
.product-card__media {
  position: relative;
  aspect-ratio: 1;
  border-radius: calc(var(--radius-sm) + 2px);
  overflow: hidden;
  background: linear-gradient(160deg, #F4EADF, #EAD9C4);
  transform: translateZ(18px);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.product-card:hover .product-card__media img,
.product-card.is-tilting .product-card__media img { transform: scale(1.07); }

.product-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  background: rgba(252, 250, 246, 0.94);
  color: var(--chili);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(155, 59, 42, 0.12);
}
.product-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.product-card__body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pack-select {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pack-select button {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  min-height: 40px;
  min-width: 4.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pack-select button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.pack-select button:active { transform: scale(0.97); }
.catalog-note {
  margin-top: 1.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.75rem;
}
.catalog-note a {
  color: var(--chili);
  font-weight: 600;
  text-decoration: none;
}
.catalog-note a:hover { text-decoration: underline; }

/* ─── Festival promo ───────────────────────────────────────── */
.festival {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.festival__media {
  position: absolute;
  inset: 0;
}
.festival__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.festival__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(42, 31, 24, 0.78) 0%, rgba(42, 31, 24, 0.45) 52%, rgba(42, 31, 24, 0.22) 100%);
}
.festival__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.festival__card { max-width: 34rem; }
.festival .eyebrow { color: var(--turmeric-soft); }
.festival__card h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.9rem;
}
.festival__card > p {
  color: rgba(255, 252, 247, 0.85);
  margin-bottom: 1.25rem;
}
.festival__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 1.35rem !important;
}
.festival__price strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--turmeric-soft);
}
.festival__price s {
  color: rgba(255, 252, 247, 0.5);
  font-size: 1rem;
}

/* ─── Quality ──────────────────────────────────────────────── */
.quality-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: 2.5rem;
}
.quality-figure { margin: 0; }
.quality-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}
.quality-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.quality-points {
  display: grid;
  gap: 1.25rem;
}
.quality-points article {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.quality-points article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.quality-points h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.quality-points p {
  color: var(--muted);
  font-size: 0.98rem;
}

.certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.certs li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  padding: 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  align-items: center;
}
.certs__badge {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--chili);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.1;
  padding: 0.2rem;
}
.certs strong {
  font-size: 0.92rem;
  line-height: 1.25;
}
.certs small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

/* ─── Recipes ──────────────────────────────────────────────── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.recipe-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: transform 0.25s var(--ease);
}
.recipe-card:hover { transform: translateY(-3px); }
.recipe-card:focus-visible { outline: 2px solid var(--chili); outline-offset: 4px; }
.recipe-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 0.9rem;
}
.recipe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.recipe-card:hover .recipe-card__media img { transform: scale(1.05); }
.recipe-card__tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(31, 20, 14, 0.78);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
}
.recipe-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.recipe-card__blurb {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recipe-card__meta {
  display: flex;
  gap: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--chili);
}

/* ─── Stores ───────────────────────────────────────────────── */
.province-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.province-filter button {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}
.province-filter button.is-active,
.province-filter button:hover {
  background: var(--earth);
  border-color: var(--earth);
  color: var(--white);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 3rem;
}
.store-card {
  padding: 1.1rem 1.15rem;
  border-top: 2px solid var(--chili);
  background: linear-gradient(180deg, rgba(251, 246, 238, 0.9), transparent);
}
.store-card__type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paprika);
  margin-bottom: 0.4rem;
}
.store-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.store-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.store-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--chili);
  text-decoration: none;
}
.store-card a:hover { text-decoration: underline; }

.distributor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(233, 164, 25, 0.15), transparent 50%),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.distributor__copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}
.distributor__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

/* ─── Forms ────────────────────────────────────────────────── */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.9rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.section--dark .field input,
.section--dark .field select,
.section--dark .field textarea {
  background: rgba(255, 252, 247, 0.08);
  border-color: rgba(255, 252, 247, 0.18);
  color: var(--cream);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--chili);
  box-shadow: 0 0 0 3px rgba(142, 27, 16, 0.15);
}
.section--dark .field input:focus,
.section--dark .field select:focus,
.section--dark .field textarea:focus {
  border-color: var(--turmeric);
  box-shadow: 0 0 0 3px rgba(233, 164, 25, 0.2);
}
.field textarea { resize: vertical; min-height: 90px; }
.form__note {
  grid-column: 1 / -1;
  font-size: 0.84rem;
  color: var(--muted);
}
.section--dark .form__note { color: rgba(251, 246, 238, 0.65); }
.form__note.is-success { color: #2F6B3A; font-weight: 600; }
.section--dark .form__note.is-success { color: var(--turmeric-soft); }

/* ─── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-grid--two {
  grid-template-columns: 1fr 1fr 1.15fr;
}
.contact-card {
  padding: 1.35rem;
  background: rgba(255, 252, 247, 0.05);
  border: 1px solid rgba(255, 252, 247, 0.12);
  border-radius: var(--radius);
}
.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  color: var(--turmeric-soft);
}
.contact-card address {
  color: rgba(251, 246, 238, 0.85);
  line-height: 1.55;
}
.contact-card__meta {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: rgba(251, 246, 238, 0.6);
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-list span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.5);
}
.contact-list a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
}
.contact-list a:hover { color: var(--turmeric-soft); }

.social {
  display: flex;
  gap: 0.5rem;
}
.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 252, 247, 0.25);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social a:hover {
  background: var(--turmeric);
  border-color: var(--turmeric);
  color: var(--clove);
}
.social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}
.social a[aria-label="Instagram"] svg,
.social a[aria-label="YouTube"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.social a[aria-label="TikTok"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social--footer a {
  border-color: var(--line);
  color: var(--ink-soft);
}
.social--footer a:hover {
  background: var(--chili);
  border-color: var(--chili);
  color: var(--white);
}

.contact-card--form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-card--form .form,
.contact-card--form .field { display: flex; flex-direction: column; }
.contact-card--form .field { gap: 0.3rem; }

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 252, 247, 0.12);
  aspect-ratio: 21 / 7;
  min-height: 220px;
  background: #2A150F;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* ─── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #2A211B, #1F1814);
  color: rgba(251, 246, 238, 0.78);
  padding: 3rem 0 1.5rem;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(251, 246, 238, 0.12);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.site-footer__brand > strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
}
.site-footer__brand > p {
  font-size: 0.92rem;
  max-width: 22rem;
  line-height: 1.5;
}
.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.site-footer__links h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turmeric-soft);
  margin-bottom: 0.85rem;
}
.site-footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.site-footer__links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: rgba(251, 246, 238, 0.75);
}
.site-footer__links a:hover { color: var(--turmeric-soft); }
.site-footer__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-content: flex-start;
}
.site-footer__certs li {
  border: 1px solid rgba(251, 246, 238, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.84rem;
}
.site-footer__made {
  color: var(--turmeric-soft);
  font-weight: 600;
}

/* ─── Cart drawer ──────────────────────────────────────────── */
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(31, 20, 14, 0.45);
  z-index: 200;
  animation: fade-in 0.25s var(--ease);
}
.drawer-scrim[hidden] { display: none; }
.cart {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  max-height: 100%;
  background: var(--paper);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -12px 0 40px rgba(31, 20, 14, 0.18);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.cart.is-open { transform: translateX(0); }
.cart__handle {
  display: none;
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  margin: 0.65rem auto 0;
}
.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.cart__head h2 { font-size: 1.25rem; }
.cart__close {
  border: 0;
  background: var(--cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.45rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
  display: grid;
  place-items: center;
}
.cart__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}
.cart__empty {
  color: var(--muted);
  text-align: center;
  padding: 2.5rem 1rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item__thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--cream);
}
.cart-item h4 { font-size: 0.98rem; margin-bottom: 0.15rem; }
.cart-item p { font-size: 0.82rem; color: var(--muted); }
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
}
.cart-item__qty button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}
.cart-item__qty span {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 700;
}
.cart-item__remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.35rem 0;
  margin-top: 0.25rem;
  min-height: 36px;
}
.cart__foot {
  padding: 1rem 1.25rem calc(1.15rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--paper);
}
.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1rem;
}
.cart__total strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--chili);
}
.cart__note {
  font-size: 0.82rem;
  color: var(--muted);
}
.cart__foot .btn--ghost {
  color: var(--ink-soft);
  border-color: var(--line);
  background: transparent;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── Recipe modal ─────────────────────────────────────────── */
.recipe-modal {
  position: relative;
  width: min(680px, calc(100% - 2rem));
  max-height: min(88vh, 820px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: auto;
}
.recipe-modal::backdrop {
  background: rgba(31, 20, 14, 0.55);
  backdrop-filter: blur(3px);
}
.recipe-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 20, 14, 0.7);
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}
.recipe-modal__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.recipe-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-modal__content { padding: 1.35rem 1.5rem 1.75rem; }
.recipe-modal__content .eyebrow { margin-bottom: 0.5rem; }
.recipe-modal__content h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin-bottom: 0.65rem;
}
.recipe-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chili);
  margin-bottom: 1rem;
}
.recipe-modal__uses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}
.recipe-modal__uses span {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.recipe-modal__steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  counter-reset: step;
}
.recipe-modal__steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.2rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.recipe-modal__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--chili);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ─── Toast ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
  transform: translateX(-50%) translateY(140%);
  background: var(--ink);
  color: var(--cream);
  padding: 0.65rem 0.7rem 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 300;
  transition: transform 0.35s var(--ease), opacity 0.3s;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: min(92vw, 420px);
  opacity: 0;
  pointer-events: none;
}
.toast[hidden] { display: none !important; }
.toast.is-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.toast__msg {
  flex: 1;
  line-height: 1.3;
  min-width: 0;
}
.toast__action {
  border: 0;
  background: var(--turmeric);
  color: var(--clove);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 36px;
}

/* ─── Reveal on scroll ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.95s var(--ease),
    transform 0.95s var(--ease),
    filter 0.95s var(--ease),
    clip-path 1.1s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  clip-path: inset(8% 0 0 0);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}
.reveal--left {
  transform: translateX(-36px) rotate(-0.4deg);
  clip-path: inset(0 12% 0 0);
}
.reveal--left.is-in {
  transform: translateX(0) rotate(0);
  clip-path: inset(0 0 0 0);
}
.reveal--right {
  transform: translateX(36px) rotate(0.4deg);
  clip-path: inset(0 0 0 12%);
}
.reveal--right.is-in {
  transform: translateX(0) rotate(0);
  clip-path: inset(0 0 0 0);
}
.reveal--scale {
  transform: translateY(20px) scale(0.94);
  filter: blur(8px);
}
.reveal--scale.is-in {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.is-ready .site-header {
  animation: header-drop 0.8s var(--ease) both;
}
@keyframes header-drop {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.section-head .eyebrow {
  position: relative;
  padding-left: 1.6rem;
}
.section-head .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--chili), var(--turmeric));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease) 0.15s;
}
.reveal.is-in .eyebrow::before,
.section-head.reveal.is-in .eyebrow::before {
  transform: scaleX(1);
}

/* Stagger children when parent enters */
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal--stagger.is-in > *:nth-child(1) { transition-delay: 60ms; }
.reveal--stagger.is-in > *:nth-child(2) { transition-delay: 120ms; }
.reveal--stagger.is-in > *:nth-child(3) { transition-delay: 180ms; }
.reveal--stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }
.reveal--stagger.is-in > *:nth-child(5) { transition-delay: 300ms; }
.reveal--stagger.is-in > *:nth-child(6) { transition-delay: 360ms; }
.reveal--stagger.is-in > * {
  opacity: 1;
  transform: translateY(0);
}

.product-grid .product-card.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.story-figure img {
  transition: transform 1.1s var(--ease);
}
.story-figure:hover img { transform: scale(1.02); }

.split__media img {
  transition: transform 1.2s var(--ease);
}
.split:hover .split__media img { transform: scale(1.03); }

.quality-figure img {
  transition: transform 1s var(--ease);
}
.quality-figure:hover img { transform: scale(1.025); }

.certs li {
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.certs li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(42, 31, 24, 0.06);
}

.nav a {
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--turmeric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.lang-switch button {
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.lang-switch button:active { transform: scale(0.96); }

.filter-bar button {
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.filter-bar button:active { transform: scale(0.97); }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 980px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .story-grid,
  .quality-layout,
  .split,
  .distributor,
  .site-footer__top,
  .contact-grid,
  .contact-grid--two {
    grid-template-columns: 1fr;
  }
  .section--split-reverse .split { direction: ltr; }
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .photo-gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }
  .story-figure { position: static; }
  .story-figure img { aspect-ratio: 16 / 10; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .product-grid,
  .certs { grid-template-columns: repeat(2, 1fr); }
  .split__media { min-height: 260px; aspect-ratio: 16 / 9; }
  .map-card { aspect-ratio: 16 / 9; }
}

@media (max-width: 780px) {
  :root { --header-h: 60px; --wrap: min(1120px, calc(100% - 1.25rem)); }

  .festival-bar__inner {
    padding: 0.45rem 0;
    gap: 0.5rem;
  }
  .festival-bar__inner p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .menu-btn { display: grid; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    max-height: calc(100dvh - var(--header-h));
    overflow: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom, 0));
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    box-shadow: 0 16px 32px rgba(31, 20, 14, 0.1);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
  .nav a {
    padding: 0.85rem 0.9rem;
    font-size: 1.05rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .brand__mark { width: 38px; height: 38px; }
  .brand__text strong { font-size: 1.05rem; }
  .brand__text small { display: none; }

  .hero {
    min-height: auto;
    min-height: min(92dvh, 720px);
  }
  .hero__inner {
    padding: 5.5rem 0 1.5rem;
    align-items: flex-end;
  }
  .hero__title { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  .hero__tagline { font-size: 1.2rem; }
  .hero__lede { font-size: 0.98rem; margin-bottom: 1.25rem; }
  .hero__cta { width: 100%; }
  .hero__cta .btn {
    flex: 1 1 calc(50% - 0.4rem);
    min-height: 48px;
    text-align: center;
  }

  .trust-strip {
    margin-bottom: 1.25rem;
    border-radius: 12px;
  }
  .trust-strip li { padding: 0.85rem 0.9rem; }
  .trust-strip strong { font-size: 1.1rem; }
  .trust-strip span { font-size: 0.75rem; }

  .section { padding: 2.75rem 0; }
  .section-head h2 { font-size: clamp(1.65rem, 6vw, 2.2rem); }

  .filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(-1 * (100% - var(--wrap)) / 2);
    padding-inline: calc((100% - var(--wrap)) / 2);
    margin-bottom: 1.15rem;
    gap: 0.4rem;
  }
  .filter-bar::-webkit-scrollbar { display: none; }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .product-card {
    padding: 0.65rem;
    gap: 0.55rem;
    border-radius: 12px;
  }
  .product-card:hover,
  .process__steps li:hover,
  .certs li:hover { transform: none; }
  .product-card__body h3 { font-size: 0.95rem; }
  .nav a::after { display: none; }
  .brand__mark { animation: none; }
  .product-card__body p {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
  }
  .pack-select button {
    flex: 1;
    min-width: 0;
    padding: 0.4rem 0.35rem;
    font-size: 0.75rem;
  }
  .btn--add {
    min-height: 42px;
    font-size: 0.82rem;
    padding: 0.6rem 0.5rem;
  }

  .certs,
  .process__steps { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .site-footer__links { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .festival { min-height: 420px; }
  .festival__card h2 { font-size: 1.65rem; }

  /* Bottom-sheet cart on mobile */
  .cart {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: min(88dvh, 720px);
    border-radius: 18px 18px 0 0;
    transform: translateY(110%);
    box-shadow: 0 -12px 40px rgba(31, 20, 14, 0.18);
  }
  .cart.is-open { transform: translateY(0); }
  .cart__handle { display: block; }
  .cart__head { padding: 0.75rem 1.1rem 0.9rem; }
  .cart__body { padding: 0.5rem 1.1rem 1rem; }
  .cart__foot { padding: 0.9rem 1.1rem calc(1rem + env(safe-area-inset-bottom, 0)); }

  .toast {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    width: calc(100% - 1.5rem);
    max-width: none;
    border-radius: 14px;
    padding: 0.7rem 0.75rem 0.7rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero__cta .btn { flex: 1 1 100%; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .photo-gallery,
  .photo-gallery__item--wide {
    grid-template-columns: 1fr;
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }
  .site-footer__links { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
  .lang-switch button { padding: 0.35rem 0.55rem; min-height: 34px; }
  .header-tools { gap: 0.3rem; }
  .cart-btn,
  .menu-btn { width: 40px; height: 40px; }
}

@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card__body p { -webkit-line-clamp: 3; }
}

@media (max-width: 780px) {
  .ambient { opacity: 0.55; }
  .hero__canvas { display: none !important; }
  .reveal {
    filter: none;
    clip-path: none;
  }
  .hero__title .char {
    animation-duration: 0.55s;
  }
  .product-card::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__media img,
  .hero-anim,
  .reveal,
  .reveal--stagger > *,
  .brand__mark,
  .hero__title .char,
  .ambient__blob,
  .scroll-progress {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    clip-path: none !important;
  }
  .hero__canvas,
  .ambient,
  .click-spark { display: none !important; }
}
