:root{
  --bg:#f5f6f7;
  --card:#ffffff;
  --text:#1b1f23;
  --muted:#5b6772;
  --primary:#0b8457;
  --border:#e6e8eb;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:var(--bg);
  color:var(--text);
}

.topbar{
  position: sticky;
  top:0;
  background:var(--card);
  border-bottom:1px solid var(--border);
  padding:12px 14px;
  z-index:10;
}

.brand{
  display:flex;
  gap:10px;
  align-items:center;
}

.logo{
  width:40px;height:40px;
  display:grid;place-items:center;
  border-radius:12px;
  background:#e9f6f0;
  font-size:18px;
}

.name{font-weight:700}
.tag{font-size:12px;color:var(--muted)}

.container{
  padding:14px;
  padding-bottom:84px;
  max-width:720px;
  margin:0 auto;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  margin-bottom:12px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}

.hero h1{margin:0 0 8px 0}
.hero p{margin:0 0 14px 0;color:var(--muted)}

.btn-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--text);
  background:#fff;
  font-weight:600;
}

.btn.primary{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
}

.mini{margin-top:12px;display:flex;gap:8px;flex-wrap:wrap}
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:#f0f2f4;
  color:var(--muted);
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:560px){
  .grid{grid-template-columns:1fr}
}

.link{ text-decoration:none; color:inherit; }
.link h2{margin:0 0 6px 0}
.link p{margin:0;color:var(--muted)}

.list{margin-top:10px;border-top:1px solid var(--border)}
.row{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid var(--border);
}

.hint{color:var(--muted); font-size:12px; margin-top:10px}

.mapwrap{
  margin-top:12px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
}
.mapwrap iframe{
  width:100%;
  height:260px;
  border:0;
}

.bottomnav{
  position:fixed;
  left:0; right:0; bottom:0;
  background:var(--card);
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-around;
  padding:10px 8px;
}

.navitem{
  text-decoration:none;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
  padding:8px 12px;
  border-radius:12px;
}
.navitem.active{
  color:var(--primary);
  background:#e9f6f0;
}
.hero-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:12px;
}
@media (max-width:560px){
  .hero-img{ height:180px; }
}

