/* ============================== TOKENS ============================== */
body.yuz,
.yuz-page{
  /* base — deep, cool, industrial */
  --yuz-bg:#0e0f11;
  --yuz-bg-2:#121417;
  --yuz-panel:#17191d;
  --yuz-panel-2:#1d2024;
  --yuz-ink:#f1ece0;
  --yuz-ink-soft:#cfc8b8;
  --yuz-muted:#928d83;
  --yuz-faint:#6c6961;
  --yuz-line:rgba(241,236,224,.10);
  --yuz-line-strong:rgba(241,236,224,.20);
  /* accents */
  --yuz-amber:#e0a93b;
  --yuz-amber-deep:#c2872a;
  --yuz-amber-soft:rgba(224,169,59,.13);
  --yuz-copper:#a8642a;
  --yuz-copper-deep:#7d4a2e;
  --yuz-steel:#9aa0a6;
  --yuz-foam:#f4ecd8;
  --yuz-rust:#b0492b;
  /* light heritage band */
  --yuz-paper:#ece3d0;
  --yuz-paper-2:#f4ecda;
  --yuz-paper-ink:#231b11;
  --yuz-paper-soft:#5d5238;
  --yuz-paper-line:#d4c6a9;
  --yuz-paper-line-2:#c2b08c;
  /* photo placeholder bg (для карточек без фото) */
  --yuz-photo-bg:#17191d;

  --yuz-r:3px;
  --yuz-maxw:1280px;
  --yuz-serif:"Cormorant",Georgia,serif;
  --yuz-sans:"Manrope",system-ui,-apple-system,sans-serif;
  --yuz-shadow:0 30px 70px -38px rgba(0,0,0,.8);
}

body.yuz{
  margin:0;
  background:var(--yuz-bg);
  color:var(--yuz-ink);
  font-family:var(--yuz-sans);
  font-size:16px;line-height:1.62;font-weight:400;
  -webkit-font-smoothing:antialiased;
  -webkit-text-size-adjust:100%;
}
html.yuz-html{scroll-behavior:smooth;scroll-padding-top:82px}
body.yuz,html.yuz-html{overflow-x:hidden;max-width:100%}

.yuz-page,.yuz-page *{box-sizing:border-box}
.yuz-page img{display:block;max-width:100%}
.yuz-page a{color:inherit;text-decoration:none}
.yuz-page button,
.yuz-page input,
.yuz-page select,
.yuz-page textarea{font:inherit;color:inherit}
.yuz-page button{background:none;border:0;cursor:pointer}
.yuz-page ::selection{background:var(--yuz-amber);color:#1a1206}

.yuz-wrap{max-width:var(--yuz-maxw);margin:0 auto;padding:0 40px}
.yuz-serif{font-family:var(--yuz-serif)}

@keyframes yuz-fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
@keyframes yuz-pulse{0%,100%{opacity:1}50%{opacity:.35}}
@keyframes yuzFade{from{opacity:0}to{opacity:1}}
@keyframes yuzRise{from{transform:translateY(22px);opacity:0}to{transform:none;opacity:1}}
@keyframes yuzZoom{from{transform:scale(.94);opacity:0}to{transform:scale(1);opacity:1}}
@keyframes yuzRing{0%{transform:scale(1);opacity:.7}100%{transform:scale(1.7);opacity:0}}

.yuz-page .yuz-eyebrow{
  font-size:11px;letter-spacing:.32em;text-transform:uppercase;
  color:var(--yuz-amber);font-weight:700;display:inline-flex;align-items:center;gap:13px;
}
.yuz-page .yuz-eyebrow::before{content:"";width:28px;height:1px;background:var(--yuz-amber);opacity:.7}
.yuz-page .yuz-eyebrow.center{justify-content:center}
.yuz-page .yuz-eyebrow.center::before{display:none}
.yuz-page .yuz-eyebrow.on-light{color:var(--yuz-copper-deep)}
.yuz-page .yuz-eyebrow.on-light::before{background:var(--yuz-copper)}

.yuz-page .yuz-module-tag{
  display:inline-flex;align-items:center;gap:8px;
  font-size:10.5px;letter-spacing:.24em;text-transform:uppercase;
  color:var(--yuz-steel);font-weight:700;
  padding:6px 13px;border:1px solid var(--yuz-line-strong);border-radius:999px;
}
.yuz-page .yuz-module-tag::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--yuz-amber)}

.yuz-page h1,
.yuz-page h2,
.yuz-page h3,
.yuz-page h4{font-family:var(--yuz-serif);font-weight:600;line-height:1.02;letter-spacing:-.01em}
.yuz-page .yuz-h-xl{font-size:clamp(46px,8vw,118px);font-weight:600;line-height:.96}
.yuz-page .yuz-h-lg{font-size:clamp(34px,5vw,66px)}
.yuz-page .yuz-h-md{font-size:clamp(25px,3vw,40px)}
.yuz-page .yuz-lead{font-size:18px;color:var(--yuz-ink-soft);line-height:1.6;font-weight:400}

/* buttons */
.yuz-page .yuz-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:11px;
  height:54px;padding:0 28px;border-radius:var(--yuz-r);
  font-size:11.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  transition:background .22s,color .22s,border-color .22s,transform .12s,box-shadow .22s;white-space:nowrap;
}
.yuz-page .yuz-btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;transition:transform .22s}
.yuz-page .yuz-btn:hover svg{transform:translateX(3px)}
.yuz-page .yuz-btn:active{transform:translateY(1px)}
.yuz-page .yuz-btn-amber{background:var(--yuz-amber);color:#1a1206;box-shadow:0 14px 34px -16px rgba(224,169,59,.7)}
.yuz-page .yuz-btn-amber:hover{background:#eeba51;transform:translateY(-2px);box-shadow:0 20px 44px -18px rgba(224,169,59,.8)}
.yuz-page .yuz-btn-amber:active{transform:translateY(0)}
.yuz-page .yuz-btn-ghost{border:1px solid var(--yuz-line-strong);color:var(--yuz-ink);background:transparent}
.yuz-page .yuz-btn-ghost:hover{border-color:var(--yuz-amber);color:var(--yuz-amber)}
.yuz-page .yuz-btn-light{background:var(--yuz-ink);color:var(--yuz-bg)}
.yuz-page .yuz-btn-light:hover{background:#fff}
.yuz-page .yuz-btn-onlight{background:var(--yuz-paper-ink);color:var(--yuz-paper-2)}
.yuz-page .yuz-btn-onlight:hover{background:#000}
.yuz-page .yuz-btn-ghost-light{border:1px solid var(--yuz-paper-line-2);color:var(--yuz-paper-ink);background:transparent}
.yuz-page .yuz-btn-ghost-light:hover{border-color:var(--yuz-paper-ink)}
.yuz-page .yuz-btn-sm{height:44px;padding:0 20px;font-size:10.5px;letter-spacing:.13em}
.yuz-page .yuz-btn-sm svg{width:13px;height:13px}

.yuz-page .yuz-link-arrow{display:inline-flex;align-items:center;gap:9px;font-size:11.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--yuz-amber);border-bottom:1px solid transparent;padding-bottom:3px;transition:border-color .2s,gap .2s}
.yuz-page .yuz-link-arrow svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s}
.yuz-page .yuz-link-arrow:hover{border-color:var(--yuz-amber)}
.yuz-page .yuz-link-arrow:hover svg{transform:translateX(3px)}


.yuz-page .yuz-ph{
  position:relative;overflow:hidden;background-color:var(--yuz-panel);border:1px solid var(--yuz-line);
  background-size:cover;background-position:center;background-repeat:no-repeat;isolation:isolate;
}
.yuz-page .yuz-ph:not([style*="background-image"])::before{
  content:"";position:absolute;inset:0;z-index:0;
  background:
    radial-gradient(120% 120% at 78% 12%, rgba(224,169,59,.16), transparent 60%),
    radial-gradient(120% 120% at 16% 92%, rgba(168,100,42,.18), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 1px, transparent 1px 24px);
}
.yuz-page .yuz-ph::after{
  content:attr(data-label);
  position:absolute;left:0;right:0;bottom:0;z-index:2;padding:15px 17px;
  font-size:10px;letter-spacing:.22em;text-transform:uppercase;color:var(--yuz-steel);font-weight:700;
}
.yuz-page .yuz-ph .frame{position:absolute;inset:13px;border:1px solid rgba(241,236,224,.12);z-index:2;pointer-events:none}
.yuz-page .yuz-ph .glyph{position:absolute;inset:0;display:grid;place-items:center;z-index:1;color:rgba(241,236,224,.10)}
.yuz-page .yuz-ph .glyph svg{width:46%;height:46%}
.yuz-page .yuz-ph.light{background-color:var(--yuz-paper);border-color:var(--yuz-paper-line)}
.yuz-page .yuz-ph.light:not([style*="background-image"])::before{background:
  radial-gradient(120% 120% at 78% 12%, rgba(168,100,42,.16), transparent 60%),
  repeating-linear-gradient(135deg, rgba(35,27,17,.03) 0 1px, transparent 1px 24px)}
.yuz-page .yuz-ph.light::after{color:var(--yuz-paper-soft)}
.yuz-page .yuz-ph.light .frame{border-color:rgba(35,27,17,.12)}
.yuz-page .yuz-ph.light .glyph{color:rgba(35,27,17,.10)}

.yuz-agegate{position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:24px;
  background:rgba(8,9,10,.86);backdrop-filter:blur(10px) saturate(120%)}
.yuz-agegate.hide{display:none}
.yuz-agegate .ag-card{max-width:440px;width:100%;background:var(--yuz-panel);border:1px solid var(--yuz-line-strong);
  border-radius:var(--yuz-r);padding:46px 40px 38px;text-align:center;position:relative;overflow:hidden;
  box-shadow:var(--yuz-shadow)}
.yuz-agegate .ag-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--yuz-copper),var(--yuz-amber),var(--yuz-copper))}
.yuz-agegate .ag-seal{width:74px;height:74px;margin:0 auto 22px;color:var(--yuz-amber)}
.yuz-agegate .ag-card h2{font-size:32px;color:#fff;margin-bottom:6px}
.yuz-agegate .ag-tag{font-size:11px;letter-spacing:.3em;text-transform:uppercase;color:var(--yuz-amber);font-weight:700;margin-bottom:20px}
.yuz-agegate .ag-card p{font-size:14px;color:var(--yuz-muted);line-height:1.6;margin-bottom:26px}
.yuz-agegate .ag-actions{display:flex;gap:12px}
.yuz-agegate .ag-actions .yuz-btn{flex:1}
.yuz-agegate .ag-no{font-size:12px;color:var(--yuz-faint);margin-top:18px}
.yuz-agegate .ag-no a{color:var(--yuz-steel);border-bottom:1px solid var(--yuz-line-strong)}

.yuz-header{position:fixed;top:0;left:0;right:0;z-index:90;transition:background .3s,border-color .3s,box-shadow .3s;border-bottom:1px solid transparent}
.yuz-header .yuz-wrap{display:flex;align-items:center;justify-content:space-between;height:80px;gap:24px}
.yuz-header.scrolled{background:rgba(14,15,17,.82);backdrop-filter:blur(16px);border-bottom-color:var(--yuz-line)}
.yuz-brand{display:flex;align-items:center;gap:14px}
.yuz-brand-seal{width:50px;height:50px;flex-shrink:0;color:var(--yuz-amber);transition:transform .4s cubic-bezier(.2,.8,.3,1)}
.yuz-brand:hover .yuz-brand-seal{transform:rotate(-8deg)}
.yuz-brand-seal svg{width:100%;height:100%;display:block}
.yuz-brand-name{font-family:var(--yuz-serif);font-size:23px;font-weight:700;letter-spacing:.02em;line-height:1;color:#fff}
.yuz-brand-sub{font-size:9px;letter-spacing:.34em;text-transform:uppercase;color:var(--yuz-amber);margin-top:4px;font-weight:700}
.yuz-nav{display:flex;gap:32px}
.yuz-nav a{font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--yuz-ink-soft);position:relative;padding:6px 0;transition:color .2s}
.yuz-nav a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--yuz-amber);transition:width .22s}
.yuz-nav a:hover{color:var(--yuz-amber)}
.yuz-nav a:hover::after{width:100%}
.yuz-header-cta{display:flex;align-items:center;gap:18px}
.yuz-header-phone{font-weight:700;font-size:14px;letter-spacing:.02em;color:#fff;white-space:nowrap;transition:color .2s}
.yuz-header-phone:hover{color:var(--yuz-amber)}
.yuz-burger{display:none;flex-direction:column;gap:5px;width:30px;height:30px;justify-content:center;align-items:center}
.yuz-burger span{width:22px;height:1.7px;background:#fff;transition:.3s}

.yuz-hero{position:relative;min-height:100vh;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden}
.yuz-hero-bg{position:absolute;inset:0;z-index:0;background:
  linear-gradient(180deg, rgba(12,13,15,.62) 0%, rgba(12,13,15,.30) 34%, rgba(12,13,15,.72) 78%, #0e0f11 100%),
  radial-gradient(130% 90% at 75% 8%, rgba(224,169,59,.16), transparent 55%),
  url("/images/yuz-facade.jpg") center 22%/cover no-repeat,
  linear-gradient(180deg,#15110b 0%,#0e0f11 60%,#0c0d0f 100%)}
.yuz-hero-bg::after{content:"";position:absolute;inset:0;
  background:repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 1px, transparent 1px 30px);
  mix-blend-mode:overlay}
.yuz-hero-vignette{position:absolute;inset:0;z-index:1;background:
  linear-gradient(90deg, rgba(8,9,10,.7) 0%, rgba(8,9,10,.2) 46%, transparent 72%),
  linear-gradient(0deg, rgba(8,9,10,.92) 2%, transparent 42%)}
.yuz-hero-steam{position:absolute;right:-4%;top:0;bottom:0;width:52%;z-index:1;opacity:.5;
  background:radial-gradient(60% 50% at 60% 38%, rgba(224,169,59,.28), transparent 70%);
  filter:blur(8px)}
.yuz-hero-inner{position:relative;z-index:3;width:100%;padding-bottom:clamp(46px,7vh,92px);padding-top:130px}
.yuz-hero-meta{display:flex;align-items:center;gap:15px;color:var(--yuz-ink-soft);font-size:11.5px;letter-spacing:.2em;text-transform:uppercase;font-weight:600;margin-bottom:30px;flex-wrap:wrap}
.yuz-hero-meta .dot{width:4px;height:4px;border-radius:50%;background:var(--yuz-amber)}
.yuz-hero h1{color:#fff;max-width:13ch}
.yuz-hero h1 em{font-style:italic;font-weight:500;color:var(--yuz-amber)}
.yuz-hero .tagline{font-family:var(--yuz-serif);font-style:italic;color:var(--yuz-amber);font-size:clamp(22px,2.8vw,36px);margin-top:12px;font-weight:500}
.yuz-hero p.yuz-lead{max-width:52ch;margin-top:26px;color:var(--yuz-ink-soft)}
.yuz-hero-actions{display:flex;gap:14px;margin-top:38px;flex-wrap:wrap}
.yuz-hero-side{position:absolute;right:40px;bottom:clamp(46px,7vh,92px);z-index:3;writing-mode:vertical-rl;font-size:10.5px;letter-spacing:.34em;text-transform:uppercase;color:var(--yuz-steel);font-weight:600;display:flex;align-items:center;gap:16px}
.yuz-hero-grid{display:grid;grid-template-columns:1fr;gap:clamp(32px,5vw,72px);align-items:end}
.yuz-hero-grid.has-media{grid-template-columns:1fr}
.yuz-hero-media{display:none}
.yuz-hero-side::before{content:"";height:60px;width:1px;background:var(--yuz-line-strong)}

.yuz-creds{position:relative;z-index:20;background:var(--yuz-bg-2);border-top:1px solid var(--yuz-line);border-bottom:1px solid var(--yuz-line)}
.yuz-creds .yuz-wrap{display:grid;grid-template-columns:repeat(4,1fr)}
.yuz-cred{padding:30px 34px;border-right:1px solid var(--yuz-line);display:flex;flex-direction:column;gap:5px}
.yuz-cred:last-child{border-right:0}
.yuz-cred .cv{font-family:var(--yuz-serif);font-size:40px;font-weight:600;line-height:1;color:var(--yuz-amber)}
.yuz-cred .cl{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--yuz-muted);font-weight:600;margin-top:4px}

.yuz-block{padding:clamp(78px,10vw,138px) 0;position:relative}
.yuz-sec-head{margin-bottom:56px}
.yuz-sec-head.center{text-align:center;display:flex;flex-direction:column;align-items:center}
.yuz-sec-head .yuz-eyebrow{margin-bottom:20px}
.yuz-sec-head h2{max-width:18ch}
.yuz-sec-head.center h2{max-width:22ch}
.yuz-sec-head .sub{margin-top:18px;max-width:58ch;color:var(--yuz-muted)}
.yuz-sec-head-row{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;flex-wrap:wrap}

.yuz-beer{background:var(--yuz-bg)}
.yuz-kitchen{background:var(--yuz-bg-2)}
.yuz-taproom{background:var(--yuz-bg)}
.yuz-events{background:var(--yuz-bg-2)}
.yuz-reserve{background:var(--yuz-bg)}
.yuz-gallery{background:var(--yuz-bg-2)}

.yuz-beer-filters{display:flex;gap:10px;flex-wrap:wrap;margin:6px 0 40px}
.yuz-fchip{padding:10px 19px;border:1px solid var(--yuz-line-strong);border-radius:999px;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--yuz-muted);transition:.18s}
.yuz-fchip:hover{border-color:var(--yuz-amber);color:var(--yuz-amber)}
.yuz-fchip.active{background:var(--yuz-amber);border-color:var(--yuz-amber);color:#1a1206}
.yuz-beer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.yuz-beer-card{background:var(--yuz-panel);border:1px solid var(--yuz-line);border-radius:var(--yuz-r);padding:28px 26px 26px;display:flex;flex-direction:column;transition:transform .25s,border-color .25s,box-shadow .25s;position:relative;overflow:hidden}
.yuz-beer-card::before{content:"";position:absolute;top:0;left:0;right:0;height:2px;background:var(--beer-top);opacity:0;transition:opacity .25s}
.yuz-beer-card:hover{transform:translateY(-5px);border-color:var(--yuz-line-strong);box-shadow:var(--yuz-shadow)}
.yuz-beer-card:hover::before{opacity:.9}
.yuz-beer-card .bc-head{display:flex;gap:20px;align-items:flex-start}
.yuz-beer-card .bc-glass{flex-shrink:0}
.yuz-glass{position:relative;width:54px;height:84px;clip-path:polygon(15% 0,85% 0,75% 100%,25% 100%);
  background:linear-gradient(180deg,var(--beer-top),var(--beer));overflow:hidden;box-shadow:inset 0 -6px 14px -6px rgba(0,0,0,.5)}
.yuz-glass::before{content:"";position:absolute;top:0;left:-6%;right:-6%;height:15px;background:var(--foam-c,#f3ecd6);border-radius:0 0 50% 50%/0 0 16px 16px;box-shadow:0 2px 4px rgba(0,0,0,.18)}
.yuz-glass::after{content:"";position:absolute;top:10px;left:14%;width:5px;bottom:8px;background:linear-gradient(180deg,rgba(255,255,255,.5),rgba(255,255,255,0));border-radius:4px}
.yuz-beer-card .bc-titles{flex:1;min-width:0}
.yuz-beer-card .bc-type{font-size:10px;letter-spacing:.2em;text-transform:uppercase;color:var(--yuz-amber);font-weight:700}
.yuz-beer-card .bc-name{font-family:var(--yuz-serif);font-size:27px;font-weight:600;line-height:1.05;margin-top:5px;color:#fff}
.yuz-beer-card .bc-orig{font-size:12.5px;color:var(--yuz-muted);margin-top:3px;font-style:italic;font-family:var(--yuz-serif)}
.yuz-beer-card .bc-stats{display:flex;gap:0;margin:22px 0 16px;border:1px solid var(--yuz-line);border-radius:var(--yuz-r);overflow:hidden}
.yuz-beer-card .bc-stat{flex:1;padding:12px 6px;text-align:center;border-right:1px solid var(--yuz-line)}
.yuz-beer-card .bc-stat:last-child{border-right:0}
.yuz-beer-card .bc-stat .sv{font-family:var(--yuz-serif);font-size:21px;font-weight:600;color:var(--yuz-ink);line-height:1}
.yuz-beer-card .bc-stat .sl{font-size:9px;letter-spacing:.14em;text-transform:uppercase;color:var(--yuz-faint);font-weight:700;margin-top:5px}
.yuz-beer-card .bc-note{font-size:13.5px;color:var(--yuz-ink-soft);line-height:1.55;flex:1}
.yuz-beer-card .bc-foot{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:20px;padding-top:18px;border-top:1px solid var(--yuz-line)}
.yuz-beer-card .bc-price{display:flex;gap:16px}
.yuz-beer-card .bc-price .pcol{display:flex;flex-direction:column;gap:2px}
.yuz-beer-card .bc-price .pv{font-family:var(--yuz-serif);font-size:20px;font-weight:600;color:var(--yuz-amber);line-height:1}
.yuz-beer-card .bc-price .pl{font-size:9.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--yuz-faint);font-weight:700}
.yuz-beer-card .bc-tap{display:inline-flex;align-items:center;gap:7px;font-size:10px;letter-spacing:.12em;text-transform:uppercase;font-weight:700;color:var(--yuz-steel)}
.yuz-beer-card .bc-tap .tdot{width:7px;height:7px;border-radius:50%;background:#5fae5a;box-shadow:0 0 0 3px rgba(95,174,90,.18)}
.yuz-beer-card .bc-tap.off .tdot{background:var(--yuz-faint);box-shadow:none}

.yuz-heritage{background:var(--yuz-paper);color:var(--yuz-paper-ink);position:relative;overflow:hidden}
.yuz-heritage::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(135deg, rgba(35,27,17,.022) 0 1px, transparent 1px 26px);pointer-events:none}
.yuz-heritage .yuz-wrap{position:relative}
.yuz-her-grid{display:grid;grid-template-columns:1fr 1.04fr;gap:64px;align-items:center}
.yuz-her-photo{height:540px}
.yuz-heritage h2{color:var(--yuz-paper-ink)}
.yuz-heritage .yuz-lead{color:var(--yuz-paper-soft)}
.yuz-her-body p{color:var(--yuz-paper-soft);font-size:16.5px;line-height:1.7;margin-top:18px}
.yuz-her-body p b{color:var(--yuz-paper-ink);font-weight:600}
.yuz-her-facts{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin:34px 0 32px;border-top:1px solid var(--yuz-paper-line-2);border-bottom:1px solid var(--yuz-paper-line-2)}
.yuz-her-fact{padding:22px 4px;border-right:1px solid var(--yuz-paper-line)}
.yuz-her-fact:last-child{border-right:0}
.yuz-her-fact .fv{font-family:var(--yuz-serif);font-size:38px;font-weight:600;line-height:1;color:var(--yuz-copper-deep)}
.yuz-her-fact .fl{font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--yuz-paper-soft);font-weight:600;margin-top:7px}
.yuz-her-quote{font-family:var(--yuz-serif);font-style:italic;font-size:25px;line-height:1.4;color:var(--yuz-paper-ink);border-left:2px solid var(--yuz-copper);padding-left:22px;margin-top:6px}

.yuz-menu-wrap{display:grid;grid-template-columns:.82fr 1.18fr;gap:54px;align-items:start}
.yuz-menu-aside{position:sticky;top:104px}
.yuz-menu-aside .yuz-ph{height:420px;margin-top:26px}
.yuz-menu-pair{display:flex;align-items:flex-start;gap:13px;margin-top:24px;padding:18px 20px;background:var(--yuz-panel);border:1px solid var(--yuz-line);border-left:2px solid var(--yuz-amber);border-radius:var(--yuz-r)}
.yuz-menu-pair svg{width:22px;height:22px;stroke:var(--yuz-amber);fill:none;stroke-width:1.6;flex-shrink:0;margin-top:2px}
.yuz-menu-pair .mp-t{font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--yuz-muted);font-weight:700;margin-bottom:4px}
.yuz-menu-pair .mp-v{font-size:14px;color:var(--yuz-ink-soft);line-height:1.5}
.yuz-menu-card{background:var(--yuz-panel);border:1px solid var(--yuz-line);border-radius:var(--yuz-r);overflow:hidden}
.yuz-menu-tabs{display:flex;border-bottom:1px solid var(--yuz-line);overflow-x:auto;scrollbar-width:none}
.yuz-menu-tabs::-webkit-scrollbar{display:none}
.yuz-menu-tab{padding:20px 26px;font-size:11.5px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--yuz-muted);border-bottom:2px solid transparent;margin-bottom:-1px;white-space:nowrap;transition:.18s}
.yuz-menu-tab.active{color:#fff;border-bottom-color:var(--yuz-amber)}
.yuz-menu-tab:hover{color:var(--yuz-ink)}
.yuz-menu-panel{padding:12px 30px 26px;display:none}
.yuz-menu-panel.active{display:block;animation:yuz-fade .35s ease}
.yuz-dish{display:grid;grid-template-columns:1fr auto;gap:14px;align-items:baseline;padding:17px 0;border-bottom:1px dashed var(--yuz-line)}
.yuz-dish:last-child{border-bottom:0}
.yuz-dish>div{min-width:0}
.yuz-dish-name{font-family:var(--yuz-serif);font-size:21px;font-weight:600;color:var(--yuz-ink)}
.yuz-dish-desc{font-size:13px;color:var(--yuz-muted);margin-top:3px;line-height:1.5}
.yuz-dish-price{font-family:var(--yuz-serif);font-size:21px;font-weight:600;white-space:nowrap;color:var(--yuz-amber)}
.yuz-tap-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:54px;align-items:stretch}
.yuz-tap-board{background:linear-gradient(180deg,#101213,#0c0d0e);border:1px solid var(--yuz-line-strong);border-radius:var(--yuz-r);padding:30px 32px 24px;position:relative;overflow:hidden}
.yuz-tap-board::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(0deg, rgba(255,255,255,.015) 0 1px, transparent 1px 5px);pointer-events:none}
.yuz-tap-board .tb-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px;padding-bottom:18px;border-bottom:1px solid var(--yuz-line);position:relative}
.yuz-tap-board .tb-head .tb-t{font-family:var(--yuz-serif);font-size:25px;font-weight:600;color:#fff}
.yuz-tap-board .tb-head .tb-live{display:inline-flex;align-items:center;gap:8px;font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:#5fae5a;font-weight:700}
.yuz-tap-board .tb-head .tb-live i{width:7px;height:7px;border-radius:50%;background:#5fae5a;animation:yuz-pulse 2s infinite}
.yuz-tap-row{display:grid;grid-template-columns:auto 1fr auto;gap:16px;align-items:center;padding:15px 0;border-bottom:1px dashed var(--yuz-line)}
.yuz-tap-row:last-child{border-bottom:0}
.yuz-tap-num{font-family:var(--yuz-serif);font-size:16px;color:var(--yuz-faint);width:24px;font-weight:600}
.yuz-tap-info .tap-name{font-size:15px;font-weight:600;color:var(--yuz-ink)}
.yuz-tap-info .tap-meta{font-size:11.5px;color:var(--yuz-muted);margin-top:2px}
.yuz-tap-keg{display:flex;flex-direction:column;align-items:flex-end;gap:6px;min-width:96px}
.yuz-tap-keg .kbar{width:96px;height:6px;border-radius:3px;background:rgba(255,255,255,.08);overflow:hidden}
.yuz-tap-keg .kfill{height:100%;border-radius:3px;background:linear-gradient(90deg,var(--yuz-copper),var(--yuz-amber))}
.yuz-tap-keg .klabel{font-size:9.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--yuz-faint);font-weight:700}
.yuz-tap-keg.low .kfill{background:linear-gradient(90deg,var(--yuz-rust),#d8703a)}
.yuz-tap-side{display:flex;flex-direction:column;justify-content:center}
.yuz-tap-feature{padding:56px 30px;border:1px solid var(--yuz-line);border-radius:var(--yuz-r);margin-bottom:16px;background:var(--yuz-panel)}
.yuz-tap-feature h3{font-size:24px;color:#fff;margin-bottom:10px}
.yuz-tap-feature p{font-size:14.5px;color:var(--yuz-muted);line-height:1.6}
.yuz-tap-info-rows{display:flex;flex-direction:column}
.yuz-tir{display:grid;grid-template-columns:130px 1fr;gap:18px;padding:16px 0;border-bottom:1px solid var(--yuz-line)}
.yuz-tir:last-child{border-bottom:0}
.yuz-tir-k{font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--yuz-amber);font-weight:700;padding-top:2px}
.yuz-tir-v{font-size:14.5px;color:var(--yuz-ink-soft);line-height:1.55}
.yuz-tir-v b{color:#fff;font-weight:600}
.yuz-ev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.yuz-ev-card{background:var(--yuz-panel);border:1px solid var(--yuz-line);border-radius:var(--yuz-r);padding:32px 30px;display:flex;flex-direction:column;gap:14px;min-height:230px;transition:transform .22s,border-color .22s,background .22s}
.yuz-ev-card:hover{transform:translateY(-4px);border-color:var(--yuz-line-strong);background:var(--yuz-panel-2)}
.yuz-ev-ic{width:48px;height:48px;border-radius:var(--yuz-r);display:grid;place-items:center;background:var(--yuz-amber-soft);border:1px solid rgba(224,169,59,.28)}
.yuz-ev-ic svg{width:24px;height:24px;stroke:var(--yuz-amber);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.yuz-ev-card h3{font-size:23px;color:#fff}
.yuz-ev-card p{font-size:13.5px;color:var(--yuz-muted);line-height:1.55;flex:1}
.yuz-ev-meta{font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--yuz-amber);font-weight:700}

.yuz-res-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.yuz-res-info h2{color:#fff}
.yuz-res-points{display:flex;flex-direction:column;gap:2px;margin-top:30px}
.yuz-res-point{display:grid;grid-template-columns:auto 1fr;gap:16px;padding:18px 0;border-top:1px solid var(--yuz-line)}
.yuz-res-point:last-child{border-bottom:1px solid var(--yuz-line)}
.yuz-res-point svg{width:22px;height:22px;stroke:var(--yuz-amber);fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;margin-top:2px}
.yuz-res-point .rp-t{font-weight:600;color:var(--yuz-ink);font-size:15.5px}
.yuz-res-point .rp-d{font-size:13.5px;color:var(--yuz-muted);margin-top:2px}
.yuz-res-form{background:var(--yuz-panel);border:1px solid var(--yuz-line-strong);border-radius:var(--yuz-r);padding:38px 36px;box-shadow:var(--yuz-shadow)}
.yuz-res-form h3{font-size:27px;color:#fff;margin-bottom:6px}
.yuz-res-form .rf-sub{font-size:13.5px;color:var(--yuz-muted);margin-bottom:26px}
.yuz-field{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}
.yuz-field label{font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--yuz-muted);font-weight:700}
.yuz-field input,.yuz-field select{height:48px;padding:0 15px;background:var(--yuz-bg-2);border:1px solid var(--yuz-line-strong);border-radius:var(--yuz-r);font-size:14.5px;color:#fff;transition:border-color .15s;width:100%}
.yuz-field input::placeholder{color:var(--yuz-faint)}
.yuz-field input:focus,.yuz-field select:focus{outline:none;border-color:var(--yuz-amber)}
.yuz-field.row3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px}
.yuz-field.row3>div{display:flex;flex-direction:column;gap:8px}
.yuz-field-err{border-color:var(--yuz-rust)!important}
.yuz-res-form .yuz-btn{margin-top:8px;width:100%}
.yuz-res-ok{display:none;margin-top:16px;padding:15px 18px;background:var(--yuz-amber-soft);border:1px solid rgba(224,169,59,.4);border-radius:var(--yuz-r);font-size:13.5px;color:var(--yuz-amber)}
.yuz-res-ok.show{display:block;animation:yuz-fade .35s}

.yuz-gal-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:210px;gap:14px;grid-auto-flow:dense}
.yuz-gal-item{display:block;border-radius:var(--yuz-r);overflow:hidden}
/* .yuz-ph здесь — <span>: без display:block он инлайновый и схлопывается по высоте */
.yuz-gal-item .yuz-ph{display:block;width:100%;height:100%}
.yuz-gal-item.tall{grid-row:span 2}
.yuz-gal-item.wide{grid-column:span 2}
/* режим «ровный ряд» — когда альбомов 1-4, колонок ровно столько же (без дыр) */
.yuz-gal-grid.cols-3{grid-template-columns:repeat(3,1fr);grid-auto-rows:250px}
.yuz-gal-grid.cols-2{grid-template-columns:repeat(2,1fr);grid-auto-rows:300px}
.yuz-gal-grid.cols-1{grid-template-columns:1fr;grid-auto-rows:360px}
.yuz-gal-more{display:flex;justify-content:center;margin-top:38px}
/* мозаика (6 карточек, wide+tall = 8 ячеек): на планшете ровно 2 колонки x 4 ряда */
@media(max-width:900px) and (min-width:761px){
  .yuz-gal-grid.is-mosaic{grid-template-columns:repeat(2,1fr)}
}

.yuz-contacts{background:var(--yuz-bg);border-top:1px solid var(--yuz-line)}
.yuz-cont-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.yuz-cont-rows{display:flex;flex-direction:column}
.yuz-cont-row{display:grid;grid-template-columns:140px 1fr;gap:20px;padding:24px 0;border-bottom:1px solid var(--yuz-line)}
.yuz-cont-row:first-child{border-top:1px solid var(--yuz-line)}
.yuz-cont-k{font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--yuz-amber);font-weight:700;padding-top:4px}
.yuz-cont-v{font-size:16px;color:var(--yuz-ink-soft);line-height:1.55}
.yuz-cont-v a:hover{color:var(--yuz-amber)}
.yuz-cont-v .big{font-family:var(--yuz-serif);font-size:25px;font-weight:600;color:#fff;display:block}
.yuz-socials{display:flex;gap:10px;margin-top:6px}
.yuz-socials a{width:44px;height:44px;border:1px solid var(--yuz-line-strong);border-radius:var(--yuz-r);display:grid;place-items:center;transition:.16s}
.yuz-socials a:hover{border-color:var(--yuz-amber);background:var(--yuz-amber-soft)}
.yuz-socials svg{width:19px;height:19px;fill:var(--yuz-ink-soft)}
.yuz-socials a:hover svg{fill:var(--yuz-amber)}
.yuz-map-ph{height:100%;min-height:440px}

/* ============================== FOOTER ========================== */
.yuz-footer{background:#0a0b0c;color:var(--yuz-muted)}
.yuz-foot-top{display:flex;align-items:center;justify-content:space-between;padding:54px 0;border-bottom:1px solid var(--yuz-line);gap:30px;flex-wrap:wrap}
.yuz-foot-brand{display:flex;align-items:center;gap:14px}
.yuz-foot-modules{display:flex;gap:10px;flex-wrap:wrap}
.yuz-foot-mod{display:inline-flex;align-items:center;gap:7px;font-size:10.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--yuz-steel);padding:7px 14px;border:1px solid var(--yuz-line);border-radius:999px}
.yuz-foot-mod::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--yuz-amber)}
.yuz-foot-mid{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:24px 0;border-bottom:1px solid var(--yuz-line);flex-wrap:wrap}
.yuz-foot-18{display:inline-flex;align-items:center;gap:12px;font-size:12.5px;color:var(--yuz-muted);line-height:1.5;max-width:60ch}
.yuz-foot-18 .b18{flex-shrink:0;width:42px;height:42px;border-radius:50%;border:1.6px solid var(--yuz-rust);color:#d8703a;display:grid;place-items:center;font-weight:800;font-size:14px;letter-spacing:.02em}
.yuz-foot-bottom{display:flex;align-items:center;justify-content:space-between;padding:26px 0;gap:20px;flex-wrap:wrap;font-size:13px}
.yuz-foot-bottom a:hover{color:var(--yuz-amber)}
.yuz-ep-ftr-badge{display:inline-flex;align-items:center;gap:6px;color:var(--yuz-steel);font-size:.78rem;padding:7px 15px;border-radius:999px;border:1px solid var(--yuz-line);transition:.14s}
.yuz-ep-ftr-badge:hover{border-color:var(--yuz-amber);background:var(--yuz-amber-soft);color:#fff}
.yuz-ep-ftr-badge svg{stroke:var(--yuz-amber)}
.yuz-ep-ftr-badge strong{color:#fff;font-weight:700;letter-spacing:.02em}

/* ============================== MOBILE MENU ===================== */
.yuz-mobile-menu{position:fixed;inset:0;z-index:95;background:var(--yuz-bg);display:none;flex-direction:column;padding:84px 28px 32px;overflow-y:auto}
.yuz-mobile-menu.open{display:flex;animation:yuz-fade .25s}
.yuz-mobile-menu>a:not(.yuz-btn):not(.mm-phone){font-family:var(--yuz-serif);font-size:30px;color:#fff;padding:16px 0;border-bottom:1px solid var(--yuz-line)}
.yuz-mm-close{position:absolute;top:24px;right:26px;width:42px;height:42px;display:grid;place-items:center;border:1px solid var(--yuz-line-strong);border-radius:50%;color:#fff;font-size:24px;line-height:1}
.yuz-mm-book{margin-top:26px;width:100%;height:54px}
.yuz-mm-phone{margin-top:18px;display:flex;align-items:center;justify-content:center;gap:9px;height:52px;border:1px solid var(--yuz-line-strong);border-radius:var(--yuz-r);color:var(--yuz-amber);font-size:17px;font-weight:700}

/* ============================== RESPONSIVE (landing) ============ */
@media(max-width:1180px){
  .yuz-wrap{padding:0 30px}
  .yuz-nav{gap:24px}
  .yuz-beer-grid,.yuz-ev-grid{grid-template-columns:repeat(2,1fr)}
  /* мозаику держим на 4 колонках (иначе wide+tall дают дыры на 3), просто ниже ряды */
  .yuz-gal-grid{grid-auto-rows:180px}
}
@media(max-width:1000px){
  .yuz-her-grid,.yuz-menu-wrap,.yuz-tap-grid,.yuz-res-grid,.yuz-cont-grid{grid-template-columns:1fr;gap:38px}
  .yuz-menu-aside{position:static}
  .yuz-menu-aside .yuz-ph{height:300px}
  .yuz-her-photo{height:380px;order:-1}
  .yuz-map-ph{min-height:320px}
  .yuz-creds .yuz-wrap{grid-template-columns:repeat(2,1fr)}
  .yuz-cred:nth-child(2){border-right:0}
  .yuz-cred{border-bottom:1px solid var(--yuz-line)}
}
@media(max-width:760px){
  .yuz-wrap{padding:0 20px}
  .yuz-nav,.yuz-header-phone{display:none}
  .yuz-burger{display:flex}
  .yuz-header-cta .yuz-btn-amber{display:none}
  .yuz-beer-grid,.yuz-ev-grid,.yuz-gal-grid{grid-template-columns:1fr}
  .yuz-gal-grid.is-mosaic,.yuz-gal-grid.cols-3,.yuz-gal-grid.cols-2{grid-template-columns:1fr}
  .yuz-gal-item.tall{grid-row:span 1}
  .yuz-gal-item.wide{grid-column:span 1}
  .yuz-gal-grid,.yuz-gal-grid.cols-3,.yuz-gal-grid.cols-2,.yuz-gal-grid.cols-1{grid-auto-rows:200px}
  .yuz-field.row3{grid-template-columns:1fr}
  .yuz-hero-side{display:none}
  .yuz-her-facts{grid-template-columns:1fr}
  .yuz-her-fact{border-right:0;border-bottom:1px solid var(--yuz-paper-line)}
  .yuz-her-fact:last-child{border-bottom:0}
  .yuz-block{padding:66px 0}
  .yuz-sec-head{margin-bottom:40px}
  .yuz-foot-top,.yuz-foot-mid,.yuz-foot-bottom{flex-direction:column;align-items:flex-start}
  .yuz-cont-row{grid-template-columns:1fr;gap:6px;padding:18px 0}
  .yuz-res-form{padding:30px 24px}
}
@media(max-width:430px){
  .yuz-wrap{padding:0 16px}
  .yuz-header .yuz-wrap{height:66px}
  .yuz-brand-seal{width:44px;height:44px}
  .yuz-brand-name{font-size:19px}
  .yuz-hero-meta{font-size:10px;gap:8px}
  .yuz-creds .yuz-wrap{grid-template-columns:1fr}
  .yuz-cred{border-right:0}
  .yuz-beer-card .bc-head{gap:14px}
}


.yuz-hatch{position:fixed;inset:0;pointer-events:none;z-index:0;background:repeating-linear-gradient(135deg,rgba(255,255,255,.014) 0 2px,transparent 2px 26px)}

/* ============================== GALLERY (DC) ===================== */
.yuz-gl-root{position:relative;min-height:100vh;background:var(--yuz-bg)}
.yuz-gl-header{position:relative;z-index:5;border-bottom:1px solid var(--yuz-line);background:rgba(14,15,17,.85);backdrop-filter:blur(10px)}
.yuz-gl-header .inner{max-width:var(--yuz-maxw);margin:0 auto;padding:18px 40px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.yuz-gl-hero{position:relative;z-index:1;max-width:var(--yuz-maxw);margin:0 auto;padding:clamp(56px,7vw,96px) 40px clamp(36px,4vw,52px)}
.yuz-gl-hero .row{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;flex-wrap:wrap}
.yuz-gl-hero h1{font-family:var(--yuz-serif);font-weight:600;line-height:.98;letter-spacing:-.01em;font-size:clamp(40px,6vw,82px);color:#fff;margin-top:20px;max-width:16ch}
.yuz-gl-hero p{font-size:18px;color:var(--yuz-ink-soft);line-height:1.6;margin-top:22px;max-width:54ch}
.yuz-gl-total{display:flex;align-items:center;gap:11px;font-size:10.5px;letter-spacing:.2em;text-transform:uppercase;color:var(--yuz-muted);font-weight:700;padding-bottom:8px}
.yuz-gl-total b{font-family:var(--yuz-serif);font-style:italic;font-size:28px;font-weight:500;color:var(--yuz-amber);letter-spacing:0;text-transform:none}
.yuz-gl-filters{display:flex;gap:10px;flex-wrap:wrap;margin-top:clamp(34px,4vw,52px)}
.yuz-gl-chip{padding:10px 19px;border-radius:999px;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;cursor:pointer;transition:.18s;background:transparent;border:1px solid var(--yuz-line-strong);color:var(--yuz-muted)}
.yuz-gl-chip:hover{border-color:var(--yuz-amber);color:var(--yuz-amber)}
.yuz-gl-chip.active{background:var(--yuz-amber);border-color:var(--yuz-amber);color:#1a1206}
.yuz-gl-chip .cnt{opacity:.55;font-weight:600}
.yuz-gl-grid-wrap{position:relative;z-index:1;max-width:var(--yuz-maxw);margin:0 auto;padding:0 40px clamp(78px,10vw,128px)}
.yuz-gl-grid{display:grid;grid-template-columns:repeat(var(--yuz-gl-col,4),1fr);grid-auto-rows:220px;gap:14px;grid-auto-flow:dense}
.yuz-gl-card{position:relative;overflow:hidden;border-radius:var(--yuz-r);border:1px solid var(--yuz-line);background:var(--yuz-panel);cursor:pointer;padding:0;isolation:isolate;display:block;background-size:cover;background-position:center}
.yuz-gl-card:hover{border-color:rgba(224,169,59,.5)}
.yuz-gl-card.wide{grid-column:span 2}
.yuz-gl-card.tall{grid-row:span 2}
.yuz-gl-card .bg:not([style*="background-image"]){position:absolute;inset:0;z-index:0;background:radial-gradient(120% 120% at 78% 12%,rgba(224,169,59,.16),transparent 60%),radial-gradient(120% 120% at 16% 92%,rgba(168,100,42,.18),transparent 62%),repeating-linear-gradient(135deg,rgba(255,255,255,.022) 0 1px,transparent 1px 24px)}
.yuz-gl-card .frame{position:absolute;inset:13px;border:1px solid rgba(241,236,224,.12);z-index:2;pointer-events:none}
.yuz-gl-card .glyph{position:absolute;inset:0;display:grid;place-items:center;z-index:1;color:rgba(241,236,224,.12)}
.yuz-gl-card .glyph svg{width:42%;height:42%}
.yuz-gl-card .meta{position:absolute;left:0;right:0;bottom:0;z-index:3;display:flex;flex-direction:column;gap:5px;align-items:flex-start;padding:15px 16px;background:linear-gradient(0deg,rgba(10,11,12,.72),transparent);text-align:left}
.yuz-gl-card .meta .cat{font-size:9px;letter-spacing:.2em;text-transform:uppercase;color:var(--yuz-amber);font-weight:700}
.yuz-gl-card .meta .label{font-family:var(--yuz-serif);font-size:18px;font-weight:600;color:var(--yuz-foam);line-height:1.05}

/* lightbox */
.yuz-gl-lightbox{position:fixed;inset:0;z-index:120;background:rgba(8,9,10,.92);backdrop-filter:blur(10px);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:clamp(20px,4vw,56px);animation:yuzFade .25s ease}
.yuz-gl-lb-bar{width:100%;max-width:1040px;display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.yuz-gl-lb-cat{font-size:10px;letter-spacing:.2em;text-transform:uppercase;color:var(--yuz-amber);font-weight:700}
.yuz-gl-lb-title{font-family:var(--yuz-serif);font-size:clamp(24px,3vw,38px);font-weight:600;color:#fff;line-height:1.05;margin-top:4px}
.yuz-gl-lb-close{width:46px;height:46px;flex-shrink:0;border-radius:50%;border:1px solid var(--yuz-line-strong);background:transparent;color:var(--yuz-ink);font-size:22px;line-height:1;cursor:pointer;display:grid;place-items:center}
.yuz-gl-lb-close:hover{border-color:var(--yuz-amber);color:var(--yuz-amber)}
.yuz-gl-lb-stage{position:relative;width:100%;max-width:1040px;aspect-ratio:16/9;border-radius:5px;overflow:hidden;border:1px solid rgba(241,236,224,.14);background:var(--yuz-panel);background-size:cover;background-position:center;animation:yuzZoom .3s cubic-bezier(.2,.7,.3,1)}
.yuz-gl-lb-nav{width:100%;max-width:1040px;display:flex;align-items:center;justify-content:space-between;margin-top:20px}
.yuz-gl-lb-btn{display:inline-flex;align-items:center;gap:10px;height:48px;padding:0 22px;border-radius:var(--yuz-r);border:1px solid var(--yuz-line-strong);background:transparent;color:var(--yuz-ink);font-size:11px;font-weight:700;letter-spacing:.13em;text-transform:uppercase;cursor:pointer}
.yuz-gl-lb-btn:hover{border-color:var(--yuz-amber);color:var(--yuz-amber)}
.yuz-gl-lb-counter{font-family:var(--yuz-serif);font-size:18px;color:var(--yuz-ink-soft);letter-spacing:.04em}

/* ============================== WAITER (DC) ===================== */
.yuz-wt-root{position:relative;min-height:100vh;min-height:100svh;display:flex;flex-direction:column;align-items:center;background:radial-gradient(90% 50% at 18% 10%,rgba(224,169,59,.10),transparent 55%),radial-gradient(80% 50% at 90% 24%,rgba(168,100,42,.12),transparent 55%),var(--yuz-bg)}
.yuz-wt-shell{position:relative;z-index:1;width:100%;max-width:480px;padding:0 22px;display:flex;flex-direction:column;min-height:100vh;min-height:100svh}
.yuz-wt-head{display:flex;align-items:center;justify-content:space-between;padding:22px 0 14px}
.yuz-wt-menu-link{display:inline-flex;align-items:center;gap:7px;height:38px;padding:0 14px;border:1px solid var(--yuz-line-strong);border-radius:999px;font-size:12.5px;font-weight:600;color:var(--yuz-ink)}
.yuz-wt-table{display:flex;align-items:center;gap:14px;background:linear-gradient(160deg,var(--yuz-panel-2),var(--yuz-panel));border:1px solid var(--yuz-line);border-radius:14px;padding:18px 20px;margin-top:8px}
.yuz-wt-table .num{width:52px;height:52px;flex-shrink:0;border-radius:12px;background:var(--yuz-amber-soft);border:1px solid rgba(224,169,59,.35);display:grid;place-items:center;font-family:var(--yuz-serif);font-size:26px;font-weight:700;color:var(--yuz-amber)}
.yuz-wt-table .k{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--yuz-muted);font-weight:700}
.yuz-wt-table .v{font-family:var(--yuz-serif);font-size:23px;font-weight:600;color:#fff;line-height:1.1}
.yuz-wt-table .edit{margin-left:auto;font-size:12px;color:var(--yuz-amber);font-weight:700;background:none;border:0;cursor:pointer;border-bottom:1px solid transparent}
.yuz-wt-table .edit:hover{border-bottom-color:var(--yuz-amber)}
.yuz-wt-title{font-family:var(--yuz-serif);font-size:31px;font-weight:600;color:#fff;margin:26px 0 4px;line-height:1.08}
.yuz-wt-sub{font-size:14px;color:var(--yuz-muted);margin-bottom:20px}
.yuz-wt-actions{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.yuz-wt-btn{display:flex;flex-direction:column;align-items:flex-start;gap:14px;text-align:left;min-height:128px;padding:20px 16px;border-radius:14px;cursor:pointer;transition:.16s;background:var(--yuz-panel);border:1px solid var(--yuz-line)}
.yuz-wt-btn:hover{border-color:rgba(224,169,59,.5)}
.yuz-wt-btn .ico{width:46px;height:46px;border-radius:12px;flex-shrink:0;display:grid;place-items:center;background:var(--yuz-amber-soft)}
.yuz-wt-btn .ico svg{width:24px;height:24px;stroke:var(--yuz-amber);fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.yuz-wt-btn .tx{display:flex;flex-direction:column;gap:3px}
.yuz-wt-btn .t{font-family:var(--yuz-serif);font-size:20px;font-weight:600;color:var(--yuz-foam);line-height:1.05}
.yuz-wt-btn .d{font-size:12.5px;color:var(--yuz-muted);line-height:1.4}
/* primary action (вызвать официанта) — full width, amber */
.yuz-wt-btn.primary{grid-column:1 / -1;flex-direction:row;align-items:center;min-height:auto;padding:22px 24px;background:linear-gradient(155deg,var(--yuz-amber),var(--yuz-amber-deep));border-color:#e6b855;box-shadow:0 14px 30px -12px rgba(224,169,59,.55)}
.yuz-wt-btn.primary .ico{background:rgba(26,18,6,.18)}
.yuz-wt-btn.primary .ico svg{stroke:#1a1206}
.yuz-wt-btn.primary .tx{flex:1}
.yuz-wt-btn.primary .t{font-size:21px;color:#1a1206}
.yuz-wt-btn.primary .d{color:rgba(26,18,6,.72)}
.yuz-wt-btn.primary .arrow{width:22px;height:22px;flex-shrink:0;stroke:#1a1206;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.yuz-wt-note{margin-top:18px}
.yuz-wt-note label{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--yuz-muted);font-weight:700;display:block;margin-bottom:8px}
.yuz-wt-note input{width:100%;height:50px;padding:0 16px;background:var(--yuz-panel);border:1px solid var(--yuz-line);border-radius:12px;color:var(--yuz-foam);font-size:15px;font-family:inherit}
.yuz-wt-note input:focus{outline:none;border-color:var(--yuz-amber)}
.yuz-wt-foot{margin-top:auto;padding:26px 0 22px;display:flex;flex-direction:column;align-items:center;gap:16px}
.yuz-wt-divider{display:flex;align-items:center;gap:12px;width:100%;color:var(--yuz-amber);opacity:.8}
.yuz-wt-divider span.line{flex:1;height:1px;background:linear-gradient(90deg,transparent,rgba(224,169,59,.4) 18%,rgba(224,169,59,.4) 82%,transparent)}
.yuz-wt-divider span.rhomb{width:6px;height:6px;border:1px solid var(--yuz-amber);transform:rotate(45deg);flex-shrink:0}
/* confirm overlay */
.yuz-wt-confirm{position:fixed;inset:0;z-index:100;background:rgba(8,9,10,.84);backdrop-filter:blur(9px);display:flex;align-items:center;justify-content:center;padding:24px;animation:yuzFade .25s ease}
.yuz-wt-confirm .card{width:100%;max-width:400px;background:linear-gradient(165deg,var(--yuz-panel-2),var(--yuz-panel));border:1px solid var(--yuz-line-strong);border-radius:22px;padding:38px 30px 30px;text-align:center;box-shadow:0 30px 70px rgba(0,0,0,.55);animation:yuzRise .35s cubic-bezier(.2,.7,.3,1)}
.yuz-wt-confirm .ring{width:88px;height:88px;margin:0 auto 22px;border-radius:50%;display:grid;place-items:center;position:relative;background:var(--yuz-amber-soft)}
.yuz-wt-confirm .ring.done{background:rgba(134,176,107,.16)}
.yuz-wt-confirm .ring .pulse{position:absolute;inset:0;border-radius:50%;border:1.5px solid var(--yuz-amber);animation:yuzRing 2s ease-out infinite}
.yuz-wt-confirm .ring .pulse.delay{animation-delay:1s}
.yuz-wt-confirm .ring svg{width:42px;height:42px;position:relative;z-index:1;stroke:var(--yuz-amber);fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.yuz-wt-confirm .ring.done svg{stroke:#86b06b}
.yuz-wt-confirm h2{font-family:var(--yuz-serif);font-size:29px;font-weight:600;color:#fff;margin-bottom:8px}
.yuz-wt-confirm p{font-size:14.5px;color:var(--yuz-muted);margin-bottom:6px}
.yuz-wt-confirm .when{font-size:12.5px;color:var(--yuz-faint);margin-top:14px;letter-spacing:.04em}
.yuz-wt-confirm .when b{color:var(--yuz-amber)}
.yuz-wt-confirm .ok{margin-top:24px;width:100%;height:54px;border-radius:12px;background:var(--yuz-amber);color:#1a1206;font-size:14px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;border:0;cursor:pointer}
.yuz-wt-confirm .ok:hover{background:var(--yuz-amber-deep)}
.yuz-wt-confirm .cancel{margin-top:12px;font-size:13px;color:var(--yuz-muted);background:none;border:0;cursor:pointer}
.yuz-wt-confirm .cancel:hover{color:#fff}

/* ----- DC адаптив ----- */
@media(max-width:1180px){.yuz-gl-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:760px){
  .yuz-gl-header .inner,.yuz-gl-hero,.yuz-gl-grid-wrap{padding-left:20px;padding-right:20px}
  .yuz-gl-grid{grid-template-columns:repeat(2,1fr)}
  .yuz-gl-card.wide{grid-column:span 2}
  .yuz-gl-card.tall{grid-row:span 1}
}
@media(max-width:430px){
  .yuz-gl-grid{grid-template-columns:1fr}
  .yuz-gl-card.wide{grid-column:span 1}
}


.yuz-page{
  --bg:#0e0f11;
  --bg-primary:#17191d;
  --bg-secondary:#121417;
  --bg-tertiary:#1d2024;
  --surface:#17191d;
  --surface-2:#1d2024;
  --card:#17191d;
  --text-primary:#f1ece0;
  --text-secondary:#cfc8b8;
  --text-tertiary:#928d83;
  --text-muted:#928d83;
  --heading:#ffffff;
  --border:rgba(241,236,224,.12);
  --border-strong:rgba(241,236,224,.20);
  --accent:#e0a93b;
  --accent-2:#c2872a;
  --accent-hover:#eeba51;
  --accent-soft:rgba(224,169,59,.13);
  --accent-glow:rgba(224,169,59,.28);
  --primary:#e0a93b;
  --shadow-sm:0 2px 10px rgba(0,0,0,.4);
  --shadow-md:0 14px 36px rgba(0,0,0,.5);
  --shadow-lg:0 24px 60px rgba(0,0,0,.6);
}

/* --- RESTAURANT floating-panel: механика sticky (JS-fallback из шаблона) --- */
.yuz-page .mn-floating-placeholder{display:none}
.yuz-page .mn-floating-placeholder.is-active{display:block;height:var(--yuz-mn-placeholder-height,0)}
.yuz-page .mn-floating-panel.yuz-mn-fixed{
  position:fixed;z-index:60;
  top:var(--yuz-mn-fixed-top,90px);
  left:var(--yuz-mn-fixed-left,0);
  width:var(--yuz-mn-fixed-width,100%);
  background:rgba(14,15,17,.92);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--yuz-line);
  padding:10px 0;border-radius:0;
}


.yuz-page .gl-page{background:transparent;border:0;padding-left:0;padding-right:0;max-width:100%;margin:0 0 10px}
.yuz-page .yuz-gallery-shell .gl-page > .gl-header--list{display:none}
.yuz-page .gl-header--album{margin-bottom:clamp(26px,5vw,42px)}
.yuz-page .gl-header--album .gl-titlebar{font-family:var(--yuz-serif);font-weight:600;letter-spacing:-.01em;color:#fff}
.yuz-page .gl-back{background:transparent;border:1px solid var(--yuz-line-strong);color:var(--yuz-ink);border-radius:var(--yuz-r);font-weight:700;font-size:11.5px;letter-spacing:.13em;text-transform:uppercase;min-height:46px;padding:0 20px}
.yuz-page .gl-back:hover{border-color:var(--yuz-amber);color:var(--yuz-amber);box-shadow:none}
.yuz-page .gl-album-grid{grid-template-columns:repeat(auto-fill,minmax(min(300px,100%),1fr));gap:14px}
.yuz-page .gl-album-link{height:100%}
.yuz-page .gl-album-card{position:relative;display:block;height:300px;border:1px solid var(--yuz-line);border-radius:var(--yuz-r);background:var(--yuz-panel);overflow:hidden;isolation:isolate}
.yuz-page .gl-album-card:hover{transform:none;border-color:rgba(224,169,59,.5);box-shadow:var(--yuz-shadow)}
.yuz-page .gl-album-cover{position:absolute;inset:0;height:auto;background-color:var(--yuz-panel-2)}
.yuz-page .gl-album-cover:after{background:linear-gradient(180deg,rgba(10,11,12,0) 38%,rgba(10,11,12,.82))}
.yuz-page .gl-album-card:hover .gl-album-cover img{transform:scale(1.05);transition:transform .5s ease}
.yuz-page .gl-album-body{position:absolute;left:0;right:0;bottom:0;z-index:3;flex:none;padding:16px 18px;background:linear-gradient(0deg,rgba(10,11,12,.55),transparent)}
.yuz-page .gl-album-title{font-family:var(--yuz-serif);font-weight:600;font-size:20px;color:var(--yuz-foam);margin:0 0 8px;line-height:1.08}
.yuz-page .gl-album-meta{gap:7px}
.yuz-page .gl-type-badge,
.yuz-page .gl-tag{background:rgba(14,15,17,.55);border:1px solid var(--yuz-line-strong);color:var(--yuz-ink-soft);font-weight:700;font-size:.74rem;letter-spacing:.04em;backdrop-filter:blur(6px)}
.yuz-page .gl-type-badge{color:var(--yuz-amber)}
.yuz-page .gl-photos{gap:14px}
.yuz-page .gl-photo{border:1px solid var(--yuz-line);border-radius:var(--yuz-r);background-color:var(--yuz-panel-2)}
.yuz-page .gl-photo:hover{transform:none;border-color:rgba(224,169,59,.5);box-shadow:var(--yuz-shadow)}
.yuz-page .gl-description{color:var(--yuz-ink-soft)}
.yuz-page .gl-tags{gap:8px;margin-bottom:24px}
.yuz-page .gl-share{background:var(--yuz-panel);border:1px solid var(--yuz-line);border-radius:var(--yuz-r)}
.yuz-page .gl-share-text{color:var(--yuz-muted)}
.yuz-page .gl-empty{background:var(--yuz-panel);border:1px solid var(--yuz-line);border-radius:var(--yuz-r)}
.yuz-page .gl-empty-btn{color:#1a1206}
.yuz-gallery-hero{padding:clamp(40px,6vw,80px) 0 clamp(28px,4vw,44px)}
.yuz-gallery-hero .row{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;flex-wrap:wrap}
.yuz-gallery-hero h1{font-family:var(--yuz-serif);font-weight:600;line-height:.98;letter-spacing:-.01em;font-size:clamp(38px,5vw,72px);color:#fff;margin-top:18px;max-width:16ch}
.yuz-gallery-hero p{font-size:18px;color:var(--yuz-ink-soft);line-height:1.6;margin-top:20px;max-width:54ch}
@media(max-width:760px){
  .yuz-page .gl-album-grid{grid-template-columns:1fr}
  .yuz-page .gl-album-card{height:240px}
}


.yuz-page .mn-floating-panel{background:var(--yuz-bg);border-color:var(--yuz-line);border-radius:var(--yuz-r);--bg:var(--yuz-bg)}
.yuz-page .mn-floating-panel.yuz-mn-fixed{box-sizing:border-box;max-width:100vw}
.yuz-page .mn-floating-panel .mn-catbar-inner{max-width:none}
.yuz-page .mn-floating-panel .mn-catbar-inner::before,
.yuz-page .mn-floating-panel .mn-catbar-inner::after{display:none}
.yuz-page .mn-floating-panel .mn-catbar-scroll{gap:8px}
.yuz-page .mn-floating-panel .mn-cat-btn{flex:0 0 auto}
@media(max-width:820px){
  .yuz-page .mn-floating-panel.yuz-mn-fixed{left:0!important;right:0!important;width:100%!important;padding:8px 14px;border-radius:0}
  .yuz-page .mn-floating-panel{margin-left:0;margin-right:0}
  .yuz-page .mn-floating-panel .mn-catbar{margin:0 0 8px}
  .yuz-page .mn-floating-panel .mn-catbar-scroll{padding:4px 0}
  .yuz-page .mn-floating-panel .mn-search{margin:0}
  .yuz-page .mn-floating-panel .mn-search-input{width:100%}
}
.yuz-page .mn-floating-panel.shadow{background:rgba(14,15,17,.92);backdrop-filter:blur(14px);border-color:rgba(224,169,59,.35);box-shadow:0 12px 30px rgba(0,0,0,.5)}
.yuz-page .mn-cat-btn,
.yuz-page .mn-fbtn{border-radius:999px}
.yuz-page .mn-cat-btn.active,
.yuz-page .mn-fbtn.active{background:var(--yuz-amber);border-color:var(--yuz-amber);color:#1a1206}
.yuz-page .mn-card{border-radius:var(--yuz-r)}
.yuz-page .mn-card:hover{border-color:rgba(224,169,59,.45);box-shadow:var(--yuz-shadow)}
.yuz-page .mn-card-name{font-family:var(--yuz-sans);font-weight:700;text-transform:uppercase;letter-spacing:.03em;font-size:.92rem;line-height:1.28;font-feature-settings:"tnum" 1,"lnum" 1}
.yuz-page .mn-card-name a{font-variant-numeric:tabular-nums lining-nums}
.yuz-page .mn-price,.yuz-page .mn-card-price,.yuz-page .mn-weight,.yuz-page .mn-card-weight{font-variant-numeric:tabular-nums lining-nums;font-feature-settings:"tnum" 1,"lnum" 1}
.yuz-page .mn-card-noimg{background:var(--yuz-panel-2);color:var(--yuz-amber)}
.yuz-page .mn-price{color:var(--yuz-amber)}
.yuz-page .mn-order-btn,
.yuz-page .mn-order-btn:link,
.yuz-page .mn-order-btn:visited,
.yuz-page .mn-order-btn:hover,
.yuz-page .mn-order-btn:active,
.yuz-page .mn-cart-fab,
.yuz-page .mn-cart-fab:hover{background:var(--yuz-amber);color:#1a1206;border-radius:999px}
.yuz-page .mn-order-btn:hover{background:var(--yuz-amber-deep)}
.yuz-page .mn-cart-fab .cnt{background:rgba(26,18,6,.22);color:#1a1206}
.yuz-page .mn-cart-panel,
.yuz-page .di-card{border-radius:var(--yuz-r)}
.yuz-page .mn-btt{color:var(--yuz-amber)}
.yuz-page .mn-cart-send{background:var(--yuz-amber);border-color:var(--yuz-amber);color:#1a1206}


.yuz-page .gl-album-cover.yuz-noimg,
.yuz-page .gl-photo.yuz-noimg{
  background:
    radial-gradient(120% 120% at 78% 12%,rgba(224,169,59,.16),transparent 60%),
    radial-gradient(120% 120% at 16% 92%,rgba(168,100,42,.18),transparent 62%),
    repeating-linear-gradient(135deg,rgba(255,255,255,.022) 0 1px,transparent 1px 24px),
    var(--yuz-panel-2);
}
.yuz-page .gl-album-cover.yuz-noimg::before,
.yuz-page .gl-photo.yuz-noimg::before{
  content:"";position:absolute;inset:0;z-index:1;
  background-repeat:no-repeat;background-position:center;background-size:54px 54px;opacity:.55;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23e0a93b' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='16' width='44' height='32' rx='4'/%3E%3Ccircle cx='24' cy='28' r='4'/%3E%3Cpath d='M12 46l14-12 9 8 7-6 12 9'/%3E%3C/svg%3E");
}
.yuz-page .gl-photo.yuz-noimg{cursor:default}

/* пустой альбом (0 фото) — модуль отдаёт .gl-empty с одним заголовком: добавляем иконку */
.yuz-page .gl-empty::before{
  content:"";display:block;width:64px;height:64px;margin:0 auto 18px;border-radius:50%;
  background:var(--yuz-amber-soft);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23e0a93b' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='16' y='20' width='32' height='24' rx='3'/%3E%3Ccircle cx='27' cy='30' r='3'/%3E%3Cpath d='M18 42l9-8 6 5 5-4 8 7'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;background-size:32px 32px;
}
.yuz-page .gl-empty-title{font-family:var(--yuz-serif);font-weight:600;color:#fff}


.yuz-page .di-wrap{max-width:980px}
.yuz-page .di-back{color:var(--yuz-muted);font-weight:700;font-size:11.5px;letter-spacing:.13em;text-transform:uppercase}
.yuz-page .di-back:hover{color:var(--yuz-amber)}
.yuz-page .di-card{background:var(--yuz-panel);border:1px solid var(--yuz-line);border-radius:var(--yuz-r);box-shadow:var(--yuz-shadow)}
.yuz-page .di-img{background:var(--yuz-panel-2)}
.yuz-page .di-img-placeholder{--di-ph-accent:var(--yuz-amber);--di-ph-soft:var(--yuz-amber-soft)}
.yuz-page .di-ph-icon{background:var(--yuz-panel);border-color:var(--yuz-line);color:var(--yuz-amber)}
.yuz-page .di-ph-title{color:var(--yuz-ink)}
.yuz-page .di-body{padding:clamp(26px,4vw,40px)}
.yuz-page .di-name{font-family:var(--yuz-serif);font-weight:600;letter-spacing:-.01em;color:#fff;font-size:clamp(1.8rem,4vw,2.6rem)}
.yuz-page .di-price{font-family:var(--yuz-serif);font-weight:600;color:var(--yuz-amber);font-size:1.7rem}
.yuz-page .di-w{color:var(--yuz-muted)}
.yuz-page .di-desc{color:var(--yuz-ink-soft);line-height:1.8}
.yuz-page .di-section-title{font-family:var(--yuz-serif);font-weight:600;color:#fff;font-size:1.2rem}
.yuz-page .di-section-title::after{background:var(--yuz-line)}
.yuz-page .di-ing-chip{background:var(--yuz-panel-2);border:1px solid var(--yuz-line);color:var(--yuz-ink-soft);border-radius:999px}
.yuz-page .di-mods{border-top:1px solid var(--yuz-line)}
.yuz-page .di-mod-group{color:#fff}
.yuz-page .di-mod-item{background:var(--yuz-panel-2);border:1px solid var(--yuz-line);border-radius:var(--yuz-r)}
.yuz-page .di-mod-item:hover,
.yuz-page .di-mod-item.selected{border-color:var(--yuz-amber);background:var(--yuz-amber-soft)}
.yuz-page .di-mod-item .mprice{color:var(--yuz-amber)}


@media(min-width:861px){
  .yuz-page .di-card{display:grid;grid-template-columns:1.05fr .95fr;align-items:stretch;gap:0}
  .yuz-page .di-img{height:100%;aspect-ratio:auto;min-height:400px;max-height:none}
  .yuz-page .di-body{padding:clamp(30px,3vw,46px);align-self:center}
  .yuz-page .di-name{margin-top:0}
}

@media(min-width:861px){
  .yuz-page .di-card{align-items:stretch}
  .yuz-page .di-img{height:auto;min-height:460px;max-height:none;aspect-ratio:auto}
  .yuz-page .di-img.di-img-real img{object-fit:cover}
  .yuz-page .di-img.di-img-real::before{display:none}
  .yuz-page .di-img.di-img-real::after{background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.28))}
}
/* блок доп-фото и нижний бар «назад + поделиться» — в тему бренда */
.yuz-page .di-wrap > div[style*="repeat(auto-fill"]{margin-top:8px !important}


@media(min-width:861px){
  .yuz-page .di-card{align-items:start}
  .yuz-page .di-img{aspect-ratio:4/3;height:auto;min-height:0;max-height:none}
  .yuz-page .di-img.di-img-real img{object-fit:contain}
  .yuz-page .di-img.di-img-real::before{display:block}
  .yuz-page .di-body{align-self:start}
}


.yuz-page .mn-order-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-weight:700;letter-spacing:.02em}
.yuz-page .mn-order-btn .yuz-ic{width:17px;height:17px;flex:none}
.yuz-page #mnDetailBtn{width:100%;min-height:54px;font-size:.95rem !important;letter-spacing:.04em;text-transform:uppercase}
.yuz-page .di-body .di-mods + div,
.yuz-page .di-body > div:last-child{border-top-color:var(--yuz-line) !important}
/* мета: вес/время/калории */
.yuz-page .di-w{gap:7px;color:var(--yuz-muted);align-items:center}
.yuz-page .di-w .yuz-mi{width:16px;height:16px;flex:none;stroke:var(--yuz-amber)}
.yuz-page .di-meta{gap:14px 20px;align-items:center}
/* заголовок «Варианты» (инлайн h3 модуля) — сериф */
.yuz-page .di-mods h3{font-family:var(--yuz-serif) !important;font-weight:600 !important;font-size:1.2rem !important;color:#fff;display:flex;align-items:center;gap:10px}
.yuz-page .di-mods h3::before{content:"";height:1px;width:22px;background:var(--yuz-amber);flex:none}
/* корзина-FAB и её иконка */
.yuz-page .mn-cart-fab{color:#1a1206}
.yuz-page .mn-cart-fab .icon .yuz-ic{width:18px;height:18px}
.yuz-page .mn-cart-head .yuz-ic{width:18px;height:18px;vertical-align:-3px;margin-right:6px}


.yuz-dishpage{--green:#5fae5a}
.yuz-dishpage .crumb{display:flex;align-items:center;gap:11px;font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--yuz-muted);padding:6px 0 22px;flex-wrap:wrap}
.yuz-dishpage .crumb a:hover{color:var(--yuz-amber)}
.yuz-dishpage .crumb .sep{color:var(--yuz-faint)}
.yuz-dishpage .crumb .here{color:var(--yuz-ink-soft)}

.yuz-dishpage .dhero{display:grid;grid-template-columns:1.06fr .94fr;gap:54px;align-items:start}
.yuz-dishpage .dgal{display:flex;flex-direction:column;gap:14px;position:sticky;top:100px}
.yuz-dishpage .gmain{position:relative;width:100%;aspect-ratio:4/3;border:1px solid var(--yuz-line);border-radius:var(--yuz-r);overflow:hidden;background:var(--yuz-panel-2)}
.yuz-dishpage .gmain img{width:100%;height:100%;object-fit:cover;display:block}
.yuz-dishpage .gph{position:absolute;inset:0;background:radial-gradient(120% 120% at 78% 12%,rgba(224,169,59,.16),transparent 60%),repeating-linear-gradient(135deg,rgba(255,255,255,.022) 0 1px,transparent 1px 24px)}
.yuz-dishpage .gbadge{position:absolute;top:16px;left:16px;z-index:5;display:inline-flex;align-items:center;gap:7px;font-size:10px;letter-spacing:.2em;text-transform:uppercase;font-weight:700;color:#1a1206;background:var(--yuz-amber);padding:8px 14px;border-radius:999px;box-shadow:0 10px 26px -12px rgba(224,169,59,.8)}
.yuz-dishpage .gbadge svg{width:14px;height:14px}
.yuz-dishpage .gthumbs{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.yuz-dishpage .gthumb{position:relative;aspect-ratio:1/1;border:1px solid var(--yuz-line);border-radius:var(--yuz-r);overflow:hidden;background:var(--yuz-panel-2)}
.yuz-dishpage .gthumb img{width:100%;height:100%;object-fit:cover;display:block}

.yuz-dishpage .dinfo{min-width:0}
.yuz-dishpage .dtags{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:20px}
.yuz-dishpage .dtag{display:inline-flex;align-items:center;gap:7px;font-size:12px;font-weight:700;letter-spacing:.02em;color:var(--yuz-ink-soft);padding:7px 13px;border:1px solid var(--yuz-line-strong);border-radius:999px}
.yuz-dishpage .dtag svg{width:14px;height:14px;stroke:var(--green);fill:none;stroke-width:1.6}
.yuz-dishpage .dtag.hot svg{stroke:var(--yuz-amber)}
.yuz-dishpage .dcat{font-size:11px;letter-spacing:.24em;text-transform:uppercase;color:var(--yuz-amber);font-weight:700;margin-bottom:12px;display:block}
.yuz-dishpage .dinfo h1{color:#fff;font-family:var(--yuz-serif);font-weight:600;font-size:clamp(36px,5vw,62px);line-height:1;letter-spacing:-.01em}
.yuz-dishpage .dsub{font-family:var(--yuz-serif);font-style:italic;color:var(--yuz-amber);font-size:clamp(19px,2.3vw,26px);margin-top:10px;font-weight:500;line-height:1.3}
.yuz-dishpage .dish-desc{color:var(--yuz-ink-soft);font-size:16.5px;line-height:1.66;margin-top:18px;max-width:54ch;white-space:pre-line}

.yuz-dishpage .qstats{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--yuz-line);border-radius:var(--yuz-r);overflow:hidden;margin:28px 0}
.yuz-dishpage .qstat{padding:18px 14px;text-align:center;border-right:1px solid var(--yuz-line)}
.yuz-dishpage .qstat:last-child{border-right:0}
.yuz-dishpage .qv{font-family:var(--yuz-serif);font-size:30px;font-weight:600;color:var(--yuz-ink);line-height:1}
.yuz-dishpage .qv small{font-size:15px;color:var(--yuz-muted);font-weight:500}
.yuz-dishpage .ql{font-size:9.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--yuz-faint);font-weight:700;margin-top:7px}

.yuz-dishpage .dorder{background:var(--yuz-panel);border:1px solid var(--yuz-line-strong);border-radius:var(--yuz-r);padding:26px 28px;box-shadow:var(--yuz-shadow)}
.yuz-dishpage .dorder-top{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;flex-wrap:wrap}
.yuz-dishpage .dprice{display:flex;flex-direction:column;gap:4px}
.yuz-dishpage .dprice .pv{font-family:var(--yuz-serif);font-size:44px;font-weight:600;color:var(--yuz-amber);line-height:.9}
.yuz-dishpage .dprice .pl{font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--yuz-muted);font-weight:700}
.yuz-dishpage .dorder-actions{display:flex;gap:12px;margin-top:22px;flex-wrap:wrap}
.yuz-dishpage .dqty{display:flex;align-items:center;border:1px solid var(--yuz-line-strong);border-radius:var(--yuz-r);overflow:hidden;height:54px;flex:none}
.yuz-dishpage .dqty button{width:46px;height:100%;display:grid;place-items:center;color:var(--yuz-ink-soft);font-size:22px;line-height:1;background:none;border:0;cursor:pointer;transition:background .15s,color .15s}
.yuz-dishpage .dqty button:hover{background:var(--yuz-panel-2);color:var(--yuz-amber)}
.yuz-dishpage .dqty .dq-num{width:44px;text-align:center;font-family:var(--yuz-serif);font-size:24px;font-weight:600;color:#fff}
.yuz-dishpage .dq-add{cursor:pointer}
.yuz-dishpage .dtoast{position:fixed;left:50%;bottom:32px;transform:translateX(-50%) translateY(160%);z-index:120;display:flex;align-items:center;gap:14px;background:var(--yuz-panel);border:1px solid var(--yuz-line-strong);border-left:3px solid var(--yuz-amber);border-radius:var(--yuz-r);padding:16px 22px;box-shadow:var(--yuz-shadow);transition:transform .42s cubic-bezier(.2,.9,.3,1);max-width:calc(100vw - 32px);pointer-events:none}
.yuz-dishpage .dtoast.show{transform:translateX(-50%) translateY(0)}
.yuz-dishpage .dtoast svg{width:22px;height:22px;stroke:var(--yuz-amber);fill:none;flex:none}
.yuz-dishpage .dtoast .tt{font-size:14px;color:#fff;font-weight:600}
.yuz-dishpage .dtoast .td{font-size:12.5px;color:var(--yuz-muted);margin-top:2px}
.yuz-dishpage .dorder-actions .yuz-btn-amber{flex:1;min-width:200px}
.yuz-dishpage .dorder-note{display:flex;align-items:center;gap:10px;margin-top:18px;padding-top:16px;border-top:1px solid var(--yuz-line);font-size:12.5px;color:var(--yuz-muted)}
.yuz-dishpage .dorder-note svg{width:17px;height:17px;stroke:var(--yuz-amber);fill:none;stroke-width:1.6;flex:none}

.yuz-dishpage .ddetails{margin-top:clamp(48px,6vw,80px);padding-top:clamp(40px,5vw,64px);border-top:1px solid var(--yuz-line)}
.yuz-dishpage .ddet-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:24px;align-items:start}
.yuz-dishpage .dcol{display:flex;flex-direction:column;gap:24px}
.yuz-dishpage .dcard{background:var(--yuz-panel);border:1px solid var(--yuz-line);border-radius:var(--yuz-r);padding:32px 34px}
.yuz-dishpage .dc-head{display:flex;align-items:center;gap:13px;margin-bottom:22px}
.yuz-dishpage .dc-ic{width:42px;height:42px;border-radius:var(--yuz-r);background:var(--yuz-amber-soft);border:1px solid rgba(224,169,59,.28);display:grid;place-items:center;flex:none}
.yuz-dishpage .dc-ic svg{width:21px;height:21px;stroke:var(--yuz-amber);fill:none;stroke-width:1.5}
.yuz-dishpage .dcard h2{font-family:var(--yuz-serif);font-weight:600;font-size:24px;color:#fff;line-height:1.1}
.yuz-dishpage .dc-sub{font-size:12px;letter-spacing:.04em;color:var(--yuz-muted);margin-top:3px}

.yuz-dishpage .ing-list{display:flex;flex-direction:column}
.yuz-dishpage .ing{display:flex;align-items:baseline;justify-content:space-between;gap:14px;padding:13px 0;border-bottom:1px dashed var(--yuz-line)}
.yuz-dishpage .ing:last-child{border-bottom:0}
.yuz-dishpage .ing .in{font-size:15.5px;color:var(--yuz-ink)}

.yuz-dishpage .dmod-group{font-family:var(--yuz-serif);font-weight:600;font-size:16px;color:#fff;margin:16px 0 10px}
.yuz-dishpage .dmod{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;background:var(--yuz-panel-2);border:1px solid var(--yuz-line);border-radius:var(--yuz-r);margin-bottom:8px}
.yuz-dishpage .dmod .mn{font-size:14.5px;color:var(--yuz-ink-soft)}
.yuz-dishpage .dmod .mp{font-size:14px;font-weight:700;color:var(--yuz-amber);white-space:nowrap}

.yuz-dishpage .kb-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.yuz-dishpage .kb{border:1px solid var(--yuz-line);border-radius:var(--yuz-r);padding:20px 18px;background:var(--yuz-bg-2)}
.yuz-dishpage .kb.cal{grid-column:1 / -1;display:flex;align-items:baseline;justify-content:space-between;gap:12px;border-left:2px solid var(--yuz-amber)}
.yuz-dishpage .kb .kv{font-family:var(--yuz-serif);font-size:34px;font-weight:600;color:#fff;line-height:1}
.yuz-dishpage .kb.cal .kv{font-size:44px;color:var(--yuz-amber)}
.yuz-dishpage .kb .ku{font-size:13px;color:var(--yuz-muted);font-weight:500;margin-left:3px}
.yuz-dishpage .kb .kl{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--yuz-faint);font-weight:700;margin-top:8px}
.yuz-dishpage .kb.cal .kl{margin-top:0;align-self:center}

.yuz-dishpage .alr-t{font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;font-weight:700;margin-bottom:12px;display:flex;align-items:center;gap:9px;color:var(--yuz-amber)}
.yuz-dishpage .alr-t svg{width:15px;height:15px;fill:none;stroke:var(--yuz-amber);stroke-width:1.8}
.yuz-dishpage .alr-chips{display:flex;flex-wrap:wrap;gap:9px}
.yuz-dishpage .achip{font-size:13px;color:var(--yuz-ink-soft);padding:8px 14px;border:1px solid var(--yuz-line);border-radius:999px;background:var(--yuz-bg-2)}
.yuz-dishpage .alr-note{margin-top:20px;padding-top:18px;border-top:1px solid var(--yuz-line);font-size:12.5px;color:var(--yuz-faint);line-height:1.55}

.yuz-dishpage .dback{margin-top:clamp(36px,5vw,56px);display:flex;justify-content:center}
.yuz-dishpage .dmeta{margin-top:26px;border-top:1px solid var(--yuz-line);display:flex;flex-direction:column}
.yuz-dishpage .dmeta-sec{padding:20px 0;border-bottom:1px solid var(--yuz-line)}
.yuz-dishpage .dmeta-sec:last-child{border-bottom:0}
.yuz-dishpage .dmeta-h{display:flex;align-items:center;gap:9px;font-size:11px;letter-spacing:.16em;text-transform:uppercase;font-weight:700;color:var(--yuz-amber);margin-bottom:13px}
.yuz-dishpage .dmeta-h svg{width:15px;height:15px;stroke:var(--yuz-amber);fill:none;stroke-width:1.6;flex:none}
.yuz-dishpage .dmeta-sub{color:var(--yuz-muted);letter-spacing:.04em;font-weight:600;text-transform:none}
.yuz-dishpage .dmeta-chips{display:flex;flex-wrap:wrap;gap:8px}
.yuz-dishpage .dchip{font-size:13.5px;color:var(--yuz-ink-soft);padding:7px 13px;border:1px solid var(--yuz-line);border-radius:999px;background:var(--yuz-bg-2)}
.yuz-dishpage .dchip.warn{border-color:rgba(224,169,59,.32);color:#e6c079}
.yuz-dishpage .dmeta-mods{display:flex;flex-direction:column;gap:8px}
.yuz-dishpage .dmod-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:11px 14px;background:var(--yuz-bg-2);border:1px solid var(--yuz-line);border-radius:var(--yuz-r)}
.yuz-dishpage .dmod-row .mn{font-size:14.5px;color:var(--yuz-ink-soft)}
.yuz-dishpage .dmod-row .mp{font-size:14px;font-weight:700;color:var(--yuz-amber);white-space:nowrap}
.yuz-dishpage .dmeta-kb{display:flex;gap:14px}
.yuz-dishpage .dmeta-kb .kbv{font-family:var(--yuz-serif);font-size:30px;font-weight:600;color:#fff;line-height:1}
.yuz-dishpage .dmeta-kb .kbv small{font-size:14px;color:var(--yuz-muted);font-weight:500;font-family:var(--yuz-sans)}
.yuz-dishpage .dmeta-note{margin-top:12px;font-size:12.5px;color:var(--yuz-faint);line-height:1.5}
.yuz-dishpage .ding{margin-top:22px}
.yuz-dishpage .ding-h{display:flex;align-items:center;gap:9px;font-size:11px;letter-spacing:.16em;text-transform:uppercase;font-weight:700;color:var(--yuz-amber);margin-bottom:12px}
.yuz-dishpage .ding-h svg{width:15px;height:15px;stroke:var(--yuz-amber);fill:none;stroke-width:1.6;flex:none}
.yuz-dishpage .ding-chips{display:flex;flex-wrap:wrap;gap:8px}
.yuz-dishpage .dvar{margin-top:20px;padding-top:20px;border-top:1px solid var(--yuz-line);display:flex;flex-direction:column;gap:16px}
.yuz-dishpage .dvar-h{font-size:11px;letter-spacing:.16em;text-transform:uppercase;font-weight:700;color:var(--yuz-muted);margin-bottom:10px}
.yuz-dishpage .dvar-opts{display:flex;flex-wrap:wrap;gap:8px}
.yuz-dishpage .dvar-opt{display:inline-flex;align-items:center;gap:8px;padding:9px 15px;border:1px solid var(--yuz-line-strong);border-radius:999px;background:var(--yuz-bg-2);color:var(--yuz-ink-soft);font-size:13.5px;cursor:pointer;transition:border-color .15s,background .15s,color .15s}
.yuz-dishpage .dvar-opt:hover{border-color:var(--yuz-amber);color:#fff}
.yuz-dishpage .dvar-opt .vp{font-weight:700;color:var(--yuz-amber);font-size:12.5px}
.yuz-dishpage .dvar-opt.on{background:var(--yuz-amber);border-color:var(--yuz-amber);color:#1a1206}
.yuz-dishpage .dvar-opt.on .vp{color:#1a1206}.yuz-dishpage .dback .yuz-btn svg{width:15px;height:15px}

@media(max-width:900px){
  .yuz-dishpage .dhero{grid-template-columns:1fr;gap:32px}
  .yuz-dishpage .dgal{position:static}
  .yuz-dishpage .ddet-grid{grid-template-columns:1fr}
  .yuz-dishpage .dprice .pv{font-size:38px}
}
@media(max-width:560px){
  .yuz-dishpage .qstats{grid-template-columns:1fr}
  .yuz-dishpage .qstat{border-right:0;border-bottom:1px solid var(--yuz-line)}
  .yuz-dishpage .qstat:last-child{border-bottom:0}
  .yuz-dishpage .kb-grid{grid-template-columns:1fr}
}


.yuz-page .wt-wrap{max-width:520px !important;background:transparent !important;border:0 !important;padding:0 !important;margin:0 auto !important}
.yuz-page .wt-header{text-align:center;margin-bottom:24px}
.yuz-page .wt-header .rm-header-label{color:var(--yuz-amber);letter-spacing:.14em}
.yuz-page .wt-subtitle{font-family:var(--yuz-serif);font-weight:600;font-size:clamp(27px,7vw,34px);color:#fff;margin-top:8px;line-height:1.1}

.yuz-page .wt-buttons{display:grid;grid-template-columns:1fr 1fr;gap:12px;max-width:520px;margin:0 auto;justify-content:stretch}
.yuz-page .wt-btn-link{text-decoration:none;display:block}
.yuz-page .wt-btn-card{background:var(--yuz-panel);border:1px solid var(--yuz-line);border-radius:14px;padding:20px 16px;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;text-align:left;gap:13px;height:100%;transition:border-color .16s,box-shadow .16s}
.yuz-page .wt-btn-link:hover .wt-btn-card{border-color:rgba(224,169,59,.5);transform:none;box-shadow:var(--yuz-shadow);background:var(--yuz-panel)}
.yuz-page .wt-btn-icon{width:46px;height:46px;border-radius:12px;background:var(--yuz-amber-soft);display:grid;place-items:center;color:var(--yuz-amber);flex:none;margin:0}
.yuz-page .wt-btn-icon svg,.yuz-page .wt-btn-svg{width:24px;height:24px;stroke:var(--yuz-amber);fill:none}
.yuz-page .wt-btn-title{font-family:var(--yuz-serif);font-weight:600;font-size:19px;color:var(--yuz-foam);margin:0;line-height:1.05}
.yuz-page .wt-btn-desc{font-size:12.5px;color:var(--yuz-muted);line-height:1.4;margin:0}

/* первая кнопка — главный CTA на всю ширину, янтарный */
.yuz-page .wt-buttons > .wt-btn-link:first-child{grid-column:1 / -1}
.yuz-page .wt-buttons > .wt-btn-link:first-child .wt-btn-card{flex-direction:row;align-items:center;padding:22px 24px;background:linear-gradient(155deg,var(--yuz-amber),var(--yuz-amber-deep));border-color:#e6b855;box-shadow:0 14px 30px -12px rgba(224,169,59,.55)}
.yuz-page .wt-buttons > .wt-btn-link:first-child .wt-btn-icon{background:rgba(26,18,6,.18)}
.yuz-page .wt-buttons > .wt-btn-link:first-child .wt-btn-icon svg,
.yuz-page .wt-buttons > .wt-btn-link:first-child .wt-btn-svg{stroke:#1a1206}
.yuz-page .wt-buttons > .wt-btn-link:first-child .wt-btn-title{color:#1a1206;font-size:21px}
.yuz-page .wt-buttons > .wt-btn-link:first-child .wt-btn-desc{color:rgba(26,18,6,.72)}

/* заметка */
.yuz-page #wtTextInput{border-radius:12px !important;background:var(--yuz-panel) !important;border-color:var(--yuz-line) !important;color:var(--yuz-foam) !important}
.yuz-page #wtTextInput:focus{outline:none;border-color:var(--yuz-amber) !important}

/* уведомление/состояния */
.yuz-page .wt-public-notice{background:linear-gradient(135deg,var(--yuz-amber-soft),var(--yuz-panel));border-color:rgba(224,169,59,.4);border-radius:14px}
.yuz-page .wt-state{background:var(--yuz-panel);border-color:var(--yuz-line);border-radius:16px}
.yuz-page .wt-state-btn{background:var(--yuz-amber);color:#1a1206}

/* модалка оплаты */
.yuz-page .wt-payment-card{background:var(--yuz-panel) !important;border-color:var(--yuz-line-strong) !important;border-radius:20px !important}
.yuz-page .wt-payment-title{font-family:var(--yuz-serif);font-weight:600;color:#fff}
.yuz-page .wt-payment-option{background:var(--yuz-panel-2);border-color:var(--yuz-line);border-radius:12px;color:var(--yuz-ink-soft)}
.yuz-page .wt-payment-option:has(input:checked){border-color:var(--yuz-amber);background:var(--yuz-amber-soft)}
.yuz-page .wt-payment-option input{accent-color:var(--yuz-amber)}
.yuz-page .wt-payment-send{background:var(--yuz-amber);color:#1a1206}
.yuz-page .wt-payment-cancel{background:var(--yuz-panel-2);border-color:var(--yuz-line);color:var(--yuz-ink-soft)}

/* «принято» */
.yuz-page .wt-ok-card{background:var(--yuz-panel) !important;border:1px solid var(--yuz-line-strong) !important;border-radius:22px !important}
.yuz-page .wt-ok-title{font-family:var(--yuz-serif);font-weight:600;color:#fff}
.yuz-page .wt-ok-btn{background:var(--yuz-amber);color:#1a1206}

/* wifi */
.yuz-page .wt-wifi-modal .wt-payment-card,
.yuz-page .wt-wifi-row{background:var(--yuz-panel-2);border-color:var(--yuz-line)}
.yuz-page .wt-wifi-copy,.yuz-page .wt-copy{color:var(--yuz-amber)}


body.is-waiter{background:
  radial-gradient(90% 50% at 18% 0%,rgba(224,169,59,.08),transparent 55%),
  radial-gradient(80% 50% at 92% 12%,rgba(168,100,42,.10),transparent 55%),
  var(--yuz-bg)}
/* гостю за столиком навигация сайта не нужна: остаются бренд и телефон */
body.is-waiter .yuz-nav,
body.is-waiter .yuz-header-cta .yuz-btn,
body.is-waiter .yuz-burger{display:none}
body.is-waiter .yuz-header{background:rgba(14,15,17,.82);backdrop-filter:blur(16px);border-bottom-color:var(--yuz-line)}
body.is-waiter main.yuz-block{padding-top:104px !important;padding-bottom:44px;min-height:calc(100vh - 148px)}

/* табличка столика (rm-header-label модуля) — пилюля с номером */
.yuz-page .wt-header{margin-bottom:22px}
.yuz-page .wt-header .rm-header{margin-bottom:0}
.yuz-page .wt-header .rm-header-label{
  gap:10px;font-size:12px;padding:10px 20px;margin-bottom:14px;
  border:1px solid rgba(224,169,59,.35);border-radius:999px;background:var(--yuz-amber-soft);color:var(--yuz-amber)}
.yuz-page .wt-header .rm-header-label::before,
.yuz-page .wt-header .rm-header-label::after{width:14px;background:var(--yuz-amber);opacity:.6}

/* декоративный разделитель под блоком действий (line + отступ) */
.yuz-page .wt-wrap::after{content:"";display:block;max-width:520px;margin:8px auto 0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(224,169,59,.4) 18%,rgba(224,169,59,.4) 82%,transparent)}

/* пустое состояние «нет опций» */
.yuz-page .wt-empty-options{background:var(--yuz-panel);border:1px dashed var(--yuz-line-strong);border-radius:14px;color:var(--yuz-muted)}
.yuz-page .wt-empty-options .wt-empty-tx{color:var(--yuz-muted)}

/* уведомление 📣 — иконка в фирменном стиле */
.yuz-page .wt-public-notice-ic{background:var(--yuz-amber-soft);border-color:rgba(224,169,59,.3)}
.yuz-page .wt-public-notice-title{font-family:var(--yuz-serif);font-weight:600;font-size:1.1rem;color:#fff}

/* экран «Спасибо!» — кольцо с пульсацией вокруг иконки, как в концепте */
.yuz-page .wt-ok-icon{width:92px;height:92px;margin:0 auto 26px;border-radius:50%;position:relative;
  background:var(--yuz-amber-soft);border:1px solid rgba(224,169,59,.35);
  display:grid;place-items:center;font-size:2.5rem;line-height:1}
.yuz-page .wt-ok-icon::before{content:"";position:absolute;inset:-9px;border-radius:50%;
  border:1.5px solid rgba(224,169,59,.45);animation:yuzWtRing 2s ease-out infinite}
@keyframes yuzWtRing{0%{transform:scale(.84);opacity:.9}100%{transform:scale(1.22);opacity:0}}
.yuz-page .wt-ok-desc{color:var(--yuz-ink-soft)}
.yuz-page .wt-ok-item{color:var(--yuz-ink-soft);border-bottom:1px dashed var(--yuz-line);padding:12px 0}
.yuz-page .wt-ok-item:last-child{border-bottom:0}
.yuz-page .wt-ok-btn{min-height:52px;display:inline-flex;align-items:center;justify-content:center;
  border-radius:var(--yuz-r);font-weight:700;letter-spacing:.08em;text-transform:uppercase;font-size:12px;
  background:var(--yuz-amber);color:#1a1206;box-shadow:0 14px 34px -16px rgba(224,169,59,.7)}
.yuz-page .wt-ok-btn:hover{background:var(--yuz-amber-deep);transform:none;box-shadow:0 14px 34px -16px rgba(224,169,59,.7)}

.yuz-page .wt-state{background:var(--yuz-panel);border:1px solid var(--yuz-line-strong);border-radius:16px}
.yuz-page .wt-state h1{font-family:var(--yuz-serif);font-weight:600}
.yuz-page .wt-state-btn{border-radius:var(--yuz-r);text-transform:uppercase;letter-spacing:.08em;font-size:12px}

.yuz-page .wt-payment-modal{background:rgba(8,9,10,.84);backdrop-filter:blur(9px)}

@media(max-width:420px){
  .yuz-page .wt-buttons{grid-template-columns:1fr 1fr;gap:10px}
  .yuz-page .wt-btn-card{padding:16px 14px}
  .yuz-page .wt-btn-title{font-size:17px}
  body.is-waiter main.yuz-block{padding-top:88px !important}
}

.yuz-map-ph{position:relative;min-height:420px;height:100%;overflow:hidden;border-radius:var(--r);border:1px solid var(--dark-line);background:#120c07;box-shadow:0 30px 80px -52px rgba(0,0,0,.85)}
.yuz-map-ph iframe{position:absolute;inset:0;width:100%;height:100%;border:0;filter:saturate(.88) contrast(.96)}
.yuz-map-ph::after{content:"";position:absolute;inset:0;pointer-events:none;border:1px solid rgba(168,133,76,.36);border-radius:2px;margin:16px}
.spz-map-open{position:absolute;left:26px;bottom:24px;z-index:2;display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 18px;border-radius:var(--r);background:rgba(25,17,10,.82);border:1px solid rgba(168,133,76,.42);color:#efe9da;font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;backdrop-filter:blur(10px)}
.spz-map-open:hover{background:var(--gold);border-color:var(--gold);color:#fff}
