*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#070707;
  overflow-x:hidden;
}

/* HERO */

.vr-hero{
  position:relative;
  width:100%;
  min-height:100vh;
  overflow:hidden;
  background:#070707;
  display:flex;
  align-items:center;
  padding:130px 7% 55px;
}

.vr-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

.vr-dark{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.96) 0%,
    rgba(0,0,0,.84) 34%,
    rgba(0,0,0,.50) 68%,
    rgba(0,0,0,.22) 100%
  );
  z-index:2;
}

.vr-content{
  position:relative;
  z-index:10;
  width:52%;
  max-width:720px;
  color:#fff;
}

.vr-content span{
  display:block;
  color:#c6924a;
  font-weight:700;
  letter-spacing:2px;
  font-size:16px;
}

.vr-content h1{
  margin-top:22px;
  font-size:clamp(58px, 5vw, 78px);
  line-height:1.08;
  font-weight:800;
}

.vr-content h1::after{
  content:"";
  display:block;
  width:95px;
  height:4px;
  background:#c6924a;
  margin-top:24px;
}

.vr-content p{
  margin-top:26px;
  max-width:620px;
  font-size:18px;
  line-height:1.8;
  color:#eee;
}

.vr-buttons{
  margin-top:34px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.vr-buttons a{
  text-decoration:none;
  color:#fff;
  padding:18px 30px;
  border-radius:8px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:12px;
  transition:.3s ease;
}

.vr-buttons a:hover{
  transform:translateY(-3px);
}

.btn-main{
  background:#b88646;
  border:1px solid #d6ad75;
}

.btn-outline{
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.45);
}

/* INFO BOX */

.vr-info-box{
  margin-top:32px;
  max-width:660px;
  padding:20px 24px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
  border-radius:14px;
  display:grid;
  grid-template-columns:70px 1fr 180px;
  gap:22px;
  align-items:center;
}

.vr-icon{
  width:58px;
  height:58px;
  border-radius:14px;
  border:1px solid #b88646;
  color:#b88646;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.vr-info-box h4{
  color:#c6924a;
  margin-bottom:8px;
}

.vr-info-box p{
  margin:0;
  font-size:15px;
  line-height:1.5;
}

.vr-meta{
  border-left:1px solid rgba(255,255,255,.25);
  padding-left:24px;
}

.vr-meta span{
  display:block;
  color:#ddd;
  font-size:14px;
  margin-bottom:5px;
  letter-spacing:0;
}

.vr-meta strong{
  font-size:22px;
}

/* IMAGES */

.vr-visual{
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
}

.vr-girl{
  position:absolute;
  right:0;
  bottom:-20px;
  width:43%;
  max-width:760px;
  z-index:8;
}

.floor-plan{
  position:absolute;
  right:37%;
  bottom:390px;
  width:270px;
  z-index:7;
  animation:floatUpDown 4s ease-in-out infinite;
}

.model-panel{
  position:absolute;
  right:16%;
  bottom:360px;
  width:370px;
  z-index:7;
  animation:floatUpDown 5s ease-in-out infinite;
}

.house-model{
  position:absolute;
  right:24%;
  bottom:2%;
  width:540px;
  z-index:6;
}

.glow{
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(80,180,255,.22);
  filter:blur(60px);
  z-index:4;
}

.glow-one{
  right:32%;
  bottom:200px;
}

.glow-two{
  right:25%;
  bottom:15%;
}

/* FLOAT MOVEMENT */

@keyframes floatUpDown{
  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-16px);
  }
}

/* 1201px - 1600px */

@media(max-width:1600px){

  .vr-hero{
    padding:30px 6% 50px;
  }

  .vr-content{
    width:54%;
  }

  .vr-content h1{
    font-size:60px;
  }

  .vr-content p{
    font-size:17px;
    max-width:590px;
  }

  .vr-girl{
    width:44%;
    right:-20px;
    bottom:0;
  }

  .house-model{
    width:470px;
    right:18%;
    bottom:45px;
  }

  .model-panel{
    width:310px;
    right:15%;
    bottom:320px;
  }

  .floor-plan{
    width:215px;
    right:36%;
    bottom:350px;
  }

  .glow-one{
    right:30%;
    bottom:180px;
  }

  .glow-two{
    right:22%;
    bottom:20px;
  }
}

/* 993px - 1200px */

@media (max-width:1200px){

  .vr-hero{
    min-height:720px;
    height:720px;
    padding:70px 5% 25px;
    align-items:center;
  }

  .vr-content{
    width:58%;
  }

  .vr-content span{
    font-size:14px;
  }

  .vr-content h1{
    font-size:48px;
    line-height:1.08;
    margin-top:14px;
  }

  .vr-content h1::after{
    margin-top:18px;
  }

  .vr-content p{
    font-size:15px;
    line-height:1.6;
    max-width:520px;
    margin-top:20px;
  }

  .vr-buttons{
    margin-top:26px;
    gap:14px;
  }

  .vr-buttons a{
    padding:14px 24px;
    font-size:14px;
  }

  .vr-info-box{
    max-width:490px;
    margin-top:22px;
    padding:12px 15px;
    grid-template-columns:42px 1fr 95px;
    gap:11px;
  }

  .vr-icon{
    width:38px;
    height:38px;
    font-size:17px;
  }

  .vr-info-box h4{
    font-size:13px;
    margin-bottom:2px;
  }

  .vr-info-box p{
    font-size:11.5px;
    line-height:1.3;
  }

  .vr-meta{
    padding-left:10px;
  }

  .vr-meta span{
    font-size:9px;
  }

  .vr-meta strong{
    font-size:14px;
  }

  .vr-girl{
    width:45%;
    right:-20px;
    bottom:0;
  }

  .house-model{
    width:350px;
    right:18%;
    bottom:35px;
  }

  .model-panel{
    width:220px;
    right:13%;
    bottom:260px;
  }

  .floor-plan{
    width:150px;
    right:34%;
    bottom:285px;
  }
}

/* 769px - 992px */

@media(max-width:992px){

  .vr-hero{
    padding:125px 38px 45px;
    min-height:auto;
  }

  .vr-content{
    width:78%;
  }

  .vr-content span{
    font-size:14px;
  }

  .vr-content h1{
    font-size:48px;
  }

  .vr-content p{
    font-size:15.5px;
    max-width:540px;
  }

  .vr-info-box{
    max-width:540px;
    padding:16px 18px;
    grid-template-columns:52px 1fr;
    gap:16px;
  }

  .vr-icon{
    width:48px;
    height:48px;
    font-size:22px;
  }

  .vr-info-box h4{
    font-size:14px;
  }

  .vr-info-box p{
    font-size:13px;
  }

  .vr-meta{
    grid-column:1 / -1;
    border-left:none;
    border-top:1px solid rgba(255,255,255,.18);
    padding-left:0;
    padding-top:12px;
  }

  .vr-girl{
    width:57%;
    right:-100px;
    bottom:-10px;
    opacity:.45;
  }

  .house-model{
    width:300px;
    right:4%;
    bottom:70px;
    opacity:.48;
  }

  .model-panel{
    width:200px;
    right:4%;
    bottom:285px;
    opacity:.5;
  }

  .floor-plan{
    width:135px;
    right:25%;
    bottom:310px;
    opacity:.5;
  }
}

/* 577px - 768px */

@media(max-width:768px){

  .vr-hero{
    min-height:auto;
    height:auto;
    padding:110px 26px 95px;
    align-items:flex-start;
  }

  .vr-dark{
    background:linear-gradient(
      180deg,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.84) 50%,
      rgba(0,0,0,.58) 100%
    );
  }

  .vr-content{
    width:100%;
    max-width:100%;
  }

  .vr-content span{
    display:none;
  }

  .vr-content h1{
    margin-top:0;
    font-size:42px;
  }

  .vr-content p{
    font-size:14.5px;
    line-height:1.65;
    max-width:520px;
  }

  .vr-buttons{
    gap:14px;
  }

  .vr-buttons a{
    padding:15px 22px;
    font-size:13.5px;
  }

  .vr-info-box{
    margin-top:24px;
    max-width:470px;
    padding:13px 15px;
    grid-template-columns:42px 1fr;
    gap:12px;
  }

  .vr-icon{
    width:40px;
    height:40px;
    font-size:18px;
    border-radius:10px;
  }

  .vr-info-box h4{
    font-size:12px;
    margin-bottom:3px;
  }

  .vr-info-box p{
    font-size:12px;
    line-height:1.35;
  }

  .vr-meta{
    display:none;
  }

  .vr-girl{
    width:72%;
    right:-140px;
    bottom:-5px;
    opacity:.30;
  }

  .house-model{
    width:230px;
    right:-10px;
    bottom:45px;
    opacity:.25;
  }

  .model-panel{
    width:145px;
    right:10px;
    bottom:220px;
    opacity:.28;
  }

  .floor-plan{
    width:100px;
    right:24%;
    bottom:240px;
    opacity:.28;
  }
}

/* 361px - 576px */

@media(max-width:576px){

  .vr-hero{
    min-height:auto;
    height:auto;
    padding:105px 20px 90px;
  }

  .vr-content h1{
    font-size:36px;
    line-height:1.15;
  }

  .vr-content h1::after{
    width:70px;
    height:3px;
    margin-top:18px;
  }

  .vr-content p{
    margin-top:20px;
    font-size:14px;
    line-height:1.6;
  }

  .vr-buttons{
    margin-top:24px;
    flex-direction:column;
    gap:12px;
  }

  .vr-buttons a{
    width:100%;
    justify-content:center;
    padding:14px 16px;
    font-size:13px;
  }

  .vr-info-box{
    margin-top:20px;
    padding:11px 13px;
    display:flex;
    align-items:center;
    gap:10px;
    max-width:100%;
  }

  .vr-icon{
    width:38px;
    height:38px;
    min-width:38px;
    font-size:17px;
    border-radius:9px;
  }

  .vr-info-box h4{
    font-size:11.5px;
    margin-bottom:2px;
  }

  .vr-info-box p{
    font-size:11.5px;
    line-height:1.3;
  }

  .vr-girl{
    width:88%;
    right:-175px;
    bottom:-10px;
    opacity:.24;
  }

  .house-model{
    width:190px;
    right:-25px;
    bottom:35px;
    opacity:.22;
  }

  .model-panel{
    width:120px;
    right:-3px;
    bottom:180px;
    opacity:.25;
  }

  .floor-plan{
    width:85px;
    right:22%;
    bottom:200px;
    opacity:.25;
  }

  .glow{
    width:160px;
    height:160px;
  }
}

/* 360px BELOW */

@media(max-width:360px){

  .vr-hero{
    padding:95px 16px 75px;
  }

  .vr-content h1{
    font-size:31px;
  }

  .vr-content p{
    font-size:13px;
  }

  .vr-buttons a{
    font-size:12px;
    padding:13px 10px;
  }

  .vr-info-box{
    padding:10px 12px;
  }

  .vr-info-box p{
    display:none;
  }

  .vr-girl{
    width:95%;
    right:-190px;
    bottom:-15px;
  }

  .house-model{
    width:165px;
    right:-30px;
    bottom:25px;
  }

  .model-panel{
    width:105px;
    right:-5px;
    bottom:145px;
  }

  .floor-plan{
    width:72px;
    right:22%;
    bottom:160px;
  }
}


.layer{
  --scrollY:0px;
  --mouseX:0px;
  --mouseY:0px;
  transform:translate3d(var(--mouseX), calc(var(--mouseY) + var(--scrollY)), 0);
  will-change:transform;
}

.floating{
  animation:floatUpDown 4s ease-in-out infinite;
}

.floating-delay{
  animation:floatUpDown 5s ease-in-out infinite;
}

@keyframes floatUpDown{
  0%,100%{
    margin-bottom:0;
  }

  50%{
    margin-bottom:16px;
  }
}