/* ==========================================================================
   Mr. Sehat Wale Natural Foods — design system

   The brand's whole claim is "the colour you see is the spice's own, not a
   dye". So the interface is deliberately near-monochrome: warm paper, warm
   near-black, one deep turmeric accent for wayfinding. The only saturated
   colour on any page comes from a photograph of the product itself. Restraint
   is the argument.

   Generated by build.py — edit this file, not the copies in dist/.
   ========================================================================== */

:root{
  color-scheme: light;

  /* ---- ink & paper (warm-biased neutrals, never pure grey) ---- */
  --ink:        #16120E;
  --ink-2:      #544A3F;
  --ink-3:      #756A5C;
  --paper:      #FBFAF8;
  --surface:    #FFFFFF;
  --surface-2:  #F4F1EA;
  --surface-3:  #EBE6DA;
  --line:       #E4DED2;
  --line-2:     #D3CABA;

  /* ---- brand ---- */
  --brand:      #5E1219;
  --brand-2:    #7C1B24;
  --accent:     #8A5F0A;
  --accent-lt:  #E0C98A;
  --wa:         #0E7A41;
  --wa-dk:      #0A5C31;

  /* ---- product pigments: identity accents only, never controls ---- */
  --turmeric:  #D6970F;  --turmeric-soft:#FBF0D2;
  --chilli:    #A72A1C;  --chilli-soft:  #F8E2DC;
  --coriander: #74822F;  --coriander-soft:#ECEFD9;
  --cumin:     #8A5A2E;  --cumin-soft:   #F1E4D2;
  --combo:     #5E1219;  --combo-soft:   #F5E7E4;

  /* ---- type ---- */
  --display: 'Schibsted Grotesk', 'Anek Devanagari', system-ui, sans-serif;
  --body:    'Instrument Sans', 'Anek Devanagari', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --deva:    'Anek Devanagari', 'Instrument Sans', system-ui, sans-serif;

  --fs-xs:   .75rem;
  --fs-sm:   .8438rem;
  --fs-base: 1rem;
  --fs-md:   clamp(1.0625rem, 1.02rem + .2vw, 1.1875rem);
  --fs-lg:   clamp(1.25rem, 1.16rem + .42vw, 1.5rem);
  --fs-xl:   clamp(1.5rem, 1.32rem + .84vw, 2.05rem);
  --fs-2xl:  clamp(1.9rem, 1.55rem + 1.6vw, 2.9rem);
  --fs-3xl:  clamp(2.4rem, 1.75rem + 3vw, 4.2rem);

  /* ---- space (8px base, generous) ---- */
  --s1:.25rem; --s2:.5rem;  --s3:.75rem; --s4:1rem;   --s5:1.5rem;
  --s6:2rem;   --s7:2.75rem;--s8:3.5rem; --s9:4.5rem; --s10:6rem; --s11:8rem;

  --r-sm:8px; --r:14px; --r-lg:22px; --r-xl:32px; --r-pill:999px;

  --shadow-sm: 0 1px 2px rgba(34,22,12,.05), 0 4px 14px rgba(34,22,12,.05);
  --shadow:    0 2px 6px rgba(34,22,12,.05), 0 14px 40px rgba(34,22,12,.08);
  --shadow-lg: 0 8px 24px rgba(34,22,12,.08), 0 32px 70px rgba(34,22,12,.13);

  --wrap: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------------------------------------------------------- reset */
*,*::before,*::after{box-sizing:border-box}
*{margin:0}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth}
/* The cart and nav panels are position:fixed and parked off-screen; without this
   they still stretch the document's scroll width on a phone. `clip` (not hidden)
   because hidden would break position:sticky on the header. */
html,body{overflow-x:clip}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;
    transition-duration:.01ms!important}
}
body{
  font-family:var(--body); font-size:var(--fs-base); line-height:1.65;
  color:var(--ink-2); background:var(--paper);
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  font-synthesis-weight:none;
}
img,picture,svg{display:block; max-width:100%}
img{height:auto}
button,input,select,textarea{font:inherit; color:inherit}
button{background:none;border:0;cursor:pointer}
a{color:inherit; text-decoration:none}
:focus-visible{outline:2.5px solid var(--accent); outline-offset:3px; border-radius:4px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Hindi text gets the Devanagari face and a little more line height —
   Latin metrics leave the matras cramped. */
.hi{font-family:var(--deva); line-height:1.75}
html.lang-en .t-hi{display:none}
html.lang-hi .t-en{display:none}

/* ---------------------------------------------------------------- type */
h1,h2,h3,h4{font-family:var(--display); color:var(--ink); font-weight:700;
  line-height:1.12; letter-spacing:-.022em; text-wrap:balance}
h1{font-size:var(--fs-3xl); letter-spacing:-.032em}
h2{font-size:var(--fs-2xl); letter-spacing:-.028em}
h3{font-size:var(--fs-lg)}
h4{font-size:var(--fs-md)}
h1 .hi,h2 .hi,h3 .hi{letter-spacing:-.01em}
p{text-wrap:pretty}
strong,b{font-weight:600;color:var(--ink)}
.eyebrow{font-family:var(--body); font-size:var(--fs-xs); font-weight:600;
  letter-spacing:.15em; text-transform:uppercase; color:var(--accent)}
.lead{font-size:var(--fs-md); color:var(--ink-2); max-width:38rem}

/* ---------------------------------------------------------------- layout */
.wrap{width:min(100% - 2.5rem, var(--wrap)); margin-inline:auto}
@media (min-width:800px){ .wrap{width:min(100% - 5rem, var(--wrap))} }
section{padding-block:var(--s9)}
@media (min-width:800px){ section{padding-block:var(--s10)} }
.sec-head{max-width:44rem; margin-bottom:var(--s7)}
.sec-head.center{margin-inline:auto; text-align:center}
.sec-head .eyebrow{display:block; margin-bottom:var(--s3)}
.sec-head p{margin-top:var(--s4); font-size:var(--fs-md); color:var(--ink-2)}
.rule{height:1px; background:var(--line); border:0}

/* ---------------------------------------------------------------- buttons */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  font-family:var(--body); font-weight:600; font-size:var(--fs-base);
  padding:.95em 1.6em; border-radius:var(--r-pill); border:1.5px solid transparent;
  transition:transform .15s var(--ease), background-color .15s, border-color .15s, color .15s;
  text-align:center; line-height:1.2}
.btn:active{transform:translateY(1px)}
.btn svg{width:1.15em;height:1.15em;fill:currentColor;flex:none}
.btn-dark{background:var(--ink); color:var(--paper)}
.btn-dark:hover{background:#000}
.btn-wa{background:var(--wa); color:#fff}
.btn-wa:hover{background:var(--wa-dk)}
.btn-line{border-color:var(--line-2); color:var(--ink); background:var(--surface)}
.btn-line:hover{border-color:var(--ink); background:var(--surface)}
.btn-sm{padding:.7em 1.15em; font-size:var(--fs-sm)}
.btns{display:flex; flex-wrap:wrap; gap:var(--s3); margin-top:var(--s6)}

/* ---------------------------------------------------------------- top bar */
.topbar{background:var(--ink); color:#C2B7A6; font-size:var(--fs-xs); letter-spacing:.02em}
.topbar .wrap{display:flex; flex-wrap:wrap; gap:.4rem 1.6rem; justify-content:center;
  align-items:center; padding-block:.6rem; text-align:center}
.topbar b{color:var(--accent-lt); font-weight:600; letter-spacing:.04em}

/* ---------------------------------------------------------------- header */
.site-head{position:sticky; top:0; z-index:60; background:rgba(251,250,248,.86);
  backdrop-filter:saturate(1.4) blur(14px); -webkit-backdrop-filter:saturate(1.4) blur(14px);
  border-bottom:1px solid var(--line)}
.site-head .wrap{display:flex; align-items:center; gap:var(--s4); padding-block:.85rem}
.brand{display:flex; align-items:center; gap:.7rem; margin-right:auto; min-width:0}
.brand img{width:42px;height:42px;border-radius:50%;border:1px solid var(--line);flex:none}
.brand > span{display:flex; flex-direction:column; min-width:0}
.brand-n{font-family:var(--display); font-weight:700; font-size:1.0625rem;
  letter-spacing:-.02em; color:var(--ink); line-height:1.15; white-space:nowrap}
.brand-s{font-size:.625rem; letter-spacing:.2em; text-transform:uppercase; color:var(--ink-3);
  line-height:1.3; white-space:nowrap}
.nav{display:none}
.nav ul{display:flex; gap:.35rem; list-style:none; padding:0}
.nav a{display:block; padding:.5rem .8rem; border-radius:var(--r-pill);
  font-size:var(--fs-sm); font-weight:500; color:var(--ink-2); transition:background .15s,color .15s}
.nav a:hover{background:var(--surface-2); color:var(--ink)}
.nav a[aria-current]{color:var(--ink); font-weight:600; background:var(--surface-2)}
.head-tools{display:flex; align-items:center; gap:.5rem; flex:none}
.lang{display:flex; background:var(--surface-2); border-radius:var(--r-pill); padding:3px}
.lang button{font-size:.6875rem; font-weight:700; letter-spacing:.06em; padding:.35rem .7rem;
  border-radius:var(--r-pill); color:var(--ink-2); transition:.15s}
.lang button:hover{color:var(--ink)}
.sheet-head .lang button{color:#B3A897}
.sheet-head .lang button:hover{color:var(--paper)}
.sheet-head .lang button.active{background:var(--paper); color:var(--ink)}
.lang button.active{background:var(--ink); color:var(--paper)}
.icon-btn{position:relative; width:42px;height:42px; border-radius:50%;
  display:grid;place-items:center; border:1px solid var(--line); background:var(--surface);
  transition:border-color .15s, background .15s}
.icon-btn:hover{border-color:var(--ink-3)}
.icon-btn svg{width:19px;height:19px;fill:var(--ink)}
.cart-count{position:absolute; top:-3px; right:-3px; min-width:19px;height:19px;padding:0 5px;
  border-radius:var(--r-pill); background:var(--brand); color:#fff; font-size:.625rem;
  font-weight:700; display:none; place-items:center; line-height:1; border:2px solid var(--paper)}
.cart-count.on{display:grid}
.burger{width:42px;height:42px;border-radius:50%;border:1px solid var(--line);
  background:var(--surface);display:grid;place-items:center}
.burger span{display:block;width:17px;height:1.5px;background:var(--ink);position:relative;
  transition:.2s var(--ease)}
.burger span::before,.burger span::after{content:'';position:absolute;left:0;width:17px;height:1.5px;
  background:var(--ink);transition:.2s var(--ease)}
.burger span::before{top:-5.5px} .burger span::after{top:5.5px}
.burger[aria-expanded=true] span{background:transparent}
.burger[aria-expanded=true] span::before{top:0;transform:rotate(45deg)}
.burger[aria-expanded=true] span::after{top:0;transform:rotate(-45deg)}
@media (min-width:1024px){
  .nav{display:block}
  .burger{display:none}
}
/* On a narrow phone the wordmark, language switch, cart and menu will not all
   fit on one line — the tagline is the line that carries the least. */
@media (max-width:600px){
  .site-head .wrap{gap:var(--s2)}
  .brand{gap:.55rem}
  .brand img{width:38px;height:38px}
  .brand-s{display:none}
  .brand-n{font-size:1rem}
  .lang button{padding:.35rem .55rem}
  .icon-btn,.burger{width:38px;height:38px}
  .topbar .wrap{gap:.3rem 1rem;font-size:.6875rem}
}
@media (max-width:380px){
  .brand-n{font-size:.9375rem}
}

/* mobile drawer nav */
.navdrawer{position:fixed; inset:0 0 0 auto; width:min(86vw,340px); background:var(--surface);
  z-index:90; transform:translateX(101%); transition:transform .3s var(--ease);
  padding:var(--s6) var(--s5); overflow-y:auto; box-shadow:var(--shadow-lg);
  display:flex; flex-direction:column; gap:var(--s2)}
.navdrawer.open{transform:none}
.navdrawer .close{align-self:flex-end; width:40px;height:40px;border-radius:50%;
  border:1px solid var(--line); display:grid;place-items:center; font-size:1.3rem; color:var(--ink)}
.navdrawer a{padding:.85rem .4rem; font-family:var(--display); font-size:1.15rem; font-weight:600;
  color:var(--ink); border-bottom:1px solid var(--line)}
.navdrawer a:last-of-type{border-bottom:0}
.navdrawer .drawer-cta{margin-top:var(--s5); display:grid; gap:var(--s3)}
@media (min-width:1024px){ .navdrawer{display:none} }

/* ---------------------------------------------------------------- hero */
.hero{padding-block:var(--s8) var(--s9); overflow:hidden}
.hero-grid{display:grid; gap:var(--s7); align-items:center}
@media (min-width:900px){
  .hero{padding-block:var(--s9) var(--s10)}
  .hero-grid{grid-template-columns:1.05fr .95fr; gap:var(--s8)}
}
.hero-grid > div:first-child{display:contents}
@media (min-width:900px){ .hero-grid > div:first-child{display:block} }
.hero .eyebrow{order:1}
.hero h1{order:2; margin-top:var(--s4)}
.hero-media{order:3}
.hero-quote{order:4}
.hero .lead{order:5}
.hero .btns{order:6}
.pigments{order:7}
@media (min-width:900px){
  .hero .eyebrow,.hero h1,.hero-quote,.hero .lead,.hero .btns,.pigments,.hero-media{order:initial}
}
.hero h1 .sub{display:block; color:var(--ink-3); font-weight:500}
.hero .lead{margin-top:var(--s5)}
.hero-quote{margin-top:var(--s4); font-family:var(--display); font-size:var(--fs-lg);
  color:var(--brand); font-weight:600; letter-spacing:-.02em}
.hero-media{position:relative; display:grid; place-items:center; padding:var(--s6) var(--s4) var(--s5)}
.hero-media .arch{position:absolute; inset:0; border-radius:50% 50% var(--r-xl) var(--r-xl);
  background:radial-gradient(120% 90% at 50% 18%, var(--surface-3), var(--surface-2) 70%)}
.hero-media img{position:relative; width:min(100%, 460px);
  filter:drop-shadow(0 26px 34px rgba(34,22,12,.20))}
.hero-seal{position:absolute; right:0; bottom:2%; width:96px;height:96px;border-radius:50%;
  background:var(--surface); border:1px solid var(--line); box-shadow:var(--shadow);
  display:grid; place-items:center; text-align:center; transform:rotate(-7deg); z-index:2}
.hero-seal .t1{font-family:var(--display); font-size:.7rem; font-weight:700; color:var(--brand);
  letter-spacing:.04em; line-height:1.2}
.hero-seal .t2{font-size:.5rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-3);
  margin-top:3px; line-height:1.2}
@media (max-width:560px){
  .hero-seal{width:76px;height:76px; right:2%}
  .hero-seal .t1{font-size:.58rem} .hero-seal .t2{font-size:.44rem}
}

/* pigment strip: the four spice colours, stated plainly */
.pigments{margin-top:var(--s7); border-top:1px solid var(--line); padding-top:var(--s5)}
.pigments .cap{font-size:var(--fs-xs); letter-spacing:.13em; text-transform:uppercase;
  color:var(--ink-3); margin-bottom:var(--s4)}
.pigment-row{display:flex; flex-wrap:wrap; gap:var(--s5)}
.pigment{display:flex; align-items:center; gap:.6rem; font-size:var(--fs-sm);
  font-weight:500; color:var(--ink-2)}
.pigment i{width:22px;height:22px;border-radius:50%;background:var(--pc);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.08); flex:none}

/* ---------------------------------------------------------------- marquee facts */
.factbar{background:var(--ink); color:#D8CFC1; padding-block:var(--s5)}
.factbar .wrap{display:grid; gap:var(--s5)}
@media (min-width:700px){ .factbar .wrap{grid-template-columns:repeat(4,1fr); gap:var(--s6)} }
.fact{display:flex; flex-direction:column; gap:.15rem}
.fact .n{font-family:var(--display); font-size:var(--fs-lg); font-weight:700; color:var(--accent-lt);
  letter-spacing:-.02em; font-variant-numeric:tabular-nums}
.fact .l{font-size:var(--fs-sm); color:#B3A897}

/* ---------------------------------------------------------------- promises */
.promise-grid{display:grid; gap:var(--s6)}
@media (min-width:640px){ .promise-grid{grid-template-columns:1fr 1fr; gap:var(--s6) var(--s7)} }
@media (min-width:1000px){ .promise-grid{grid-template-columns:repeat(3,1fr)} }
.promise{display:flex; flex-direction:column; gap:var(--s3)}
.promise .ic{width:44px;height:44px;border-radius:var(--r-sm);background:var(--surface-2);
  display:grid;place-items:center}
.promise .ic svg{width:22px;height:22px;fill:none;stroke:var(--brand);stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}
.promise h3{font-size:var(--fs-md)}
.promise p{font-size:var(--fs-sm); color:var(--ink-2)}

/* ---------------------------------------------------------------- products */
.prod-grid{display:grid; gap:var(--s4)}
@media (min-width:760px){ .prod-grid{grid-template-columns:1fr 1fr; gap:var(--s6)} }
@media (min-width:1080px){ .prod-grid{grid-template-columns:repeat(3,1fr)} }

.card{background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  overflow:hidden; display:grid; grid-template-columns:38% 1fr;
  transition:border-color .2s, box-shadow .2s, transform .2s var(--ease)}
.card:hover{border-color:var(--line-2); box-shadow:var(--shadow)}
@media (min-width:760px){ .card{grid-template-columns:1fr; display:flex; flex-direction:column} }

.card-media{position:relative; background:var(--pc-soft, var(--surface-2));
  display:grid; place-items:center; padding:var(--s4)}
@media (min-width:760px){ .card-media{padding:var(--s6) var(--s5); aspect-ratio:4/3} }
.card-media img{width:100%; max-width:190px; object-fit:contain;
  filter:drop-shadow(0 12px 18px rgba(34,22,12,.14))}
@media (max-width:759px){ .card-media img{max-width:100%} }
.card-tag{position:absolute; z-index:2; top:var(--s3); left:var(--s3); background:rgba(255,255,255,.92);
  border-radius:var(--r-pill); padding:.28rem .7rem; font-size:.625rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--pc-ink, var(--ink-2))}
.card-body{padding:var(--s4); display:flex; flex-direction:column; gap:var(--s3)}
@media (min-width:760px){ .card-body{padding:var(--s5); flex:1} }
.card-body h2,.card-body h3{font-size:var(--fs-md); line-height:1.2; letter-spacing:-.018em}
.card-var{font-size:var(--fs-xs); font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--pc, var(--accent))}
.card-desc{font-size:var(--fs-sm); color:var(--ink-3); display:none}
@media (min-width:760px){ .card-desc{display:block} }

.sizes{display:flex; flex-wrap:wrap; gap:.4rem; margin-top:auto}
.size{border:1px solid var(--line); border-radius:var(--r-sm); padding:.4rem .65rem;
  font-size:.75rem; font-weight:600; color:var(--ink-2); background:var(--surface);
  transition:.15s; white-space:nowrap; font-variant-numeric:tabular-nums}
.size:hover{border-color:var(--ink-3)}
.size[aria-pressed=true]{background:var(--ink); border-color:var(--ink); color:var(--paper)}
.buyrow{display:flex; align-items:center; justify-content:space-between; gap:var(--s3);
  padding-top:var(--s3); border-top:1px solid var(--line)}
.price{display:flex; align-items:baseline; gap:.45rem; font-variant-numeric:tabular-nums}
.price .now{font-family:var(--display); font-size:1.3rem; font-weight:700; color:var(--ink);
  letter-spacing:-.03em}
.price .was{font-size:var(--fs-sm); color:var(--ink-3); text-decoration:line-through}
.add{background:var(--ink); color:var(--paper); border-radius:var(--r-pill);
  padding:.6rem 1.1rem; font-size:var(--fs-sm); font-weight:600; white-space:nowrap;
  transition:background .15s, transform .12s var(--ease)}
.add:hover{background:var(--brand)}
.add:active{transform:scale(.97)}

/* featured combo spans the row */
.card.feature{grid-column:1/-1}
@media (min-width:760px){
  .card.feature{flex-direction:row; align-items:stretch}
  .card.feature .card-media{flex:1.1; aspect-ratio:auto}
  .card.feature .card-media img{max-width:420px}
  .card.feature .card-body{flex:1; justify-content:center; padding:var(--s7) var(--s6)}
  .card.feature h2{font-size:var(--fs-xl)}
}

/* ---------------------------------------------------------------- process */
.process{display:grid; gap:var(--s5); counter-reset:p}
@media (min-width:760px){ .process{grid-template-columns:repeat(5,1fr); gap:var(--s4)} }
.step{padding-top:var(--s4); border-top:2px solid var(--ink)}
.step .n{font-family:var(--display); font-size:var(--fs-sm); font-weight:700;
  color:var(--accent); letter-spacing:.06em; font-variant-numeric:tabular-nums}
.band .step .n{color:var(--accent-lt)}   /* deep gold on near-black is unreadable */
.step h3{font-size:var(--fs-md); margin-top:var(--s2)}
.step p{font-size:var(--fs-sm); color:var(--ink-3); margin-top:var(--s2)}

/* ---------------------------------------------------------------- dark band */
.band{background:var(--ink); color:#D8CFC1}
.band h2,.band h3{color:var(--paper)}
.band .eyebrow{color:var(--accent-lt)}
.band p{color:#B3A897}
.band .btn-line{background:transparent; border-color:#4A4038; color:var(--paper)}
.band .btn-line:hover{border-color:var(--paper)}

/* ---------------------------------------------------------------- story */
.story-grid{display:grid; gap:var(--s7)}
@media (min-width:900px){ .story-grid{grid-template-columns:.85fr 1.15fr; gap:var(--s8); align-items:start} }
.portrait{border-radius:var(--r-lg); overflow:hidden; background:var(--surface-2); position:relative}
.portrait img{width:100%}
.portrait figcaption{padding:var(--s4); border-top:1px solid var(--line); background:var(--surface)}
.portrait .nm{font-family:var(--display); font-weight:700; color:var(--ink); font-size:var(--fs-md)}
.portrait .rl{font-size:var(--fs-sm); color:var(--ink-3)}
.prose{max-width:38rem}
.prose p{margin-bottom:var(--s4); font-size:var(--fs-md)}
.prose p:last-child{margin-bottom:0}
.reg-list{list-style:none; padding:0; margin-top:var(--s6); border-top:1px solid var(--line)}
.reg-list li{display:flex; justify-content:space-between; gap:var(--s4); padding:.85rem 0;
  border-bottom:1px solid var(--line); font-size:var(--fs-sm)}
.reg-list .k{color:var(--ink-3)}
.reg-list .v{font-weight:600; color:var(--ink); text-align:right; font-variant-numeric:tabular-nums}

/* ---------------------------------------------------------------- tips */
.tip-grid{display:grid; gap:var(--s4)}
@media (min-width:640px){ .tip-grid{grid-template-columns:1fr 1fr; gap:var(--s5)} }
@media (min-width:1000px){ .tip-grid{grid-template-columns:repeat(4,1fr)} }
.tip{background:var(--surface); border:1px solid var(--line); border-radius:var(--r);
  padding:var(--s5); display:flex; flex-direction:column; gap:var(--s2)}
.tip .k{font-size:var(--fs-xs); font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:var(--accent)}
.tip h2,.tip h3{font-size:var(--fs-md); letter-spacing:-.018em}
.tip p{font-size:var(--fs-sm); color:var(--ink-2)}

/* ---------------------------------------------------------------- faq */
.faq{max-width:46rem; border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{list-style:none; cursor:pointer; padding:var(--s5) var(--s6) var(--s5) 0;
  position:relative; font-family:var(--display); font-weight:600; font-size:var(--fs-md);
  color:var(--ink); line-height:1.35}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:''; position:absolute; right:.4rem; top:50%; width:13px;height:13px;
  margin-top:-6px; background:
    linear-gradient(var(--ink-3),var(--ink-3)) center/13px 1.5px no-repeat,
    linear-gradient(var(--ink-3),var(--ink-3)) center/1.5px 13px no-repeat;
  transition:transform .22s var(--ease)}
.faq details[open] summary::after{transform:rotate(135deg)}
.faq summary:hover{color:var(--brand)}
.faq .ans{padding:0 var(--s6) var(--s5) 0; color:var(--ink-2); font-size:var(--fs-base)}

/* ---------------------------------------------------------------- forms */
.form{display:grid; gap:var(--s4); max-width:34rem}
.field{display:grid; gap:.4rem}
.field label{font-size:var(--fs-sm); font-weight:600; color:var(--ink)}
.field input,.field select,.field textarea{
  width:100%; padding:.85rem 1rem; border:1.5px solid var(--line); border-radius:var(--r-sm);
  background:var(--surface); color:var(--ink); transition:border-color .15s, background .15s}
.field textarea{min-height:110px; resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{outline:none; border-color:var(--ink)}
.field .hint{font-size:var(--fs-xs); color:var(--ink-3)}

/* ---------------------------------------------------------------- contact */
.contact-grid{display:grid; gap:var(--s6)}
@media (min-width:900px){ .contact-grid{grid-template-columns:1fr 1fr; gap:var(--s8)} }
.cinfo{display:grid; gap:var(--s5)}
.cinfo .row{display:flex; gap:var(--s4); align-items:flex-start;
  padding-bottom:var(--s5); border-bottom:1px solid var(--line)}
.cinfo .row:last-child{border-bottom:0; padding-bottom:0}
.cinfo .ic{width:40px;height:40px;border-radius:50%;background:var(--surface-2);
  display:grid;place-items:center;flex:none}
.cinfo .ic svg{width:18px;height:18px;fill:var(--brand)}
.cinfo .k{font-size:var(--fs-xs); letter-spacing:.11em; text-transform:uppercase; color:var(--ink-3)}
.cinfo .v{font-size:var(--fs-md); color:var(--ink); font-weight:500; margin-top:2px}
.cinfo a.v:hover{color:var(--brand)}
.socials{display:flex; gap:var(--s3); flex-wrap:wrap; margin-top:var(--s2)}
.soc{width:44px;height:44px;border-radius:50%;border:1px solid var(--line);background:var(--surface);
  display:grid;place-items:center; transition:.15s}
.soc:hover{border-color:var(--ink); background:var(--surface-2)}
.soc svg{width:19px;height:19px;fill:var(--ink)}

/* ---------------------------------------------------------------- payment */
.pay-grid{display:grid; gap:var(--s5)}
@media (min-width:860px){ .pay-grid{grid-template-columns:1fr 1fr; gap:var(--s6); align-items:start} }
.paycard{background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:var(--s6); display:flex; flex-direction:column; gap:var(--s4)}
.paycard h2,.paycard h3{font-size:var(--fs-lg)}
.qrframe{align-self:center; padding:var(--s4); background:var(--surface-2);
  border-radius:var(--r); border:1px solid var(--line)}
.qrframe img{width:min(210px,60vw); height:auto}
.kv{display:grid; gap:0; border-top:1px solid var(--line)}
.kv .row{display:flex; align-items:center; justify-content:space-between; gap:var(--s3);
  padding:.8rem 0; border-bottom:1px solid var(--line); font-size:var(--fs-sm)}
.kv .k{color:var(--ink-3)}
.kv .v{font-weight:600; color:var(--ink); text-align:right; word-break:break-all;
  font-variant-numeric:tabular-nums}
.copy{border:1px solid var(--line); border-radius:var(--r-pill); padding:.35rem .8rem;
  font-size:var(--fs-xs); font-weight:600; color:var(--ink-2); background:var(--surface);
  flex:none; transition:.15s}
.copy:hover{border-color:var(--ink); color:var(--ink)}
.callout{background:var(--surface-2); border:1px solid var(--line); border-radius:var(--r);
  padding:var(--s4) var(--s5); font-size:var(--fs-sm); color:var(--ink-2)}
.callout strong{display:block; margin-bottom:.25rem}

/* ---------------------------------------------------------------- legal pages */
.legal{max-width:44rem}
.legal h2{margin-top:var(--s7); font-size:var(--fs-lg)}
.legal h2:first-of-type{margin-top:0}
.legal p{margin-top:var(--s3); color:var(--ink-2)}

/* ---------------------------------------------------------------- CTA band */
.cta{text-align:center}
.cta .btns{justify-content:center}
.cta p{margin-inline:auto; max-width:34rem; margin-top:var(--s4)}

/* ---------------------------------------------------------------- footer */
.site-foot{background:var(--ink); color:#B3A897; padding-block:var(--s8) var(--s6); margin-top:var(--s4)}
.foot-grid{display:grid; gap:var(--s6)}
@media (min-width:760px){ .foot-grid{grid-template-columns:1.5fr 1fr 1.2fr; gap:var(--s7)} }
.site-foot h2,.site-foot h4{font-family:var(--body); font-size:var(--fs-xs); font-weight:600; letter-spacing:.14em;
  text-transform:uppercase; color:var(--accent-lt); margin-bottom:var(--s4)}
.site-foot a{color:#C7BCAB; transition:color .15s}
.site-foot a:hover{color:var(--paper)}
.foot-brand{display:flex; align-items:center; gap:.7rem; margin-bottom:var(--s4)}
.foot-brand img{width:40px;height:40px;border-radius:50%}
.foot-brand .n{font-family:var(--display); font-weight:700; color:var(--paper); font-size:1.05rem}
.foot-links{display:grid; gap:.7rem; font-size:var(--fs-sm)}
.foot-c{display:grid; gap:.55rem; font-size:var(--fs-sm)}
.foot-c .lic{margin-top:var(--s3); padding-top:var(--s3); border-top:1px solid #332B24;
  font-size:var(--fs-xs); color:#9A8F7F; line-height:1.8}
.foot-c .lic b{color:#C7BCAB; font-weight:600}
.foot-soc{display:flex; gap:.6rem; margin-top:var(--s4)}
.foot-soc a{width:38px;height:38px;border-radius:50%;border:1px solid #3A322A;
  display:grid;place-items:center; transition:.15s}
.foot-soc a:hover{border-color:var(--accent-lt); background:#241D17}
.foot-soc svg{width:17px;height:17px;fill:#C7BCAB}
.foot-bottom{margin-top:var(--s7); padding-top:var(--s5); border-top:1px solid #332B24;
  display:flex; flex-wrap:wrap; gap:var(--s3) var(--s5); justify-content:space-between;
  font-size:var(--fs-xs); color:#9A8F7F}
.foot-policy{display:flex; flex-wrap:wrap; gap:.4rem 1.2rem}

/* ---------------------------------------------------------------- breadcrumb */
.crumb{border-bottom:1px solid var(--line); background:var(--surface)}
.crumb .wrap{display:flex; gap:.6rem; align-items:center; padding-block:.9rem;
  font-size:var(--fs-sm); color:var(--ink-3)}
.crumb a{color:var(--ink-2)} .crumb a:hover{color:var(--brand)}
.crumb .sep{color:var(--line-2)}

/* page header for inner pages */
.page-head{padding-block:var(--s8) var(--s6)}
.page-head .eyebrow{display:block; margin-bottom:var(--s3)}
.page-head p{margin-top:var(--s4); font-size:var(--fs-md); max-width:40rem}

/* ---------------------------------------------------------------- cart drawer */
.scrim{position:fixed; inset:0; background:rgba(22,18,14,.45); opacity:0; pointer-events:none;
  transition:opacity .25s; z-index:80; backdrop-filter:blur(2px)}
.scrim.on{opacity:1; pointer-events:auto}
.cart{position:fixed; top:0; right:0; bottom:0; width:min(92vw,400px); background:var(--paper);
  z-index:90; transform:translateX(101%); transition:transform .3s var(--ease);
  display:flex; flex-direction:column; box-shadow:var(--shadow-lg)}
.cart.open{transform:none}
.cart-head{display:flex; align-items:center; justify-content:space-between; gap:var(--s3);
  padding:var(--s5); border-bottom:1px solid var(--line)}
.cart-head h2{font-size:var(--fs-md)}
.cart-items{flex:1; overflow-y:auto; padding:var(--s4) var(--s5); display:grid; gap:var(--s4);
  align-content:start}
.cart-row{display:grid; grid-template-columns:1fr auto; gap:var(--s3); align-items:center;
  padding-bottom:var(--s4); border-bottom:1px solid var(--line)}
.cart-row .nm{font-weight:600; color:var(--ink); font-size:var(--fs-sm)}
.cart-row .mt{font-size:var(--fs-xs); color:var(--ink-3); font-variant-numeric:tabular-nums}
.qty{display:flex; align-items:center; gap:.15rem; border:1px solid var(--line);
  border-radius:var(--r-pill); padding:2px}
.qty button{width:30px;height:30px;border-radius:50%;display:grid;place-items:center;
  color:var(--ink-2); font-size:1rem; line-height:1; transition:.15s}
.qty button:hover{background:var(--surface-2); color:var(--ink)}
.qty span{min-width:22px;text-align:center;font-size:var(--fs-sm);font-weight:600;color:var(--ink);
  font-variant-numeric:tabular-nums}
.cart-empty{text-align:center; color:var(--ink-3); padding:var(--s8) var(--s4); font-size:var(--fs-sm)}
.cart-foot{padding:var(--s5); border-top:1px solid var(--line); display:grid; gap:var(--s3);
  background:var(--surface)}
.cart-total{display:flex; justify-content:space-between; align-items:baseline;
  font-family:var(--display); font-weight:700; color:var(--ink); font-size:var(--fs-lg);
  font-variant-numeric:tabular-nums}
.cart-foot .btn{width:100%}
.cart-foot .clear{font-size:var(--fs-xs); color:var(--ink-3); text-align:center; padding:.3rem}
.cart-foot .clear:hover{color:var(--brand)}
.btn[aria-disabled=true]{opacity:.4; pointer-events:none}

/* toast */
.toast{position:fixed; left:50%; bottom:calc(var(--s6) + env(safe-area-inset-bottom));
  transform:translate(-50%,1rem); opacity:0; visibility:hidden;
  background:var(--ink); color:var(--paper);
  padding:.85rem 1.3rem; border-radius:var(--r-pill); font-size:var(--fs-sm); font-weight:500;
  z-index:100; box-shadow:var(--shadow-lg); max-width:calc(100vw - 2rem); text-align:center;
  transition:transform .3s var(--ease), opacity .25s, visibility .25s}
.toast.on{transform:translate(-50%,0); opacity:1; visibility:visible}

/* floating whatsapp */
.fab{position:fixed; right:var(--s4); bottom:calc(var(--s4) + env(safe-area-inset-bottom));
  z-index:70; width:54px;height:54px;border-radius:50%;background:var(--wa);
  display:grid;place-items:center; box-shadow:0 8px 24px rgba(14,122,65,.35);
  opacity:0; transform:scale(.7); pointer-events:none; transition:.25s var(--ease)}
.fab.show{opacity:1; transform:none; pointer-events:auto}
.fab svg{width:27px;height:27px;fill:#fff}

/* lightbox */
.lb{position:fixed; inset:0; background:rgba(22,18,14,.9); z-index:110; display:none;
  place-items:center; padding:var(--s5)}
.lb.on{display:grid}
.lb img{max-width:min(92vw,760px); max-height:86vh; width:auto; border-radius:var(--r)}
.lb .x{position:absolute; top:var(--s5); right:var(--s5); width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.12); color:#fff; font-size:1.4rem; display:grid;place-items:center}

/* ================================================================= INSTALL */
/* Slides up once, is dismissible, and never returns if dismissed. Two modes:
   Android gets a real install button, iPhone gets the Share-menu instructions
   because Safari offers no programmatic install. */
.installbar{position:fixed; left:50%; bottom:calc(var(--s4) + env(safe-area-inset-bottom));
  transform:translate(-50%,140%); width:min(calc(100vw - 2rem), 420px);
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:var(--shadow-lg); padding:var(--s4) var(--s5); z-index:75;
  display:flex; align-items:center; gap:var(--s4);
  transition:transform .4s var(--ease); visibility:hidden}
.installbar.on{transform:translate(-50%,0); visibility:visible}
.installbar img{width:44px;height:44px;border-radius:12px;flex:none}
.installbar .txt{flex:1; min-width:0}
.installbar .t{font-family:var(--display); font-weight:700; color:var(--ink);
  font-size:var(--fs-sm); line-height:1.25}
.installbar .d{font-size:var(--fs-xs); color:var(--ink-3); margin-top:2px; line-height:1.5}
.installbar .acts{display:flex; align-items:center; gap:.4rem; flex:none}
.installbar .go{background:var(--ink); color:var(--paper); border-radius:var(--r-pill);
  padding:.5rem 1rem; font-size:var(--fs-sm); font-weight:600; white-space:nowrap}
.installbar .no{width:32px;height:32px;border-radius:50%;color:var(--ink-3);
  display:grid;place-items:center; font-size:1.1rem; line-height:1}
.installbar .no:hover{background:var(--surface-2); color:var(--ink)}
.installbar .ios-only,.installbar[data-mode="ios"] .go{display:none}
.installbar[data-mode="ios"] .ios-only{display:inline}
.installbar[data-mode="ios"] .prompt-only{display:none}
.installbar .share{display:inline-grid;place-items:center;width:1.1em;height:1.1em;
  vertical-align:-.18em;margin:0 .1em}
.installbar .share svg{width:100%;height:100%;fill:var(--ink-2)}
@media (max-width:420px){
  .installbar{padding:var(--s3) var(--s4); gap:var(--s3)}
  .installbar img{width:38px;height:38px}
  .installbar .go{padding:.45rem .8rem}
}

/* ================================================================= OFFLINE */
.offline-wrap{min-height:70vh; display:grid; place-items:center; text-align:center}
.offline-wrap .in{max-width:26rem}
.offline-wrap .mark{width:64px;height:64px;border-radius:50%;background:var(--surface-2);
  display:grid;place-items:center;margin:0 auto var(--s5)}
.offline-wrap .mark svg{width:28px;height:28px;fill:none;stroke:var(--ink-3);stroke-width:1.6;
  stroke-linecap:round}
