*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:Inter, sans-serif;
  color:#1e1e1e;
  background:#f6f5f2;
}
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:16px 8%;
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.brand{
  font-family:'Playfair Display', serif;
  font-size:28px;
  color:#1e1e1e;
  text-decoration:none;
}
.main-nav{
  display:flex;
  gap:24px;
}
.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  color:#1e1e1e;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.main-nav a{
  color:#1e1e1e;
  text-decoration:none;
  font-weight:500;
}
.main-nav a:hover{
  color:#c9a24d;
}
.header-cta{
  background:#c9a24d;
  color:white;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}
@media (max-width: 768px){
  .site-header{
    position:relative;
    flex-wrap:wrap;
    padding:14px 6%;
  }
  .menu-toggle{
    display:block;
    margin-left:auto;
  }
  .header-cta{
    display:none;
  }
  .main-nav{
    display:none;
    width:100%;
    flex-direction:column;
    gap:12px;
    padding-top:12px;
  }
  .main-nav.open{
    display:flex;
  }
}
.hero{
  height:75vh;
  background:url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}
.overlay{
  text-align:center;
  background:rgba(255,255,255,0.75);
  padding:40px 60px;
  border-radius:16px;
}
.overlay h1{
  font-family:'Playfair Display', serif;
  font-size:56px;
  margin-bottom:12px;
}
.overlay p{
  font-size:18px;
  margin-bottom:24px;
}
.cta{
  background:#c9a24d;
  color:white;
  padding:14px 28px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  padding:60px;
}
.card{
  position:relative;
  background:white;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.card::after{
  content:"Coming Soon";
  position:absolute;
  top:14px;
  right:14px;
  padding:6px 12px;
  border-radius:999px;
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:600;
  background:rgba(15,15,20,.88);
  color:#f6e27f;
  border:1px solid rgba(212,175,55,.45);
  box-shadow:0 6px 16px rgba(0,0,0,.22);
  opacity:0;
  transform:translateY(-6px) scale(.96);
  transition:opacity .25s ease, transform .25s ease;
}
.card:hover::after{
  opacity:1;
  transform:translateY(0) scale(1);
  animation:comingSoonPulse 1.2s ease-in-out infinite;
}
.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}
.card h3{
  font-weight:600;
  padding:16px 16px 4px;
}
.card p{
  padding:0 16px 20px;
  color:#555;
}
@keyframes comingSoonPulse{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(0) scale(1.06)}
}
.how{
  text-align:center;
  padding:60px 20px 80px;
}
.how h2{
  font-family:'Playfair Display', serif;
  font-size:36px;
  margin-bottom:32px;
}
.steps{
  display:flex;
  justify-content:center;
  gap:60px;
  font-size:18px;
}
.steps span{
  display:block;
  font-size:32px;
  margin-bottom:10px;
}
/* footer */
.footer{
  background:#0b0b10;
  padding:3rem 8%;
  color:#b4b4be;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:2rem;
  margin-bottom:2rem;
}

.footer h4{
  font-family:'Playfair Display',serif;
  margin-bottom:.5rem;
  color:#ffffff;
}

.footer p{
  margin:.3rem 0;
}

.footer .copyright{
  text-align:center;
  font-size:.9rem;
  opacity:.6;
}

.footer a{
  color:#f6e27f;
  text-decoration:none;
}

.footer a:hover{
  text-decoration:underline;
}

.investor-note{
  margin-top:1rem;
  color:#b4b4be;
  font-size:.95rem;
  opacity:.9;
}