*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  height:100%;
  font-family:Arial, Helvetica, sans-serif;
  background:#000;
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  overflow:hidden;
  background:#000;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,.25) 35%,
      rgba(0,0,0,.55) 100%
    ),
    url('https://cdn.shopify.com/s/files/1/0575/4260/6894/files/IMG_8796.jpg?v=1778861255')
    center center / contain no-repeat;

  background-color:#000;
}

.logo-wrap{
  position:relative;
  z-index:2;
  width:100%;
  display:flex;
  justify-content:center;
  padding-top:42px;
}

.logo{
  width:min(600px,82vw);
  filter:drop-shadow(0 4px 18px rgba(0,0,0,.55));
}

.bottom-info{
  position:absolute;
  bottom:42px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  text-align:center;
  color:#f3efe6;
  width:90%;
  max-width:720px;
}

.bottom-info p{
  font-size:1rem;
  line-height:1.7;
  letter-spacing:.02em;
  text-shadow:0 2px 10px rgba(0,0,0,.65);
}

.bottom-info a{
  display:inline-block;
  margin-top:18px;
  padding:14px 26px;
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  text-decoration:none;
  font-size:.9rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  backdrop-filter:blur(4px);
  background:rgba(0,0,0,.18);
  transition:.25s ease;
}

.bottom-info a:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.7);
}

@media (max-width:768px){

  .hero::before{
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,.18) 0%,
        rgba(0,0,0,.25) 35%,
        rgba(0,0,0,.55) 100%
      ),
      url('https://cdn.shopify.com/s/files/1/0575/4260/6894/files/IMG_8796.jpg?v=1778861255')
      center center / cover no-repeat;
  }

  .logo-wrap{
    padding-top:24px;
  }

  .logo{
    width:88vw;
  }

  .bottom-info{
    bottom:28px;
  }

  .bottom-info p{
    font-size:.92rem;
    line-height:1.6;
  }

}
