
/* baliluxurious.com - minimal, fast, responsive */
:root{
  --bg:#ffffff;
  --text:#1a1a1a;
  --muted:#6b7280;
  --brand:#0f766e;
  --brand-2:#115e59;
  --card:#f8fafc;
  --border:#e5e7eb;
  --max:1200px;
  --radius:16px;
  --shadow:0 6px 24px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:var(--brand); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max); margin-inline:auto; padding:0 20px}
header{
  position:sticky; top:0; z-index:50;
  background:#fffccf;
  background:linear-gradient(180deg,#ffffff 0%, #ffffff 60%, rgba(255,255,255,.9) 100%);
  border-bottom:1px solid var(--border);
  backdrop-filter:saturate(120%) blur(6px);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:10px}
.brand .logo{width:36px; height:36px; border-radius:10px; background:linear-gradient(135deg,#34d399,#0ea5e9); box-shadow:var(--shadow)}
.brand h1{font-size:18px; margin:0}
nav ul{display:flex; gap:16px; list-style:none; padding:0; margin:0}
nav a{color:var(--text); font-weight:600}
.mobile-toggle{display:none; border:1px solid var(--border); padding:8px 10px; border-radius:10px; background:#fff}
@media (max-width:800px){
  nav ul{display:none}
  nav ul.open{display:flex; flex-direction:column; gap:10px; padding:12px 0}
  .mobile-toggle{display:inline-block}
}
.hero{
  display:grid; grid-template-columns: 1.2fr 1fr; gap:28px;
  padding:28px 0 10px;
}
.hero h2{font-size:40px; line-height:1.1; margin:8px 0 10px}
.hero p{color:var(--muted); margin-top:8px}
.hero .card{
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:18px;
}
@media (max-width:900px){ .hero{grid-template-columns:1fr} .hero h2{font-size:32px} }

.grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:18px;
}
@media (max-width:1000px){ .grid{grid-template-columns: repeat(2, 1fr);} }
@media (max-width:640px){ .grid{grid-template-columns:1fr;} }

.card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow);
}
.card img{width:100%; height:350px; object-fit:cover; display:block}
.card .content{padding:14px 16px}
.badge{display:inline-block; font-size:12px; padding:4px 8px; border-radius:999px; background:#ecfeff; color:#0e7490; border:1px solid #cffafe}
.meta{display:flex; gap:10px; color:var(--muted); font-size:14px; margin-top:6px; flex-wrap:wrap}
.btn{
  display:inline-block; padding:10px 14px; border-radius:12px; border:1px solid var(--border);
  background:var(--brand); color:white; font-weight:700; letter-spacing:.2px;
}
.btn.secondary{ background:#fff; color:var(--brand); border-color:var(--brand) }
.btn:hover{filter:brightness(0.98)}

.section{padding:30px 0}
.section h3{margin:0 0 12px 0; font-size:26px}
.footer{
  margin-top:40px; border-top:1px solid var(--border); padding:30px 0; color:var(--muted); font-size:14px
}
.kv{
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.kv div{background:var(--card); border:1px solid var(--border); border-radius:12px; padding:14px}
@media (max-width:800px){ .kv{grid-template-columns:1fr} }

.gallery{display:grid; grid-template-columns: repeat(4, 1fr); gap:8px}
.gallery img{width:100%; height:140px; object-fit:cover; border-radius:10px}
@media (max-width:800px){ .gallery{grid-template-columns: repeat(2, 1fr);} }

.map{border:0; width:100%; height:320px; border-radius:12px}
.small{font-size:13px; color:var(--muted)}

.table{width:100%; border-collapse:collapse}
.table th, .table td{border:1px solid var(--border); padding:10px; text-align:left}
.table th{background:#f8fafc}
