:root {
  --bg: #0f0d0a;
  --card: #19140f;
  --card2: #241b13;
  --text: #fff8ef;
  --muted: #c9b8a0;
  --gold: #d69a35;
  --gold2: #f2c26b;
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.32);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
  background: radial-gradient(circle at top, #2b1d12 0%, var(--bg) 46%, #080706 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0,0,0,.64), rgba(0,0,0,.20)),
    url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12), var(--bg)); }
.hero__content { position: relative; z-index: 1; padding: 58px 0 48px; }
.brand-card {
  display: inline-flex; gap: 18px; align-items: center; padding: 18px;
  border: 1px solid var(--line); border-radius: 24px;
  background: rgba(15,13,10,.68); backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.brand-logo {
  width: 78px; height: 78px; border-radius: 22px; display: grid; place-items: center;
  font-weight: 900; font-size: 30px; color: #17100a;
  background: linear-gradient(145deg, var(--gold2), var(--gold));
}
.eyebrow { margin: 0 0 4px; color: var(--gold2); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(34px, 8vw, 70px); line-height: .96; letter-spacing: -.05em; }
.subtitle { margin: 10px 0 0; color: var(--muted); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.pill { border: 1px solid var(--line); background: rgba(255,255,255,.08); padding: 13px 18px; border-radius: 999px; font-weight: 700; }
.pill--gold { background: linear-gradient(145deg, var(--gold2), var(--gold)); color: #17100a; border: 0; }
.menu-shell { margin-top: -38px; position: relative; z-index: 2; }
.notice { display: flex; gap: 10px; align-items: center; padding: 14px 16px; border-radius: 18px; border: 1px solid var(--line); background: rgba(25,20,15,.92); color: var(--muted); box-shadow: var(--shadow); }
.notice strong { color: var(--gold2); white-space: nowrap; }
.search-box { margin: 18px 0 14px; }
.search-box input {
  width: 100%; border: 1px solid var(--line); outline: none; background: rgba(255,255,255,.08); color: var(--text);
  border-radius: 18px; padding: 17px 18px; font: inherit; font-weight: 600;
}
.search-box input::placeholder { color: rgba(255,248,239,.55); }
.tabs { display: flex; gap: 10px; overflow-x: auto; padding: 6px 0 18px; scrollbar-width: none; position: sticky; top: 0; z-index: 5; backdrop-filter: blur(10px); }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto; border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.07);
  border-radius: 999px; padding: 12px 16px; font: inherit; font-size: 14px; font-weight: 800; cursor: pointer;
}
.tab.active { background: linear-gradient(145deg, var(--gold2), var(--gold)); color: #17100a; border-color: transparent; }
.category-block { margin: 8px 0 34px; }
.category-title { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin: 0 0 14px; }
.category-title span { font-size: 25px; font-weight: 900; letter-spacing: -.03em; }
.category-title small { color: var(--muted); font-weight: 700; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.menu-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card2), var(--card));
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  transition: transform .18s ease, border-color .18s ease;
}
.menu-card:hover { transform: translateY(-3px); border-color: rgba(242,194,107,.35); }
.menu-card__image { position: relative; aspect-ratio: 16 / 10; background: #241b13; overflow: hidden; }
.menu-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.01); }
.menu-card__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,.42)); pointer-events: none; }
.menu-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px;
}
.menu-card h3 { margin: 0 0 5px; font-size: 16px; letter-spacing: -.02em; line-height: 1.2; }
.menu-card p { margin: 0; min-height: 32px; color: var(--muted); line-height: 1.35; font-size: 12px; }
.muted-line { opacity: .72; }
.tag { color: #17100a; background: var(--gold2); font-size: 11px; font-weight: 900; padding: 7px 9px; border-radius: 999px; }
.tag--image { position: absolute; left: 12px; top: 12px; z-index: 2; box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.menu-card__bottom {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price { font-size: 19px; font-weight: 900; color: var(--gold2); }
.add-dot { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; color: #17100a; background: linear-gradient(145deg, var(--gold2), var(--gold)); font-weight: 900; font-size: 22px; }
.empty { padding: 30px; border: 1px solid var(--line); border-radius: 20px; color: var(--muted); text-align: center; }
.footer { margin-top: 40px; padding: 34px 0 44px; color: var(--muted); text-align: center; border-top: 1px solid var(--line); }
.footer p { margin: 8px 0 0; }
.small { font-size: 12px; opacity: .72; }
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero { min-height: 315px; }
  .brand-card { width: 100%; border-radius: 22px; }
  .brand-logo { width: 62px; height: 62px; border-radius: 18px; font-size: 24px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .notice { align-items: flex-start; flex-direction: column; }
  .menu-card { border-radius: 16px; }
  .menu-card__image { aspect-ratio: 1 / 1; }
  .menu-card__body { padding: 10px; }
  .menu-card h3 { font-size: 14px; line-height: 1.2; }
  .menu-card p { min-height: auto; font-size: 11px; line-height: 1.3; }
  .menu-card__bottom { margin-top: auto; padding-top: 10px; gap: 8px; }
  .price { font-size: 17px; }
  .add-dot { width: 30px; height: 30px; font-size: 19px; }
}
