:root{
  --bg:#090909;
  --bg-2:#111111;
  --card:#151515;
  --card-2:#1d1d1d;
  --line:rgba(255,255,255,0.08);
  --text:#f5f1e8;
  --muted:#bfb6a4;
  --gold:#e2b84f;
  --gold-2:#f6d978;
  --red:#d62828;
  --red-2:#ff4d4d;
  --green:#25D366;
  --shadow:0 20px 60px rgba(0,0,0,0.45);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --transition:.28s ease;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214,40,40,0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(226,184,79,0.08), transparent 30%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

img{
  display:block;
  width:100%;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font-family:inherit;
  cursor:pointer;
  border:none;
}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.bg-glow{
  position:fixed;
  border-radius:999px;
  filter:blur(90px);
  opacity:.18;
  pointer-events:none;
  z-index:-2;
}

.glow-1{
  width:280px;
  height:280px;
  background:var(--red);
  top:80px;
  left:-60px;
}

.glow-2{
  width:320px;
  height:320px;
  background:var(--gold);
  bottom:40px;
  right:-100px;
}

.grid-overlay{
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size:38px 38px;
  mask-image:radial-gradient(circle at center, black 35%, transparent 85%);
  pointer-events:none;
  z-index:-3;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(14px);
  background:rgba(9,9,9,0.65);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:82px;
  gap:20px;
}

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

.brand-logo{
  width:50px;
  height:50px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-size:1.4rem;
  background:linear-gradient(135deg, var(--gold), #fff0b7);
  color:#111;
  box-shadow:0 10px 25px rgba(226,184,79,0.25);
}

.brand-top{
  display:block;
  font-size:.72rem;
  letter-spacing:.24em;
  color:var(--muted);
}

.brand h1{
  font-family:"Anton", sans-serif;
  font-size:1.7rem;
  letter-spacing:.03em;
  font-weight:400;
  line-height:1;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav-links a{
  color:#ddd2c0;
  font-weight:600;
  font-size:.97rem;
  transition:var(--transition);
}

.nav-links a:hover{
  color:var(--gold-2);
}

.cart-btn{
  background:linear-gradient(135deg, var(--gold), var(--gold-2));
  color:#181818;
  font-weight:800;
  padding:12px 18px;
  border-radius:999px;
  box-shadow:0 14px 30px rgba(226,184,79,0.22);
  transition:var(--transition);
}

.cart-btn:hover{
  transform:translateY(-2px);
}

/* Hero */
.hero{
  padding:54px 0 32px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.hero-copy{
  padding:24px 0;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(226,184,79,0.2);
  background:rgba(226,184,79,0.08);
  color:var(--gold-2);
  font-size:.9rem;
  font-weight:700;
  margin-bottom:18px;
}

.hero-copy h2{
  font-family:"Anton", sans-serif;
  font-size:clamp(3rem, 7vw, 5.4rem);
  line-height:.95;
  font-weight:400;
  margin-bottom:18px;
  text-transform:uppercase;
}

.hero-copy h2 span{
  color:var(--gold);
}

.hero-copy p{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.7;
  max-width:620px;
  margin-bottom:26px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:16px;
  font-weight:800;
  transition:var(--transition);
}

.btn-primary{
  background:linear-gradient(135deg, var(--red), #ff7a52);
  color:#fff;
  box-shadow:0 16px 34px rgba(214,40,40,0.28);
}

.btn-dark{
  background:#181818;
  border:1px solid var(--line);
  color:#f2e6d4;
}

.btn:hover{
  transform:translateY(-2px);
}

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.stat{
  min-width:150px;
  padding:16px 18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.03);
  border-radius:18px;
}

.stat strong{
  display:block;
  font-size:1.1rem;
  margin-bottom:4px;
  color:var(--gold-2);
}

.stat span{
  color:var(--muted);
  font-size:.92rem;
}

/* Hero visual */
.hero-visual{
  position:relative;
  min-height:580px;
}

.hero-card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.main-dish{
  position:absolute;
  inset:0 40px 40px 0;
}

.main-dish img{
  height:66%;
  object-fit:cover;
}

.main-dish-info{
  padding:22px 22px 24px;
}

.main-dish-info h3{
  font-size:1.5rem;
  margin-bottom:8px;
}

.main-dish-info p{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:16px;
}

.price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.price-row strong{
  font-size:1.25rem;
  color:var(--gold-2);
}

.price-row button{
  background:linear-gradient(135deg, var(--red), #ff7446);
  color:#fff;
  font-weight:800;
  padding:12px 16px;
  border-radius:14px;
}

.dish-tag{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(0,0,0,0.7);
  color:#fff2cb;
  font-size:.85rem;
  font-weight:800;
  border:1px solid rgba(255,255,255,0.08);
}

.mini-card{
  position:absolute;
  border-radius:20px;
  padding:18px 20px;
  border:1px solid var(--line);
  backdrop-filter:blur(10px);
  background:rgba(17,17,17,0.85);
  box-shadow:var(--shadow);
  font-weight:800;
}

.mini-one{
  right:0;
  top:60px;
}

.mini-two{
  left:40px;
  bottom:0;
}

/* Ticker */
.ticker{
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#0d0d0d;
}

.ticker-track{
  display:flex;
  gap:42px;
  width:max-content;
  padding:16px 0;
  animation:scrollTicker 24s linear infinite;
}

.ticker-track span{
  color:#f3dfaa;
  font-weight:800;
  letter-spacing:.03em;
}

@keyframes scrollTicker{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* Sections */
.menu-section,
.combos-section,
.promo-section,
.location-section{
  padding:90px 0;
}

.section-head{
  margin-bottom:30px;
}

.section-kicker{
  display:inline-block;
  color:var(--gold-2);
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.8rem;
  margin-bottom:12px;
}

.section-head h2,
.location-card h2{
  font-family:"Anton", sans-serif;
  font-size:clamp(2rem, 5vw, 3.6rem);
  font-weight:400;
  line-height:1;
  margin-bottom:12px;
  text-transform:uppercase;
}

.section-head p,
.location-card p{
  color:var(--muted);
  max-width:680px;
  line-height:1.7;
}

/* Pills */
.category-pills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}

.pill{
  padding:12px 18px;
  border-radius:999px;
  background:#161616;
  color:#e7dcc6;
  border:1px solid var(--line);
  font-weight:700;
  transition:var(--transition);
}

.pill.active,
.pill:hover{
  background:linear-gradient(135deg, var(--gold), var(--gold-2));
  color:#181818;
}

/* Menu grid */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.menu-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  transition:var(--transition);
}

.menu-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.menu-card img{
  height:220px;
  object-fit:cover;
}

.menu-card-body{
  padding:18px;
}

.menu-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.menu-top h3{
  font-size:1.08rem;
}

.menu-top strong{
  color:var(--gold-2);
  font-size:1.06rem;
  white-space:nowrap;
}

.menu-card p{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.65;
  margin-bottom:16px;
  min-height:76px;
}

.menu-card button{
  width:100%;
  min-height:48px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--red), #ff7649);
  color:#fff;
  font-weight:800;
}

/* Combos */
.combos-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.combo-card{
  position:relative;
  padding:28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
}

.combo-card.featured{
  background:
    radial-gradient(circle at top right, rgba(226,184,79,0.14), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border-color:rgba(226,184,79,0.28);
}

.combo-badge{
  position:absolute;
  top:18px;
  right:18px;
  font-size:.8rem;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(226,184,79,0.14);
  color:var(--gold-2);
  font-weight:800;
}

.combo-card h3{
  font-size:1.45rem;
  margin-bottom:12px;
}

.combo-card p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:18px;
}

.combo-card strong{
  display:block;
  font-size:2rem;
  color:var(--gold-2);
  margin-bottom:18px;
}

.combo-card button{
  width:100%;
  min-height:50px;
  border-radius:16px;
  background:#f4e4b1;
  color:#111;
  font-weight:900;
}

/* Promo */
.promo-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;
  padding:34px;
  border-radius:28px;
  border:1px solid rgba(214,40,40,0.22);
  background:
    radial-gradient(circle at right, rgba(214,40,40,0.16), transparent 35%),
    linear-gradient(135deg, #161616, #0f0f0f);
  box-shadow:var(--shadow);
}

.promo-price{
  text-align:right;
}

.promo-price strong{
  display:block;
  font-family:"Anton", sans-serif;
  font-size:4rem;
  line-height:.9;
  color:var(--gold-2);
  font-weight:400;
}

.promo-price span{
  color:#f0dfc4;
  font-weight:700;
}

/* Location */
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.location-card,
.map-card{
  border-radius:28px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  padding:30px;
  box-shadow:var(--shadow);
}

.info-list{
  list-style:none;
  display:grid;
  gap:14px;
  margin:24px 0 28px;
}

.info-list li{
  color:#eadfcd;
  line-height:1.6;
}

.info-list strong{
  color:var(--gold-2);
}

.fake-map{
  position:relative;
  width:100%;
  height:100%;
  min-height:360px;
  border-radius:24px;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(226,184,79,0.08), rgba(214,40,40,0.08)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 14px,
      transparent 14px,
      transparent 28px
    ),
    #131313;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:14px;
}

.map-pin{
  font-size:3rem;
}

.fake-map span{
  font-size:1.2rem;
  font-weight:800;
  color:#fff3c7;
}

/* Footer */
.footer{
  padding:28px 0 40px;
  border-top:1px solid var(--line);
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.footer h3{
  margin-bottom:8px;
}

.footer p,
.footer a{
  color:var(--muted);
}

.footer a{
  margin-left:16px;
}

/* Cart */
.cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.56);
  opacity:0;
  visibility:hidden;
  transition:var(--transition);
  z-index:79;
}

.cart-sidebar{
  position:fixed;
  top:0;
  right:0;
  width:min(420px, 100%);
  height:100vh;
  background:#101010;
  border-left:1px solid var(--line);
  box-shadow:-20px 0 60px rgba(0,0,0,0.45);
  transform:translateX(100%);
  transition:var(--transition);
  z-index:80;
  display:flex;
  flex-direction:column;
}

.cart-sidebar.active{
  transform:translateX(0);
}

.cart-overlay.active{
  opacity:1;
  visibility:visible;
}

.cart-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 20px;
  border-bottom:1px solid var(--line);
}

.cart-header h3{
  font-size:1.2rem;
}

.cart-header button{
  width:40px;
  height:40px;
  border-radius:12px;
  background:#1c1c1c;
  color:#fff;
  font-size:1rem;
}

.cart-items{
  flex:1;
  overflow:auto;
  padding:18px;
}

.empty-cart{
  height:100%;
  display:grid;
  place-items:center;
  text-align:center;
  color:var(--muted);
}

.cart-item{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#151515;
  margin-bottom:14px;
}

.cart-item h4{
  margin-bottom:6px;
  font-size:1rem;
}

.cart-item p{
  color:var(--gold-2);
  font-weight:800;
  margin-bottom:10px;
}

.qty-controls{
  display:flex;
  align-items:center;
  gap:8px;
}

.qty-controls button{
  width:32px;
  height:32px;
  border-radius:10px;
  background:#242424;
  color:#fff;
  font-weight:800;
}

.qty-controls span{
  min-width:24px;
  text-align:center;
  font-weight:800;
}

.remove-btn{
  background:none;
  color:#ff8c8c;
  font-weight:700;
  padding:0;
  margin-top:10px;
}

.cart-footer{
  padding:18px;
  border-top:1px solid var(--line);
  background:#0c0c0c;
}

.cart-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}

.cart-total span{
  color:var(--muted);
}

.cart-total strong{
  font-size:1.25rem;
  color:var(--gold-2);
}

.checkout-btn{
  width:100%;
  min-height:54px;
  border-radius:16px;
  background:linear-gradient(135deg, var(--green), #59e08a);
  color:#07250f;
  font-weight:900;
  font-size:1rem;
}

/* Responsive */
@media (max-width: 1080px){
  .hero-grid,
  .location-grid,
  .combos-grid{
    grid-template-columns:1fr;
  }

  .menu-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .hero-visual{
    min-height:540px;
  }
}

@media (max-width: 780px){
  .nav-links{
    display:none;
  }

  .hero{
    padding-top:34px;
  }

  .hero-copy h2{
    font-size:3rem;
  }

  .hero-visual{
    min-height:460px;
  }

  .main-dish{
    inset:0;
  }

  .mini-one,
  .mini-two{
    display:none;
  }

  .menu-grid{
    grid-template-columns:1fr;
  }

  .promo-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .promo-price{
    text-align:left;
  }

  .promo-price strong{
    font-size:3.2rem;
  }

  .footer-wrap{
    flex-direction:column;
  }

  .footer a{
    margin:0 14px 0 0;
  }
}