:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --card:#f9fafb;
  --accent:#0ea5e9;
  --accent2:#22c55e;
  --shadow: 0 10px 25px rgba(0,0,0,.06);
  --radius: 16px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding: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:var(--bg);}
a{color:inherit; text-decoration:none}
a:focus, button:focus{outline:3px solid rgba(14,165,233,.35); outline-offset:2px;}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px;}
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85); backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:12px;}
.brand{display:flex; align-items:center; gap:10px;}
.brand-mark{
  width:34px; height:34px; border-radius:10px;
  background:linear-gradient(135deg, var(--accent), #a78bfa);
  box-shadow: var(--shadow);
}
.brand-title{line-height:1}
.brand-title strong{display:block; font-size:14px; letter-spacing:.2px;}
.brand-title span{display:block; font-size:12px; color:var(--muted);}
.nav{display:flex; gap:12px; align-items:center; flex-wrap:wrap; justify-content:flex-end;}
.nav a{padding:8px 10px; border-radius:10px; color:var(--muted);}
.nav a:hover{background:var(--card); color:var(--text);}
.nav a.active{background:rgba(14,165,233,.10); color:var(--text);}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px; border:1px solid var(--line);
  background:white; box-shadow: var(--shadow);
  font-weight:600; font-size:14px;
}
.btn:hover{transform:translateY(-1px);}
.btn-primary{border-color:transparent; background:linear-gradient(135deg, var(--accent), #38bdf8); color:white;}
.btn-secondary{border-color:transparent; background:linear-gradient(135deg, var(--accent2), #86efac); color:#052e16;}
.btn-ghost{box-shadow:none; background:transparent;}
.badge{display:inline-flex; gap:6px; align-items:center; padding:6px 10px; border-radius:999px; border:1px solid var(--line); background:white; color:var(--muted); font-size:12px;}

.hero{padding:34px 0 22px;}
.hero-grid{display:grid; grid-template-columns:1.2fr .8fr; gap:18px; align-items:stretch;}
@media(max-width:900px){.hero-grid{grid-template-columns:1fr;}}
.hero-card{
  border:1px solid var(--line); background:linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius:var(--radius); padding:22px; box-shadow: var(--shadow);
}
.hero h1{margin:0 0 10px; font-size:34px; letter-spacing:-.6px;}
.hero p{margin:0 0 16px; color:var(--muted); line-height:1.55;}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap;}
.hero-side{
  border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:white; box-shadow: var(--shadow);
}
.hero-side .meta{padding:14px;}
.meta-row{display:flex; gap:8px; flex-wrap:wrap;}

.section{padding:22px 0;}
.section h2{margin:0 0 12px; font-size:22px; letter-spacing:-.2px;}
.section p.lead{margin:0 0 14px; color:var(--muted); line-height:1.6;}

.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
@media(max-width:900px){.cards{grid-template-columns:1fr;}}
.card{
  border:1px solid var(--line); background:white; border-radius:var(--radius);
  padding:16px; box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px; font-size:16px;}
.card p{margin:0; color:var(--muted); line-height:1.55; font-size:14px;}

.gallery{display:flex; gap:12px; overflow:auto; padding-bottom:8px; scroll-snap-type:x mandatory;}
.gallery figure{
  margin:0; min-width:320px; scroll-snap-align:start;
  border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:white; box-shadow: var(--shadow);
}
.gallery figcaption{padding:10px 12px; font-size:13px; color:var(--muted);}

.room-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:14px;}
@media(max-width:1000px){.room-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.room-grid{grid-template-columns:1fr;}}
.room-tile{
  border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:white; box-shadow: var(--shadow);
  display:flex; flex-direction:column;
}
.room-tile .body{padding:12px 12px 14px;}
.room-tile .body strong{display:block; font-size:14px; margin-bottom:4px;}
.room-tile .body span{display:block; color:var(--muted); font-size:13px; line-height:1.45;}
.room-tile .foot{padding:0 12px 14px; margin-top:auto;}
.room-tile .foot .btn{width:100%; box-shadow:none;}
.kv{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;}
.kv .pill{padding:6px 10px; border:1px solid var(--line); border-radius:999px; font-size:12px; color:var(--muted); background:white;}

.split{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
@media(max-width:900px){.split{grid-template-columns:1fr;}}
.note{
  border:1px dashed #cbd5e1; background:#f8fafc; border-radius:var(--radius); padding:12px;
  color:var(--muted); font-size:13px; line-height:1.5;
}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0 30px; margin-top:10px;
  color:var(--muted); font-size:13px;
}
.footer a{color:var(--text); text-decoration:underline;}
.small{font-size:12px; color:var(--muted);}
