:root{
  --bg: #fbf9ff;
  --surface: rgba(255,255,255,.86);
  --surface2: rgba(255,255,255,.78);
  --ink:#1f1a2a;
  --muted:#6b637a;

  --purple-900:#2b124f;
  --purple-700:#4b1f86;
  --purple-500:#7a4bb2;
  --gold:#c9a34a;
  --gold-soft:#ecd9ad;

  --border: rgba(43,18,79,.12);
  --shadow: 0 18px 36px rgba(43,18,79,.10);
  --radius: 20px;
  --radius-sm: 14px;

  --max: 1180px;
}

*{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;
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 18% -5%, rgba(122,75,178,.16), transparent 62%),
    radial-gradient(900px 520px at 90% 10%, rgba(201,163,74,.16), transparent 60%),
    linear-gradient(180deg, var(--bg), #fff 55%, #f4effb);
  line-height:1.55;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

header{
  position:sticky; top:0; z-index:60;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.72);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand img{width:40px; height:40px; border-radius:999px; box-shadow:0 10px 18px rgba(43,18,79,.12)}
.brand .title{font-weight:900; letter-spacing:.2px}
.brand .sub{font-size:12px; color:var(--muted); margin-top:-2px}

.links{display:flex; gap:14px; align-items:center; font-size:14px;}
.links a{ text-decoration:none; padding:8px 10px; border-radius:12px;}
.links a:hover{background: rgba(122,75,178,.08)}
.links a.active{background: rgba(201,163,74,.16); border:1px solid rgba(201,163,74,.28)}

.cta{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius:999px;
  padding: 11px 16px;
  border: 1px solid rgba(43,18,79,.16);
  background: rgba(255,255,255,.8);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  box-shadow: 0 10px 20px rgba(43,18,79,.06);
  white-space:nowrap;
}
.btn.primary{
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color:#fff;
  border-color: rgba(43,18,79,.08);
}
.btn.gold{
  background: linear-gradient(135deg, rgba(201,163,74,.95), rgba(236,217,173,.95));
  color: rgba(43,18,79,.96);
  border-color: rgba(201,163,74,.38);
}
.btn:hover{filter:brightness(1.02)}

.mobile-toggle{
  display:none;
  border:1px solid rgba(43,18,79,.16);
  background: rgba(255,255,255,.82);
  border-radius: 12px;
  padding: 9px 10px;
}
.drawer{
  display:none;
  position:fixed; inset: 64px 12px auto 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
  z-index: 70;
}
.drawer a{display:block; padding: 10px 12px; border-radius: 14px; text-decoration:none;}
.drawer a:hover{background: rgba(122,75,178,.08)}
.drawer.show{display:block}

.hero{
  position:relative;
  padding: 34px 0 26px;
}
.hero-wrap{
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:#111;
}
.hero-bg{
  position:relative;
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(21,10,35,.82), rgba(21,10,35,.45) 55%, rgba(21,10,35,.15)),
    url('hero_room.jpg');
  background-size:cover;
  background-position:center;
}
.hero-inner{
  position:absolute; inset:0;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items:end;
  padding: 26px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:800;
  color: rgba(255,255,255,.92);
  background: rgba(43,18,79,.88);
  border: 1px solid rgba(201,163,74,.35);
  padding: 6px 10px;
  border-radius:999px;
}
h1{
  margin: 12px 0 10px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height:1.08;
  letter-spacing:-.6px;
  color:#fff;
}
.hero p{
  margin:0;
  color: rgba(255,255,255,.84);
  max-width: 64ch;
  font-size: 15px;
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 16px;}
.hero-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 22px;
  padding: 16px;
}
.hero-card .top{display:flex; align-items:center; justify-content:space-between; gap:12px;}
.hero-card img{
  width:84px; height:84px; object-fit:cover;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,.92);
  box-shadow: 0 12px 24px rgba(43,18,79,.16);
}
.hero-card h3{margin:0; font-size:16px}
.hero-card .small{margin:3px 0 0; color:var(--muted); font-size:13px}
.hr{height:1px; background: rgba(43,18,79,.10); margin: 12px 0}
.kv{font-size:13px; color: rgba(31,26,42,.92)}
.kv strong{color:rgba(31,26,42,.98)}
.pills{display:flex; flex-wrap:wrap; gap:8px}
.pill{
  font-size:12px; padding: 7px 10px; border-radius:999px;
  background: rgba(122,75,178,.08);
  border: 1px solid rgba(122,75,178,.14);
  color: rgba(31,26,42,.92);
}
.pill.gold{background: rgba(201,163,74,.14); border-color: rgba(201,163,74,.28)}

section{padding: 26px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
  margin: 0 0 12px;
}
.section-head h2{margin:0; font-size:22px}
.section-head p{margin:0; color:var(--muted); font-size:14px}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px;}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(43,18,79,.06);
  padding: 16px;
}
.card h3{margin:0 0 6px; font-size:16px}
.price{font-weight:900; color: var(--purple-900)}
.small{font-size:13px; color:var(--muted)}
.note{
  background: rgba(255,255,255,.78);
  border: 1px dashed rgba(201,163,74,.48);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.callout{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(122,75,178,.12), rgba(201,163,74,.12));
  border: 1px solid rgba(201,163,74,.22);
}
.callout h3{margin:0; font-size:16px}
.callout p{margin:4px 0 0; color:var(--muted); font-size:13px}

.gallery{
  display:grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 14px;
}
.gallery .big{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: 0 12px 26px rgba(43,18,79,.08);
  min-height: 360px;
  background: #111;
}
.gallery .big img{width:100%; height:100%; object-fit:cover; display:block}
.gallery .stack{display:grid; gap:14px;}
.gallery .tile{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: 0 12px 26px rgba(43,18,79,.08);
  min-height: 172px;
  background:#111;
}
.gallery .tile img{width:100%; height:100%; object-fit:cover; display:block}

.reviews{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px;}
.quote{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.quote p{margin:0; color: rgba(31,26,42,.92)}
.quote .who{margin-top:10px; color:var(--muted); font-size:13px}

footer{
  margin-top: 20px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size:13px;
}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px;}

@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr; align-items:start}
  .hero-bg{min-height: 680px}
  .links{display:none}
  .mobile-toggle{display:inline-flex}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .reviews{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
}
