:root{
  --bg:#faf9f7;
  --surface:#ffffff;
  --surface2:#f5f2ee;
  --text:#2e2e2e;
  --muted:#6f6a63;
  --muted2:#9a948d;
  --line:#e8e4de;
  --shadow: 0 16px 40px rgba(20, 20, 20, .08);
  --radius: 18px;
  --radius2: 26px;

  --accent:#2e2e2e;
  --accent2:#c9b89b;
  --max:1160px;

  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  background: var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - 44px)); margin:0 auto;}
.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(250,249,247,.85);
  backdrop-filter: blur(10px);
  position: sticky; top:0; z-index:60;
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px;}
.logo{
  width:38px;height:38px;border-radius:14px;
  background: var(--accent);
  box-shadow: 0 10px 26px rgba(20,20,20,.10);
}
.brand h1{margin:0;font-size:15px;letter-spacing:.3px}
.brand .sub{font-size:12px;color:var(--muted2)}
.links{display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:flex-end;}
.links a{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius: 999px;
}
.links a:hover{background: var(--surface2); color:var(--text)}
.actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  font-size:13px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(20,20,20,.06);
}
.btn:hover{background: var(--surface2)}
.btn.primary{
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.lang{
  display:inline-flex; gap:6px; padding:6px;
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: 999px;
}
.lang button{
  border:0;
  background: transparent;
  font-size:12px;
  padding:8px 10px;
  border-radius: 999px;
  cursor:pointer;
  color: var(--muted);
}
.lang button.active{
  background: var(--surface2);
  color: var(--text);
}
.hero{padding:26px 0 8px}
.heroGrid{display:grid; grid-template-columns: 1.05fr .95fr; gap:18px; align-items:stretch;}
.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.heroLeft{padding:26px; display:flex; flex-direction:column; justify-content:space-between; gap:14px}
.kicker{
  display:inline-flex; width:fit-content;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size:12px;
}
.hero h2{
  margin:0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .2px;
  line-height:1.05;
  font-size:44px;
}
.hero p{margin:0; color:var(--muted); font-size:14.5px; line-height:1.7; max-width:62ch}
.heroActions{display:flex; gap:10px; flex-wrap:wrap}
.heroMedia{padding:12px}
.frame{
  border-radius: 20px;
  overflow:hidden;
  border:1px solid var(--line);
  background: var(--surface2);
}
.frame img{width:100%; height: 330px; object-fit:cover}
.note{padding:14px 14px 16px; font-size:12.8px; line-height:1.6; color:var(--muted)}
.section{padding:22px 0}
.sectionHead{display:flex; justify-content:space-between; gap:12px; align-items:flex-end; flex-wrap:wrap; margin-bottom:12px}
.sectionHead h3{
  margin:0;
  font-family: var(--serif);
  font-size:20px;
  letter-spacing:.2px;
}
.sectionHead p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.6; max-width:80ch}
.grid3{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
.feature{padding:16px}
.feature h4{margin:10px 0 6px; font-size:14px}
.feature p{margin:0; color:var(--muted); font-size:13px; line-height:1.6}
.badgeNum{
  width:42px; height:42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: var(--surface2);
  border:1px solid var(--line);
  font-weight:600;
  color: var(--text);
}
.rooms{display:grid; grid-template-columns: repeat(4,1fr); gap:14px}
.roomCard{padding:12px}
.roomCard .thumb{border-radius: 18px; overflow:hidden; border:1px solid var(--line)}
.roomCard .thumb img{width:100%; height:160px; object-fit:cover}
.roomCard .body{padding:12px 6px 6px}
.roomCard h4{margin:0; font-size:14px}
.roomCard p{margin:6px 0 0; color:var(--muted); font-size:12.8px; line-height:1.55}
.pageHead{padding:18px 0 8px}
.pageHead h2{margin:0; font-family: var(--serif); font-size:28px}
.pageHead p{margin:6px 0 0; color:var(--muted); font-size:13.5px; line-height:1.6; max-width:84ch}
.toolbar{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  padding:12px; border-radius: var(--radius);
  background: var(--surface);
  border:1px solid var(--line);
}
.input, select, textarea{
  font-family: var(--sans);
  background: var(--bg);
  border:1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding:10px 12px;
  font-size:13px;
  outline:none;
}
textarea{border-radius: 18px}
.input::placeholder{color: var(--muted2)}
.toolbar .grow{flex:1; min-width: 220px}
select{padding-right:34px}
.products{display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:14px}
.product{padding:12px}
.product .thumb{border-radius:18px; overflow:hidden; border:1px solid var(--line); background: var(--surface2)}
.product .thumb img{width:100%; height:190px; object-fit:cover}
.product .body{padding:12px 6px 6px}
.product h4{margin:0; font-size:14px}
.meta{display:flex; gap:8px; flex-wrap:wrap; margin:8px 0 10px}
.chip{
  font-size:11px;
  padding:6px 10px;
  border-radius: 999px;
  background: var(--surface2);
  border:1px solid var(--line);
  color: var(--muted);
}
.product p{margin:0; color:var(--muted); font-size:12.8px; line-height:1.6}
.empty{padding:18px; color:var(--muted)}
.footer{
  border-top:1px solid var(--line);
  padding:22px 0 28px;
  margin-top:18px;
  background: var(--surface);
}
.footerGrid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px}
.small{font-size:12.8px; line-height:1.65; color:var(--muted)}
.kv{display:grid; gap:8px}
.kv div{display:flex; gap:10px; color:var(--muted); font-size:13px}
.kv b{color:var(--text)}
hr.sep{border:0;border-top:1px solid var(--line);margin:14px 0}
.modal{
  position:fixed; inset:0;
  display:none; place-items:center;
  padding:18px;
  background: rgba(40, 35, 30, 0.30);
  backdrop-filter: blur(10px);
  z-index:200;
}
.modal.open{display:grid}
.modalCard{
  width:min(980px, 100%);
  border-radius: 26px;
  background: var(--surface);
  border:1px solid var(--line);
  box-shadow: 0 26px 70px rgba(20,20,20,.16);
  overflow:hidden;
}
.modalGrid{display:grid; grid-template-columns: 1fr 1fr}
.modalImg img{width:100%; height: 420px; object-fit:cover}
.modalBody{padding:16px 16px 18px}
.modalBody h4{margin:0; font-family: var(--serif); font-size:18px}
.closeRow{display:flex; justify-content:space-between; align-items:center; gap:10px}
.x{
  cursor:pointer;
  border:1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  border-radius: 999px;
  padding:8px 12px;
  font-size:12px;
}
.x:hover{background: var(--surface2); color: var(--text)}
.fab{
  position:fixed;
  right:18px; bottom:18px;
  z-index:120;
}
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .hero h2{font-size:36px}
  .grid3{grid-template-columns:1fr}
  .rooms{grid-template-columns:repeat(2,1fr)}
  .products{grid-template-columns:repeat(2,1fr)}
  .footerGrid{grid-template-columns:1fr}
  .modalGrid{grid-template-columns:1fr}
  .modalImg img{height: 320px}
}
@media (max-width: 560px){
  .rooms{grid-template-columns:1fr}
  .products{grid-template-columns:1fr}
  .links{display:none}
}
