/* SABABA — demo site
   Palette taken from the venue's own mark: dark roasted brown + cream, teal accent. */

:root{
  --brown:#4B3328;
  --brown-2:#38251C;
  --ink:#2A1D17;
  --cream:#FBF6EE;
  --cream-2:#F2E9DB;
  --on-brown:#F4EBDD;   /* always light: it sits on --brown, which never changes */
  --paper:#FFFDF9;
  --line:rgba(42,29,23,.14);
  --muted:#7A6656;
  --teal:#0B6B74;
  --teal-2:#0E858F;
  --plum:#7C2D4A;
  --gold:#C8922F;

  --bg:var(--cream);
  --surface:var(--paper);
  --text:var(--ink);
  --text-dim:var(--muted);
  --accent:var(--teal);
  --border:var(--line);
  --shadow:0 1px 2px rgba(42,29,23,.05), 0 10px 30px -14px rgba(42,29,23,.28);
  --pour-ring:rgba(42,29,23,.22);
  --shadow-lg:0 30px 70px -30px rgba(42,29,23,.5);

  --serif:"Prata","Noto Serif Georgian",Georgia,"Times New Roman",serif;
  --sans:"Manrope","Noto Sans Georgian",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --wrap:1160px;
  --r:14px;
  --ease:cubic-bezier(.22,.61,.36,1);
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#1C1310;
    --surface:#251A15;
    --text:#F3EAE0;
    --text-dim:#B6A08E;
    --accent:#3FA8B1;
    --plum:#E2809F;
    --gold:#E7BE63;
    --border:rgba(243,234,224,.14);
    --cream:#1C1310;
    --cream-2:#241A15;
    --shadow:0 1px 2px rgba(0,0,0,.4), 0 14px 34px -16px rgba(0,0,0,.7);
    --shadow-lg:0 30px 70px -30px rgba(0,0,0,.85);
    --pour-ring:rgba(243,234,224,.3);
  }
}
[data-theme="dark"]{
  --bg:#1C1310; --surface:#251A15; --text:#F3EAE0; --text-dim:#B6A08E;
  --accent:#3FA8B1; --plum:#E2809F; --gold:#E7BE63; --border:rgba(243,234,224,.14);
  --cream:#1C1310; --cream-2:#241A15;
  --shadow:0 1px 2px rgba(0,0,0,.4), 0 14px 34px -16px rgba(0,0,0,.7);
  --shadow-lg:0 30px 70px -30px rgba(0,0,0,.85);
  --pour-ring:rgba(243,234,224,.3);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; scroll-padding-top:140px}
body{
  margin:0; background:var(--bg); color:var(--text);
  font:400 16px/1.6 var(--sans);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.locked{overflow:hidden}
img{max-width:100%; display:block}
a{color:inherit}
h1,h2,h3{margin:0; font-family:var(--serif); font-weight:400; line-height:1.14; letter-spacing:-.005em; text-wrap:balance}
.wrap{width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:20px}
.h2{font-size:clamp(28px,4.2vw,44px)}
.center{text-align:center}
.lead{color:var(--text-dim); max-width:60ch; margin:10px auto 0}
.skip{position:absolute; left:-9999px}
:focus-visible{outline:2px solid var(--accent); outline-offset:3px; border-radius:6px}
.skip:focus{left:12px; top:12px; z-index:100; background:var(--surface); padding:10px 14px; border-radius:8px}
svg{fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round}

/* ---------- motion ---------- */
.rise{opacity:0; transform:translateY(18px); animation:rise .9s var(--ease) forwards}
.rise:nth-child(1){animation-delay:.05s}
.rise:nth-child(2){animation-delay:.14s}
.rise:nth-child(3){animation-delay:.25s}
.rise:nth-child(4){animation-delay:.36s}
.rise:nth-child(5){animation-delay:.46s}
@keyframes rise{to{opacity:1; transform:none}}
.reveal{opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease)}
.reveal.in{opacity:1; transform:none}
@keyframes pop{0%{transform:scale(1)}45%{transform:scale(1.35)}100%{transform:scale(1)}}
@keyframes beat{0%{transform:scale(1)}35%{transform:scale(1.4)}60%{transform:scale(.92)}100%{transform:scale(1)}}
@keyframes ping{0%{transform:scale(.7); opacity:.5}70%{transform:scale(1.5); opacity:0}100%{opacity:0}}
.ping{transform-origin:214px 180px; animation:ping 2.8s ease-out infinite}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  padding:13px 22px; border-radius:999px; border:1px solid transparent;
  font:600 15px/1 var(--sans); text-decoration:none; cursor:pointer;
  transition:transform .18s var(--ease), background .2s ease, border-color .2s ease, color .2s ease, box-shadow .25s ease;
}
.btn:active{transform:translateY(0)}
.btn-primary{background:var(--accent); color:#fff}
.btn-primary:hover{background:var(--teal-2)}
.btn-ghost{border-color:currentColor; color:inherit}
.btn-ghost:hover{background:color-mix(in srgb, currentColor 10%, transparent)}
.btn.wide{width:100%}
.icon-btn{
  position:relative; width:38px; height:38px; flex:0 0 auto; display:grid; place-items:center;
  border:1px solid var(--border); border-radius:50%; background:transparent; color:var(--text-dim);
  cursor:pointer; transition:color .2s, border-color .2s, transform .18s var(--ease);
}
.icon-btn svg{width:19px; height:19px}
.icon-btn:hover{color:var(--text); border-color:var(--accent)}
.icon-btn.big{width:46px; height:46px}
.icon-btn.big svg{width:22px; height:22px}
.icon-btn.on{color:var(--plum); border-color:color-mix(in srgb, var(--plum) 45%, transparent)}
.icon-btn.on svg{fill:var(--plum)}
.icon-btn.beat svg{animation:beat .5s var(--ease)}
.pill{
  position:absolute; top:-5px; right:-5px; min-width:18px; height:18px; padding:0 5px;
  border-radius:9px; background:var(--accent); color:#fff;
  font:700 11px/18px var(--sans); text-align:center; font-variant-numeric:tabular-nums;
}
.pill.pop{animation:pop .45s var(--ease)}

/* ---------- header ---------- */
.hdr{
  position:sticky; top:0; z-index:40;
  background:color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter:saturate(1.4) blur(12px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, background .25s ease;
}
.hdr.stuck{border-bottom-color:var(--border)}
.hdr-in{display:flex; align-items:center; gap:18px; height:66px}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; font-weight:700}
.brand-mark{
  width:32px; height:32px; border-radius:50%; display:grid; place-items:center;
  background:var(--brown); color:var(--on-brown); font-family:var(--serif); font-size:16px; line-height:1;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
}
.brand-name{font-family:var(--serif); font-size:20px; letter-spacing:.16em; line-height:1; padding-top:2px}
.nav-d{display:flex; gap:26px; margin-left:26px; font-size:15px}
.nav-d a{text-decoration:none; color:var(--text-dim); padding:6px 0; position:relative}
.nav-d a:hover{color:var(--text)}
.hdr-right{display:flex; align-items:center; gap:9px; margin-left:auto; position:relative}
.lang{display:flex; border:1px solid var(--border); border-radius:999px; overflow:hidden}
.lang button{
  border:0; background:transparent; color:var(--text-dim); cursor:pointer;
  font:600 12.5px/1 var(--sans); padding:8px 10px; letter-spacing:.04em; transition:.2s;
}
.lang button.on{background:var(--brown); color:var(--on-brown)}
.burger{width:38px; height:38px; border:1px solid var(--border); border-radius:50%; background:transparent; cursor:pointer; padding:11px 9px; transition:border-color .2s}
.burger span{display:block; height:1.7px; border-radius:2px; background:var(--text); margin:3px 0; transition:transform .3s var(--ease), opacity .2s}
.burger[aria-expanded="true"]{border-color:var(--accent)}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(4.7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-4.7px) rotate(-45deg)}

.drop{
  position:absolute; top:calc(100% + 12px); right:0; z-index:50;
  min-width:232px; padding:8px; border-radius:16px;
  background:var(--surface); border:1px solid var(--border); box-shadow:var(--shadow-lg);
  transform-origin:top right; animation:dropIn .24s var(--ease);
}
.drop[hidden]{display:none}
@keyframes dropIn{from{opacity:0; transform:scale(.94) translateY(-6px)}to{opacity:1; transform:none}}
.drop a,.drop button{
  display:flex; align-items:center; gap:10px; width:100%; text-align:left;
  padding:11px 12px; border:0; border-radius:10px; background:transparent;
  color:inherit; text-decoration:none; font:500 15px var(--sans); cursor:pointer;
  transition:background .18s;
}
.drop a:hover,.drop button:hover{background:color-mix(in srgb, var(--accent) 10%, transparent)}
.drop hr{border:0; border-top:1px solid var(--border); margin:6px 10px}
.drop-act svg{width:18px; height:18px; color:var(--accent)}

/* ---------- hero ---------- */
.hero{position:relative; min-height:min(88vh,720px); display:flex; align-items:flex-end; isolation:isolate; margin-top:-66px; padding-top:66px}
.hero-bg{position:absolute; inset:0; z-index:-2; background:var(--brown-2); overflow:hidden}
.hero-bg img{width:100%; height:100%; object-fit:cover; opacity:.62; filter:saturate(.92)}
.hero::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(120% 90% at 15% 90%, rgba(28,15,9,.92), transparent 60%),
    linear-gradient(to top, rgba(20,11,7,.94) 6%, rgba(20,11,7,.35) 55%, rgba(20,11,7,.55));
}
.hero-in{padding-block:clamp(48px,9vw,110px); color:#F6EDE2; position:relative}
.eyebrow{margin:0 0 14px; letter-spacing:.24em; text-transform:uppercase; font-size:12px; font-weight:600; color:#D9C3AE}
.hero-title{font-size:clamp(54px,12vw,138px); letter-spacing:.08em; line-height:.95; color:#FBF3E8}
.hero-sub{max-width:46ch; margin:20px 0 0; font-size:clamp(16px,2vw,19px); color:#E6D6C6}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:30px}
.hero .btn-ghost{color:#F6EDE2}
.hero-rating{display:flex; align-items:center; gap:10px; margin-top:28px; font-size:14px; color:#DCC9B6}
.hero-rating strong{font-size:17px; color:#FBF3E8}
.stars{color:#E8B84B; letter-spacing:2px}

/* ---------- strip ---------- */
.strip{background:var(--surface); border-block:1px solid var(--border)}
.strip-in{display:flex; flex-wrap:wrap; gap:14px 40px; align-items:center; padding-block:18px}
.strip-item{display:flex; flex-direction:column; gap:3px}
.strip-k{font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-dim)}
.strip-v{font-weight:600; font-size:15px; display:flex; align-items:center; gap:8px}
.dot{width:8px; height:8px; border-radius:50%; background:#37A05C; box-shadow:0 0 0 4px rgba(55,160,92,.16)}
.dot.off{background:#B4553F; box-shadow:0 0 0 4px rgba(180,85,63,.16)}
.strip-tags{flex-direction:row; flex-wrap:wrap; gap:7px; margin-left:auto}
.tag{font-size:12.5px; padding:5px 11px; border:1px solid var(--border); border-radius:999px; color:var(--text-dim); white-space:nowrap}

/* ---------- promo ---------- */
.promo{position:relative; overflow:hidden; background:var(--brown-2); color:#F4E7DA; padding-block:clamp(56px,8vw,96px)}
.promo-glow{
  position:absolute; inset:-40% -10% auto; height:120%;
  background:radial-gradient(50% 50% at 22% 30%, rgba(226,128,159,.32), transparent 60%),
             radial-gradient(45% 45% at 78% 65%, rgba(200,146,47,.25), transparent 62%);
  animation:drift 18s ease-in-out infinite alternate;
}
@keyframes drift{from{transform:translate3d(-3%,0,0) scale(1)}to{transform:translate3d(4%,3%,0) scale(1.12)}}
.promo-in{position:relative; display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,5vw,64px); align-items:center}
.promo-kicker{display:inline-block; font-size:11.5px; letter-spacing:.24em; text-transform:uppercase; color:#E2B39A; border:1px solid rgba(244,231,218,.28); border-radius:999px; padding:6px 14px}
.promo-title{margin:18px 0 0; font-size:clamp(36px,6vw,68px); color:#FCEFE2}
.promo-lead{margin:16px 0 0; max-width:44ch; color:#DCC3B0}
.promo-price{display:flex; align-items:baseline; gap:14px; margin-top:26px; font-family:var(--serif)}
.promo-was{font-size:24px; color:#A98874; text-decoration:line-through}
.promo-now{font-size:clamp(40px,7vw,74px); color:#F3C46B; line-height:1}
.promo-price.big{justify-content:center; margin:14px 0 6px}
.promo-list{display:grid; gap:2px}
.promo-item{
  display:flex; align-items:baseline; gap:12px; padding:12px 4px;
  border-bottom:1px solid rgba(244,231,218,.14); cursor:pointer;
  background:transparent; border-inline:0; border-top:0; color:inherit;
  font:inherit; text-align:left; width:100%;
  transition:background .2s ease;
}
.promo-item:hover,.promo-item:active{background:rgba(244,231,218,.06)}
.promo-item b{font-weight:500; font-size:15.5px}
.promo-item i{flex:1; border-bottom:1px dotted rgba(244,231,218,.3); transform:translateY(-4px)}
.promo-item s{color:#A98874; font-size:13.5px}
.promo-item em{font-style:normal; font-weight:700; color:#F3C46B; font-variant-numeric:tabular-nums}

/* ---------- picks ---------- */
.picks{padding-block:clamp(44px,6vw,80px); background:var(--surface); border-bottom:1px solid var(--border)}
.picks-row{display:flex; gap:16px; overflow-x:auto; padding:30px 20px 12px; margin-inline:-20px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch}
.picks-row::-webkit-scrollbar{height:6px}
.picks-row::-webkit-scrollbar-thumb{background:var(--border); border-radius:9px}
.pick{
  flex:0 0 236px; scroll-snap-align:start; background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r); overflow:hidden; text-align:left; cursor:pointer; padding:0; font:inherit; color:inherit;
  transition:border-color .2s ease;
}
.pick:hover,.pick:active{border-color:var(--accent)}
.pick img{aspect-ratio:4/5; object-fit:cover; width:100%}
.pick-b{padding:13px 14px 15px}
.pick-n{font-weight:600; font-size:15px; line-height:1.3}
.pick-p{margin-top:6px; color:var(--accent); font-weight:700; font-size:14px; font-variant-numeric:tabular-nums}

/* ---------- menu ---------- */
.menu{padding-block:clamp(56px,8vw,96px) 0}
.menu-bar{position:sticky; top:66px; z-index:30; background:color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); margin-top:30px; padding-block:12px}
.mbar{display:flex; align-items:center; gap:16px}
.cats-wrap{position:relative; flex:1 1 auto; min-width:0}
.cats-wrap::before,.cats-wrap::after{
  content:""; position:absolute; top:0; bottom:0; width:44px; pointer-events:none;
  opacity:0; transition:opacity .2s ease; z-index:2;
}
.cats-wrap::before{left:0; background:linear-gradient(to right, var(--bg), transparent)}
.cats-wrap::after{right:0; background:linear-gradient(to left, var(--bg), transparent)}
.cats-wrap.can-l::before{opacity:1}
.cats-wrap.can-r::after{opacity:1}
.cats-more{
  position:absolute; right:0; top:50%; transform:translateY(-50%); z-index:3;
  width:30px; height:30px; display:none; place-items:center; padding:0;
  border:1px solid var(--border); border-radius:50%; background:var(--surface);
  color:var(--text-dim); cursor:pointer; transition:color .2s, border-color .2s;
}
.cats-more svg{width:16px; height:16px}
.cats-more:hover{color:var(--text); border-color:var(--accent)}
.cats-wrap.can-r .cats-more{display:grid}
.cats{display:flex; gap:8px; overflow-x:auto; padding:4px 0; scrollbar-width:none; scroll-behavior:smooth}
.cats::-webkit-scrollbar{display:none}
.cats button{
  flex:0 0 auto; border:1px solid var(--border); background:var(--surface); color:var(--text-dim);
  border-radius:999px; padding:8px 15px; font:500 13.5px var(--sans); cursor:pointer; white-space:nowrap;
  transition:color .2s, background .25s var(--ease), border-color .2s, transform .18s var(--ease);
}
.cats button:hover{color:var(--text)}
.cats button.on{background:var(--brown); border-color:var(--brown); color:var(--on-brown)}
.cats button.fav{display:flex; align-items:center; gap:6px}
.cats button.fav svg{width:14px; height:14px; fill:currentColor; stroke:none}
.views{display:flex; gap:2px; flex:0 0 auto; padding-left:16px; border-left:1px solid var(--border)}
.views button{
  width:34px; height:34px; display:grid; place-items:center; border:0; border-radius:9px;
  background:transparent; color:var(--text-dim); cursor:pointer; transition:.2s;
}
.views svg{width:19px; height:19px; fill:none}
.views button rect{fill:currentColor; stroke:none}
.views button:hover{color:var(--text); background:color-mix(in srgb, var(--accent) 9%, transparent)}
.views button.on{color:var(--accent); background:color-mix(in srgb, var(--accent) 14%, transparent)}
.empty{text-align:center; color:var(--text-dim); padding:70px 20px 90px; max-width:36ch; margin-inline:auto}

.cat{padding-top:52px}
.cat-h{display:flex; align-items:baseline; gap:14px; margin-bottom:22px}
.cat-h h3{font-size:clamp(22px,3vw,30px)}
.cat-h i{flex:1; height:1px; background:var(--border)}
.cat-h em{font-style:normal; font-size:13px; color:var(--text-dim)}

/* card grids */
.view-two{display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:18px; align-items:start}
.view-one{display:grid; gap:16px}
.card{
  position:relative; background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
  overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--shadow); cursor:pointer;
  transition:border-color .2s ease;
}
.card:hover,.card:active{border-color:var(--accent)}
.card-img{position:relative; background:var(--cream-2); overflow:hidden}
.card-img img{aspect-ratio:4/3; object-fit:cover; width:100%}
.card-b{padding:14px 15px 16px; display:flex; flex-direction:column; gap:7px; flex:1}
.card-n{font-weight:600; font-size:15.5px; line-height:1.32}
.card-d{font-size:13.5px; color:var(--text-dim); line-height:1.5}
.card-f{margin-top:auto; padding-top:10px; display:flex; align-items:center; gap:10px}
.card-p{font-weight:700; color:var(--accent); font-size:15px; font-variant-numeric:tabular-nums}
.card-acts{margin-left:auto; display:flex; gap:6px}
.card-acts .icon-btn{width:32px; height:32px}
.card-acts .icon-btn svg{width:16px; height:16px}
.card.nophoto{background:transparent; box-shadow:none; border-style:dashed}
.card.nophoto:hover{border-color:var(--accent)}

/* one per row: image beside text */
.view-one .card{flex-direction:row; align-items:stretch}
.view-one .card-img{flex:0 0 clamp(190px,28%,290px); aspect-ratio:4/3}
.view-one .card-img img{height:100%; aspect-ratio:auto}
.view-one .card-b{padding:18px 20px 18px; justify-content:center}
.view-one .card-f{margin-top:16px}
.view-one .card-n{font-size:19px}
.view-one .card-d{font-size:14.5px; max-width:60ch}

/* list */
.view-list{display:grid; gap:0}
.row{
  display:flex; align-items:center; gap:14px; padding:12px 8px; border-bottom:1px solid var(--border);
  cursor:pointer; border-radius:10px; transition:background .2s ease;
}
.row:hover,.row:active{background:color-mix(in srgb, var(--accent) 7%, transparent)}
.row-thumb{width:56px; height:56px; border-radius:10px; object-fit:cover; flex:0 0 auto}
.row-thumb.ph{display:grid; place-items:center; background:var(--cream-2); color:var(--text-dim); font-family:var(--serif); font-size:20px}
.row-t{min-width:0; flex:1}
.row-n{font-weight:500; font-size:15.5px}
.row-d{display:block; font-size:13px; color:var(--text-dim); margin-top:2px}
.row-p{font-weight:700; font-size:15px; white-space:nowrap; color:var(--accent); font-variant-numeric:tabular-nums}
.row-acts{display:flex; gap:6px; flex:0 0 auto}
.row-acts .icon-btn{width:32px; height:32px}
.row-acts .icon-btn svg{width:16px; height:16px}

/* ---------- wine ----------
   No photographs here on purpose: forty-seven bottles look identical in a grid.
   The pour colour, the grape and the price of a glass are what tell them apart,
   so those carry the row and the filters work on them. */
.wbar{display:flex; flex-direction:column; gap:9px; padding:2px 0 16px}
.wchips{display:flex; flex-wrap:wrap; gap:7px; align-items:center}
.wchip{
  flex:0 0 auto; cursor:pointer; font:600 13px/1 var(--sans); color:var(--text-dim);
  background:var(--cream-2); border:1px solid transparent; padding:9px 14px; border-radius:999px;
  display:inline-flex; align-items:center; gap:7px; transition:color .2s ease, border-color .2s ease;
}
.wchip:hover{color:var(--text)}
.wchip.on{background:var(--surface); border-color:var(--accent); color:var(--text)}
.wchip.none{opacity:.4}
.wchip u{text-decoration:none; font-size:11.5px; font-variant-numeric:tabular-nums}
.wchips.sub .wchip{font-weight:500; font-size:12.5px; padding:7px 12px}
.wspacer{flex:1 1 auto}
.wsort{
  flex:0 0 auto; font:500 12.5px/1 var(--sans); color:var(--text); background:var(--cream-2);
  border:1px solid transparent; border-radius:999px; padding:9px 12px; cursor:pointer;
}
.wcount{font:500 12.5px/1 var(--sans); color:var(--text-dim); font-variant-numeric:tabular-nums}

/* the colour of the wine in the glass, not of the label */
.pour,.wdot{border-radius:50%; flex:0 0 auto; box-shadow:inset 0 0 0 1px var(--pour-ring)}
.pour{width:30px; height:30px; box-shadow:inset 0 0 0 1px var(--pour-ring), inset 0 -7px 10px -6px rgba(0,0,0,.45)}
.wdot{width:10px; height:10px}
.pour.sparkling,.wdot.sparkling{background:#F0E2A2}
.pour.white,.wdot.white{background:#E5D69B}
.pour.amber,.wdot.amber{background:#C4762A}
.pour.rose,.wdot.rose{background:#E89A94}
.pour.red,.wdot.red{background:#6B1C29}

.wgrp{
  font:700 11px/1 var(--sans); letter-spacing:.14em; text-transform:uppercase; color:var(--text-dim);
  padding:24px 0 8px; display:flex; align-items:center; gap:12px;
}
.wgrp i{flex:1; height:1px; background:var(--border); display:block}
.wrow{
  display:grid; grid-template-columns:auto minmax(0,1fr) auto auto auto auto; align-items:center;
  gap:15px; padding:12px 8px; border-bottom:1px solid var(--border); border-radius:10px;
  cursor:pointer; transition:background .2s ease;
}
.wrow:hover,.wrow:active{background:var(--cream-2)}
.wrow-t{min-width:0}
.wrow-g{font-family:var(--serif); font-size:18px; line-height:1.2}
.wrow-s{font-size:12.5px; color:var(--text-dim); margin-top:3px}
.wtag{
  font:700 9.5px/1 var(--sans); letter-spacing:.1em; text-transform:uppercase; color:var(--gold);
  border:1px solid currentColor; border-radius:999px; padding:3px 6px; margin-left:7px; vertical-align:3px;
}
.wmeter{display:flex; gap:3px; align-items:center}
.wmeter b{width:5px; height:16px; border-radius:2px; background:var(--border); display:block}
.wmeter b.on{background:var(--accent)}
.wprice{text-align:right; min-width:72px}
.wprice b{display:block; font:700 15px/1.2 var(--sans); color:var(--accent); font-variant-numeric:tabular-nums}
.wprice i{
  display:block; font:500 10.5px/1 var(--sans); font-style:normal; color:var(--text-dim);
  letter-spacing:.06em; text-transform:uppercase; margin-top:5px;
}
.wprice.off b{color:var(--text-dim); opacity:.35}
.wprice.deal b{color:var(--plum)}
.wrow-acts{display:flex; gap:6px; flex:0 0 auto}
.wrow-acts .icon-btn{width:32px; height:32px}
.wrow-acts .icon-btn svg{width:16px; height:16px}
.wempty{color:var(--text-dim); margin:18px 0 6px}

/* the sheet carries the detail the row leaves out */
.dish-wine{display:grid; gap:14px; padding-top:2px}
.dw-meta{font:500 12.5px/1.4 var(--sans); color:var(--text-dim); letter-spacing:.02em}
.dw-prices{display:flex; gap:26px}
.dw-prices .wprice{text-align:left; min-width:0}
.dw-scales{display:flex; flex-wrap:wrap; gap:12px 26px}
.wscale{display:grid; gap:6px}
.wscale-l{
  display:flex; justify-content:space-between; gap:26px; min-width:170px;
  font:500 11px/1 var(--sans); letter-spacing:.06em; text-transform:uppercase; color:var(--text-dim);
}
.wscale-b{display:flex; gap:4px}
.wscale-b b{width:34px; height:6px; border-radius:3px; background:var(--border); display:block}
.wscale-b b.on{background:var(--accent)}
.dw-pair{margin:0; font-size:14px; color:var(--text-dim)}
.dw-pair b{color:var(--text); font-weight:600}

/* badges */
.badges{display:flex; gap:6px; flex-wrap:wrap}
.card-img .badges{position:absolute; top:10px; left:10px}
.badge{
  font:700 10.5px/1 var(--sans); letter-spacing:.08em; text-transform:uppercase;
  padding:5px 9px; border-radius:999px; color:#fff; white-space:nowrap;
  box-shadow:0 3px 10px -3px rgba(0,0,0,.45);
}
.badge.new{background:var(--teal-2)}
.badge.best{background:var(--gold); color:#3B2A08}
.badge.deal{background:var(--plum)}
.card.nophoto .badges,.row .badges{position:static; box-shadow:none}
.row .badge{font-size:9.5px; padding:4px 7px}

/* ---------- install the app ---------- */
.app{padding-block:clamp(56px,8vw,96px); background:var(--surface); border-top:1px solid var(--border); margin-top:70px}
.app-in{
  display:grid; grid-template-columns:1.2fr .8fr; gap:clamp(28px,4vw,56px);
  grid-template-areas:"txt phone" "how how"; align-items:center;
}
.app-txt{grid-area:txt}
.app-phone{grid-area:phone}
.app-how{grid-area:how; margin-top:12px}
.app-kicker{display:inline-block; font-size:11.5px; letter-spacing:.2em; text-transform:uppercase; color:var(--accent); margin-bottom:12px}
.app-txt .lead{margin-left:0; max-width:52ch}
.app-link{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:24px;
  background:var(--bg); border:1px solid var(--border); border-radius:999px; padding:6px 8px 6px 18px;
}
.app-link code{
  font:500 14px/1.4 ui-monospace,SFMono-Regular,Menlo,monospace; color:var(--text-dim);
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap; min-width:0;
}
.app-link .btn-sm{margin-left:auto; flex:0 0 auto}
.app-tabs{display:flex; gap:6px; flex-wrap:wrap}
.app-tab{
  border:1px solid var(--border); background:transparent; color:var(--text-dim);
  border-radius:999px; padding:8px 15px; font:500 13.5px var(--sans); cursor:pointer;
  transition:color .2s, border-color .2s, background .2s;
}
.app-tab:hover{color:var(--text)}
.app-tab.on{background:var(--brown); border-color:var(--brown); color:var(--on-brown)}

.app-steps{margin:16px 0 0; display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.app-steps[hidden]{display:none}
.step{background:var(--bg); border:1px solid var(--border); border-radius:var(--r); overflow:hidden}
.step-pic{background:var(--cream-2); display:grid; place-items:center; padding:10px}
.step-pic svg{width:100%; max-width:264px; height:auto; display:block}
.step-b{padding:13px 15px 15px; display:grid; gap:5px}
.step-n{
  width:22px; height:22px; border-radius:50%; display:grid; place-items:center;
  background:var(--accent); color:#fff; font:700 11.5px/1 var(--sans);
}
.step-b b{font-size:14.5px; font-weight:600; line-height:1.3}
.step-b span:not(.step-n){font-size:13px; color:var(--text-dim); line-height:1.45}

/* the drawings: every colour comes from the theme tokens */
.step-pic .scr{fill:var(--surface); stroke:var(--border)}
.step-pic .pg{fill:var(--bg)}
.step-pic .bar{fill:var(--cream-2)}
.step-pic .sheet{fill:var(--surface); stroke:var(--border)}
.step-pic .url{fill:var(--surface); stroke:var(--border)}
.step-pic .row{fill:transparent}
.step-pic .row.on{fill:color-mix(in srgb, var(--accent) 20%, transparent)}
.step-pic .sq{fill:none; stroke:var(--text-dim)}
.step-pic .sq.on{stroke:var(--accent)}
.step-pic .plus{stroke:var(--accent); fill:none; stroke-width:1.4}
.step-pic .grab,.step-pic .dot{fill:var(--text-dim); opacity:.5}
.step-pic .app{fill:var(--cream-2); stroke:var(--border)}
.step-pic .app.new{fill:var(--brown); stroke:none}
.step-pic .dots circle{fill:var(--text)}
.step-pic .hi circle{fill:color-mix(in srgb, var(--accent) 26%, transparent)}
.step-pic .ic{stroke:var(--accent); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round}
.step-pic .ic.sm{stroke-width:1.3}
.step-pic text{font-family:var(--sans); fill:var(--text-dim)}
.step-pic .tt{font-family:var(--serif); font-size:15px; fill:var(--text); letter-spacing:.1em}
.step-pic .us{font-size:7px}
.step-pic .rt{font-size:8px; fill:var(--text)}
.step-pic .rt.on{fill:var(--accent); font-weight:600}
.step-pic .rt.tiny{font-size:7px}
.step-pic .cap{font-size:6.5px}
.step-pic .mono{font-family:var(--serif); font-size:16px; fill:var(--on-brown)}
.step-pic .mono.sm2{font-size:11px}
.step-pic .tap{fill:none; stroke:var(--accent); stroke-width:1.5; opacity:.55; stroke-dasharray:3 4}
.step-pic .pulse{fill:none; stroke:var(--accent); stroke-width:1.5; opacity:.4; stroke-dasharray:3 4}
.app-cta{display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top:28px}
.app-notify{display:flex; align-items:center; gap:9px; font-size:14px; color:var(--text-dim); cursor:pointer}
.app-notify input{width:18px; height:18px; accent-color:var(--accent); flex:0 0 auto}
.app-note{margin:14px 0 0; font-size:14px; color:var(--accent)}
.app-note:empty{display:none}

.app-phone{display:grid; place-items:center}
.phone{
  width:min(230px,60vw); aspect-ratio:9/17; border-radius:34px; padding:12px;
  background:var(--brown-2); box-shadow:var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.09);
}
.phone-screen{
  height:100%; border-radius:24px; display:grid; place-items:center; align-content:center; gap:14px;
  background:radial-gradient(120% 90% at 50% 0%, #5A4132, #2A1B14);
}
.phone-icon{
  width:64px; height:64px; border-radius:18px; display:grid; place-items:center;
  background:var(--brown); color:var(--on-brown); font-family:var(--serif); font-size:30px;
  box-shadow:0 10px 24px -10px rgba(0,0,0,.7), inset 0 0 0 1px rgba(255,255,255,.14);
}
.phone-name{font:600 12px/1 var(--sans); letter-spacing:.12em; color:#E5D3C1}

.installbar{
  position:fixed; left:12px; right:12px; bottom:12px; z-index:60;
  display:flex; align-items:center; gap:11px;
  background:var(--surface); border:1px solid var(--border); border-radius:16px;
  padding:11px 12px; box-shadow:var(--shadow-lg); animation:barIn .35s var(--ease);
}
.installbar[hidden]{display:none}
@keyframes barIn{from{opacity:0; transform:translateY(16px)}to{opacity:1; transform:none}}
.ib-icon{
  width:34px; height:34px; flex:0 0 auto; border-radius:10px; display:grid; place-items:center;
  background:var(--brown); color:var(--on-brown); font-family:var(--serif); font-size:17px;
}
.ib-txt{flex:1; min-width:0; font-size:14px; line-height:1.3}
.ib-go{flex:0 0 auto; text-decoration:none}
.ib-x{
  flex:0 0 auto; width:30px; height:30px; border:0; border-radius:50%; background:transparent;
  color:var(--text-dim); font-size:20px; line-height:1; cursor:pointer;
}
.ib-x:hover{color:var(--text)}

/* ---------- contacts ---------- */
.contacts{padding-block:clamp(56px,8vw,100px); background:var(--bg); border-top:1px solid var(--border)}
.contacts-in{display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,64px); align-items:center}
.cinfo{margin:26px 0 0; display:grid; grid-template-columns:auto 1fr; gap:12px 26px}
.cinfo dt{font-size:12px; letter-spacing:.13em; text-transform:uppercase; color:var(--text-dim); padding-top:3px}
.cinfo dd{margin:0; font-size:16px; font-weight:500}
.cinfo a{color:var(--accent); text-decoration:none}
.cinfo a:hover{text-decoration:underline}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:30px}
.map{position:relative; border:1px solid var(--border); border-radius:var(--r); overflow:hidden; background:var(--cream-2)}
.map img{width:100%; height:auto; aspect-ratio:1000/620; object-fit:cover; display:block}
.map-hit{position:absolute; inset:0 0 44px; z-index:1}
.map-pin{
  position:absolute; left:50%; top:calc(50% - 22px); z-index:2; pointer-events:none;
  width:26px; height:26px; margin-left:-13px; border-radius:50% 50% 50% 0;
  transform:rotate(-45deg); background:var(--brown);
  box-shadow:0 0 0 3px var(--paper), 0 6px 14px -4px rgba(0,0,0,.5);
}
.map-pin::after{content:""; position:absolute; inset:8px; border-radius:50%; background:var(--paper)}
.map-attr{
  position:absolute; right:6px; bottom:50px; z-index:3;
  background:color-mix(in srgb, var(--paper) 82%, transparent); color:var(--muted);
  font-size:10.5px; padding:2px 7px; border-radius:5px; text-decoration:none;
}
.map-note{display:block; padding:12px 16px; border-top:1px solid var(--border); font-size:13px; color:var(--text-dim); background:var(--bg)}

/* ---------- footer ---------- */
.ftr{background:var(--brown-2); color:#E8DACB; padding-block:40px 26px}
.ftr .brand-mark{background:rgba(255,255,255,.1)}
.ftr-in{display:flex; justify-content:space-between; gap:26px; flex-wrap:wrap; align-items:flex-start}
.fine{margin:12px 0 0; font-size:13.5px; color:#B79E88}
.fnav{display:flex; gap:22px; flex-wrap:wrap; font-size:14.5px}
.fnav a{text-decoration:none; color:#D8C6B4}
.fnav a:hover{color:#fff}
.demo-note{margin-top:30px; padding-top:16px; border-top:1px solid rgba(255,255,255,.12); font-size:12.5px; color:#9C8571}

/* ---------- overlays ---------- */
.ov{position:fixed; inset:0; z-index:80; background:rgba(18,10,6,.62); backdrop-filter:blur(4px); animation:fade .25s ease}
.ov[hidden]{display:none}
@keyframes fade{from{opacity:0}to{opacity:1}}
.sheet{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:min(560px,92vw); max-height:88vh; overflow:auto;
  background:var(--surface); color:var(--text); border-radius:20px; box-shadow:var(--shadow-lg);
  animation:sheetIn .32s var(--ease);
}
@keyframes sheetIn{from{opacity:0; transform:translate(-50%,-46%) scale(.95)}to{opacity:1; transform:translate(-50%,-50%) scale(1)}}
.sheet.narrow{width:min(420px,92vw); padding:34px 28px 28px; text-align:center}
.sheet.narrow h3{font-size:25px; margin-bottom:10px}
.sheet.narrow p{color:var(--text-dim); font-size:14.5px; margin:0 0 22px}
.sheet-x{
  position:absolute; top:12px; right:12px; z-index:2; width:36px; height:36px; border-radius:50%;
  border:1px solid var(--border); background:color-mix(in srgb, var(--surface) 80%, transparent);
  color:var(--text); font-size:22px; line-height:1; cursor:pointer; transition:.2s;
}
.sheet-x:hover{background:var(--cream-2)}

.dish-img{aspect-ratio:16/10; background:var(--cream-2); overflow:hidden}
.dish-img img{width:100%; height:100%; object-fit:cover}
.dish-img.none{aspect-ratio:auto; height:8px}
.dish-b{padding:22px 24px 24px; display:flex; flex-direction:column; gap:12px}
.dish-b h3{font-size:27px}
.dish-b p{margin:0; color:var(--text-dim); font-size:15px}
.dish-foot{display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-top:6px}
.dish-price{font-family:var(--serif); font-size:30px; color:var(--accent); font-variant-numeric:tabular-nums}
.dish-acts{margin-left:auto; display:flex; align-items:center; gap:10px}

.panel{
  position:absolute; top:0; right:0; height:100%; width:min(420px,100vw);
  background:var(--surface); display:flex; flex-direction:column;
  box-shadow:var(--shadow-lg); animation:slideIn .34s var(--ease);
}
@keyframes slideIn{from{transform:translateX(100%)}to{transform:none}}
.panel-h{display:flex; align-items:center; padding:20px 22px; border-bottom:1px solid var(--border)}
.panel-h h3{font-size:23px}
.panel-h .sheet-x{position:static; margin-left:auto}
.panel-b{flex:1; overflow:auto; padding:8px 22px 20px}
.panel-f{padding:18px 22px 22px; border-top:1px solid var(--border); display:grid; gap:12px}
.citem{display:flex; align-items:center; gap:12px; padding:14px 0; border-bottom:1px solid var(--border); animation:fade .3s ease}
.citem img,.citem .ph{width:52px; height:52px; border-radius:10px; object-fit:cover; flex:0 0 auto}
.citem .ph{display:grid; place-items:center; background:var(--cream-2); color:var(--text-dim); font-family:var(--serif)}
.citem-t{flex:1; min-width:0}
.citem-n{font-size:14.5px; font-weight:500; line-height:1.35}
.citem-p{font-size:13px; color:var(--text-dim); font-variant-numeric:tabular-nums}
.qty{display:flex; align-items:center; gap:4px; flex:0 0 auto}
.qty button{
  width:28px; height:28px; border-radius:8px; border:1px solid var(--border); background:transparent;
  color:var(--text); font-size:16px; line-height:1; cursor:pointer; transition:.18s;
}
.qty button:hover{border-color:var(--accent); color:var(--accent)}
.qty b{min-width:22px; text-align:center; font-variant-numeric:tabular-nums; font-size:14.5px}
.ctotal{display:flex; align-items:baseline; justify-content:space-between; font-family:var(--serif); font-size:22px}
.ctotal span:last-child{color:var(--accent); font-variant-numeric:tabular-nums}
.cnote{font-size:12.5px; color:var(--text-dim); text-align:center; margin:0}
.link-btn{border:0; background:transparent; color:var(--text-dim); font:500 14px var(--sans); cursor:pointer; text-decoration:underline; padding:4px}
.link-btn:hover{color:var(--text)}
.cart-empty{text-align:center; color:var(--text-dim); padding:70px 10px; font-size:15px}

.pwa-icon{
  width:74px; height:74px; margin:0 auto 18px; border-radius:20px; display:grid; place-items:center;
  background:var(--brown); color:var(--on-brown); font-family:var(--serif); font-size:34px;
  box-shadow:var(--shadow);
}
.opt{display:flex; gap:12px; align-items:flex-start; text-align:left; margin-top:20px; padding-top:20px; border-top:1px solid var(--border); cursor:pointer}
.opt input{accent-color:var(--accent); width:19px; height:19px; margin-top:2px; flex:0 0 auto}
.opt b{display:block; font-size:14.5px; font-weight:600}
.opt em{display:block; font-style:normal; font-size:13px; color:var(--text-dim); margin-top:3px}

.promo-card{background:var(--brown-2); color:#F4E7DA; padding:34px 28px 28px; text-align:center; width:min(430px,92vw)}
.promo-card h3{font-size:clamp(30px,7vw,42px); margin-top:14px; color:#FCEFE2}
.promo-card p{color:#DCC3B0; font-size:14.5px; margin:6px 0 22px}
.promo-card .sheet-x{background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.22); color:#F4E7DA}
.promo-card .sheet-x:hover{background:rgba(255,255,255,.16)}

.toast{
  position:fixed; left:50%; bottom:26px; transform:translateX(-50%); z-index:95;
  background:var(--brown); color:var(--on-brown); padding:12px 20px; border-radius:999px;
  font:600 14px var(--sans); box-shadow:var(--shadow-lg); animation:toastIn .3s var(--ease);
  max-width:calc(100vw - 40px); text-align:center;
}
.toast[hidden]{display:none}
@keyframes toastIn{from{opacity:0; transform:translate(-50%,16px)}to{opacity:1; transform:translateX(-50%)}}

/* ---------- responsive ---------- */
@media (max-width:900px){
  .promo-in,.contacts-in{grid-template-columns:1fr}
  .app-in{grid-template-columns:1fr; grid-template-areas:"txt" "how"}
  .app-phone{display:none}
  .app-steps{grid-template-columns:1fr}
  .nav-d{display:none}
}
@media (max-width:760px){
  html{scroll-padding-top:150px}
  .strip-tags{margin-left:0; width:100%}
  .view-one .card{flex-direction:column}
  .view-one .card-img{flex:none; max-width:none}
  .view-one .card-img img{aspect-ratio:16/10; min-height:0}
}
@media (max-width:560px){
  .hdr-in{gap:7px}
  .brand-name{font-size:18px; letter-spacing:.1em}
  .brand-mark{width:28px; height:28px; font-size:15px}
  .lang button{padding:8px 7px; font-size:12px}
  .icon-btn,.burger{width:34px; height:34px}
  .icon-btn svg{width:17px; height:17px}
  .burger{padding:10px 8px}
  .views{padding-left:10px}
  .cats-more{display:none !important}
  .views button{width:31px; height:31px}
  .view-two{grid-template-columns:1fr 1fr; gap:12px}
  .card-b{padding:11px 12px 13px; gap:5px}
  .card-n{font-size:14px}
  .card-d{font-size:12.5px}
  .card-acts .icon-btn{width:29px; height:29px}
  .card-acts .icon-btn svg{width:15px; height:15px}
  .pick{flex-basis:200px}
  .panel{width:100vw}
  .dish-b{padding:18px 18px 20px}
  .row{gap:11px; padding:11px 4px}
  .row-thumb{width:48px; height:48px}

  /* the two chip rows scroll sideways, like the category strip above them.
     Their wrapper must keep wrapping, or the sweetness row collapses into it. */
  .wcolors,.wsweets{flex-wrap:nowrap; overflow-x:auto; scrollbar-width:none;
    padding-inline:20px; margin-inline:-20px}
  .wcolors::-webkit-scrollbar,.wsweets::-webkit-scrollbar{display:none}
  .wrow2{flex-wrap:wrap}
  .wsweets{flex:1 1 100%; min-width:0}
  .wspacer{display:none}
  .wsort{margin-left:auto}
  /* prices drop to their own line so the grape keeps the width it needs */
  .wrow{grid-template-columns:auto minmax(0,1fr) auto; gap:11px; padding:11px 4px}
  .wmeter{display:none}
  .wrow-g{font-size:17px}
  .wprice{min-width:0}
  .wprice:nth-of-type(1){grid-column:2; grid-row:2; text-align:left; margin-top:4px}
  .wprice:nth-of-type(2){grid-column:3; grid-row:2; margin-top:4px}
  .wrow-acts{grid-column:3; grid-row:1}
  .wprice b{font-size:14px}
  .dw-scales{gap:12px 20px}
  .wscale-l{min-width:140px; gap:14px}
  .wscale-b b{width:28px}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none !important; transition-duration:.01ms !important}
  html{scroll-behavior:auto}
  .rise,.reveal{opacity:1; transform:none}
}
