/* Numervo Hotel — Urban Practical Style
   Colors: bg #FFFFFF, text #111827, accent #2D6CDF
   Font: IBM Plex Sans
*/

:root{
  --bg:#FFFFFF;
  --text:#111827;
  --muted:#6B7280;
  --accent:#2D6CDF;
  --border:#E5E7EB;
  --card:#F9FAFB;
  --shadow: 0 10px 30px rgba(17,24,39,.08);
  --radius:16px;
  --radius2:22px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}
a{color:inherit; text-decoration:none}
a:hover{color:var(--accent)}
img{max-width:100%; display:block}
p{margin:0 0 12px}
ul{margin:0; padding-left:18px}
small{color:var(--muted)}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:56px 0; border-top:1px solid var(--border)}
.section:first-of-type{border-top:none}
.kicker{color:var(--accent); font-weight:700; letter-spacing:.02em; text-transform:uppercase; font-size:.85rem}
.h1{font-size:2.35rem; line-height:1.15; margin:10px 0 12px}
.h2{font-size:1.65rem; margin:0 0 12px}
.h3{font-size:1.15rem; margin:0 0 8px}
.lead{font-size:1.05rem; color:#1F2937}
.muted{color:var(--muted)}
.hr{height:1px; background:var(--border); margin:18px 0}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border:1px solid var(--border);
  border-radius:999px; background:#fff;
  font-size:.92rem;
}
.badge .dot{width:8px;height:8px;border-radius:50%;background:var(--accent)}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-weight:700;
  transition:transform .08s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover{border-color:rgba(45,108,223,.45); box-shadow:0 10px 22px rgba(45,108,223,.12)}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}
.btn.primary:hover{box-shadow:0 14px 30px rgba(45,108,223,.22)}
.btn.link{
  border:0; padding:0; border-radius:0; font-weight:700; color:var(--accent); background:transparent
}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
  letter-spacing:.02em;
}
.logo{
  width:34px;height:34px;border-radius:10px;
  background:linear-gradient(180deg, rgba(45,108,223,.20), rgba(45,108,223,.05));
  border:1px solid rgba(45,108,223,.25);
  box-shadow:0 10px 30px rgba(45,108,223,.12);
  display:grid; place-items:center;
  color:var(--accent);
  font-weight:900;
}
.navlinks{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end;
}
.navlinks a{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:#111827;
  font-weight:700;
  font-size:.95rem;
}
.navlinks a:hover{border-color:var(--border); background:#fff}
.navlinks a.active{
  border-color:rgba(45,108,223,.25);
  background:rgba(45,108,223,.06);
  color:#0B2A63;
}

.hero{
  padding:34px 0 26px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 940px){
  .heroGrid{grid-template-columns:1fr}
}
.heroCard{
  border:1px solid var(--border);
  border-radius:var(--radius2);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
}
.heroMedia{
  position:relative;
  min-height:320px;
  background:var(--card);
}
.heroMedia img{width:100%; height:100%; object-fit:cover}
.heroOverlay{
  position:absolute; inset:auto 16px 16px 16px;
  padding:14px 14px;
  background:rgba(255,255,255,.88);
  border:1px solid var(--border);
  border-radius:18px;
  display:flex; flex-wrap:wrap; gap:10px;
  align-items:center; justify-content:space-between;
}
.heroOverlay strong{font-size:1.05rem}
.heroBody{padding:18px 18px 16px}
.heroMeta{
  display:flex; flex-wrap:wrap; gap:10px;
  margin:12px 0 0;
}
.heroAside{
  padding:18px;
  display:flex; flex-direction:column; gap:12px;
}
.card{
  border:1px solid var(--border);
  background:#fff;
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 10px 22px rgba(17,24,39,.05);
}
.card.soft{background:var(--card); box-shadow:none}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
@media (max-width: 940px){ .grid2,.grid3{grid-template-columns:1fr} }

.kv{
  display:grid; grid-template-columns: 1fr 1fr; gap:10px;
  margin-top:10px;
}
.kv div{
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  background:#fff;
}
.kv b{display:block; font-size:.92rem}
.kv span{color:var(--muted); font-size:.92rem}

.galleryGrid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:12px;
}
.gItem{
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 18px rgba(17,24,39,.06);
}
.gItem img{height:100%; width:100%; object-fit:cover}
.g1{grid-column: span 7; min-height:320px}
.g2{grid-column: span 5; min-height:320px}
.g3{grid-column: span 4; min-height:240px}
.g4{grid-column: span 4; min-height:240px}
.g5{grid-column: span 4; min-height:240px}
@media (max-width: 940px){
  .g1,.g2,.g3,.g4,.g5{grid-column:span 12; min-height:240px}
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  vertical-align:top;
  text-align:left;
  font-size:.95rem;
}
.table th{
  background:var(--card);
  font-size:.92rem;
  color:#111827;
}
.table tr:last-child td{border-bottom:none}

.callout{
  border:1px solid rgba(45,108,223,.25);
  background:rgba(45,108,223,.06);
  border-radius:18px;
  padding:14px;
}
.listClean{list-style:none; padding-left:0}
.listClean li{
  padding:10px 0;
  border-bottom:1px dashed var(--border);
}
.listClean li:last-child{border-bottom:none}
.iconRow{display:flex; flex-wrap:wrap; gap:10px}
.iconPill{
  display:inline-flex; gap:10px; align-items:flex-start;
  padding:10px 12px; border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  min-width:220px;
}
.icon{
  width:34px; height:34px; border-radius:12px;
  background:rgba(45,108,223,.10);
  border:1px solid rgba(45,108,223,.22);
  display:grid; place-items:center;
  color:var(--accent);
  font-weight:900;
}
.iconPill b{display:block}
.iconPill span{display:block; color:var(--muted); font-size:.92rem}

.prosCons{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
@media (max-width: 940px){ .prosCons{grid-template-columns:1fr} }
.pc{
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  background:#fff;
}
.pc h3{margin:0 0 10px}
.pc ul{margin:0; padding-left:18px}
.pc li{margin:0 0 8px}
.pc.pros{border-color:rgba(45,108,223,.25)}
.pc.cons{border-color:rgba(17,24,39,.16)}
.note{font-size:.92rem; color:var(--muted)}

.footer{
  padding:30px 0;
  border-top:1px solid var(--border);
}
.footerGrid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:14px;
}
@media (max-width: 940px){ .footerGrid{grid-template-columns:1fr} }
.footer a{color:var(--muted)}
.footer a:hover{color:var(--accent)}
.footerLinks{display:flex; flex-wrap:wrap; gap:10px}
.subtleBox{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  background:var(--card);
}

.formGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width: 940px){ .formGrid{grid-template-columns:1fr} }
label{display:block; font-weight:700; font-size:.92rem; margin:0 0 6px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  font:inherit;
  background:#fff;
}
textarea{min-height:140px; resize:vertical}
input:focus, textarea:focus, select:focus{
  outline:2px solid rgba(45,108,223,.25);
  border-color:rgba(45,108,223,.45);
}
.formActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

.mapWrap{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 22px rgba(17,24,39,.06);
}
.mapWrap iframe{width:100%; height:360px; border:0}

.skip{
  position:absolute; left:-9999px; top:auto;
  width:1px;height:1px; overflow:hidden;
}
.skip:focus{
  position:fixed; left:18px; top:18px; width:auto; height:auto;
  padding:10px 12px; background:#fff; border:1px solid var(--border);
  border-radius:14px; z-index:999;
  box-shadow:var(--shadow);
}
.toc{
  display:flex; flex-wrap:wrap; gap:10px;
}
.toc a{color:var(--accent); font-weight:700; border-bottom:1px dashed rgba(45,108,223,.35)}
.toc a:hover{border-bottom-style:solid}
.backTop{
  position:fixed;
  right:16px; bottom:16px;
  border-radius:999px;
  padding:12px 14px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:var(--shadow);
  display:none;
  font-weight:900;
}
.backTop.show{display:inline-flex}

/* Header Logo */

.logoWrap{
  width:42px;
  height:42px;
  border-radius:14px;
  background:linear-gradient(135deg,#2D6CDF,#1E40AF);
  display:grid;
  place-items:center;
  box-shadow:0 10px 26px rgba(45,108,223,.25);
  border:1px solid rgba(255,255,255,.35);
}

.logoMark{
  color:#fff;
  font-weight:900;
  font-size:1.25rem;
  letter-spacing:.03em;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brandText{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brandMain{
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:.02em;
  color:#111827;
}

.brandSub{
  font-size:.75rem;
  font-weight:600;
  color:#6B7280;
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* Hover effect */
.brand:hover .logoWrap{
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(45,108,223,.35);
}

/* Mobile burger menu */
.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 22px rgba(17,24,39,.06);
}
.burger:hover{border-color:rgba(45,108,223,.45); box-shadow:0 12px 24px rgba(45,108,223,.12)}
.burgerBars{
  position:relative;
  width:20px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  display:block;
}
.burgerBars::before,
.burgerBars::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background:var(--text);
  border-radius:2px;
}
.burgerBars::before{top:-6px}
.burgerBars::after{top:6px}

/* overlay */
.menuOverlay{
  position:fixed;
  inset:0;
  background:rgba(17,24,39,.45);
  backdrop-filter: blur(2px);
  z-index:40;
  display:none;
}
.menuOverlay.show{display:block}

/* Mobile layout */
@media (max-width: 940px){
  .burger{display:inline-flex}
  .nav{gap:10px}

  /* turn navlinks into a panel */
  .navlinks{
    position:fixed;
    top:70px;
    right:16px;
    left:16px;
    z-index:60;
    display:none;
    flex-direction:column;
    gap:8px;
    padding:14px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:0 18px 40px rgba(17,24,39,.14);
  }
  .navlinks.open{display:flex}

  .navlinks a{
    width:100%;
    padding:12px 12px;
    border-radius:14px;
    border:1px solid var(--border);
    background:#fff;
    font-size:1rem;
  }
  .navlinks a:hover{
    border-color:rgba(45,108,223,.35);
    background:rgba(45,108,223,.06);
  }
}

/* Animate burger to X when open */
.burger.isOpen .burgerBars{background:transparent}
.burger.isOpen .burgerBars::before{
  top:0;
  transform:rotate(45deg);
}
.burger.isOpen .burgerBars::after{
  top:0;
  transform:rotate(-45deg);
}
.burgerBars::before,
.burgerBars::after{
  transition: transform .18s ease, top .18s ease;
}
.burgerBars{transition: background .12s ease}
