л:root{
  --bg:#0c0c0e;
  --bg2:#070708;
  --txt:#f2f2f2;
  --muted:rgba(242,242,242,.72);
  --gold:#c9b37a;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Inter,Arial,sans-serif;
  color:var(--txt);
  background:
    radial-gradient(1000px 600px at 15% 15%, rgba(201,179,122,.08), transparent 60%),
    radial-gradient(1000px 600px at 85% 25%, rgba(201,179,122,.05), transparent 60%),
    linear-gradient(180deg,var(--bg),var(--bg2));
}

.page{min-height:100%; padding:40px 24px}
.blocks-root{max-width:1200px; margin:0 auto}

/* HERO */

.hero{
  position:relative;
  min-height:80vh;
  display:flex;
  align-items:center;
}

.hero__content{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  width:100%;
  align-items:center;
}

/* TEXT */

.hero__badge{
  display:inline-block;
  padding:8px 14px;
  border:1px solid rgba(201,179,122,.35);
  border-radius:999px;
  color:var(--gold);
  font-weight:600;
  font-size:13px;
  letter-spacing:.4px;
}

.hero__title{
  font-size:56px;
  line-height:1.05;
  margin:20px 0 8px;
  font-weight:700;
}

.hero__titleSub{
  display:block;
  margin-top:10px;
  font-size:18px;
  line-height:1.5;
  color:var(--muted);
  max-width:520px;
}

.hero__text{
  margin-top:20px;
  max-width:520px;
}

.hero__subtitle{
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
}

.hero__dots{
  display:flex;
  gap:10px;
  margin:18px 0;
}
.hero__dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gold);
  opacity:.6;
}

/* BUTTONS */

.hero__actions{
  margin-top:26px;
  display:flex;
  gap:16px;
}

.btn{
  padding:14px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
}

.btn-primary{
  background:var(--gold);
  color:#000;
}

.btn-ghost{
  border:1px solid rgba(255,255,255,.15);
  color:var(--txt);
}

/* PHOTO */

.hero__photoWrap{
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  overflow:hidden;
}

.hero__photo{
  max-height:90vh;
  width:auto;
  max-width:100%;
  object-fit:contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.6));
  /* soft fade into background */
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
}

/* MOBILE */

@media (max-width:900px){
  .hero__content{
    grid-template-columns:1fr;
    gap:32px;
  }
  .hero__title{font-size:40px}
  .hero__photo{
    max-height:60vh;
  }
}

