:root{
  /* Restaurant palette */
  --bg:#0b0a08;
  --paper:#f7f1e6;
  --paper2:#fff8ee;
  --ink:#1f1b16;
  --muted:#6a5f53;

  --wine:#7b1e24;
  --gold:#c9a24f;
  --leaf:#2d6a4f;

  --shadow: 0 22px 70px rgba(0,0,0,.32);
  --radius: 18px;
  --max: 1160px;

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --serif: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  color:#fff;
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(201,162,79,.20), transparent 55%),
    radial-gradient(900px 700px at 95% 0%, rgba(123,30,36,.18), transparent 60%),
    radial-gradient(800px 600px at 30% 120%, rgba(45,106,79,.10), transparent 55%),
    linear-gradient(180deg, #070605, var(--bg));
  min-height:100vh;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* Top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(11,10,8,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.seal{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(201,162,79,.55);

  /* LOGO IMAGE */
  background-image: url("https://img.freepik.com/premium-vector/restaurant-logo-design-vector-illustration-food-symbol-vector_1236506-726.jpg");
  background-size: cover;        /* change to 'contain' if you don’t want cropping */
  background-position: center;
  background-repeat: no-repeat;

  /* STYLE */
  box-shadow: 0 12px 30px rgba(0,0,0,.30);
  position:relative;
  overflow:hidden;
}
.search-logo{
  width:16px;
  height:16px;
  border-radius:4px;
  object-fit:cover;
  opacity:.95;
}
.seal::after{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:999px;
  border:1px dashed rgba(201,162,79,.55);
  opacity:.85;
  pointer-events:none;
}

.brand h1{
  margin:0;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing:.3px;
  line-height:1.15;
  font-weight:800;
}
.brand p{
  margin:3px 0 0;
  font-size:12px;
  color: rgba(255,255,255,.70);
}

.tools{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  width: min(640px, 100%);
}

/* Search */
.search{
  position:relative;
  flex: 1 1 320px;
  min-width: 220px;
}
.search input{
  width:100%;
  padding:12px 14px 12px 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  outline:none;
  background: rgba(255,255,255,.06);
  color: #fff;
  box-shadow: 0 14px 45px rgba(0,0,0,.22);
}
.search input::placeholder{ color: rgba(255,255,255,.55); }
.search svg{
  position:absolute;
  left:14px; top:50%;
  transform:translateY(-50%);
  opacity:.8;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,79,.45);
  background: rgba(201,162,79,.08);
  cursor:pointer;
  user-select:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
  color:#fff;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(201,162,79,.75); background: rgba(201,162,79,.12); }
.btn:active{ transform: translateY(0px) scale(.99); }
.btn strong{ font-size:12px; }
.btn span{ font-size:12px; color: rgba(255,255,255,.70); }

/* Hero */
.hero{ padding: 18px 0 12px; }
.menu-sheet{
  border-radius: 22px;
  background:
    radial-gradient(700px 260px at 18% 0%, rgba(201,162,79,.18), transparent 55%),
    radial-gradient(620px 240px at 88% 0%, rgba(123,30,36,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,248,238,.10), rgba(255,248,238,.06));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.menu-sheet:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.06), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05), transparent 35%),
    radial-gradient(circle at 30% 80%, rgba(255,255,255,.05), transparent 35%),
    radial-gradient(circle at 70% 85%, rgba(255,255,255,.04), transparent 35%);
  pointer-events:none;
  opacity:.9;
}
.hero-inner{
  position:relative;
  padding: 18px 18px;
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:16px;
  align-items:center;
}
.hero h2{
  margin:0;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing:.3px;
  line-height:1.1;
  font-weight:800;
}
.hero p{
  margin:10px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height:1.65;
  max-width: 70ch;
}
.ribbon{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}
.tag{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border: 1px solid rgba(201,162,79,.35);
  background: rgba(123,30,36,.10);
  color: rgba(255,255,255,.88);
}
.hero-right{
  display:flex;
  justify-content:flex-end;
}
.plate{
  width: 190px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(201,162,79,.45);

  /* IMAGE */
  background-image: url("https://img.freepik.com/premium-vector/restaurant-logo-design-vector-illustration-food-symbol-vector_1236506-726.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* LOOK & FEEL */
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
}
.plate::after{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:999px;
  border:1px dashed rgba(201,162,79,.55);
  pointer-events:none;
}

/* Categories chips */
.cats-wrap{
  margin: 14px 0 8px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.cat-chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  max-width: 100%;
}
.cat-chip:hover{ transform: translateY(-1px); border-color: rgba(201,162,79,.55); }
.cat-chip.active{
  border-color: rgba(201,162,79,.80);
  background: rgba(201,162,79,.10);
}
.cat-avatar{
  width: 30px; height: 30px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(201,162,79,.35);
  background: rgba(255,255,255,.06);
  flex: 0 0 auto;
}
.cat-avatar img{ width:100%; height:100%; object-fit:cover; }
.cat-chip span{
  font-size:13px;
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 240px;
}

/* Sections */
main{ padding: 6px 0 10px; }
.section{ margin: 18px 0 26px; }
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-bottom: 12px;
}
.section-title{
  display:flex;
  gap:12px;
  align-items:center;
  min-width: 0;
}
.section-cover{
  width: 46px; height: 46px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(201,162,79,.35);
  background: rgba(255,255,255,.06);
  flex: 0 0 auto;
}
.section-cover img{ width:100%; height:100%; object-fit:cover; }
.section-title h3{
  margin:0;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing:.3px;
  line-height:1.1;
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 72vw;
}
.section-title p{
  margin:4px 0 0;
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

/* Items grid */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Restaurant item card */
.card{
  border-radius: 20px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,248,238,.08), rgba(255,248,238,.05));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  position:relative;
}
.card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(120px 120px at 100% 0%, rgba(201,162,79,.12), transparent 60%),
    radial-gradient(160px 160px at 0% 100%, rgba(123,30,36,.10), transparent 62%);
  pointer-events:none;
}

.thumb{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
  isolation:isolate;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.03);
}
.thumb:after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.30));
  pointer-events:none;
}

.price{
  position:absolute;
  right: 12px;
  bottom: 12px;
  z-index:2;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,79,.55);
  background: rgba(11,10,8,.50);
  backdrop-filter: blur(10px);
  font-weight: 800;
  letter-spacing:.3px;
  font-size: 12px;
}

.content{
  position:relative;
  padding: 12px 12px 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.name-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.name-row h4{
  margin:0;
  font-size: 14px;
  line-height:1.25;
  letter-spacing:.2px;
  font-weight:800;
}
.mini{
  font-size: 11px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,79,.35);
  background: rgba(201,162,79,.10);
  color: rgba(255,255,255,.80);
  white-space:nowrap;
  flex: 0 0 auto;
}
.details{
  margin:0;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: calc(12px * 1.65 * 2);
}

.empty{
  padding: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.20);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.75);
}

/* Footer */
footer{
  margin-top: 38px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(11,10,8,.60);
  backdrop-filter: blur(12px);
}
.footer-inner{
  padding: 18px 0 22px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.foot-title{
  margin:0 0 8px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing:.3px;
  font-weight:800;
}
.foot-text{
  margin:0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.7;
}
.social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.social a{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,79,.35);
  background: rgba(201,162,79,.08);
}
.powered{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-size: 12px;
}
.powered b{ color:#fff; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-right{ justify-content:flex-start; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
}
@media (max-width: 560px){
  .grid{ grid-template-columns: 1fr; }
  .search{ min-width: unset; flex-basis: 100%; }
  .tools{ width:100%; justify-content:space-between; }
  .hero h2{ font-size: 22px; }
  .plate{ width: 155px; }
  .cat-chip span{ max-width: 200px; }
}
