:root{
  --bg:#f6f4ef;
  --text:#121826;
  --muted:rgba(18,24,38,.70);
  --card:#ffffff;
  --border:rgba(18,24,38,.12);
  --shadow:0 12px 30px rgba(0,0,0,.12);
  --accent:#ffc83d;
  --radius:18px;
  --max:480px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%;height:auto;border:0;outline:0;background:transparent}
a{color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:16px 16px 34px;}
.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(255,255,255,.72);
  border-bottom:1px solid var(--border);
}
.topbar .row{max-width:var(--max);margin:0 auto;padding:12px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px;}
.brand{display:flex;flex-direction:column;line-height:1.05}
.brand strong{font-size:14px;letter-spacing:.2px}
.brand span{font-size:11px;color:var(--muted)}
.iconbtn{
  border:1px solid var(--border);
  background:rgba(255,255,255,.85);
  border-radius:999px;
  padding:9px 12px;
  font-weight:750;
  font-size:12px;
  text-decoration:none;
}
.hero{
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#000;
}
.hero .bg{
  height:52vh;min-height:360px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.70)),
    url('/assets/img/hero.jpg') center/cover no-repeat;
  display:flex;align-items:flex-end;
}
.hero .content{padding:18px 16px 18px;color:#fff}
h1{margin:10px 0 8px;font-size:34px;letter-spacing:-.02em;line-height:1.05}
.subtitle{margin:0 0 14px;color:rgba(255,255,255,.85);font-size:14.5px;line-height:1.45}
.kicker{font-size:12px;color:rgba(255,255,255,.80);letter-spacing:.12em;text-transform:uppercase;display:flex;gap:8px;align-items:center}
.kicker .dot{width:8px;height:8px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 6px rgba(255,200,61,.18)}
.ctas{display:flex;gap:10px;flex-wrap:wrap}
.btn{
  border-radius:14px;
  padding:12px 14px;
  font-weight:800;
  font-size:13px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.35);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
}
.btn.primary{background:var(--accent);border-color:rgba(255,200,61,.55);color:#121212}
.btn.ghost{background:rgba(255,255,255,.92);color:#121212;border-color:rgba(255,255,255,.92)}
.pills{margin-top:12px;display:flex;gap:8px;flex-wrap:wrap}
.pill{border:1px solid rgba(255,255,255,.35);background:rgba(0,0,0,.25);border-radius:999px;padding:7px 10px;font-size:12px;color:rgba(255,255,255,.88)}

.section{margin-top:18px}
.section h2{font-size:18px;margin:18px 2px 10px;letter-spacing:-.01em}
.section p{margin:0 2px 14px;color:var(--muted);font-size:13.5px;line-height:1.55}

.grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.grid .card:nth-child(3){grid-column:1/-1}
.card{
  border-radius:16px;
  overflow:hidden;
  position:relative;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
  text-decoration:none;
  background:#000;
}
.card img{
  width:100%;
  aspect-ratio: 4/3;
  object-fit:cover;
  transform:scale(1.05); /* hides any tiny edge borders */
}
.card .overlay{
  position:absolute;left:0;right:0;bottom:0;
  padding:12px 12px 10px;
  background:linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));
  color:#fff;
  text-align:center;
}
.card .overlay .title{margin:0;font-size:16px;font-weight:900;letter-spacing:.04em;color:#FFFFFF}
.card .overlay .desc{margin:6px 0 0;font-size:12px;color:rgba(255,255,255,.85)}

.hrTitle{
  display:flex;align-items:center;gap:12px;margin-top:6px;margin-bottom:10px;
}
.hrTitle:before,.hrTitle:after{content:"";height:1px;background:rgba(18,24,38,.18);flex:1}
.hrTitle span{font-weight:900;letter-spacing:.08em}

.foodlist{display:flex;flex-direction:column;gap:10px}
.foodrow{
  display:flex;gap:12px;align-items:center;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(18,24,38,.10);
  border-radius:16px;
  padding:10px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  text-decoration:none;
}
.foodrow img{
  width:74px;height:58px;border-radius:12px;object-fit:cover;
}
.foodrow .meta{flex:1}
.foodrow .meta strong{display:block;font-size:14px}
.foodrow .meta span{display:block;margin-top:3px;font-size:12px;color:var(--muted)}
.foodrow .chev{font-size:18px;color:rgba(18,24,38,.55);font-weight:900}

.page-hero{border-radius:24px;overflow:hidden;box-shadow:var(--shadow);background:#000}
.page-hero img{width:100%;aspect-ratio:16/10;object-fit:cover}
.page-hero .content{padding:14px;color:#fff;background:linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,.10))}
.page-hero h1{font-size:24px;margin:0 0 6px}
.breadcrumb{font-size:12px;color:rgba(255,255,255,.80);margin-bottom:8px}

.list{display:flex;flex-direction:column;gap:10px}
.item{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(18,24,38,.10);
  border-radius:16px;
  padding:12px;
}
.item strong{display:block;font-size:14px;margin-bottom:4px}
.item p{margin:0;color:rgba(18,24,38,.72);font-size:12.8px;line-height:1.5}
.tagrow{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.tag{
  font-size:11px;padding:6px 10px;border-radius:999px;
  border:1px solid rgba(18,24,38,.12);
  background:rgba(255,255,255,.85);
  color:rgba(18,24,38,.75);
}
.notice{margin-top:12px;border:1px dashed rgba(18,24,38,.20);border-radius:16px;padding:12px;color:rgba(18,24,38,.70);font-size:12px;line-height:1.55;background:rgba(255,255,255,.65)}

footer{display:block;margin-top:18px}
.footer{
  padding-top:12px;border-top:1px solid rgba(18,24,38,.14);
  color:rgba(18,24,38,.65);
  font-size:11.5px;line-height:1.6;
}
.footer a{color:rgba(18,24,38,.78)}
.smalllinks{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}

/* Mobile-only overlay on wide screens */
.desktopNotice{
  display:none;position:fixed;inset:0;background:rgba(0,0,0,.70);
  backdrop-filter: blur(8px);align-items:center;justify-content:center;padding:24px;z-index:1000;
}
.desktopNotice .box{
  max-width:520px;border-radius:22px;background:rgba(255,255,255,.92);padding:18px;box-shadow:0 20px 60px rgba(0,0,0,.30);
}
.desktopNotice h2{margin:0 0 8px;font-size:18px;color:#121826}
.desktopNotice p{margin:0;color:rgba(18,24,38,.72);font-size:13.5px;line-height:1.55}
@media (min-width: 720px){ .desktopNotice{display:flex;} }

.item img{display:block;max-width:100%;height:auto;border:0;background:transparent;}
