:root{
  --cream:#f6f1e8;
  --navy:#0b2c4d;
  --red:#c62828;
  --mustard:#f4b400;
  --text:#1c1c1c;
  --muted:#5a5a5a;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.35;
}

a{color:inherit}

.container{max-width:980px;margin:0 auto;padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:10;
  background:rgba(11,44,77,0.96);
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:14px;
}
.brand-mini{display:flex; align-items:center; gap:10px; min-width:0;}
.brand-mini img{height:36px; width:auto; display:block;}
.brand-mini .tag{color:#fff; font-weight:700; font-size:0.95rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}

.nav{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  color:#fff;
  font-weight:700;
  font-size:0.92rem;
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{background:rgba(255,255,255,0.10)}

.hero{
  background:var(--navy);
  color:#fff;
  padding:44px 0 34px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  align-items:center;
  text-align:center;
}
.hero img.logo{
  width:min(320px, 80vw);
  height:auto;
  margin:0 auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}
.hero h1{
  margin:6px 0 0;
  font-size:2.15rem;
  letter-spacing:0.3px;
}
.hero p{
  margin:6px 0 10px;
  font-size:1.05rem;
  color:rgba(255,255,255,0.9);
}
.hero .cta{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  border:0;
}
.btn.primary{background:var(--red); color:#fff;}
.btn.secondary{background:var(--mustard); color:#111;}
.btn.ghost{background:rgba(255,255,255,0.12); color:#fff; border:1px solid rgba(255,255,255,0.22);}
.btn:active{transform:translateY(1px)}

.badges{
  display:flex; gap:8px; justify-content:center; flex-wrap:wrap;
  margin-top:10px;
}
.badge{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.20);
  padding:7px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:0.9rem;
  color:#fff;
}

section{padding:34px 0}
.section-title{
  display:flex; align-items:center; gap:10px;
  margin:0 0 14px;
  font-size:1.55rem;
}
.section-sub{
  margin:0 0 18px;
  color:var(--muted);
}

.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

.menu-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.menu-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:16px;
  background:rgba(246,241,232,0.55);
  border:1px dashed rgba(0,0,0,0.18);
}
.emoji{
  font-size:1.35rem;
  width:34px;
  text-align:center;
  flex:0 0 34px;
  margin-top:2px;
}
.mi-main{flex:1; min-width:0;}
.mi-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}
.mi-name{
  font-weight:1000;
  font-size:1.05rem;
}
.mi-price{
  font-weight:1000;
  background:#fff;
  border:1px solid rgba(0,0,0,0.14);
  padding:6px 10px;
  border-radius:999px;
  white-space:nowrap;
}
.mi-desc{
  margin-top:6px;
  color:var(--muted);
  font-weight:700;
}
.popular{
  display:inline-flex;
  gap:6px;
  align-items:center;
  margin-top:8px;
  font-weight:1000;
  font-size:0.92rem;
  color:#111;
  background:rgba(244,180,0,0.22);
  border:1px solid rgba(244,180,0,0.55);
  padding:6px 10px;
  border-radius:999px;
}

.combo-box{
  margin-top:16px;
  background:var(--navy);
  color:#fff;
  border-radius:18px;
  padding:16px;
  box-shadow:var(--shadow);
}
.combo-box .combo-title{
  font-size:1.15rem;
  font-weight:1000;
  margin:0 0 6px;
}
.combo-box .combo-sub{
  margin:0;
  color:rgba(255,255,255,0.88);
  font-weight:700;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.pills{
  display:flex; gap:10px; flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(11,44,77,0.10);
  border:1px solid rgba(11,44,77,0.20);
  font-weight:900;
  text-decoration:none;
}
.pill:hover{background:rgba(11,44,77,0.15)}

.footer{
  background:#111;
  color:#cfcfcf;
  padding:22px 0;
  text-align:center;
  font-size:0.95rem;
}
.footer strong{color:#fff}

.small{font-size:0.92rem; color:var(--muted);}

.hr{
  height:1px; background:rgba(0,0,0,0.10);
  margin:14px 0;
  border:0;
}

@media (min-width: 760px){
  .menu-grid{grid-template-columns: 1fr 1fr;}
  .two-col{grid-template-columns: 1.2fr 0.8fr;}
}
