/* 1. Root Variables and Global Styles */

: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; }

/* 2. 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;
  max-height:30px;
  width:auto;
  max-width:180px;
  object-fit: contain;
}

.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);
}

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

/* 3. 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;
}

/* 4. 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/menu arrows */
.sm-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);
  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-menu-arrow-left { left: 12px; }
.sm-menu-arrow-right { right: 12px; }

.sm-viewer:hover .sm-arrow{ opacity:.9; }
.sm-arrow:hover{
  transform: translateY(-50%) scale(1.04);
  background: rgba(255,255,255,.86);
}

/* 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);
}

/* 5. 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;
}

/* 6. 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-bottom: 12px;
}
.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: 100px;
  object-fit: contain;
  border-radius: 14px;
}

/* 7. 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;
}

/* 8. Contact (home section) */
#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;
}

/* 9. Menu */
.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);
}

.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; }

.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-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-arrow-fs{ opacity:.92; }
.sm-arrow-fs:hover{ background: rgba(0,0,0,.55); }

#sm-lightbox-img{ position:relative; z-index:2; }
#sm-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  /* 移除原本可能存在的 width: 100%; height: 100%; */
  transition: transform 0.15s ease-out; /* 缩放动画 */
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

/* 确保灯箱背景是溢出隐藏的，防止缩放时出现网页滚动条 */
.sm-lightbox {
  overflow: hidden;
  touch-action: none; /* 禁用移动端默认缩放行为，改用 JS 控制 */
}

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

.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;
}

/* =========================
   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; }

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

/* ===== 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);
}

/* 10. Footer */
/* 10. Footer */
.sm-footer {
  margin-top: 10px;
  padding: 64px var(--pad) 36px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(17, 17, 17, .58);
  background: #fff;
}

/* layout */
.sm-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Distribute space between columns */
  align-items: stretch;  /* Ensure all columns are stretched to the same height */
  gap: 56px;
}

/* 第一栏：使其更窄 */
.sm-footer-col:nth-child(1) {
  flex: 0.5;  /* 第一栏宽度比其他栏更窄 */
}

/* 第二栏：使其更宽 */
.sm-footer-col:nth-child(2) {
  flex: 1.5; /* 第二栏保持宽度 */
}

/* 第三栏 */
.sm-footer-col:nth-child(3) {
  flex: 1;  /* 默认宽度 */
}

/* 通用：段落去掉空行 */
.sm-footer-col p {
  margin: 0 0 12px 0; /* Remove top margin to eliminate unwanted space */
  max-width: 60ch;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .02em;
}

.sm-footer-col:nth-child(2) p:last-child {
  margin-bottom: 0; /* Remove bottom margin for the last paragraph */
}

.sm-footer-col a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .02em;
  transition: color .2s ease, opacity .2s ease;
}

.sm-footer a:hover {
  color: rgba(17, 17, 17, .85);
}

/* Column 1: Brand + Tagline + Social */
.sm-footer-col strong {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.3;
  color: rgba(17, 17, 17, .90);
}

/* Social icons */
.sm-footer-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sm-footer-social a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(17, 17, 17, .45);
}

.sm-footer-social svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.sm-footer-social a:hover {
  color: rgba(17, 17, 17, .85);
  transform: translateY(-1px);
}

/* Column 3: Footer Navigation */
.sm-footer-col:nth-child(3) {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sm-footer-col:nth-child(3) a {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(17, 17, 17, .60);
}

.sm-footer-col:nth-child(3) a:hover {
  color: rgba(17, 17, 17, .90);
}

/* Bottom Copyright */
.sm-footer-bottom {
  margin-top: 44px;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .08em;
  color: rgba(17, 17, 17, .40);
}

.sm-footer-bottom a {
  opacity: .8;
}

.sm-footer-bottom a:hover {
  opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .sm-footer-inner {
    flex-direction: column; /* Stack columns */
    gap: 30px;
  }
}


/* =========================
   Responsive Design
   ========================= */

@media (max-width: 1100px){
  .sm-cards4{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 980px){
  .sm-footer-inner{
    grid-template-columns: 1fr 1fr; /* Two-column layout for smaller screens */
    gap: 44px;
  }

  .sm-footer-col:nth-child(3){
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 22px;
    flex-wrap: wrap;
  }
}

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

  .nav-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    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);
    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;
  }

  .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-arrow{
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .sm-hero-cta{ flex-direction: column; bottom: 24px; }

  .sm-thumb{ width: 96px; height: 68px; }
}

@media (max-width: 560px){
  :root{ --pad: 14px; }
  .brand{ height: 26px; }
  .brand-logo{ height: 26px; max-height: 26px; }
  .sm-cards4{ grid-template-columns: 1fr; }
  #contact .sm-contact-row{ grid-template-columns: 90px 1fr; }
}

/* Hover Effects */
@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);
  }
}

/* =========================
   Sections (About / Clients)
   ========================= */
.sm-section{
  padding: 56px 0;
}

.sm-wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.sm-h2{
  margin: 0 0 14px 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 650;
}

.sm-p{
  margin: 0 0 12px 0;
  line-height: 1.8;
  opacity: .86;
}

/* About: left image + right text */
/* =========================
   About Us (force 2 columns)
   ========================= */
.sm-about-inner{
  display: flex;
  gap: 36px;
  align-items: center;
}

.sm-about-media{
  flex: 0 0 44%;
}

.sm-about-body{
  flex: 1;
}

/* Clients: pure text */
.sm-clients{
  background: rgba(0,0,0,.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* responsive */
@media (max-width: 768px){
  .sm-about-inner{
    flex-direction: column;
    align-items: stretch; /* 让内容占满宽度，更自然 */
  }

  .sm-about-media{
    flex: none;
    width: 100%;
  }

  .sm-about-body{
    width: 100%;
  }

  .sm-about-img{
    width: 100%;
    height: auto;
  }
}

.sm-cards3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:1px;
}

@media (max-width: 1100px){
  .sm-cards3{ grid-template-columns: 1fr; }
}
