/* ============================================================
   BAO BAO ASIAN EATERY — Koh Samui
   Design system — true black & white palette
   Type: Fraunces (display) + Hanken Grotesk (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Hanken+Grotesk:wght@300;400;500;600&display=swap');

/* ---- Tokens ---- */
:root{
  --paper:#FAF8F3;
  --paper-2:#F2ECE2;
  --card:#FFFFFF;
  --ink:#111111;
  --ink-soft:#444444;
  --ink-mute:#777777;
  --divider:rgba(0,0,0,.10);

  --font-d:'Fraunces',Georgia,'Times New Roman',serif;
  --font-s:'Hanken Grotesk',system-ui,-apple-system,sans-serif;

  --wrap:1160px;
  --gut:clamp(20px,5vw,52px);
  --r:14px;
  --r-sm:8px;
  --shadow:0 12px 40px -16px rgba(0,0,0,.22);
  --shadow-sm:0 4px 18px -8px rgba(0,0,0,.18);
  --ease:.22s cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-s);
  font-size:clamp(15px,1.04rem,17px);
  line-height:1.68;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{
  font-family:var(--font-d);
  font-weight:400;
  line-height:1.06;
  letter-spacing:-.014em;
  margin:0;
}
p{margin:0 0 .9em}
p:last-child{margin-bottom:0}
ul{margin:0;padding:0;list-style:none}
.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gut)}

/* ---- Nav ---- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(17,17,17,.95);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-inner{
  max-width:var(--wrap);margin-inline:auto;
  padding:0 var(--gut);
  height:62px;
  display:flex;align-items:center;gap:2rem;
}
.nav-logo{display:flex;align-items:center;gap:.65rem;color:#fff;flex:none}
.nav-logo svg{width:32px;height:32px}
.nav-logo-text{font-family:var(--font-d);font-size:1.05rem;letter-spacing:.04em;line-height:1.2;color:#fff}
.nav-logo-text span{display:block;font-size:.58rem;letter-spacing:.22em;text-transform:uppercase;font-family:var(--font-s);font-weight:500;color:rgba(255,255,255,.55);margin-top:1px}
.nav-links{display:flex;align-items:center;gap:1.7rem;margin-left:auto}
.nav-links a{
  font-size:.82rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.72);transition:color var(--ease);
}
.nav-links a:hover,.nav-links a.active{color:#fff}
.nav-cta{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.78rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  background:#fff;color:#111;
  padding:.44rem 1.1rem;border-radius:40px;
  transition:background var(--ease),color var(--ease);white-space:nowrap;flex:none;
}
.nav-cta:hover{background:#e8e8e8}
.hamburger{display:none;flex-direction:column;gap:4px;padding:6px;cursor:pointer;background:none;border:none}
.hamburger span{width:22px;height:2px;background:#fff;display:block;transition:var(--ease)}

/* ---- Hero ---- */
.hero{
  position:relative;height:100vh;min-height:580px;max-height:900px;
  display:flex;align-items:flex-end;
  background:#111;
  padding-top:62px;
}
.hero-img{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:brightness(.62);
}
.hero-content{
  position:relative;z-index:1;
  max-width:var(--wrap);margin-inline:auto;width:100%;
  padding:0 var(--gut) clamp(48px,8vh,88px);
}
.hero h1{
  font-size:clamp(2.8rem,7vw,6rem);
  color:#fff;
  font-weight:350;
  font-optical-sizing:auto;
  max-width:14ch;
  line-height:1.04;
  margin-bottom:1rem;
}
.hero h1 em{font-style:italic;font-weight:300}
.hero-sub{
  font-size:clamp(.9rem,1.3vw,1.05rem);
  color:rgba(255,255,255,.78);
  font-weight:300;
  margin-bottom:2rem;
  max-width:42ch;
  line-height:1.6;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:.8rem}
.btn{
  display:inline-flex;align-items:center;gap:.45em;
  font-family:var(--font-s);font-size:.84rem;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;
  padding:.62rem 1.5rem;border-radius:40px;
  transition:all var(--ease);cursor:pointer;border:none;
}
.btn-primary{background:#fff;color:#111}
.btn-primary:hover{background:#e8e8e8}
.btn-outline-white{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.5)}
.btn-outline-white:hover{background:rgba(255,255,255,.12);border-color:#fff}
.btn-dark{background:#111;color:#fff}
.btn-dark:hover{background:#2a2a2a}
.btn-outline-dark{background:transparent;color:#111;border:1.5px solid rgba(0,0,0,.3)}
.btn-outline-dark:hover{background:rgba(0,0,0,.06);border-color:#111}

/* ---- Sections ---- */
.section{padding:clamp(56px,8vw,96px) 0}
.section-alt{background:var(--paper-2)}
.section-dark{background:#111;color:#fff}
.section-header{text-align:center;margin-bottom:clamp(36px,5vw,60px)}
.section-header h2{
  font-size:clamp(1.9rem,3.5vw,3rem);
  margin-bottom:.5rem;
}
.eyebrow{
  display:block;
  font-size:.72rem;font-weight:600;letter-spacing:.24em;text-transform:uppercase;
  color:var(--ink-mute);margin-bottom:.7rem;
}
.section-dark .eyebrow{color:rgba(255,255,255,.45)}
.section-dark h2{color:#fff}
.section-header p{
  font-size:1.05rem;color:var(--ink-soft);max-width:52ch;margin-inline:auto;
}
.section-dark .section-header p{color:rgba(255,255,255,.65)}

/* ---- Dish Cards ---- */
.dish-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:1.25rem;
}
.dish-card{
  background:var(--card);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform var(--ease),box-shadow var(--ease);
}
.dish-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.dish-img-wrap{
  position:relative;
  padding-top:100%;
  background:#F0ECE4;overflow:hidden;
}
.dish-img-wrap img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  transition:transform .4s ease;
}
.dish-card:hover .dish-img-wrap img{transform:scale(1.04)}
.dish-info{padding:.9rem 1rem .85rem}
.dish-name{
  font-size:.92rem;font-weight:600;color:var(--ink);
  line-height:1.35;margin-bottom:.2rem;
}
.dish-desc{font-size:.78rem;color:var(--ink-mute);line-height:1.45;margin-bottom:.5rem}
.dish-footer{display:flex;align-items:center;justify-content:space-between;gap:.5rem}
.dish-price{
  font-family:var(--font-d);font-size:1rem;font-weight:500;
  color:var(--ink);
}
.veg-badge{
  font-size:.62rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  background:#E6F0E8;color:#2C6037;
  padding:.15rem .5rem;border-radius:20px;
}

/* ---- Bento Sets ---- */
.bento-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:1.5rem;
}
.bento-card{
  background:var(--card);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform var(--ease),box-shadow var(--ease);
}
.bento-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.bento-img-wrap{padding-top:90%;position:relative;overflow:hidden;background:#F0ECE4}
.bento-img-wrap img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  transition:transform .4s ease;
}
.bento-card:hover .bento-img-wrap img{transform:scale(1.03)}
.bento-info{padding:1.1rem 1.2rem 1rem}
.bento-name{font-size:1rem;font-weight:600;margin-bottom:.25rem}
.bento-price{
  font-family:var(--font-d);font-size:1.3rem;font-weight:400;
  color:var(--ink);margin-bottom:.7rem;
}
.bento-includes{font-size:.8rem;color:var(--ink-soft);line-height:1.55}
.bento-includes strong{display:block;font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-mute);margin-bottom:.2rem;margin-top:.55rem}
.bento-includes strong:first-child{margin-top:0}

/* ---- Drinks Lists ---- */
.drinks-wrap{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:clamp(1.5rem,3vw,2.5rem);
}
.drinks-block h3{
  font-family:var(--font-d);font-size:1.2rem;font-weight:400;
  border-bottom:1px solid var(--divider);
  padding-bottom:.5rem;margin-bottom:.85rem;
  letter-spacing:.02em;
}
.drink-row{
  display:flex;justify-content:space-between;align-items:baseline;
  gap:.5rem;padding:.35rem 0;
  border-bottom:1px solid var(--divider);
}
.drink-row:last-child{border-bottom:none}
.drink-name{font-size:.85rem;font-weight:400;line-height:1.35}
.drink-sub{display:block;font-size:.73rem;color:var(--ink-mute);font-weight:300}
.drink-price{
  font-family:var(--font-d);font-size:.92rem;white-space:nowrap;
  color:var(--ink-soft);flex:none;
}
.drink-price-double{text-align:right;font-size:.78rem;color:var(--ink-soft);flex:none}
.drinks-img-header{
  width:100%;height:180px;object-fit:cover;border-radius:var(--r);
  margin-bottom:1.5rem;
}

/* ---- Greens / Soups (larger cards with descriptions) ---- */
.menu-list-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:1.5rem;
}
.menu-list-card{
  display:flex;gap:1rem;
  background:var(--card);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform var(--ease);
  align-items:flex-start;
}
.menu-list-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.menu-list-img{
  width:100px;height:100px;flex:none;
  object-fit:cover;
}
.menu-list-body{padding:.8rem .9rem .8rem 0;flex:1}
.menu-list-body .dish-name{font-size:.9rem}
.menu-list-body .dish-desc{margin-bottom:.4rem}
.menu-list-body .dish-price{font-size:.95rem}

/* ---- Bar section ---- */
.bar-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(1.5rem,4vw,3rem);
  align-items:start;
}
.bar-img-wrap{
  border-radius:var(--r);overflow:hidden;
  position:sticky;top:80px;
}
.bar-img-wrap img{width:100%;height:520px;object-fit:cover}
.bar-content h3{
  font-family:var(--font-d);font-size:1.2rem;font-weight:400;
  margin-top:1.6rem;margin-bottom:.8rem;
  padding-bottom:.45rem;
  border-bottom:1px solid var(--divider);
}
.bar-content h3:first-child{margin-top:0}

/* ---- Atmosphere Gallery ---- */
.gallery-mosaic{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto;
  gap:.6rem;
}
.gallery-mosaic .g-big{grid-column:span 2;grid-row:span 2}
.gallery-img{
  width:100%;height:240px;object-fit:cover;border-radius:var(--r-sm);
  display:block;
}
.gallery-mosaic .g-big .gallery-img{height:487px}

/* ---- Visit block ---- */
.visit-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(1.5rem,4vw,3rem);
  align-items:start;
}
.map-frame{
  border-radius:var(--r);overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.map-frame iframe{width:100%;height:420px;border:none;display:block}
.visit-info h3{
  font-family:var(--font-d);font-size:1.3rem;font-weight:400;
  margin-bottom:1rem;margin-top:1.6rem;
}
.visit-info h3:first-child{margin-top:0}
.hours-table{width:100%;border-collapse:collapse}
.hours-table td{
  padding:.35rem 0;border-bottom:1px solid var(--divider);
  font-size:.88rem;
}
.hours-table td:last-child{text-align:right;color:var(--ink-soft)}
.hours-table tr:last-child td{border-bottom:none}
.contact-row{
  display:flex;align-items:center;gap:.65rem;
  padding:.5rem 0;border-bottom:1px solid var(--divider);
  font-size:.9rem;
}
.contact-row:last-child{border-bottom:none}
.contact-row svg{width:18px;height:18px;flex:none;color:var(--ink-mute)}
.contact-row a{color:var(--ink);font-weight:500}
.contact-row a:hover{text-decoration:underline}

/* ---- Reviews ---- */
.reviews-strip{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:1rem;
  margin-top:1.5rem;
}
.review-card{
  background:var(--card);padding:1.1rem 1.2rem;
  border-radius:var(--r);box-shadow:var(--shadow-sm);
}
.review-stars{color:#111;font-size:.9rem;letter-spacing:.1em;margin-bottom:.4rem}
.review-text{font-size:.83rem;color:var(--ink-soft);line-height:1.55;margin-bottom:.6rem;font-style:italic}
.review-author{font-size:.75rem;font-weight:600;color:var(--ink-mute);text-transform:uppercase;letter-spacing:.08em}
.google-cta{
  display:inline-flex;align-items:center;gap:.5rem;margin-top:1.5rem;
  font-size:.83rem;font-weight:600;color:var(--ink);
  border-bottom:1px solid var(--divider);padding-bottom:.2rem;
}

/* ---- Page header (menu/about) ---- */
.page-header{
  padding-top:62px;
  position:relative;height:380px;
  display:flex;align-items:flex-end;
  background:#111;
}
.page-header-img{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:brightness(.5);
}
.page-header-content{
  position:relative;z-index:1;
  max-width:var(--wrap);margin-inline:auto;width:100%;
  padding:0 var(--gut) clamp(28px,4vw,44px);
}
.page-header h1{
  font-size:clamp(2.2rem,5vw,4rem);
  color:#fff;font-weight:350;
}
.page-header p{color:rgba(255,255,255,.72);margin-top:.5rem;font-size:1.05rem}

/* ---- Menu anchor tabs ---- */
.menu-tabs{
  position:sticky;top:62px;z-index:50;
  background:var(--paper);
  border-bottom:1px solid var(--divider);
}
.menu-tabs-inner{
  max-width:var(--wrap);margin-inline:auto;
  padding-inline:var(--gut);
  display:flex;gap:0;
  overflow-x:auto;scrollbar-width:none;
}
.menu-tabs-inner::-webkit-scrollbar{display:none}
.tab-link{
  flex:none;
  font-size:.78rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  padding:.75rem 1.1rem;
  color:var(--ink-mute);
  border-bottom:2px solid transparent;
  transition:color var(--ease),border-color var(--ease);
  white-space:nowrap;
}
.tab-link:hover{color:var(--ink)}
.tab-link.active{color:var(--ink);border-bottom-color:var(--ink)}

/* ---- Section label / separator ---- */
.menu-section{padding:clamp(48px,6vw,80px) 0}
.menu-section + .menu-section{padding-top:0}
.section-label{
  display:flex;align-items:center;gap:1rem;
  margin-bottom:clamp(24px,3.5vw,40px);
}
.section-label h2{
  font-size:clamp(1.6rem,3vw,2.4rem);
  font-weight:350;
  flex:none;
}
.section-label::after{
  content:'';flex:1;height:1px;background:var(--divider);
}
.section-note{
  font-size:.83rem;color:var(--ink-mute);
  margin-top:.4rem;margin-bottom:1.6rem;
}

/* ---- Sweets (mix of cards + list) ---- */
.sweets-note{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--paper-2);
  border-radius:var(--r-sm);
  padding:.55rem 1rem;
  font-size:.83rem;color:var(--ink-soft);
  margin-bottom:1.5rem;
}

/* ---- Kids' Bento special card ---- */
.kids-card{
  background:#111;color:#fff;
  border-radius:var(--r);
  padding:clamp(1.5rem,4vw,2.5rem);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:center;
}
.kids-card h2{
  font-size:clamp(1.6rem,3vw,2.4rem);
  color:#fff;margin-bottom:.5rem;
}
.kids-card p{color:rgba(255,255,255,.65);font-size:.9rem}
.kids-price-tag{
  display:inline-block;
  font-family:var(--font-d);font-size:2rem;font-weight:300;
  color:#fff;margin-top:.8rem;
}
.kids-columns{
  display:grid;grid-template-columns:1fr 1fr;gap:1rem;
  font-size:.83rem;color:rgba(255,255,255,.72);
}
.kids-columns h4{
  font-family:var(--font-s);font-size:.7rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;
  color:rgba(255,255,255,.45);margin-bottom:.4rem;
}
.kids-columns li{padding:.15rem 0;line-height:1.4}

/* ---- About page ---- */
.about-intro{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,5rem);align-items:center;
}
.about-intro-text h2{
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  margin-bottom:1.2rem;
}
.about-intro-text p{
  color:var(--ink-soft);font-size:1.02rem;line-height:1.75;
}
.about-intro-img{
  border-radius:var(--r);overflow:hidden;
  box-shadow:var(--shadow);
}
.about-intro-img img{width:100%;height:480px;object-fit:cover}
.values-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:1.5rem;
}
.value-item{
  background:var(--card);padding:1.5rem;border-radius:var(--r);
  box-shadow:var(--shadow-sm);
}
.value-icon{font-size:1.6rem;margin-bottom:.65rem}
.value-item h3{font-size:1rem;margin-bottom:.4rem}
.value-item p{font-size:.85rem;color:var(--ink-soft);margin:0;line-height:1.6}

/* ---- Photo wall ---- */
.photo-wall{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:.5rem;
}
.photo-wall img{width:100%;height:220px;object-fit:cover;border-radius:var(--r-sm)}
.photo-wall .pw-tall{height:456px;grid-row:span 2}

/* ---- Footer ---- */
footer{
  background:#111;color:rgba(255,255,255,.65);
  padding:clamp(40px,6vw,64px) 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:2rem;
  margin-bottom:2.5rem;
}
.footer-brand .nav-logo{margin-bottom:.9rem}
.footer-brand p{font-size:.85rem;line-height:1.65;max-width:26ch}
.footer-col h4{
  font-size:.7rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.35);margin-bottom:.8rem;
}
.footer-col a{
  display:block;font-size:.87rem;
  color:rgba(255,255,255,.65);
  padding:.2rem 0;
  transition:color var(--ease);
}
.footer-col a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:1.2rem;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:.5rem;
}
.footer-bottom p{font-size:.78rem;margin:0}
.footer-social{display:flex;gap:.8rem}
.footer-social a{
  width:32px;height:32px;border-radius:50%;
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  transition:background var(--ease);
}
.footer-social a:hover{background:rgba(255,255,255,.2)}
.footer-social svg{width:15px;height:15px}

/* ---- PDF download ---- */
.pdf-download-bar{
  background:var(--paper-2);border-radius:var(--r);
  padding:1.4rem 1.8rem;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:1rem;
  margin-top:clamp(40px,5vw,64px);
}
.pdf-download-bar p{font-size:.92rem;color:var(--ink-soft);margin:0}
.pdf-download-bar strong{display:block;color:var(--ink);margin-bottom:.2rem}

/* ---- Lemonades price header ---- */
.lemonade-header-row{
  display:grid;grid-template-columns:1fr 60px 60px;
  gap:.5rem;font-size:.7rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--ink-mute);padding:.35rem 0;border-bottom:1px solid var(--divider);margin-bottom:.2rem;
}
.lemonade-row{
  display:grid;grid-template-columns:1fr 60px 60px;
  gap:.5rem;padding:.38rem 0;border-bottom:1px solid var(--divider);
}
.lemonade-row:last-child{border-bottom:none}
.lemonade-row .drink-price{font-size:.85rem;text-align:right}

/* ---- Vegan marker ---- */
.veg{display:inline-block;color:#2C6037;font-weight:600;margin-left:.2em;font-size:.85em}

/* ---- Responsive ---- */
@media(max-width:900px){
  .bar-split{grid-template-columns:1fr}
  .bar-img-wrap{position:static}
  .bar-img-wrap img{height:320px}
  .visit-grid{grid-template-columns:1fr}
  .gallery-mosaic{grid-template-columns:1fr 1fr}
  .gallery-mosaic .g-big{grid-column:span 2;grid-row:span 1}
  .gallery-mosaic .g-big .gallery-img{height:240px}
  .about-intro{grid-template-columns:1fr}
  .about-intro-img img{height:320px}
  .values-grid{grid-template-columns:1fr 1fr}
  .kids-card{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .photo-wall{grid-template-columns:1fr 1fr}
  .photo-wall .pw-tall{height:220px;grid-row:span 1}
}
@media(max-width:720px){
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  .hero h1{font-size:clamp(2.2rem,9vw,3.2rem)}
  .gallery-mosaic{grid-template-columns:1fr}
  .gallery-mosaic .g-big{grid-column:span 1}
  .dish-grid{grid-template-columns:repeat(2,1fr);gap:.85rem}
  .drinks-wrap{grid-template-columns:1fr}
  .menu-list-grid{grid-template-columns:1fr}
  .bento-grid{grid-template-columns:1fr 1fr}
  .values-grid{grid-template-columns:1fr}
  .photo-wall{grid-template-columns:1fr}
}
@media(max-width:480px){
  .bento-grid{grid-template-columns:1fr}
  .dish-grid{grid-template-columns:1fr 1fr}
  .kids-columns{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  *{transition:none!important;animation:none!important}
}

/* ---- Original logo PNG in nav ---- */
.nav-logo-img{
  width:42px;height:42px;
  object-fit:contain;
  filter:brightness(10);   /* makes the white logo visible on dark nav */
}
/* Black version for light backgrounds */
.nav-logo-img.dark{
  filter:brightness(0);
}

/* ---- Bar subsection headers ---- */
.bar-sub-h{
  font-family:var(--font-d);font-size:.95rem;font-weight:500;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--ink-mute);
  margin:.5rem 0 .4rem;padding-top:.6rem;
  border-top:1px dashed var(--divider);
}
.bar-sub-h:first-child{border-top:none;padding-top:0}

/* ---- Two PDF download buttons side by side ---- */
.pdf-pair{
  display:flex;gap:1rem;flex-wrap:wrap;
  align-items:center;
}

/* ---- Wine with glass/bottle price ---- */
.wine-row{
  display:grid;grid-template-columns:1fr 64px 64px;
  gap:.5rem;padding:.38rem 0;border-bottom:1px solid var(--divider);
}
.wine-row:last-child{border-bottom:none}
.wine-name{font-size:.85rem;line-height:1.3}
.wine-origin{font-size:.73rem;color:var(--ink-mute);display:block}
.wine-price{font-size:.83rem;color:var(--ink-soft);text-align:right;font-family:var(--font-d)}

/* ══════════════════════════════════════════════
   MOBILE FIXES — v3
   ══════════════════════════════════════════════ */

/* Logo: use as-is, no filter needed (black bg blends with dark nav) */
.nav-logo-img{
  width:48px;height:48px;
  object-fit:contain;
  filter:none !important;
  border-radius:4px;
}

/* ── Menu sticky tabs ── */
.menu-tabs{
  overflow:hidden;          /* prevent page-level horizontal scroll */
  width:100%;
}
.menu-tabs-inner{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.menu-tabs-inner::-webkit-scrollbar{display:none}

/* On mobile: tighter tab padding so more tabs fit before scrolling */
@media(max-width:720px){
  .menu-tabs-inner{
    padding-inline:12px;
    gap:0;
  }
  .tab-link{
    font-size:.68rem;
    padding:.65rem .75rem;
    letter-spacing:.04em;
  }
}

/* ── White-background section overflow fix ── */
.menu-section.wrap{
  overflow-x:hidden;    /* clip any card/grid overflow */
}

/* Dish grid on mobile: ensure cards stay within container */
@media(max-width:720px){
  .dish-grid{
    grid-template-columns:repeat(2,1fr);
    gap:.65rem;
  }
  .dish-card{
    min-width:0;          /* allow grid shrink */
  }
  .dish-info{
    padding:.65rem .7rem .6rem;
  }
  .dish-name{
    font-size:.82rem;
    word-break:break-word;
    overflow-wrap:break-word;
  }
  .dish-price{
    font-size:.88rem;
  }
  .dish-img-wrap{
    padding-top:90%;     /* slightly shorter square on mobile */
  }
  .veg-badge{
    display:none;        /* too tight on 2-col; veg marker on name is enough */
  }
}

@media(max-width:480px){
  .dish-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.5rem;
  }
  .dish-info{
    padding:.55rem .6rem .5rem;
  }
  .dish-name{
    font-size:.76rem;
  }
}

/* Bento grid on mobile */
@media(max-width:600px){
  .bento-grid{
    grid-template-columns:1fr;
  }
}

/* Bar section: collapse cocktail split earlier */
@media(max-width:720px){
  .bar-split{
    grid-template-columns:1fr;
  }
  .bar-img-wrap{
    position:static;
  }
  .bar-img-wrap img{
    height:240px;object-fit:cover;
  }
}

/* Drinks wrap: single col on mobile */
@media(max-width:600px){
  .drinks-wrap{
    grid-template-columns:1fr;
  }
}

/* Lemonade + wine rows: don't overflow on small screens */
@media(max-width:480px){
  .lemonade-row,
  .lemonade-header-row{
    grid-template-columns:1fr 44px 44px;
    font-size:.78rem;
  }
  .wine-row{
    grid-template-columns:1fr 44px 52px;
  }
}

/* Kids card on small screens */
@media(max-width:600px){
  .kids-card{
    grid-template-columns:1fr;
    gap:1.2rem;
  }
  .kids-columns{
    grid-template-columns:1fr 1fr;
  }
}

/* Prevent any section from overflowing viewport */
section, .section, .menu-section{
  max-width:100vw;
  overflow-x:hidden;
}

/* Wrap safety net */
.wrap{
  box-sizing:border-box;
  width:100%;
}

/* ══════════════════════════════════════════════
   v4 — Final overrides
   ══════════════════════════════════════════════ */

/* ── 1. LOGO: double size ── */
.nav-logo-img {
  width: 96px !important;
  height: 96px !important;
  object-fit: contain !important;
  filter: none !important;
  border-radius: 6px !important;
}

/* ── 2. NAV: taller to hold the bigger logo ── */
.nav-inner {
  height: 112px !important;
}

/* ── 3. Offset all fixed-nav dependents ── */
.hero          { padding-top: 112px !important; }
.page-header   { padding-top: 112px !important; }
.menu-tabs     { top: 112px !important; }

/* ── 4. UNDO v3's broken overflow rules ──
        Those rules removed padding on white sections          */
section,
.section,
.menu-section {
  max-width: none !important;
  overflow-x: visible !important;
}

/* Sections that now have inner .wrap div: overflow clip on the section */
.menu-section,
.section {
  overflow-x: clip !important;   /* clip grid overflow, no scroll container */
}

/* Ensure wrap padding is always respected */
.wrap {
  padding-inline: var(--gut) !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: var(--wrap) !important;
}

/* ── 5. TAB BAR: correct mobile overflow ── */
.menu-tabs {
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;        /* prevent page-level horizontal scroll */
}
.menu-tabs-inner {
  overflow-x: auto !important;
  overflow-y: visible !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding-inline: var(--gut) !important;
}
.menu-tabs-inner::-webkit-scrollbar { display: none !important; }

@media (max-width: 768px) {
  .tab-link {
    font-size: .65rem !important;
    padding: .6rem .65rem !important;
    letter-spacing: .03em !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  .menu-tabs-inner {
    padding-inline: 12px !important;
    gap: 0 !important;
  }
}

/* ── 6. DISH GRID: ensure 2-col mobile cards don't overflow ── */
@media (max-width: 768px) {
  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .6rem !important;
  }
  .dish-card,
  .dish-img-wrap,
  .dish-info {
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .dish-name {
    font-size: .8rem !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .dish-price {
    font-size: .85rem !important;
  }
}

/* ── 7. DRINKS-WRAP: single col on narrow mobile ── */
@media (max-width: 600px) {
  .drinks-wrap {
    grid-template-columns: 1fr !important;
  }
}

/* ── 8. BAR SPLIT: single col on mobile ── */
@media (max-width: 768px) {
  .bar-split {
    grid-template-columns: 1fr !important;
  }
  .bar-img-wrap img {
    height: 240px !important;
    object-fit: cover !important;
  }
}

/* ── 9. Prevent any direct child overflowing the wrap ── */
.wrap > * {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ══════════════════════════════════════════════
   v5 — Logo 25% bigger, kids card, reviews
   ══════════════════════════════════════════════ */

/* ── Logo: 96px × 1.25 = 120px ── */
.nav-logo-img {
  width: 120px !important;
  height: 120px !important;
  object-fit: contain !important;
  filter: none !important;
  border-radius: 6px !important;
}

/* ── Taller nav to hold 120px logo ── */
.nav-inner { height: 132px !important; }
.hero        { padding-top: 132px !important; }
.page-header { padding-top: 132px !important; }
.menu-tabs   { top: 132px !important; }

/* ── Hide the logo text (belt + braces) ── */
.nav-logo-text { display: none !important; }

/* ── Kids Bento card: change from near-black to warm paper ── */
.kids-card {
  background: var(--paper-2) !important;
  color: var(--ink) !important;
  border: 2px solid var(--divider) !important;
}
.kids-card h2 { color: var(--ink) !important; }
.kids-card p  { color: var(--ink-soft) !important; }
.kids-price-tag { color: var(--ink) !important; }

/* Kids columns: headings + list items to dark */
.kids-columns h4 {
  color: var(--ink-mute) !important;
}
.kids-columns li {
  color: var(--ink-soft) !important;
}

/* ── Google Reviews: make the grid wider with more columns ── */
.reviews-strip {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
}

/* Full-width reviews container in visit section */
#visit .review-card {
  background: var(--card);
  padding: 1.2rem 1.3rem;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}

/* ══════════════════════════════════════════════
   v6 — Mobile hero focus, kimchi, sweets cleanup
   ══════════════════════════════════════════════ */

/* ── Hero: on narrow mobile, shift focus to the bao buns ── */
/* The top-down Bao Mix 5 shot has buns in the lower-center area */
@media (max-width: 768px) {
  .hero .hero-img {
    background-position: center 65% !important;
  }
}

/* Extra-narrow phones */
@media (max-width: 420px) {
  .hero .hero-img {
    background-position: center 72% !important;
  }
}

/* ══════════════════════════════════════════════
   v7 — Hero mobile right-shift, vegan badges,
         hero position
   ══════════════════════════════════════════════ */

/* ── Hero: shift right on mobile to show the bao bun ── */
@media (max-width: 768px) {
  .hero .hero-img {
    background-position: 82% 60% !important;
  }
}
@media (max-width: 420px) {
  .hero .hero-img {
    background-position: 85% 62% !important;
  }
}

/* ── Vegan badge: restore visibility on all screens ──
   v4 hid it on mobile — bring it back, compact size  */
.veg-badge {
  display: inline-flex !important;
  align-items: center;
  font-size: .58rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase;
  background: #e8f2ea !important;
  color: #2a5e33 !important;
  padding: .12rem .42rem !important;
  border-radius: 20px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* On very small screens: badge wraps below price — use flex-column */
@media (max-width: 420px) {
  .dish-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .25rem !important;
  }
}

/* ══════════════════════════════════════════════
   LANGUAGE SWITCHER
   ══════════════════════════════════════════════ */
.lang-bar {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.65);
  font-family: var(--font-s);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .25rem .42rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.lang-btn:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.lang-btn--active {
  background: #fff !important;
  color: #111 !important;
  border-color: #fff !important;
}

/* Hide on mobile — show compact dropdown instead */
@media (max-width: 768px) {
  .lang-bar {
    gap: 1px;
  }
  .lang-btn {
    font-size: .58rem;
    padding: .2rem .32rem;
  }
}
/* Very tight mobile: wrap to 2 rows is fine since nav is tall */
@media (max-width: 480px) {
  .lang-bar {
    flex-wrap: wrap;
    max-width: 160px;
    justify-content: flex-end;
  }
}

/* ══════════════════════════════════════════════
   CARD LIGHTBOX — click to zoom
   ══════════════════════════════════════════════ */
.dish-card,
.bento-card {
  cursor: pointer;
}

/* The full-screen overlay */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  transition: background .28s ease;
  pointer-events: none;
  visibility: hidden;
}
.lb-overlay.lb-open {
  background: rgba(0,0,0,.82);
  pointer-events: all;
  visibility: visible;
}

/* The zoomed card */
.lb-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  width: min(480px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px -12px rgba(0,0,0,.55);
  transform: scale(.82) translateY(24px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.22,.61,.36,1),
              opacity .28s ease;
  position: relative;
}
.lb-overlay.lb-open .lb-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close button */
.lb-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .18s;
}
.lb-close:hover { background: rgba(0,0,0,.7); }
.lb-close svg { width: 14px; height: 14px; stroke: #fff; }

/* Image inside lightbox */
.lb-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* Info strip */
.lb-info {
  padding: 1.1rem 1.3rem 1.3rem;
}
.lb-name {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .35rem;
  line-height: 1.2;
}
.lb-desc {
  font-size: .88rem;
  color: var(--ink-soft);
  margin-bottom: .6rem;
  line-height: 1.55;
}
.lb-price {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
}
.lb-vegan {
  display: inline-flex;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: #e8f2ea; color: #2a5e33;
  padding: .12rem .42rem; border-radius: 20px;
  margin-left: .5rem; vertical-align: middle;
}

/* Subtle hover lift on cards */
.dish-card:hover,
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Close button — larger tap target on mobile */
@media (max-width: 768px) {
  .lb-close {
    width: 40px !important;
    height: 40px !important;
    top: 10px !important;
    right: 10px !important;
  }
  .lb-close svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ── Fix: bento image white gap on right edge ──────────────────────────────
   Sub-pixel rendering causes a 1-2px gap; extending the image 1px each side
   and forcing GPU compositing eliminates it.                                 */
.bento-img-wrap {
  width: 100% !important;
  display: block !important;
}
.bento-img-wrap img {
  position: absolute !important;
  top: 0 !important;
  left: -1px !important;
  width: calc(100% + 2px) !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: translateZ(0) !important; /* GPU layer — kills sub-pixel gap */
}
/* Same fix for dish cards (prevents same issue appearing elsewhere) */
.dish-img-wrap img {
  transform: translateZ(0);
}

/* ── Fix: restore top padding on all menu sections ─────────────────────────
   The original rule ".menu-section + .menu-section{padding-top:0}" was
   zeroing out top padding on GREENS, BENTO, KIDS, COCKTAILS, SPIRITS etc.  */
.menu-section {
  padding-top:    clamp(48px, 6vw, 80px) !important;
  padding-bottom: clamp(48px, 6vw, 80px) !important;
}

/* ── FINAL FIX: bento image fills card with zero gaps ──────────────────────
   Previous fix used height:100% which fails inside padding-top trick.
   Correct approach: inset:-1px bleeds 1px on all sides + overflow:hidden clips. */
.bento-img-wrap {
  width: 100% !important;
  display: block !important;
  overflow: hidden !important;
}
.bento-img-wrap img {
  position: absolute !important;
  inset: -1px !important;                  /* 1px bleed all sides */
  width: calc(100% + 2px) !important;
  height: calc(100% + 2px) !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: translateZ(0) !important;
  transition: transform .4s ease !important;
}
.bento-card:hover .bento-img-wrap img {
  transform: scale(1.03) translateZ(0) !important;
}
