:root{
  --bg:#ffffff;
  --ink:#1c1a17;
  --muted:#6f6a62;
  --line: rgba(28,26,23,.14);

  --stone:#f6f3ee;

  --frame: 1200px;
  --pad: clamp(16px, 3vw, 28px);

  --tile-ratio: 4 / 5;
  --tile-radius: 14px;
  --tile-border: 1px solid rgba(28,26,23,.14);

  --hero-image: url("../images/hero_image_the_dome.jpg");
  --market-image: url("../images/hero_image_the_dome_2.jpg");

  /* Preloader palette (luxury neutral) */
  --pl-bg: #fbfaf7;
  --pl-ink: rgba(28,26,23,.78);
  --pl-muted: rgba(28,26,23,.48);
  --pl-line: rgba(28,26,23,.18);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

.container{
  max-width:var(--frame);
  margin:0 auto;
  padding:0 var(--pad);
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ========== PRELOADER (Version 1.3 - Option 1) ========== */
/* Anti-scroll while loading */
html.is-loading,
html.is-loading body{
  height:100%;
  overflow:hidden;
}

.preloader{
  position:fixed;
  inset:0;
  background: var(--pl-bg);
  display:grid;
  place-items:center;
  z-index:9999;
  opacity:1;
  visibility:visible;
  transition: opacity .32s ease, visibility .32s ease;
}

.preloader__inner{
  display:grid;
  justify-items:center;
  gap:16px;
  transform: translateY(-6px);
}

.preloader__mark{
  width:52px;
  aspect-ratio:1/1;
  border-radius:999px;
  border: 1px solid var(--pl-line);
  position:relative;
}

/* inner ring */
.preloader__mark::before{
  content:"";
  position:absolute;
  inset:7px;
  border-radius:999px;
  border: 1px solid rgba(28,26,23,.10);
}

/* rotating accent stroke */
.preloader__mark::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:999px;
  border: 1px solid transparent;
  border-top-color: rgba(28,26,23,.55);
  border-right-color: rgba(28,26,23,.22);
  animation: ring 1.2s linear infinite;
  transform-origin:center;
}

.preloader__text{
  text-align:center;
}
.preloader__line1{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:22px;
  letter-spacing:.02em;
  color: var(--pl-ink);
}
.preloader__line2{
  margin-top:6px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--pl-muted);
}

/* hide states */
.preloader.is-hiding{
  opacity:0;
  visibility:hidden;
}
.preloader.is-hidden{
  display:none;
}

@keyframes ring{
  to{ transform: rotate(360deg); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .preloader__mark::after{ animation: none; }
  .preloader{ transition:none; }
}

/* ========== HEADER (scroll state) ========== */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;

  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,0));
  padding:14px 0;

  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled{
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  padding:10px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:220px;

  color: rgba(255,255,255,.92);
  transition: color .25s ease;
}
.brand-mark{
  width:38px;height:38px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:999px;
  transition: border-color .25s ease;
}
.brand-text{ display:grid; line-height:1.1; }
.brand-name{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:18px;
  letter-spacing:.2px;
}
.brand-sub{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.75);
  transition: color .25s ease;
}

.site-header.is-scrolled .brand{ color: rgba(28,26,23,.92); }
.site-header.is-scrolled .brand-mark{ border-color: rgba(28,26,23,.25); }
.site-header.is-scrolled .brand-sub{ color: rgba(28,26,23,.60); }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;

  color: rgba(255,255,255,.92);
  transition: color .25s ease;
}
.nav a:hover{ color:#fff; }

.site-header.is-scrolled .nav a{ color: rgba(28,26,23,.92); }
.site-header.is-scrolled .nav a:hover{ color: rgba(28,26,23,1); }

/* Mobile nav */
.nav-toggle{ display:none; }
.nav-burger{
  display:none;
  width:42px;height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  transition: border-color .25s ease;
}
.nav-burger span{
  width:18px;height:1px;
  background:rgba(255,255,255,.9);
  display:block;
  transition: background .25s ease;
}
.site-header.is-scrolled .nav-burger{ border-color: rgba(28,26,23,.18); }
.site-header.is-scrolled .nav-burger span{ background: rgba(28,26,23,.85); }
.nav-drawer{ display:none; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  user-select:none;
}
.btn:active{ transform:translateY(1px); }

.btn--primary{
  background:rgba(255,255,255,.92);
  color:#141210;
  border-color:rgba(255,255,255,.35);
}
.btn--primary:hover{ background:#fff; }

.btn--ghost{
  background:transparent;
  color:rgba(255,255,255,.95);
  border-color:rgba(255,255,255,.55);
}
.btn--ghost:hover{
  border-color:rgba(255,255,255,.85);
  color:#fff;
}
.btn--block{ width:100%; }

/* Text link */
.text-link{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  border-bottom:1px solid rgba(111,106,98,.35);
  padding-bottom:4px;
}
.text-link:hover{
  color:var(--ink);
  border-bottom-color:rgba(28,26,23,.35);
}

/* Hero */
.hero{
  min-height:100vh;
  background-image:var(--hero-image);
  background-size:cover;
  background-position:center;
  position:relative;
  display:grid;
  align-items:center;
  padding-top:78px;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1000px 500px at 18% 28%, rgba(0,0,0,.42), rgba(0,0,0,0)),
    linear-gradient(to bottom, rgba(0,0,0,.50), rgba(0,0,0,.12) 45%, rgba(0,0,0,.52));
}
.hero-inner{
  position:relative;
  padding: clamp(40px, 8vh, 84px) var(--pad) clamp(46px, 9vh, 90px);
}
.hero-copy{ max-width:560px; color:#fff; }
.hero-kicker{
  margin:0 0 8px;
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.88;
}
.hero-title{
  margin:0 0 12px;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height:.95;
}
.hero-desc{
  margin:0 0 22px;
  font-size:15px;
  max-width:52ch;
  opacity:.92;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Sections */
.section{ padding: clamp(54px, 7vw, 92px) 0; }
.section-title{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height:1.1;
}
.section-desc{
  margin:14px auto 0;
  color:var(--muted);
  max-width:70ch;
  font-size:14px;
}
.center{ text-align:center; }

.section-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  margin-bottom:22px;
  border-bottom:1px solid var(--line);
  padding-bottom:14px;
}

/* Sejajar + Ratio 4:5 */
.offer-grid,
.mosaic{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}
.tile{
  aspect-ratio: var(--tile-ratio);
  border-radius: var(--tile-radius);
  overflow:hidden;
  min-width:0;
  background:#fff;
  border: var(--tile-border);
}
.tile--media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.tile--card{ display:flex; background:#fff; }
.tile--stone{ background: var(--stone); }

.offer-card,
.mosaic-card{
  width:100%;
  padding:22px;
  display:flex;
  flex-direction:column;
  min-height:0;
}

/* Offer content */
.offer-tag{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.offer-title{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:28px;
  line-height:1.12;
}
.offer-text{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}
.offer-meta{
  margin:0 0 18px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.offer-meta li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-top:1px dashed rgba(28,26,23,.16);
  padding-top:10px;
  font-size:13px;
}
.offer-meta li span{ color:var(--muted); }
.offer-card .btn{ margin-top:auto; }

/* Rooms intro */
.section--rooms-intro{ padding-top:54px; padding-bottom:42px; }
.rooms-intro{ text-align:center; }

/* Mosaic card content */
.card-kicker{
  margin:0;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.card-title{
  margin:8px 0 0;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:26px;
  line-height:1.15;
}
.card-text{
  margin:10px 0 6px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}
.card-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 14px;
}
.pill{
  font-size:12px;
  color:var(--ink);
  border:1px solid rgba(28,26,23,.16);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.55);
}
.mosaic-card .btn{ margin-top:auto; }

/* Why */
.section--why{ background:#fff; }
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:22px;
}
.why-card{
  border-radius: var(--tile-radius);
  border: 1px solid var(--line);
  padding:22px;
  background:#fff;
}
.why-icon{
  width:46px;height:46px;
  border-radius:999px;
  border:1px solid rgba(28,26,23,.14);
  background: linear-gradient(180deg, rgba(239,233,223,.9), rgba(246,243,238,.9));
  margin-bottom:14px;
}
.why-title{
  margin:0 0 8px;
  font-size:15px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.why-text{ margin:0; color:var(--muted); font-size:14px; }

/* Feature banner */
.feature-banner{
  min-height:62vh;
  background-image: var(--market-image);
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  align-items: center;
}
.feature-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.62), rgba(0,0,0,.18) 55%, rgba(0,0,0,.55));
}
.feature-inner{
  position: relative;
  padding: clamp(42px, 8vh, 84px) var(--pad);
}
.feature-box{ max-width:520px; color:#fff; }
.feature-kicker{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.9;
}
.feature-title{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
}
.feature-text{ margin:0 0 16px; opacity:.92; font-size:14px; }

/* Reviews */
.section--reviews{ background:#fff; }
.reviews-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.review{
  border-radius: var(--tile-radius);
  border: 1px solid var(--line);
  padding:18px;
  background:#fff;
}
.review-title{ margin:0 0 10px; font-size:16px; }
.review-text{ margin:0 0 10px; color:var(--muted); font-size:14px; }
.review-meta{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}
.stars{ display:inline-flex; gap:6px; }
.stars span{
  width:10px;height:10px;
  border-radius:999px;
  background: rgba(28,26,23,.78);
  opacity:.42;
}

/* Footer */
.footer{
  background:#3a3732;
  color: rgba(255,255,255,.86);
  padding:56px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr 1.1fr .8fr;
  gap:18px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.footer-title{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.92);
}
.footer-text{
  margin:0 0 16px;
  font-size:14px;
  color: rgba(255,255,255,.72);
}
.newsletter{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
  align-items:center;
}
.newsletter input{
  width:100%;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  color:#fff;
  outline:none;
}
.newsletter input::placeholder{ color: rgba(255,255,255,.55); }

.footer-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.footer-col--links a{
  display:block;
  padding:8px 0;
  color: rgba(255,255,255,.72);
  font-size:14px;
  border-bottom:1px dashed rgba(255,255,255,.14);
}
.footer-col--links a:hover{
  color:#fff;
  border-bottom-color: rgba(255,255,255,.28);
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding-top:18px;
  color: rgba(255,255,255,.62);
  font-size:13px;
}
.footer-mini{ letter-spacing:.08em; }

/* Floating WA */
.float-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  width:54px;height:54px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  color:#141210;
  border:1px solid rgba(0,0,0,.10);
  display:grid;
  place-items:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  z-index:60;
  font-weight:600;
  letter-spacing:.08em;
}
.float-wa:hover{ background:#fff; }

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .nav-burger{ display:inline-flex; }

  .nav-drawer{
    position:fixed;
    top:70px;
    right:var(--pad);
    left:var(--pad);
    background: rgba(18,16,14,.92);
    border:1px solid rgba(255,255,255,.14);
    border-radius: calc(var(--tile-radius) + 10px);
    padding:14px;
    display:none;
    gap:10px;
  }
  .nav-drawer a{
    padding:10px 10px;
    border-radius:10px;
    color: rgba(255,255,255,.9);
    letter-spacing:.06em;
    text-transform:uppercase;
    font-size:13px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
  }
  .nav-toggle:checked ~ .nav-drawer{ display:grid; }

  .offer-grid,
  .mosaic{
    grid-template-columns: 1fr;
  }
  .offer-grid > *,
  .mosaic > *{
    max-width: 560px;
    margin: 0 auto;
  }

  .why-grid, .reviews-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
}

@media (max-width: 420px){
  .brand-name{ font-size:16px; }
  .brand-sub{ font-size:11px; }
  .btn{ padding:11px 16px; }
}