:root{
  --bg:#07080b;
  --panel:#0e1117;
  --text:#f3f6ff;
  --muted:#b7c0d8;
  --line:rgba(255,255,255,.08);
  --accent:#7c5cff;
  --accent2:#ff7a18;
  --accent3:#2dd4ff;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;color:var(--text);font-family:var(--font);}
body{
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(124,92,255,.22), transparent 55%),
    radial-gradient(1000px 600px at 85% 25%, rgba(45,212,255,.14), transparent 60%),
    radial-gradient(900px 600px at 60% 90%, rgba(255,122,24,.12), transparent 55%),
    var(--bg);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px;}

.nav{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(7,8,11,.55);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap: 10px;
}
.brand{
  display:flex; gap:10px; align-items:center; font-weight:900; letter-spacing:.2px;
}
.brand-badge{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  box-shadow: var(--shadow);
}

.brand-logo{
  height:128px;
  width:auto;
  display:block;
  border-radius:10px;
  box-shadow: var(--shadow);
}
@media (max-width: 520px){
  .brand-logo{ height:30px; }
  .brand span[data-t="brand_name"]{ display:none; }
}
.nav-links{
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
}
.nav-links a{color:var(--muted); font-weight:700; font-size:14px; padding:10px 10px; border-radius:12px;}
.nav-links a:hover{color:var(--text); background: rgba(255,255,255,.05);}
.nav-links a.active{color:var(--text); background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10);}

.cta{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border:1px solid rgba(255,255,255,.14);
  padding:11px 14px; border-radius:14px;
  font-weight:900; letter-spacing:.2px;
  background: linear-gradient(135deg, rgba(255,122,24,.22), rgba(124,92,255,.16));
  box-shadow: 0 10px 30px rgba(255,122,24,.10);
  white-space: nowrap;
}
.cta:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.24);}
.cta .dot{width:9px;height:9px;border-radius:50%; background: linear-gradient(135deg, var(--accent2), var(--accent3));}

.mobile-cta{display:none;}
@media (max-width: 900px){
  .nav-links{display:none;}
  .mobile-cta{display:inline-flex;}
}

.card{
  background: rgba(14,17,23,.72);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero{padding: 58px 0 28px;}
.hero-grid{display:grid; gap:18px; grid-template-columns: 1.3fr .9fr;}
@media (max-width: 900px){ .hero-grid{grid-template-columns:1fr;} }

.hero-main{padding:28px;}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:900; font-size:13px; letter-spacing:.16em; text-transform:uppercase;
  color: rgba(243,246,255,.9);
}
.kicker .pill{
  padding:6px 10px; border-radius:999px;
  background: rgba(255,255,255,.06); border:1px solid var(--line);
}
.h1{margin:14px 0 10px; font-size:46px; line-height:1.05;}
@media (max-width: 480px){ .h1{font-size:38px;} }
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px;}

.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:14px; font-weight:900;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.btn:hover{background: rgba(255,255,255,.07); transform: translateY(-1px);}
.btn-primary{
  border:none;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 14px 40px rgba(255,122,24,.18);
}
.btn-primary:hover{filter:saturate(1.05);}

.hero-side{padding:18px; display:flex; flex-direction:column; gap:14px;}
.photo{
  min-height: 210px;
  border-radius: 16px;
  border:1px solid var(--line);
  background:
    radial-gradient(700px 300px at 20% 10%, rgba(255,122,24,.22), transparent 55%),
    radial-gradient(600px 300px at 80% 20%, rgba(45,212,255,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  position:relative;
  overflow:hidden;
}
.photo.has-img{background-size: cover;background-position: center;}
.photo::after{
  content: attr(data-placeholder);
  position:absolute; bottom:14px; left:14px;
  color: rgba(243,246,255,.76);
  font-weight:900; font-size:12px;
  padding:8px 10px; border-radius:999px;
  background: rgba(0,0,0,.35); border:1px solid rgba(255,255,255,.14);
}

.statgrid{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
.stat{
  padding:14px; border-radius:16px; border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.stat .big{font-weight:950; font-size:18px;}
.stat .small{color:var(--muted); font-size:12px; margin-top:4px; line-height:1.35;}

.section{padding: 26px 0 10px;}
.section h2{margin:0 0 10px; font-size:28px;}
.section p{margin:0; color:var(--muted); line-height:1.6;}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:14px;}
@media (max-width: 900px){ .grid3{grid-template-columns:1fr;} }

.feature{padding:18px; position:relative; overflow:hidden;}
.feature::before{
  content:"";
  position:absolute; inset:-120px -120px auto auto;
  width:220px; height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,.35), transparent 65%);
  transform: rotate(20deg);
}
.feature h3{margin:0 0 8px; font-size:18px;}
.feature p{margin:0; color:var(--muted); line-height:1.55;}

.divider{height:1px; background: var(--line); margin: 18px 0;}

.footer{padding: 24px 0 70px; color: var(--muted); font-size:13px;}
.footer a{color: rgba(243,246,255,.9); font-weight:800;}

.badge-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;}
.badge{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:8px 10px; border-radius:999px;
  font-weight: 800;
}

.pagehead{padding: 36px 0 10px;}
.pagehead h1{margin:0; font-size:34px;}
.pagehead p{margin:10px 0 0; color:var(--muted); line-height:1.6;}

.menu-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px;}
@media (max-width: 900px){ .menu-grid{grid-template-columns:1fr;} }
.menu-card{padding:18px;}
.item{display:flex; justify-content:space-between; gap:14px; padding:12px 0; border-bottom:1px solid var(--line);}
.item:last-child{border-bottom:none;}
.item .name{font-weight:950;}
.item .desc{color:var(--muted); font-size:13px; margin-top:6px; line-height:1.45;}
.price{color: rgba(243,246,255,.92); font-weight:950; white-space:nowrap;}

.form{padding:18px;}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical;}
label{display:block; margin:12px 0 6px; color: rgba(243,246,255,.9); font-weight:900; font-size:13px;}
small{color:var(--muted);}

/* LIMITED CUTS + CHIBI BUBBLES */
.limited-cuts { padding: 18px; }
.limited-cuts__header h2 { margin: 0 0 6px; font-size: 26px; }
.limited-cuts__header .muted { margin: 0 0 14px; color: var(--muted); }
.limited-cuts__grid { display: grid; gap: 14px; }
.chibi { display: grid; grid-template-columns: 84px 1fr; gap: 12px; align-items: start; }
.chibi--assistant { grid-template-columns: 1fr 84px; }
.chibi__avatar{
  width: 84px; height: 84px; border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(38px 28px at 30% 30%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(46px 34px at 70% 35%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(46px 34px at 40% 75%, rgba(255,122,24,.16), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.chibi__avatar.has-img{ background-size: cover; background-position: center; }
.chibi--chef .chibi__avatar::after{content:"🍣"; position:absolute; inset:auto 10px 10px auto; font-size:20px; opacity:.9;}
.chibi--assistant .chibi__avatar::after{content:"✨"; position:absolute; inset:auto auto 10px 10px; font-size:18px; opacity:.9;}
.bubble{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  border-radius: 18px;
  padding: 12px 14px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.bubble__title{font-weight: 950; margin-bottom: 6px; letter-spacing: .2px;}
.bubble__text{color: var(--muted); line-height: 1.6; font-size: 14px;}
.bubble--left::before{
  content:""; position:absolute; left:-8px; top:20px;
  width:14px; height:14px; background: rgba(255,255,255,.045);
  border-left: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transform: rotate(45deg);
}
.bubble--right::before{
  content:""; position:absolute; right:-8px; top:20px;
  width:14px; height:14px; background: rgba(255,255,255,.045);
  border-right: 1px solid rgba(255,255,255,.14);
  border-top: 1px solid rgba(255,255,255,.14);
  transform: rotate(45deg);
}
.limited-cuts__footer{
  display:flex; gap:10px; justify-content:center; align-items:center; text-align:center;
  padding: 12px 12px; border-radius: 16px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color: rgba(243,246,255,.9);
  font-weight: 900;
}
.spark { opacity: .85; }
@media (max-width: 720px){
  .chibi { grid-template-columns: 64px 1fr; }
  .chibi--assistant { grid-template-columns: 1fr 64px; }
  .chibi__avatar { width:64px; height:64px; border-radius:18px; }
}
