:root{
  --text-primary:#000000;
  --text-secondary:#606B73;
  --border-accent:#A69F95;
  --neutral-gray:#7A7A7A;
  --bg:#FFFFFF;
  --bg-soft:#FAF9F7;
  --radius:14px;
  --radius-lg:16px;
  --nav-h:76px;
  --max:1240px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:auto;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

body{
  margin:0;
  font-family:'Be Vietnam Pro', system-ui, sans-serif;
  color:var(--text-primary);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}

img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit;}

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

a:focus-visible, button:focus-visible, [tabindex]:focus-visible{
  outline:3px solid #000;
  outline-offset:3px;
  border-radius:6px;
}
.section-dark a:focus-visible, .section-dark button:focus-visible, .section-dark [tabindex]:focus-visible{
  outline-color:#fff;
}

/* ---------- SECTION COLOR SHIFT ---------- */
section{transition:background-color .6s var(--ease), color .6s var(--ease);}
.section-dark{background:#000; color:#fff;}
.section-dark .eyebrow{color:rgba(255,255,255,.62);}
.section-dark .section-head .lede{color:rgba(255,255,255,.72);}
.section-dark h2, .section-dark h3, .section-dark h4{color:#fff;}
.section-dark .about-text p{color:rgba(255,255,255,.76);}
.section-dark .about-stat b{color:#fff;}
.section-dark .about-stat span{color:rgba(255,255,255,.62);}
.section-dark .masonry-item{border-color:rgba(255,255,255,.14);}
.section-dark .btn-secondary{color:#fff; border-color:rgba(255,255,255,.5);}
.section-dark .btn-secondary:hover{background:#fff; color:#000; border-color:#fff;}

/* ---------- SCROLL REVEAL ---------- */
.reveal{
  opacity:0;
  transform:translateY(24px) scale(0.985);
  transition:opacity .8s cubic-bezier(.16,.8,.24,1), transform .8s cubic-bezier(.16,.8,.24,1);
  will-change:opacity, transform;
}
.reveal.in-view{opacity:1; transform:translateY(0) scale(1);}

/* ---------- HERO LOAD-IN ---------- */
.hero-copy .eyebrow, .hero-copy h1, .hero-copy .hero-lede, .hero-copy .hero-actions{
  opacity:0;
  animation:heroUp .9s var(--ease) forwards;
}
.hero-copy .eyebrow{animation-delay:.15s;}
.hero-copy h1{animation-delay:.3s;}
.hero-copy .hero-lede{animation-delay:.48s;}
.hero-copy .hero-actions{animation-delay:.64s;}
@keyframes heroUp{
  from{opacity:0; transform:translateY(26px);}
  to{opacity:1; transform:translateY(0);}
}

h1,h2,h3{font-weight:800; margin:0; letter-spacing:-0.02em;}
p{margin:0;}

.eyebrow{
  font-size:13px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--neutral-gray);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:16px 30px;
  border-radius:100px;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .25s ease-out, background-color .25s ease-out, color .25s ease-out, border-color .25s ease-out, box-shadow .25s ease-out;
  white-space:nowrap;
}
.btn:hover{transform:scale(1.025);}
.btn:active{transform:scale(0.99);}
.btn-primary{background:#000; color:#fff;}
.btn-primary:hover{background:#262626; box-shadow:0 8px 22px rgba(0,0,0,.18);}
.btn-secondary{background:transparent; color:#000; border-color:var(--border-accent);}
.btn-secondary:hover{background:#000; color:#fff; border-color:#000;}
.btn-light{background:#fff; color:#000;}
.btn-light:hover{background:#f0f0f0; box-shadow:0 8px 22px rgba(0,0,0,.14);}
.btn-outline-light{background:transparent; color:#fff; border-color:rgba(255,255,255,.55);}
.btn-outline-light:hover{background:#fff; color:#000; border-color:#fff;}

/* ---------- NAV ---------- */
header.site-nav{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
}
header.site-nav.scrolled{
  border-bottom-color:#ECE9E4;
  box-shadow:0 4px 24px rgba(0,0,0,0.04);
}
.nav-inner{
  max-width:var(--max); margin:0 auto; padding:0 32px;
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex; align-items:center; gap:12px;
  font-weight:800; font-size:19px; letter-spacing:-0.01em;
}
.logo-mark{
  width:42px; height:42px; border-radius:50%;
  background:#000; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:800; letter-spacing:-0.03em;
  flex-shrink:0;
}
.logo-text{display:flex; flex-direction:column; line-height:1.15;}
.logo-text small{font-size:11px; font-weight:500; color:var(--text-secondary); letter-spacing:0.08em; text-transform:uppercase;}

nav.nav-links{display:flex; align-items:center; gap:8px;}
nav.nav-links a{
  position:relative;
  padding:10px 16px;
  border-radius:100px;
  font-weight:600;
  font-size:15.5px;
  color:var(--text-primary);
  transition:background .2s var(--ease), color .2s var(--ease);
}
nav.nav-links a:hover{background:var(--bg-soft);}
nav.nav-links a.active{color:#000;}
nav.nav-links a.active::after{
  content:"";
  position:absolute;
  left:16px; right:16px; bottom:4px;
  height:2px;
  background:#000;
  border-radius:2px;
}

.nav-right{display:flex; align-items:center; gap:14px;}

.menu-toggle{
  display:none;
  width:46px; height:46px;
  border-radius:50%;
  border:1.5px solid var(--border-accent);
  background:#fff;
  align-items:center; justify-content:center;
  cursor:pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after{
  content:""; display:block; width:20px; height:2px; background:#000; position:relative;
}
.menu-toggle{flex-direction:column; gap:5px;}

.mobile-panel{
  display:none;
  position:fixed; inset:var(--nav-h) 0 0 0;
  background:#fff;
  z-index:99;
  padding:16px 32px 40px;
  overflow-y:auto;
}
.mobile-panel.open{display:block;}
.mobile-panel a{
  display:block;
  font-size:22px;
  font-weight:700;
  padding:18px 4px;
  border-bottom:1px solid #EFEDE9;
}
.mobile-panel .btn{width:100%; margin-top:24px;}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:150px 0 100px;
  overflow:hidden;
  background:var(--bg-soft);
}
.hero-photo-layer{
  position:absolute; inset:0;
  z-index:0;
}
.hero-photo-layer img{
  width:100%; height:100%;
  object-fit:cover;
  /* Cinematic gray filter: desaturated, slightly lifted blacks, cool tone */
  filter:grayscale(55%) contrast(1.05) brightness(0.92) saturate(0.9);
}
.hero-photo-layer::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.72) 38%, rgba(255,255,255,.55) 100%);
  mix-blend-mode:normal;
}
.hero:not(.has-hero-photo) .hero-photo-layer{display:none;}
.hero-grid{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:1.05fr 1fr;
  align-items:center;
  gap:40px;
}
.hero-copy .eyebrow{color:var(--neutral-gray);}
.hero-stack{
  display:flex;
  flex-direction:column;
  font-size:clamp(40px, 5.6vw, 74px);
  line-height:0.98;
  letter-spacing:-0.03em;
  margin:16px 0 26px;
}
.hero-stack span{display:block;}
.hero-stack .hero-stack-accent{
  color:transparent;
  -webkit-text-stroke:1.5px #000;
  font-weight:800;
}
.hero-lede{
  font-size:clamp(16px, 1.6vw, 19px);
  max-width:46ch;
  color:var(--text-secondary);
  font-weight:400;
  margin-bottom:34px;
}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap;}

.hero-visual{
  position:relative;
  z-index:1;
  height:520px;
}
.floating-photo{
  position:absolute;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.14);
  border:6px solid #fff;
  animation:floaty 6s ease-in-out infinite;
}
.floating-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.fp-1{width:230px; height:290px; top:0; right:40px; transform:rotate(4deg); animation-delay:0s;}
.fp-2{width:190px; height:190px; bottom:30px; right:280px; border-radius:50%; transform:rotate(-3deg); animation-delay:1.4s;}
.fp-3{width:170px; height:220px; bottom:0; right:0; transform:rotate(-6deg); animation-delay:.7s;}
@keyframes floaty{
  0%, 100%{transform:translateY(0) rotate(var(--r, 0deg));}
  50%{transform:translateY(-14px) rotate(var(--r, 0deg));}
}
.fp-1{--r:4deg;} .fp-2{--r:-3deg;} .fp-3{--r:-6deg;}

@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{height:360px; margin-top:20px;}
  .fp-1{width:170px; height:210px; right:10px;}
  .fp-2{width:140px; height:140px; right:190px;}
  .fp-3{width:130px; height:160px; right:-10px;}
}
@media (max-width:600px){
  .hero{padding:120px 0 70px;}
  .hero-visual{height:280px;}
  .hero-photo-layer::after{background:linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.65) 100%);}
}

/* ---------- SECTION SHELL ---------- */
section{padding:100px 0;}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px;
  margin-bottom:52px; flex-wrap:wrap;
}
.section-head h2{font-size:clamp(30px,4vw,46px); margin-top:10px; max-width:16ch;}
.section-head .lede{max-width:44ch; color:var(--text-secondary); font-size:17px; margin-top:10px;}

/* ---------- FEATURED DISHES ---------- */
.dish-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:36px;
}
.dish-card{
  padding-top:22px;
  border-radius:var(--radius-lg);
  transition:transform .25s ease-out, box-shadow .25s ease-out;
}
.dish-card:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}
.dish-photo{
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/3.1;
  margin-bottom:22px;
}
.dish-photo img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease-out, filter .5s ease-out;}
.dish-card:hover .dish-photo img{transform:scale(1.06); filter:brightness(1.04);}
.dish-card h3{font-size:21px; margin-bottom:8px;}
.dish-card p{color:var(--text-secondary); font-size:15.5px;}

/* ---------- GALLERY ---------- */
.masonry{
  columns:4 220px;
  column-gap:22px;
}
.masonry-item{
  break-inside:avoid;
  margin-bottom:22px;
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  cursor:zoom-in;
  border:1px solid rgba(166,159,149,.18);
}
.masonry-item img{width:100%; display:block; transition:transform .3s ease-out, filter .3s ease-out;}
.masonry-item:hover img{transform:scale(1.045); filter:brightness(1.08);}
.masonry-item .tag{
  position:absolute; left:12px; bottom:12px;
  background:rgba(255,255,255,.92);
  padding:6px 14px; border-radius:100px;
  font-size:12.5px; font-weight:700;
  opacity:0; transform:translateY(6px);
  transition:opacity .25s var(--ease), transform .25s var(--ease);
}
.masonry-item:hover .tag{opacity:1; transform:translateY(0);}

/* Lightbox */
.lightbox{
  position:fixed; inset:0; background:rgba(0,0,0,.92);
  z-index:200;
  display:flex;
  align-items:center; justify-content:center;
  padding:40px;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s ease-out, visibility 0s linear .35s;
}
.lightbox.open{
  opacity:1;
  visibility:visible;
  transition:opacity .35s ease-out, visibility 0s linear 0s;
}
.lightbox img{
  max-width:min(1100px, 92vw); max-height:86vh; border-radius:10px; object-fit:contain;
  transform:scale(.96);
  transition:transform .35s ease-out;
}
.lightbox.open img{transform:scale(1);}
.lightbox-close{
  position:absolute; top:28px; right:32px;
  width:48px; height:48px; border-radius:50%;
  background:#fff; border:none; cursor:pointer;
  font-size:22px; display:flex; align-items:center; justify-content:center;
}
.lightbox-caption{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  color:#fff; font-size:14px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
}

/* ---------- MENU PREVIEW ---------- */
.menu-tabs{
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px;
}
.menu-tab{
  padding:12px 22px;
  border-radius:100px;
  border:1.5px solid var(--border-accent);
  background:#fff;
  font-weight:700; font-size:15px;
  cursor:pointer;
  transition:all .2s var(--ease);
}
.menu-tab.active, .menu-tab:hover{background:#000; color:#fff; border-color:#000;}

.menu-panels{position:relative;}
.menu-panel{display:none;}
.menu-panel.active{display:block; animation:fade .35s var(--ease);}
@keyframes fade{from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);}}

.menu-list{display:grid; grid-template-columns:1fr 1fr; gap:0 56px;}
.menu-row{
  display:flex; justify-content:space-between; gap:18px;
  padding:20px 0;
  border-bottom:1px solid #EAE7E2;
}
.menu-row-text h4{font-size:17px; font-weight:700; margin:0 0 6px;}
.menu-row-text p{font-size:14.5px; color:var(--text-secondary);}
.menu-row-price{font-weight:700; font-size:17px; white-space:nowrap;}

.menu-cta{text-align:center; margin-top:50px;}

.menu-panel-note{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid #EAE7E2;
  font-size:13.5px;
  color:var(--text-secondary);
}

/* ---------- PROTEIN PRICING (vertical list) ---------- */
.protein-pricing{
  margin-bottom:44px;
  padding:28px 30px;
  border-radius:var(--radius-lg);
  background:var(--bg-soft);
  border:1px solid rgba(166,159,149,.22);
}
.protein-pricing-head h3{font-size:19px; margin:6px 0 4px;}
.protein-pricing-lede{color:var(--text-secondary); font-size:14.5px; max-width:56ch;}
.protein-pricing-list{
  list-style:none;
  margin:22px 0 0;
  padding:0;
}
.protein-pricing-row{
  display:flex; align-items:baseline; justify-content:space-between; gap:14px;
  padding:15px 0;
  border-bottom:1px solid rgba(166,159,149,.22);
}
.protein-pricing-row:last-child{border-bottom:none;}
.protein-pricing-name{font-size:15px; font-weight:600;}
.protein-pricing-name small{display:block; font-weight:400; color:var(--text-secondary); font-size:12.5px; margin-top:2px;}
.protein-pricing-value{font-weight:700; font-size:15px; white-space:nowrap;}
.protein-pricing-value.is-base{color:var(--text-secondary); font-weight:600;}
@media (max-width:600px){
  .protein-pricing{padding:22px 20px;}
}

/* ---------- BOBA BUILDER ---------- */
.boba-builder{
  margin-top:56px;
  padding-top:48px;
  border-top:1px solid rgba(166,159,149,.22);
}
.boba-builder-head h3{font-size:26px; margin:8px 0 8px;}
.boba-lede{color:var(--text-secondary); font-size:15.5px; max-width:44ch;}

.boba-options{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:36px;
  margin:32px 0;
  align-items:start;
}
.boba-group-label{
  display:block;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--neutral-gray);
  margin-bottom:14px;
}
.boba-group-sublabel{
  display:block;
  font-size:11px;
  font-weight:500;
  letter-spacing:0;
  text-transform:none;
  color:var(--text-secondary);
  margin-top:3px;
}
.boba-pills{display:flex; flex-wrap:wrap; gap:10px;}
.boba-pill{
  padding:11px 20px;
  border-radius:100px;
  border:1.5px solid var(--border-accent);
  background:#fff;
  font-family:inherit;
  font-weight:600;
  font-size:14.5px;
  cursor:pointer;
  transition:background-color .25s ease-out, color .25s ease-out, border-color .25s ease-out, transform .2s ease-out;
}
.boba-pill:hover{transform:translateY(-2px);}
.boba-pill.active{background:#000; color:#fff; border-color:#000;}

/* Toppings & pearls: unified quantity-stepper rows */
.boba-topping-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 28px;
}
.boba-topping-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(166,159,149,.18);
}
.boba-topping-name{
  font-size:14px;
  font-weight:600;
}

/* Quantity stepper (reused for each topping row) */
.boba-stepper{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.boba-stepper-btn{
  width:30px; height:30px;
  border-radius:50%;
  border:1.5px solid var(--border-accent);
  background:#fff;
  font-size:16px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out, transform .2s ease-out;
}
.boba-stepper-btn:hover{transform:translateY(-2px);}
.boba-stepper-btn:active{background:#000; color:#fff; border-color:#000;}
.boba-stepper-count{
  font-size:15px;
  font-weight:800;
  min-width:16px;
  text-align:center;
}
.boba-stepper-label{
  font-size:13.5px;
  color:var(--text-secondary);
  font-weight:600;
}
@media (max-width:700px){
  .boba-topping-list{grid-template-columns:1fr;}
}

.boba-preview{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  padding:26px 30px;
  border-radius:var(--radius-lg);
  background:var(--bg-soft);
}
.boba-preview-label{
  display:block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--neutral-gray);
  margin-bottom:6px;
}
.boba-preview-text h4{
  font-size:19px;
  transition:opacity .2s ease-out;
}
.boba-preview-price{
  font-size:26px;
  font-weight:800;
  transition:opacity .2s ease-out, transform .2s ease-out;
}
.boba-preview-text.updating h4, .boba-preview-price.updating{opacity:0; transform:translateY(4px);}

@media (max-width:600px){
  .boba-options{grid-template-columns:1fr;}
  .boba-topping-list{grid-template-columns:1fr;}
  .boba-preview{flex-direction:column; align-items:flex-start;}
}

/* ---------- ABOUT ---------- */
.about-section .wrap{
  display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;
}
.about-photo{border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3.4;}
.about-photo img{width:100%; height:100%; object-fit:cover;}
.about-text p{color:var(--text-secondary); font-size:17px; margin-top:22px;}
.about-text p + p{margin-top:16px;}
.about-stats{display:flex; gap:40px; margin-top:38px; flex-wrap:wrap;}
.about-stat b{display:block; font-size:30px; font-weight:800;}
.about-stat span{font-size:13.5px; color:var(--text-secondary); font-weight:600;}

/* ---------- CONNECT ---------- */
.connect-grid{
  display:grid; grid-template-columns:1.05fr 1fr; gap:60px; align-items:start;
}
.info-card{
  padding:28px 0;
  margin-bottom:0;
  border-bottom:1px solid rgba(166,159,149,.22);
}
.info-card:last-child{border-bottom:none;}
.info-card h3{font-size:14px; text-transform:uppercase; letter-spacing:.08em; color:var(--neutral-gray); margin-bottom:14px;}
.info-card p{font-size:19px; font-weight:600;}
.info-card a.big-link{font-size:19px; font-weight:700;}
.hours-table{width:100%; border-collapse:collapse; margin-top:4px;}
.hours-table td{padding:9px 0; font-size:16px; border-bottom:1px solid #EFECE7;}
.hours-table tr:last-child td{border-bottom:none;}
.hours-table td:first-child{color:var(--text-secondary); font-weight:600;}
.hours-table td:last-child{text-align:right; font-weight:700;}

.social-row{display:flex; gap:12px; margin-top:8px;}
.social-btn{
  width:52px; height:52px; border-radius:50%;
  background:#000; color:#fff;
  display:flex; align-items:center; justify-content:center;
  transition:transform .25s var(--ease), background .25s var(--ease);
}
.social-btn:hover{transform:translateY(-3px); background:#1a1a1a;}
.social-btn svg{width:22px; height:22px;}

.map-card{
  border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid rgba(166,159,149,.22);
  box-shadow:0 4px 24px rgba(0,0,0,.05);
  background:#fff;
}
.map-frame{width:100%; height:420px; border:0; display:block;}
.map-footer{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:22px 26px; flex-wrap:wrap;
}
.map-footer p{font-size:15px; color:var(--text-secondary);}

/* ---------- FOOTER ---------- */
footer{background:#000; color:#fff; padding:64px 0 30px;}
.footer-top{
  display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap;
  padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.14);
}
.footer-brand .logo-mark{background:#fff; color:#000;}
.footer-brand .logo-text small{color:rgba(255,255,255,.6);}
.footer-col h4{font-size:13px; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.55); margin-bottom:16px;}
.footer-col p, .footer-col a{font-size:15.5px; color:rgba(255,255,255,.9); display:block; margin-bottom:10px;}
.footer-col a:hover{color:#fff; text-decoration:underline;}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding-top:26px; flex-wrap:wrap;
}
.footer-bottom p{font-size:13.5px; color:rgba(255,255,255,.55);}
.footer-social{display:flex; gap:10px;}
.footer-social a{
  width:40px; height:40px; border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
}
.footer-social svg{width:18px; height:18px;}

/* ---------- SKIP LINK ---------- */
.skip-link{
  position:absolute; left:-999px; top:0; background:#000; color:#fff;
  padding:14px 20px; z-index:300; border-radius:0 0 10px 0;
}
.skip-link:focus{left:0;}

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px){
  .dish-grid{grid-template-columns:repeat(2,1fr);}
  .about-section .wrap{grid-template-columns:1fr; gap:40px;}
  .connect-grid{grid-template-columns:1fr;}
  .masonry{columns:3 160px;}
}
@media (max-width:760px){
  .wrap, .nav-inner, .hero-grid{padding-left:20px; padding-right:20px;}
  nav.nav-links{display:none;}
  .nav-right .btn-primary{display:none;}
  .menu-toggle{display:flex;}
  section{padding:70px 0;}
  .dish-grid{grid-template-columns:1fr;}
  .menu-list{grid-template-columns:1fr;}
  .masonry{columns:2 140px;}
  .hero{min-height:78vh;}
  .about-stats{gap:26px;}
  .footer-top{gap:32px;}
}