:root{
  --bg:#0b0b0b;
  --panel:#141414;
  --panel2:#1b1b1b;
  --gold:#d4af37;
  --gold2:#b98922;
  --muted:#c9c9c9;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(180deg, #111 0%, var(--bg) 55%, #111 100%);
  color:#fff;
}

.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:26px 16px 18px;
  gap:16px;
}

.top{
  width:min(1060px, 100%);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:10px 10px 0;
}

.logo{
  max-width:min(520px, 92vw);
  height:auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.65));
}

.card{
  width:min(1060px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
}

.copy{
  padding:28px 26px 26px;
  background: linear-gradient(180deg, rgba(20,20,20,.92), rgba(12,12,12,.92));
}

h1{
  margin:0 0 6px;
  font-size: clamp(28px, 3.0vw, 40px);
  letter-spacing:.3px;
  color:#fff;
}
h2{
  margin:18px 0 6px;
  font-size: clamp(20px, 2.2vw, 28px);
  color:#fff;
  font-weight:700;
}
.sub{
  margin:0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height:1.45;
}

.actions{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.16);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
  user-select:none;
}

.btn:active{transform: translateY(1px)}
.btn:hover{filter: brightness(1.05); box-shadow: 0 12px 30px rgba(0,0,0,.35)}

.wa{
  background: linear-gradient(180deg, #25D366, #16b857);
  color:#0b0b0b;
  border-color: rgba(0,0,0,.18);
}

.gallery{
  background: linear-gradient(180deg, rgba(27,27,27,.95), rgba(15,15,15,.95));
  padding:16px;
  display:grid;
  gap:14px;
  align-content:center;
}

.gallery img{
  width:100%;
  height:auto;
  border-radius: 14px;
  border:1px solid rgba(212,175,55,.20);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
}

.foot{
  width:min(1060px, 100%);
  color: rgba(255,255,255,.55);
  font-size: 12px;
  display:flex;
  justify-content:center;
  padding: 4px 0 0;
}

@media (max-width: 880px){
  .card{grid-template-columns: 1fr}
  .gallery{padding:14px}
}
