:root{
  --bg1:#f5f7ff;
  --bg2:#eef2ff;
  --card:rgba(255,255,255,.72);
  --stroke:rgba(10,23,55,.14);
  --text:#0c1222;
  --muted:rgba(12,18,34,.68);
  --navy:#0c1737;
  --navy2:#132a63;
  --pill:rgba(12,23,55,.08);
  --shadow: 0 18px 45px rgba(11, 18, 40, .10);
  --shadow2: 0 10px 25px rgba(11, 18, 40, .08);
  --radius:26px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 600px at 18% 12%, rgba(90,120,255,.16), transparent 55%),
    radial-gradient(900px 600px at 85% 20%, rgba(20,40,120,.12), transparent 52%),
    radial-gradient(900px 600px at 75% 90%, rgba(120,80,255,.10), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px, calc(100% - 40px)); margin: 0 auto;}
.topbar{
  position:sticky; top:0; z-index:50;
  padding:18px 0;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(245,247,255,.75), rgba(245,247,255,.50));
  border-bottom: 1px solid rgba(10,23,55,.06);
}

.nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.logo{
  width:36px; height:36px; border-radius:12px;
  background: radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 70%),
              linear-gradient(135deg, var(--navy2), var(--navy));
  box-shadow: 0 10px 20px rgba(12,23,55,.18);
}
.brand h1{
  margin:0;
  font-size:14px;
  letter-spacing:.2px;
  font-weight:800;
}
.brand p{
  margin:1px 0 0;
  font-size:12px;
  color:var(--muted);
}

.navlinks{
  display:flex; align-items:center; gap:8px;
  padding:6px;
  border-radius:999px;
  background: rgba(255,255,255,.62);
  border:1px solid rgba(10,23,55,.10);
  box-shadow: var(--shadow2);
}
.navlinks a{
  font-size:13px;
  padding:9px 12px;
  border-radius:999px;
  color: rgba(12,18,34,.78);
}
.navlinks a.active{
  background: linear-gradient(135deg, rgba(20,40,120,.18), rgba(90,120,255,.14));
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(12,23,55,.10);
}

.main{padding:28px 0 46px;}
.grid{
  display:grid;
  grid-template-columns: 1.35fr .95fr;
  gap:18px;
  align-items:start;
}
.card{
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.card.pad{padding:22px;}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(12,23,55,.08);
  border:1px solid rgba(12,23,55,.10);
  font-size:12px;
  color: rgba(12,18,34,.78);
}
.badge .dot{
  width:8px;height:8px;border-radius:999px;
  background: linear-gradient(180deg, #5a78ff, #132a63);
  box-shadow: 0 6px 14px rgba(20,40,120,.25);
}

.hero h2{
  margin:10px 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.8px;
}
.hero p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.actions{
  display:flex; gap:10px; flex-wrap:wrap;
  margin: 14px 0 16px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(12,23,55,.14);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  font-weight:700;
  font-size:13px;
}
.btn.primary{
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  color:#fff;
  border-color: rgba(255,255,255,.14);
}
.btn:active{transform:translateY(1px)}

.pills{
  display:flex; gap:8px; flex-wrap:wrap;
}
.pill{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.62);
  border:1px solid rgba(12,23,55,.12);
  color: rgba(12,18,34,.72);
}

.triple{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.mini{
  padding:14px;
  border-radius:18px;
  background: rgba(255,255,255,.62);
  border:1px solid rgba(12,23,55,.12);
}
.mini strong{display:block; font-size:12px; margin-bottom:4px;}
.mini span{font-size:12px; color:var(--muted);}

.side h3{
  margin:0 0 10px;
  font-size:13px;
  color: rgba(12,18,34,.78);
}
.list{
  display:grid;
  gap:10px;
}
.item{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 10px;
  border-radius:16px;
  background: rgba(255,255,255,.62);
  border:1px solid rgba(12,23,55,.12);
}
.bullet{
  width:10px; height:10px; border-radius:999px;
  margin-top:4px;
  background: linear-gradient(180deg, #5a78ff, #132a63);
  box-shadow: 0 10px 20px rgba(20,40,120,.22);
}
.item b{display:block; font-size:12px;}
.item p{margin:2px 0 0; font-size:12px; color:var(--muted); line-height:1.45;}

.quick{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(12,23,55,.10);
}
.quick small{color:var(--muted)}
.quick .addr{margin-top:8px; font-weight:800; font-size:13px;}
.quick .hours{margin-top:6px; font-size:12px; color:var(--muted);}

.bottom{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.bottom h3{margin:0 0 8px; font-size:15px}
.bottom p{margin:0; color:var(--muted); font-size:13px; line-height:1.55}
.bottom .row{
  display:flex; gap:10px; margin-top:12px; flex-wrap:wrap;
}

.footer{
  padding:22px 0 34px;
  color: rgba(12,18,34,.62);
  font-size:12px;
}
.footer .footgrid{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  border-top:1px solid rgba(12,23,55,.10);
  padding-top:18px;
}
.footer nav{display:flex; gap:12px; flex-wrap:wrap;}
.footer a{color: rgba(12,18,34,.62)}
.footer a:hover{color: rgba(12,18,34,.86)}

.page-title{
  margin:0 0 12px;
  font-size:28px;
  letter-spacing:-.4px;
}
.section{
  margin-top:14px;
  display:grid;
  gap:12px;
}
.menu-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.menu-card{
  padding:16px;
  border-radius:22px;
  background: rgba(255,255,255,.62);
  border:1px solid rgba(12,23,55,.12);
}
.menu-card h4{margin:0 0 6px; font-size:14px}
.menu-card p{margin:0; font-size:12px; color:var(--muted); line-height:1.55}
.menu-card ul{margin:10px 0 0; padding:0 0 0 16px; color: rgba(12,18,34,.70); font-size:12px; line-height:1.65}

.form{
  display:grid; gap:12px;
}
.field{
  display:grid; gap:6px;
}
label{font-size:12px; color: rgba(12,18,34,.78); font-weight:700}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(12,23,55,.14);
  background: rgba(255,255,255,.70);
  outline:none;
  font: inherit;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{
  box-shadow: 0 0 0 4px rgba(90,120,255,.14);
  border-color: rgba(90,120,255,.40);
}

@media (max-width: 980px){
  .grid{grid-template-columns: 1fr;}
  .hero h2{font-size:38px}
  .bottom{grid-template-columns: 1fr}
  .menu-grid{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .brand p{display:none}
  .hero h2{font-size:34px}
}
