:root{
  --max: 1280px;
  --pad: 24px;

  --border: rgba(0,0,0,.08);
  --soft: rgba(0,0,0,.04);

  --gold: #C9A24D;
  --gold-dark: #B18A36;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:#111;
  background:#fff;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }

/* =========================
   Header / Layout
   ========================= */
.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid var(--border);
}

.nav-wrap{
  max-width: var(--max);
  margin:0 auto;
  padding: 10px var(--pad);
  display:flex;
  align-items:center;
  gap:18px;
}

.brand{ display:flex; align-items:center; flex:0 0 auto; height:30px; }
.brand-logo{
  height:30px !important;
  max-height:30px !important;
  width:auto !important;
  max-width:180px !important;
  object-fit: contain !important;
}

.nav-right{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px;
  white-space: nowrap;
}

.nav-link{
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight:500;
  line-height:1;
}
.nav-link:hover{ background: var(--soft); }

.nav-cta{
  background: var(--gold);
  color:#111;
  font-weight:600;
}
.nav-cta:hover{ background: var(--gold-dark); }

.site-main{
  max-width: var(--max);
  margin:0 auto;
  padding: 18px var(--pad) 56px var(--pad);
}
.site-footer{ border-top:1px solid var(--border); }
.footer-inner{
  max-width: var(--max);
  margin:0 auto;
  padding:18px var(--pad);
  opacity:.8;
}

/* full-bleed section */
.sm-edge{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

/* =========================
   Announcement bar
   ========================= */
.sm-announce{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.sm-announce-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sm-announce-text{
  font-size: 13px;
  line-height: 1.4;
  opacity: .92;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sm-announce-title{
  font-weight: 650;
  letter-spacing: .02em;
}
.sm-announce-link{
  text-decoration: none;
  position: relative;
  opacity: .9;
}
.sm-announce-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;
  height:1px;
  background: currentColor;
  opacity:.35;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform 180ms ease;
}
.sm-announce-link:hover::after{ transform: scaleX(1); }

.sm-announce-close{
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 10px;
  opacity: .6;
}
.sm-announce-close:hover{
  background: rgba(0,0,0,.05);
  opacity: .9;
}

/* =========================
   Slider (hero)
   ========================= */
.sm-slider{
  position:relative;
  overflow:hidden;
  background:#fff;
  height: min(78vh, 720px);
}

.sm-slides{
  display:flex;
  height:100%;
  transition: transform .35s ease;
  will-change: transform;
}
.sm-slide{ min-width:100%; height:100%; }
.sm-slide img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:center;
}

.sm-dots{
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:7;
}
.sm-dot{
  width:9px; height:9px;
  border-radius:99px;
  border:1px solid rgba(255,255,255,.7);
  background:rgba(255,255,255,.25);
  cursor:pointer;
}
.sm-dot.is-active{ background:rgba(255,255,255,.95); }

/* slider arrows (separate from menu arrows to avoid conflicts) */
.sm-slider-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color:#fff;
  font-size:28px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:.25;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
  z-index:6;
}
.sm-slider-arrow-left{ left:18px; }
.sm-slider-arrow-right{ right:18px; }
.sm-slider:hover .sm-slider-arrow{ opacity:.9; }
.sm-slider-arrow:hover{
  background: rgba(0,0,0,.45);
  transform: translateY(-50%) scale(1.04);
}
@media (max-width: 700px){
  .sm-slider-arrow{
    width:40px;
    height:40px;
    font-size:24px;
  }
}

/* hero CTA buttons */
.sm-hero-cta{
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 6;
}
.sm-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
  transition: transform .18s ease, background .18s ease;
  white-space: nowrap;
}
.sm-btn-primary{
  background: var(--gold);
  color: #111;
}
.sm-btn-primary:hover{
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.sm-btn-secondary{
  background: rgba(255,255,255,.85);
  color: #111;
  border: 1px solid rgba(0,0,0,.15);
}
.sm-btn-secondary:hover{
  background: #fff;
  transform: translateY(-1px);
}
@media (max-width: 700px){
  .sm-hero-cta{ flex-direction: column; bottom: 24px; }
}

/* =========================
   Sections / Typography
   ========================= */
.sm-section{ margin: 44px 0; }
.sm-section h2{
  text-transform: none;
  letter-spacing: .02em;
}
.sm-card h3{ text-transform:none; }

/* =========================
   Recommended cards
   ========================= */
.sm-cards4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:16px;
}
.sm-card{
  border-radius:18px;
  overflow:hidden;
  background:rgba(0,0,0,.03);
  border:1px solid rgba(0,0,0,.06);
}
.sm-card img{
  width:100%;
  height:auto;
  object-fit:contain;
  background:#fff;
}
.sm-card h3{ margin:12px 14px 6px 14px; font-size:18px; }
.sm-card p{
  margin:0 14px 16px 14px;
  opacity:.9;
  line-height: 1.95;
}

/* =========================
   Banner
   ========================= */
.sm-banner-jp{
  margin: 28px 0 44px 0;
  padding: 18px 0;
  display:grid;
  grid-template-columns: 3fr 1fr;
  gap: 28px;
  align-items:center;
}
.sm-kicker{
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 10px;
}
.sm-banner-title{
  font-size: 32px;
  line-height: 1.18;
  font-weight: 650;
  margin: 0 0 12px 0;
}
.sm-banner-lead{
  margin:0;
  font-size:16px;
  line-height:1.75;
  opacity:.86;
  max-width: 100ch;
}
.sm-banner-image{
  width:100%;
  padding-left: 18px;
}
.sm-banner-image img{
  width:100%;
  height:auto;
  max-height: 240px;
  object-fit: contain;
  border-radius: 14px;
}

/* =========================
   Grid / Two images
   ========================= */
.sm-grid1{ margin:30px 0 42px 0; }
.sm-grid1 img{ border-radius:18px; }

.sm-twoimg-wrap{ margin:48px 0; }
.sm-twoimg-head{ margin-bottom:16px; }
.sm-twoimg-head h2{ margin:0; font-size:22px; font-weight:650; letter-spacing:.02em; }

.sm-twoimg{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.sm-twoimg img{
  border-radius:18px;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  will-change: transform;
}
@media (hover:hover){
  .sm-twoimg img:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0,0,0,.10);
    filter: saturate(1.02) contrast(1.02);
  }
}

/* =========================
   Contact (home section) - safe scope
   ========================= */
#contact .sm-contact-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
  margin-top: 16px;
}

#contact .sm-contact-card-title{
  margin: 0 0 18px 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.2px;
}

#contact .sm-contact-row{
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 18px;
  align-items: start;
  margin: 0 0 14px 0;
}

#contact .sm-contact-label{
  font-weight: 650;
  line-height: 1.7;
  font-size: 14px;
  opacity: .82;
  margin: 0;
}

#contact .sm-contact-value{
  line-height: 1.7;
  font-size: 16px;
}

#contact .sm-contact-right .sm-contact-value div{ margin-bottom: 6px; }

#contact .sm-contact-value a{
  text-decoration: none;
  position: relative;
}
#contact .sm-contact-value a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  background: currentColor;
  opacity: 0.35;
}
#contact .sm-contact-value a:hover::after{ transform: scaleX(1); }

.sm-contact-map{ margin-top: 18px; }
.sm-contact-map iframe{
  border:0;
  border-radius:18px;
  overflow:hidden;
  display:block;
}

/* =========================
   Menu: Download / Thumbs
   ========================= */
.sm-download{
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  border-radius: 999px;
  padding: 10px 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.sm-download:hover{ background: rgba(0,0,0,.05); }

.sm-thumbs{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 2px 2px 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.sm-thumbs::-webkit-scrollbar{ height: 10px; }
.sm-thumbs::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.10);
  border-radius: 999px;
}
.sm-thumb{
  appearance: none;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 auto;
  width: 110px;
  height: 78px;
  scroll-snap-align: center;
}
.sm-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sm-thumb:hover{ transform: translateY(-1px); }
.sm-thumb.is-active{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

/* =========================
   Menu: Viewer + arrows + fullscreen
   (use dedicated classes; no collision with slider)
   ========================= */
.sm-booklet{
  width: min(66vw, 1400px);
  margin-left: auto;
  margin-right: auto;
}
.sm-viewer{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.sm-viewer-img{
  display:block;
  width: 100%;
  height: min(86vh, 980px);
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  cursor: zoom-in;
}
#drinks-menu .sm-viewer-img{
  height: min(88vh, 1050px);
}

.sm-controls,
.sm-thumbs{
  width: min(66vw, 1400px);
  margin-left: auto;
  margin-right: auto;
}
.sm-thumbs{ justify-content: center; }

/* menu arrows */
.sm-menu-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  opacity:.25;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
  z-index:5;
}
.sm-menu-arrow-left{ left:12px; }
.sm-menu-arrow-right{ right:12px; }
.sm-viewer:hover .sm-menu-arrow{ opacity:.9; }
.sm-menu-arrow:hover{
  transform: translateY(-50%) scale(1.04);
  background: rgba(255,255,255,.86);
}

.sm-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:9999;
}
.sm-lightbox.is-open{
  opacity:1;
  pointer-events:auto;
}
.sm-lightbox img{
  max-width:92vw;
  max-height:92vh;
  object-fit:contain;
  box-shadow:0 20px 60px rgba(0,0,0,.6);
  cursor:zoom-out;
  transition: transform .12s ease-out;
  transform-origin: center center;
}

.sm-menu-arrow-fs{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color:#fff;
  opacity:.28;
}
.sm-lightbox.is-open:hover .sm-menu-arrow-fs{ opacity:.92; }
.sm-menu-arrow-fs:hover{ background: rgba(0,0,0,.55); }

#sm-lightbox-img{ position:relative; z-index:2; }

.sm-fs-indicator{
  position: fixed;
  right: 26px;
  bottom: 22px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
  z-index: 10001;
}
.sm-lightbox.is-open .sm-fs-indicator{ opacity: 1; }

body.sm-fs-open header,
body.sm-fs-open nav,
body.sm-fs-open .sm-page-head,
body.sm-fs-open .sm-controls,
body.sm-fs-open .sm-thumbs{
  visibility: hidden;
}

/* hide ONLY menu arrows on mobile (not slider arrows) */
@media (max-width: 800px){
  .sm-menu-arrow{ display:none; }
}

/* =========================
   Mobile nav (hamburger + panel)
   ========================= */
.nav-toggle{
  display:none;
  margin-left:auto;
  background:none;
  border:0;
  padding:8px;
  cursor:pointer;
  position: relative;
  z-index: 100;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#111;
  margin:5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop{ display:none; }

@media (max-width: 900px){
  .nav-toggle{ display:block; }

  .nav-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display:none;
    z-index: 80;
    opacity: 0;
    transition: opacity 180ms ease;
  }
  .nav-backdrop.is-open{
    display:block;
    opacity: 1;
  }

  .nav-right{
    position: fixed;
    top: 64px;
    right: 14px;
    left: 14px;
    max-width: 520px;
    margin: 0 auto;

    display: none;
    flex-direction: column;
    gap: 10px;

    padding: 14px 14px 74px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 22px 60px rgba(0,0,0,.18);
    z-index: 90;

    transform: translateY(-6px);
    opacity: 0;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .nav-right.is-open{
    display:flex;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-right .nav-link{
    display:block;
    padding: 12px 12px;
    border-radius: 14px;
    white-space: normal;
  }

  .nav-cta-mobile{
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
  }
}

body.sm-menu-open{ overflow: hidden; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 1100px){
  .sm-cards4{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px){
  .nav-wrap{ flex-wrap: wrap; }
  .sm-banner-jp{ grid-template-columns: 1fr; gap:16px; }
  .sm-banner-image{ padding-left:0; padding-top:16px; }
  #contact .sm-contact-grid{ grid-template-columns: 1fr; gap: 28px; }
  .sm-booklet, .sm-controls, .sm-thumbs{ width: 100%; }
  .sm-viewer-img{ height: min(66vh, 780px); }
  .sm-twoimg{ grid-template-columns:1fr; }
}
@media (max-width: 700px){
  .sm-thumb{ width: 96px; height: 68px; }
}
@media (max-width: 560px){
  :root{ --pad: 14px; }
  .brand{ height:26px; }
  .brand-logo{ height:26px !important; max-height:26px !important; }
  .sm-cards4{ grid-template-columns: 1fr; }
  #contact .sm-contact-row{ grid-template-columns: 90px 1fr; }
}

/* ===== lunch specials page ===== */
.sm-ls-image{
  margin-top: 18px;
}

.sm-ls-image img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
}