@charset "utf-8";
/* CSS Document */
:root{
  --bg:#0f0f10;
  --card:#17181b;
  --text:#f4f4f5;
  --muted:#b6b6bd;
  --accent:#e5b54a;
  --max:1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .9; }

.container{
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

header{
  position: sticky;
  top: 0;
  background: rgba(15,15,16,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  z-index: 50;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .3px;
}

.brand-badge{
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #b07b1b);
  display:grid; place-items:center;
  color:#121212;
  font-weight: 900;
}

.nav-links{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.nav-links a{
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
}
.nav-links a.active,
.nav-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.hero{
  padding: 34px 0 10px;
}

.hero-card{
  background: radial-gradient(1200px 400px at 20% 0%, rgba(229,181,74,.25), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px;
  display:grid;
  gap: 16px;
}

.hero h1{
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
}
.hero p{ margin: 0; color: var(--muted); }

.cta-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 650;
}

.btn.primary{
  background: linear-gradient(135deg, var(--accent), #b07b1b);
  color:#141414;
  border-color: transparent;
}

.grid{
  display:grid;
  gap: 14px;
  grid-template-columns: repeat(12, 1fr);
  padding: 18px 0 28px;
}

.card{
  grid-column: span 12;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 16px;
}

.card h2{ margin: 0 0 8px; font-size: 18px; }
.card p{ margin: 0; color: var(--muted); }

@media (min-width: 760px){
  .card.half{ grid-column: span 6; }
  .card.third{ grid-column: span 4; }
}

.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

.social{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social a{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.menu-nav{
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(15,15,16,.9);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 10px;
  margin: 12px 0 18px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
}

.menu-section{
  margin-bottom: 14px;
}

.item{
  display:flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-top: 10px;
}

.item-left{
  min-width: 0;
}

.item-title{
  display:flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}

.item-title strong{
  font-size: 16px;
}

.item-desc{
  color: var(--muted);
  margin-top: 4px;
  font-size: 14px;
}

.badges{
  display:flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.badge{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 4px 8px;
  border-radius: 999px;
}

.price{
  font-weight: 900;
  white-space: nowrap;
}

.grams{
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  margin-top: 2px;
  text-align: right;
}

