
:root{
  --bg: #F5EFE6;
  --bg-soft: #EFE6D8;
  --card: #FFFFFF;
  --text: #2E2A26;
  --muted: #6F675E;
  --accent: #C97A2B;
  --border: rgba(46,42,38,.15);
  --shadow: 0 10px 24px rgba(46,42,38,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% -10%, #FFF7EA, transparent 60%),
    radial-gradient(900px 500px at 110% 0%, #EAD7BD, transparent 55%),
    var(--bg);
  overflow-x: hidden;
}

/* ================= HEADER  ================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245,239,230,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}


.header-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;

  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 12px;
}

/* Brand */
.brand{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--text);
  font-weight: 1000;
  min-width: 0;
}
.brand-text{
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}


.brand-left{
  justify-self: start;
}


.brand-center{
  display:none;
  justify-self: center;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.brand-emoji{
  font-size: 20px;
  line-height: 1;
}

/* Nav center */
.nav-pill{
  justify-self: center;
  display:flex;
  gap:6px;
  padding:6px;
  border-radius:16px;
  background: rgba(46,42,38,.05);
}
.nav-pill a{
  padding:10px 16px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  color:var(--text);
  white-space: nowrap;
}
.nav-pill a:hover,
.nav-pill a.active{
  background: rgba(201,122,43,.18);
}

/* Right lang */
.lang-btn{
  justify-self: end;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* Burger */
.burger{
  display:none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(46,42,38,.15);
  background: #fff;
  box-shadow: var(--shadow);
  cursor:pointer;
  position: relative;
  justify-self: start;
}
.burger span{
  position:absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #3A332C;
  border-radius: 999px;
}
.burger span:nth-child(1){ top: 16px; }
.burger span:nth-child(2){ top: 24px; }
.burger span:nth-child(3){ top: 32px; }

/* Drawer */
.drawer{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index: 1000;
}
.drawer.open{ display:block; }

.drawer-card{
  position:absolute;
  top: calc(env(safe-area-inset-top) + 70px);
  left: 12px;
  right: 12px;
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  border: 1px solid var(--border);
}
.drawer-nav{
  display:grid;
  gap:10px;
}
.drawer-nav a{
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--text);
  font-weight: 900;
  background: rgba(46,42,38,.03);
  border: 1px solid rgba(46,42,38,.10);
}
.drawer-nav a.active{
  background: rgba(201,122,43,.14);
  border-color: rgba(201,122,43,.25);
}

.no-scroll{ overflow:hidden !important; height:100vh !important; }


@media(max-width:860px){
  .header-inner{
    max-width: 100%;
    margin: 10px 12px;
    padding: 12px 12px;

    display:grid;
    grid-template-columns: 56px 1fr 56px;
    gap: 10px;

    background:
      radial-gradient(700px 260px at 50% 0%, rgba(46,42,38,.20), rgba(46,42,38,.06) 50%, rgba(255,255,255,.42)),
      rgba(255,255,255,.55);
    border: 1px solid rgba(46,42,38,.12);
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(46,42,38,.10);
    backdrop-filter: blur(12px);
  }

  .nav-pill{ display:none; }
  .brand-left{ display:none; }

  .burger{ display:inline-flex; }
  .brand-center{
    display:inline-flex;
  }

  .brand-center .brand-text{
    font-size: clamp(18px, 5vw, 26px);
    color: #fff;
    text-shadow: 0 8px 24px rgba(0,0,0,.35);
    max-width: 52vw;
  }
  .brand-center .brand-emoji{
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
  }

  .lang-btn{
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 1000;
    border: 1px solid rgba(46,42,38,.15);
    background: rgba(255,255,255,.85);
  }
}

@media(max-width:420px){
  .brand-center .brand-text{ font-size: 22px; max-width: 46vw; }
}



.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 16px 28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  text-decoration:none;
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.btn:active{ transform: translateY(1px); }

.btn--solid{
  background: rgba(201,122,43,.16);
  border-color: rgba(201,122,43,.30);
  color: #7A4617;
}
.btn--ghost{ background: rgba(46,42,38,.04); }
.w100{ width:100%; }


.hero{
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(201,122,43,.18), rgba(46,42,38,.03));
  border: 1px solid rgba(46,42,38,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: center;
}

@media(max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
}

.kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(46,42,38,.15);
  background: rgba(255,255,255,.55);
  font-weight: 900;
  color: #7A4617;
}

.hero__copy{
  display:grid;
  gap: 10px;
}

.hero__title{
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 1000;
  color: #3A332C;
  letter-spacing: .2px;
  line-height: 1.08;
}

.hero__sub{
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
  max-width: 60ch;
}

.hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero__stats{
  margin-top: 8px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

@media(max-width: 520px){
  .hero__stats{ grid-template-columns: 1fr; }
}

.stat{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(46,42,38,.10);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.stat__k{
  font-weight: 1000;
  color: #3A332C;
  font-size: 14px;
}
.stat__v{
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

/* hero media */
.hero__media{
  display:grid;
  gap: 10px;
}
.media-card{
  border-radius: 18px;
  border: 1px solid rgba(46,42,38,.12);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
  background-position:center;
  background-size: cover;
  min-height: 140px;
}
.media-card.big{
  min-height: 220px;
}
.media-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.media-note{
  text-align:center;
  font-weight: 900;
  color: #3A332C;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(46,42,38,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow);
}

/* ================= STRIP ================= */
.strip{
  margin: 14px 0 6px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media(max-width: 820px){
  .strip{ grid-template-columns: 1fr; }
}
.strip__item{
  background: var(--card);
  border: 1px solid rgba(46,42,38,.12);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.strip__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(201,122,43,.14);
  border: 1px solid rgba(201,122,43,.28);
  font-size: 22px;
}
.strip__t{
  font-weight: 1000;
  color:#3A332C;
}
.strip__s{
  margin-top: 3px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
  font-size: 13px;
}

/* ================= SECTIONS ================= */
.section{
  margin-top: 18px;
}
.section__head{
  display:grid;
  gap: 6px;
  text-align:center;
  margin-bottom: 12px;
}
.section__title{
  margin:0;
  font-size: 22px;
  font-weight: 1000;
  color:#3A332C;
}
.section__sub{
  margin:0;
  color: var(--muted);
  font-weight: 750;
}

/* featured cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media(max-width: 920px){
  .cards{ grid-template-columns: 1fr; }
}
.card{
  background: var(--card);
  border: 1px solid rgba(46,42,38,.12);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction: column;
}
.card__img{
  height: 170px;
  background: var(--bg-soft);
  background-position:center;
  background-size: cover;
}
.card__body{
  padding: 14px;
  display:grid;
  gap: 10px;
}
.card__title{
  margin:0;
  font-weight: 1000;
  color:#3A332C;
}
.card__text{
  margin:0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
  font-size: 13px;
}
/*
███████ ██      ██   ██  █████  ██████  ███████ ███████ ██
██      ██      ██   ██ ██   ██ ██   ██ ██      ██      ██
█████   ██      ███████ ███████ ██████  █████   ███████ ██
██      ██      ██   ██ ██   ██ ██   ██ ██           ██ ██
███████ ███████ ██   ██ ██   ██ ██████  ███████ ███████ ██*/

/* ================= STORY ================= */
.story{
  margin-top: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(46,42,38,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px;
}
.story__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:center;
}
@media(max-width: 920px){
  .story__grid{ grid-template-columns: 1fr; }
}
.story__title{
  margin:0;
  font-size: 22px;
  font-weight: 1000;
  color:#3A332C;
}
.story__text{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}
.story__bullets{
  margin-top: 10px;
  display:grid;
  gap: 8px;
}
.bullet{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(46,42,38,.10);
  background: rgba(46,42,38,.03);
  font-weight: 900;
  color:#3A332C;
}
.story__actions{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.story__media{
  display:grid;
  gap: 10px;
}
.story__img{
  min-height: 180px;
  border-radius: 22px;
  border: 1px solid rgba(46,42,38,.12);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
  background-position:center;
  background-size: cover;
}

/* ================= CHEF ================= */
.chef{
  margin-top: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(46,42,38,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.chef__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items:center;
}

@media(max-width: 920px){
  .chef__grid{ grid-template-columns: 1fr; }
}

.chef__title{
  margin:0 0 8px;
  font-size: 22px;
  font-weight: 1000;
  color:#3A332C;
}

.chef__text{
  margin:0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.7;
}

.chef__media{
  background: var(--card);
  border: 1px solid rgba(46,42,38,.12);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
}

.chef__img{
  width:100%;
  height:auto;
  display:block;
  background: var(--bg-soft);
}

/* ================= REVIEWS ================= */
.quotes{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media(max-width: 920px){
  .quotes{ grid-template-columns: 1fr; }
}
.quote{
  background: var(--card);
  border: 1px solid rgba(46,42,38,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 14px;
  margin:0;
  display:grid;
  gap: 10px;
}
.quote__stars{ font-weight: 1000; color: var(--accent); letter-spacing: 1px; }
.quote__text{
  margin:0;
  color:#3A332C;
  font-weight: 850;
  line-height: 1.55;
}
.quote__who{
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

/* ================= CONTACT ================= */
.contact{
  margin-top: 18px;
}
.contact__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media(max-width: 920px){
  .contact__grid{ grid-template-columns: 1fr; }
}
.contact__card{
  background: var(--card);
  border: 1px solid rgba(46,42,38,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 14px;
  display:grid;
  gap: 10px;
}
.contact__title{
  margin:0;
  font-size: 20px;
  font-weight: 1000;
  color:#3A332C;
}
.contact__sub{
  margin:0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}
.contact__actions{
  display:grid;
  gap: 10px;
  margin-top: 4px;
}
.mini{
  margin-top: 6px;
  display:grid;
  gap: 8px;
}
.mini__row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(46,42,38,.10);
  background: rgba(46,42,38,.03);
}
.mini__k{
  font-weight: 1000;
  color:#3A332C;
}
.muted{ color: var(--muted); font-weight: 850; }

.map-card{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(46,42,38,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.map-top{
  padding: 14px;
  display:grid;
  gap: 8px;
}
.map-kicker{
  display:inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(46,42,38,.15);
  background: rgba(255,255,255,.65);
  font-weight: 1000;
  color:#7A4617;
}
.map-title{ margin:0; font-weight: 1000; color:#3A332C; }
.map-sub{ margin:0; color: var(--muted); font-weight: 750; line-height: 1.4; }

.map-iframe{
  width:100%;
  height:320px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(46,42,38,.04);
}
.map-iframe iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.hours-grid{
  display:grid;
  gap:10px;
}

.hours-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(46,42,38,.12);
  box-shadow: var(--shadow);
}

/* ================= FOOTER ================= */
.footer{
  margin-top: 18px;
  padding: 16px;
  text-align:center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  display:grid;
  gap:10px;
}

.footer-links{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
}

.iconlink{
  width: 42px;
  height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  text-decoration:none;
}
.footer-note{ font-size: 12px; font-weight: 850; }
/*⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⡤⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⣀⡀⠀⢀⣤⣤⣤⣀⡀⠀⠀⠀⠀⠀⠀⠀⢀⡴⢊⡁⠀⠀⠀⠀⠀⢀⡤⠂⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⣟⣉⣉⡉⠉⠉⠉⠉⣻⢷⣄⢀⣬⣉⢻⡶⣄⡀⠀⠀⣴⡵⠊⠁⠀⠀⠀⠀⢀⠔⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠙⠻⣯⣛⡛⠻⢶⣤⠈⠀⢸⡿⣌⣻⡧⢷⣾⢿⣄⡼⠃⣀⣄⠀⠀⠀⠀⡴⠋⠀⠀⠀⠀⠀⢀⡴⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠻⣷⣤⣈⢙⢲⡾⠥⠀⠀⠀⠀⠐⣌⠻⣧⠞⠁⢸⠀⠀⠀⡼⠀⠀⠀⠀⠀⠀⣠⠟⠁⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣹⡿⣿⠋⠈⠁⠀⠀⠀⠀⠀⠈⣿⣆⠹⡆⢀⠏⠀⠀⢸⠡⣤⡀⠀⠀⢀⣼⠏⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣏⣷⡞⠃⠀⠀⠀⠀⠀⠀⠀⠸⠿⣿⢆⣹⡏⠀⠀⠀⠈⠳⠞⢳⠀⠀⣼⠇⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⡟⣥⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠚⢸⡷⣿⡀⠀⠀⠀⠀⢠⠏⠀⢰⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⣀⣼⣿⣵⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡸⢻⣿⣧⠀⠀⢀⡤⠋⠀⠀⢸⡭⢯⡙⡆⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡤⠚⠉⠀⠀⣰⡾⢛⣞⣅⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠃⣾⡇⣿⡤⠔⠋⠀⠀⠀⠀⠈⠁⠈⡇⣷⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠔⠉⣠⢄⣴⢾⣿⣿⣾⠟⠛⡻⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡞⢰⣯⠀⢛⠻⡶⠛⠳⢦⡀⠀⠀⠀⢀⡇⡏⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡜⢁⡴⠋⢀⡾⣣⠋⠟⡽⠃⠀⢸⣧⢶⠀⠀⠀⠀⠀⠀⠀⠀⠀⠛⢰⠏⠸⠈⡞⡆⢷⡀⠀⠀⢿⡀⠀⠀⡼⣸⠃⠀⢀⣴⠞⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠋⢠⠎⠀⠀⡾⠁⠀⠀⣼⠃⣜⣄⠀⡏⣯⠀⠀⠀⠀⠀⠀⠀⠀⠂⣀⠟⠀⠀⢻⠃⠈⠻⣿⡆⠀⢸⣧⠀⡴⣿⣧⣤⡾⠟⠁⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠃⠀⠀⣸⠃⠀⢰⢠⠇⠀⣼⡏⠀⠁⢻⡆⠀⠀⣀⣀⣀⡀⠀⢠⠏⠀⡆⢠⠘⠐⡄⠀⠈⡇⠀⠈⣻⡟⣡⡿⠛⠁⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠺⣶⡟⢀⡟⠀⠀⡿⢸⡟⠀⡇⠀⠀⠀⢈⡷⠞⠉⠀⠀⠀⠈⠙⠻⣄⡾⠀⠸⠀⠀⣧⢀⠀⢹⠀⠀⡟⢤⡟⠁⠀⠀⠀⠀⠀⣰⠋⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠁⠀⢸⠃⠀⢸⡏⣼⠁⠀⠀⠀⠀⢀⡞⠀⠀⢀⣠⠤⢤⣀⠀⠀⠈⢦⠀⠀⢀⠀⠃⠘⡄⢸⢀⡼⣱⣾⠀⠀⠀⠀⠀⠀⡼⠁⠀⠀
⠀⠀⠀⠀⠀⠀⠀⢀⡴⠃⠀⠀⠀⣾⠀⠀⢨⢇⣿⣦⠀⠀⡆⠀⡞⠀⢀⠞⠁⠀⠀⠀⠀⠙⢦⠀⠈⡆⠀⡿⠀⠀⠀⡇⠈⣿⡴⣿⠿⠶⣄⡀⠀⠀⢠⡇⠀⠀⠀
⠀⠀⠀⠀⠀⠀⢀⡞⠁⠀⠀⠀⠀⡟⠀⠀⠸⣈⠈⠈⣆⠀⢣⠀⣇⠀⡏⠀⠀⠀⠀⠀⠀⠀⠈⡇⢀⡇⠜⠁⠀⠀⢸⠁⡀⠈⠿⢦⣠⡀⢿⣷⢀⣴⣿⠗⠀⠀⠀
⠀⠀⠀⠀⠀⠀⡞⠀⠀⠀⠀⠀⠀⢿⠀⠀⣇⡏⠰⡄⢫⠀⠈⠦⠘⣆⣇⠀⠀⠀⠀⠀⠀⠀⢀⡇⡼⠀⠀⠀⠀⠀⡜⠀⡇⠀⠀⣸⣿⡇⢸⣿⢏⡞⢁⡇⡠⠀⠀
⠀⠀⠀⠀⠀⢸⠁⠀⢀⡴⠋⠀⠀⢸⡴⡄⢻⣿⡀⠈⠀⠳⠀⠀⠀⠈⠻⣦⡀⠀⠀⠀⠀⣠⣾⠟⠁⠀⡀⠀⠀⢠⠇⢠⠃⠀⢀⡟⣼⠁⠉⣡⣏⣠⣮⠜⠁⠀⠀
⠀⠀⠀⠀⠀⢸⢀⡴⠋⠀⠀⠀⠀⠀⣷⢳⡘⡟⠃⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠒⠀⠐⠋⠉⣀⡠⠀⠼⠁⠀⠀⡿⠀⡜⠀⠀⢸⣷⢏⡄⠀⣿⡿⠋⠁⠀⠀⠀⠀
⠀⠀⠀⠀⠀⢀⠟⠀⡀⠀⠀⠀⣀⡤⣿⡆⢣⡇⠀⠀⠀⠀⠀⠠⣄⠀⠀⠀⠀⠀⠀⠀⠀⠼⣫⡖⢀⡄⠀⠀⣰⠇⣰⠃⠀⣠⣿⠟⢉⣠⡾⠋⠀⠀⡀⠀⠀⠀⠀
⠀⠀⠀⠀⢀⠏⣠⠞⠁⠀⣠⠞⣡⠞⢹⣇⠀⡇⠀⢣⠀⠀⠠⡀⡿⠀⠀⠀⠀⠀⠀⠀⠀⠐⢻⡽⣋⠀⢀⣴⣿⣰⣃⡴⠞⢁⣠⣾⣿⠏⠀⠀⠀⡴⠁⠀⠀⠀⠀
⠀⠀⠀⠀⢸⠞⠁⠀⢀⡼⠁⡰⠁⠀⢸⣿⡀⢧⠀⡈⣇⠈⣶⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⢠⡎⢈⣵⣤⣽⣥⣿⡿⠟⣀⣴⣿⠟⢩⠋⠀⠀⠀⡼⠁⠀⠀⠀⠀⠀
⠀⠀⠀⢠⠏⠀⠀⠀⡜⠀⢠⡇⠀⠀⠈⣧⢣⣸⣸⣷⡘⢦⣼⣏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢷⣾⡿⣿⣽⣟⠻⣶⣾⣿⣿⠏⢠⠇⠀⠀⠀⢸⠁⠀⠀⠀⠀⠀⠀
⠀⠀⢀⠏⠀⠀⠀⠸⡇⠀⣀⡭⠭⣝⣦⠸⡆⢻⣿⡻⠁⣠⣼⡿⣟⢦⡀⠀⠀⠀⠀⠀⢀⣀⣰⣿⣧⣿⣧⢹⢻⣿⣿⡿⢻⠀⡎⠀⠀⠀⠀⡇⡀⠀⠀⠀⠀⠀⠀
⠀⠀⣼⠀⠀⠀⠀⠀⠈⠉⢁⣠⠖⠚⠻⠶⠿⣾⣿⣧⣴⣯⢻⣿⢹⣶⡜⣿⡛⠛⠛⠉⠉⠉⠀⢁⣿⢹⣿⢹⡟⣸⡿⠁⠸⡴⠃⠀⠀⢀⣴⡟⠁⠀⠀⢀⣠⠶⠁
⠀⠀⡇⠀⠀⠀⣀⡀⢀⡴⠛⠒⢤⣤⣀⣀⠀⠀⠻⣟⠛⢻⣿⣿⣿⣯⣟⣻⣆⣀⣒⡦⣄⣀⣾⠟⠿⠿⢻⣿⣰⣟⠳⣦⠀⢁⣠⢤⣾⠛⣱⣅⣤⣴⠾⠛⠁⠀⠀
⠀⠀⢻⡀⢠⠋⠀⣱⠏⠁⠀⢠⠎⠀⠀⠀⢹⠀⠀⠹⡿⢿⣿⢿⣿⣯⣽⠉⠁⠈⠉⠉⠛⠋⠁⠀⠀⢀⠘⢁⣿⣽⠏⣩⣉⣥⠴⠶⢿⣩⡽⠟⠉⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠳⠾⣠⣞⣇⠀⠀⠀⠈⠀⠀⠀⠀⠸⣦⠀⠀⣷⠘⢿⡀⠟⠛⠁⠀⠀⠀⢸⠀⠀⠀⢀⣼⣵⠋⢀⣾⠛⠛⠛⣉⡁⡇⠀⠀⢀⡼⠁⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⢀⣾⡿⠴⣿⠀⠀⠀⠀⠀⣠⢴⣶⠦⢽⣶⣠⣏⠀⠈⢳⣠⠀⠀⠐⣰⢃⣏⡔⢀⠆⢁⣴⠟⢁⡾⢹⠀⣰⠋⢀⠇⣇⠀⡰⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⡜⢸⡇⣠⡾⠀⣰⡅⡠⢊⣴⡯⢀⠰⣷⣍⢉⠛⢧⠀⢆⠹⣇⠀⠀⡿⠞⠋⢀⠞⠀⠋⢁⢮⡞⠁⢸⠀⣿⢠⡞⣠⡟⣏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠠⣤⣇⠈⠻⣵⠃⣴⢏⡽⠃⣾⠏⣰⣿⠟⣩⣿⣿⣷⡿⢇⠈⣆⠘⢆⠀⡇⢀⣴⢿⠏⡰⢠⣿⡟⠀⠀⢸⣼⣁⡈⢹⠃⠀⣹⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⣀⣀⣻⣿⣿⣶⠋⡰⠿⠀⠀⠀⢸⡔⢷⣿⡾⣿⣸⣿⠟⡄⢿⡄⠘⣧⠈⠳⠃⠀⣠⢋⠞⠀⣻⡏⠀⠀⢀⣼⠁⢻⢃⠾⡄⢶⠅⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⢿⡉⠻⣿⣿⡏⡜⢡⠇⢰⡀⠀⠀⢱⣤⣤⣽⣿⢿⡿⡄⢱⠈⢷⡄⠋⢧⠀⠠⠾⣿⠋⠀⣴⡏⠀⢀⡰⠊⢸⠀⢼⢼⡓⣻⣏⢰⣧⣤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⣈⣿⢤⡼⣿⣧⣟⠛⢲⣾⠁⠀⢀⣠⣿⣿⡟⠀⣸⢷⠸⡀⢇⠈⡿⡆⠀⢳⣄⡴⠃⠀⣴⣻⣧⠔⠋⠀⢀⠸⠀⢸⠘⢿⣯⢹⣿⡿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠹⣿⣿⣈⣻⣿⣿⣄⣴⣫⣄⣰⡯⡽⢷⣿⡇⠀⣿⢿⡆⠱⡘⡄⢇⢸⡄⢸⣿⠃⢀⡞⢹⣿⡧⠄⠀⠀⣠⠟⣳⣾⡀⠈⠻⠞⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠘⢿⣿⡻⢿⣿⡟⠚⢻⣷⣿⣷⢣⣻⣿⡇⢀⠟⣌⣷⡀⢻⣷⢸⢸⠃⢸⠇⣰⡏⠇⢸⣿⠁⠀⠀⠀⢻⣿⣿⠟⢉⡙⡶⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⣀⣹⣿⣮⣣⡱⣤⣾⣿⢿⣿⣶⣿⢿⣧⢮⠀⢹⠃⢧⠈⣿⣯⡿⠀⣼⢟⣽⠀⡀⣸⡏⠀⠀⠀⠀⣼⣉⡠⠤⠤⢽⠙⣎⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠘⠫⠭⣬⣿⣟⣿⢋⡜⢻⡿⢡⡿⠀⠀⣏⣼⠀⣼⠀⠈⣧⢸⢿⣿⡘⠹⣽⣿⠀⣷⡿⠀⠀⠀⠀⠀⣟⠒⠤⠀⠀⠀⠀⠐⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠉⠉⣹⢟⡞⢱⡼⣱⣿⣿⡄⠀⣿⣽⢠⣿⠀⠀⣏⣾⣦⢹⣧⠀⢘⣿⢰⣿⠁⠀⠀⠀⠀⠀⠘⢦⡀⠀⠀⠀⣠⡾⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⢀⡇⡸⠀⡼⢻⠏⡟⢿⣟⠃⠸⣿⡿⢻⠀⢸⣿⣮⡈⣿⠻⣦⣼⢿⣸⡏⠀⠀⠀⠀⠀⠀⠀⢨⠉⠉⠋⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⣸⡿⠇⢰⠃⢸⠀⡇⠈⡏⠀⠀⠙⠁⢸⡆⢸⣯⣿⣇⡼⠀⣿⡟⠘⠟⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⢹⠀⢀⡇⠀⣿⢀⣇⡀⡇⠀⠀⠀⠀⢸⡇⢸⣧⢿⣷⡇⢰⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠘⣾⡼⠀⠀⢿⡞⡷⠽⣿⠀⠀⠀⠀⠈⣇⢸⣿⡎⡏⣧⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠉⠁⠀⠀⠘⡇⢸⠠⣼⠀⠀⠀⠀⠀⢹⣼⣫⣿⠃⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣷⠈⡆⢹⠇⠀⠀⠀⠀⠈⢿⣇⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡄⠹⡀⡇⠀⠀⠀⠀⠀⠸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠳⡄⢧⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠲⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀*/