:root{
  --bg:#f4f0e8;
  --white:#ffffff;
  --ink:#111111;
  --muted:#666666;
  --red:#f04b2f;
  --soft-shadow:0 12px 28px rgba(0,0,0,.06);
  --card-h:360px;
  --card-media-h:180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-width:320px;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x:hidden;
  overflow-y:auto;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.is-hidden{
  display:none !important;
}

.skip{
  position:absolute;
  left:-9999px;
  top:12px;
  z-index:5000;
  background:#fff;
  color:#000;
  padding:10px 12px;
}

.skip:focus{
  left:12px;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:2000;
  background:rgba(244,240,232,.96);
  border-bottom:1px solid rgba(17,17,17,.06);
  backdrop-filter:blur(10px);
}

.header-shell{
  width:min(1600px, calc(100% - 28px));
  margin:0 auto;
  padding:6px 0 8px;
}

.header-brandRow{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:46px;
}

.brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.brand__logo{
  width:auto;
  height:90px;
  object-fit:contain;
}

.header-line{
  width:min(1130px, calc(100% - 140px));
  height:1px;
  margin:0 auto 8px;
  background:rgba(17,17,17,.20);
}

.header-navRow{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:28px;
}

.nav{
  position:relative;
}

.nav__toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(17,17,17,.18);
  background:#fff;
  cursor:pointer;
}

.nav__burger,
.nav__burger::before,
.nav__burger::after{
  display:block;
  width:18px;
  height:2px;
  background:#111;
  margin:0 auto;
  position:relative;
}

.nav__burger::before,
.nav__burger::after{
  content:"";
  position:absolute;
  left:0;
}

.nav__burger::before{
  top:-6px;
}

.nav__burger::after{
  top:6px;
}

.nav__panel{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.nav__link{
  font-size:15px;
  font-weight:500;
  color:#1a1a1a;
  padding:8px 11px;
  line-height:1;
  transition:color .25s ease, transform .25s ease;
}

.nav__link:hover{
  color:var(--red);
  transform:translateY(-1px);
}

.menu-shell{
  min-height:100svh;
  padding:128px 0 48px;
  overflow:visible;
}

.menu-shell__inner{
  width:min(1200px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns:210px minmax(0, 1fr);
  gap:22px;
  align-items:start;
}

.menu-sidebar{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  overflow:visible;
  padding-top:12px;
  position:sticky;
  top:132px;
}

.menu-sidebar__brand{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:82px;
  padding:0 0 14px;
}

.menu-sidebar__group{
  background:#fff;
  border:1px solid rgba(17,17,17,.08);
  box-shadow:var(--soft-shadow);
  padding:8px 0;
  overflow:auto;
  max-height:calc(100svh - 180px);
}

.menu-sidebtn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-height:38px;
  padding:0 15px;
  border:0;
  background:transparent;
  color:#111;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, padding-left .2s ease;
}

.menu-sidebtn:hover{
  background:#faf7f1;
  color:var(--red);
  padding-left:18px;
}

.menu-sidebtn.is-active{
  color:#111;
  font-weight:700;
  box-shadow:inset 4px 0 0 var(--red);
}

.menu-main{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  overflow:visible;
  padding-top:10px;
}

.menu-main__head{
  text-align:center;
  margin:0 0 14px;
  width:100%;
}

.menu-main__line{
  width:260px;
  max-width:100%;
  height:1px;
  background:rgba(240,75,47,.5);
  margin:0 auto 8px;
}

.menu-main__title{
  margin:0;
  color:var(--red);
  font-family:Oswald, Inter, sans-serif;
  font-size:clamp(32px, 3.4vw, 50px);
  line-height:1.06;
  font-weight:500;
  padding:6px 12px 2px;
}

.menu-main__sub{
  margin-top:4px;
  color:#444;
  font-size:14px;
  min-height:18px;
}

.menu-main__actions{
  width:min(760px, 100%);
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin:0 0 20px;
}

.menu-main__actionBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  min-height:48px;
  padding:0 18px;
  background:#fff;
  border:1px solid rgba(17,17,17,.12);
  box-shadow:var(--soft-shadow);
  color:#111;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.menu-main__actionBtn:hover{
  transform:translateY(-1px);
  background:#111;
  color:#fff;
  border-color:#111;
}

.menu-main__actionBtn--accent{
  background:var(--red);
  color:#fff;
  border-color:var(--red);
}

.menu-main__actionBtn--accent:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

.menu-viewer{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  overflow:visible;
}

.menu-viewer__stage{
  display:grid;
  grid-template-columns:46px minmax(0, 1fr) 46px;
  gap:12px;
  align-items:center;
  width:min(760px, 100%);
}

.menu-viewer__frame{
  position:relative;
  width:100%;
  background:#fff;
  box-shadow:var(--soft-shadow);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.menu-viewer__frame img{
  width:100%;
  height:auto;
  object-fit:contain;
  opacity:1;
  transform:translateX(0);
  transition:opacity .28s ease, transform .34s ease;
}

.menu-viewer__frame.is-leaving-left img{
  opacity:.18;
  transform:translateX(-34px);
}

.menu-viewer__frame.is-leaving-right img{
  opacity:.18;
  transform:translateX(34px);
}

.menu-viewer__frame.is-entering-left img{
  opacity:0;
  transform:translateX(38px);
}

.menu-viewer__frame.is-entering-right img{
  opacity:0;
  transform:translateX(-38px);
}

.menu-viewer__arrow{
  width:46px;
  height:46px;
  border:0;
  border-radius:999px;
  background:rgba(17,17,17,.55);
  color:#fff;
  font-size:30px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}

.menu-viewer__arrow:hover{
  transform:translateY(-1px);
  background:#111;
}

.menu-viewer__footer{
  width:min(760px, 100%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:10px 4px 0;
}

.menu-viewer__page{
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#111;
}

.menu-viewer__count{
  font-size:13px;
  color:#666;
}

.menu-viewer__call{
  width:min(760px, 100%);
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:12px;
}

.menu-viewer__callBlock{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}

.menu-viewer__callLabel{
  font-size:13px;
  color:#333;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.menu-viewer__callBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:188px;
  min-height:44px;
  padding:0 18px;
  background:var(--red);
  color:#fff;
  font-size:15px;
  font-weight:700;
  transition:transform .22s ease, opacity .22s ease, background .22s ease;
}

.menu-viewer__callBtn:hover{
  transform:translateY(-1px);
  opacity:.94;
}

.menu-viewer__callBtn--accent{
  background:#111;
  color:#fff;
}

.menu-gridWrap{
  width:min(980px, 100%);
  overflow:visible;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(250px, 1fr));
  gap:14px;
  align-items:stretch;
}

.menu-card{
  height:var(--card-h);
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid rgba(17,17,17,.08);
  box-shadow:var(--soft-shadow);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease;
}

.menu-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,.12);
}

.menu-card__media{
  width:100%;
  height:var(--card-media-h);
  background:#f1ece3;
  border-bottom:1px solid rgba(17,17,17,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.menu-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.menu-card__media--placeholder{
  background:linear-gradient(180deg, #f5efe6 0%, #ede4d7 100%);
}

.menu-card__media--placeholder span{
  color:#8a7d6c;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.menu-card__body{
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  padding:14px 14px 16px;
  min-height:0;
}

.menu-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  min-height:46px;
}

.menu-card__title{
  margin:0;
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:15px;
  font-weight:700;
  line-height:1.3;
  color:#1d1d1d;
}

.menu-card__price{
  flex:0 0 auto;
  color:var(--red);
  font-size:13px;
  font-weight:800;
  line-height:1.2;
  text-align:right;
  white-space:nowrap;
}

.menu-card__price--empty{
  color:#8b8b8b;
  font-size:11px;
  font-weight:700;
  white-space:normal;
  max-width:78px;
}

.menu-card__desc{
  margin:8px 0 0;
  display:-webkit-box;
  -webkit-line-clamp:3;
  line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:12px;
  line-height:1.55;
  color:#555;
}

.menu-card__desc--empty{
  display:none;
}

.menu-empty{
  background:#fff;
  border:1px solid rgba(17,17,17,.08);
  box-shadow:var(--soft-shadow);
  padding:22px;
  color:#3b3f35;
  font-size:16px;
  line-height:1.7;
}

@media (max-height: 900px) and (min-width: 981px){
  .menu-sidebar{
    top:132px;
  }
}

@media (max-width: 980px){
  .header-shell{
    padding:4px 0 6px;
  }

  .brand__logo{
    height:92px;
  }

  .header-line{
    width:calc(100% - 12px);
    margin:0 auto 6px;
  }

  .header-navRow{
    justify-content:flex-end;
  }

  .nav__toggle{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .nav__panel{
    position:fixed;
    top:84px;
    left:14px;
    right:14px;
    display:none;
    flex-direction:column;
    gap:16px;
    padding:22px 18px;
    background:rgba(250,247,242,.98);
    border:1px solid rgba(17,17,17,.10);
    box-shadow:0 18px 46px rgba(0,0,0,.12);
  }

  .nav__panel.is-open{
    display:flex;
  }

  .menu-shell{
    padding:122px 0 48px;
  }

  .menu-shell__inner{
    grid-template-columns:1fr;
    gap:18px;
  }

  .menu-sidebar{
    position:static;
    padding-top:0;
  }

  .menu-sidebar__brand{
    justify-content:flex-start;
    min-height:auto;
    padding:0 0 10px;
  }

  .menu-sidebar__group{
    max-height:none;
    overflow:visible;
  }

  .menu-main{
    padding-top:8px;
  }

  .menu-viewer__call{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  :root{
    --card-h:330px;
    --card-media-h:168px;
  }

  .brand__logo{
    height:84px;
  }

  .nav__panel{
    top:80px;
  }

  .menu-main__line{
    width:220px;
  }

  .menu-main__actions{
    flex-direction:column;
  }

  .menu-main__actionBtn{
    width:100%;
    min-width:0;
  }

  .menu-viewer__stage{
    grid-template-columns:1fr;
  }

  .menu-viewer__arrow{
    display:none;
  }

  .menu-grid{
    grid-template-columns:1fr;
  }

  .menu-card__top{
    min-height:auto;
    flex-direction:column;
    gap:6px;
  }

  .menu-card__price{
    text-align:left;
  }

  .menu-card__price--empty{
    max-width:none;
  }

  .menu-viewer__callBtn{
    width:100%;
    min-width:0;
  }
}