:root{
  --bg:#0B0B0B;
  --panel:#141414;
  --panel2:#1C1C1C;
  --text:#F4F1E8;
  --muted:#B8B8B8;
  --gold:#D4AF37;
  --gold2:#E6C15A;
  --line:rgba(212,175,55,.22);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit}

.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  background:
    radial-gradient(1000px 600px at 30% 20%, rgba(212,175,55,.12), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.92)),
    var(--hero) center/cover no-repeat;
  border-bottom:1px solid var(--line);
}

.hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.92));
}

.hero__inner{
  position:relative;
  width:min(1080px, 92vw);
  padding:48px 0 44px;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}

.brand__mark{
  width:56px; height:56px;
  border:2px solid var(--gold);
  clip-path:polygon(50% 6%, 94% 90%, 6% 90%);
  opacity:.95;
}

.brand__name{
  font-weight:800;
  letter-spacing:.22em;
  font-size:44px;
}

.brand__sub{
  color:var(--gold);
  letter-spacing:.14em;
  font-weight:700;
  font-size:14px;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border:2px solid var(--gold);
  background:var(--gold);
  color:#0B0B0B;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.1em;
  border-radius:10px;
  transition:transform .15s ease, filter .15s ease;
}

.btn:hover{transform:translateY(-1px); filter:brightness(1.05)}
.btn--ghost{
  background:transparent;
  color:var(--gold);
}

.hero__meta{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.meta__item{
  padding:8px 12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.35);
  border-radius:999px;
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}

.wrap{
  width:min(1080px, 92vw);
  margin:0 auto;
  padding:34px 0 56px;
}

.section{padding:22px 0}
.section h2{
  margin:0 0 14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:14px;
  color:var(--gold);
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.card{
  background:linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:16px;
}

.card h3{margin:0 0 8px; font-size:16px; letter-spacing:.06em}
.card p{margin:0; color:var(--muted); line-height:1.5}

.gallery{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:8px;
}

.gallery a{
  display:block;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  background:var(--panel);
}

.gallery img{
  width:100%;
  height:100%;
  display:block;
  aspect-ratio:1/1;
  object-fit:cover;
}

.note{color:var(--muted); margin:12px 0 0; line-height:1.5}

.contact{display:flex; gap:12px; flex-wrap:wrap}

.section--muted{
  margin-top:10px;
  padding:18px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.proof{
  width:100%;
  margin-top:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  color:var(--muted);
  display:flex;
  justify-content:center;
}

.footer > div{
  width:min(1080px, 92vw);
  display:flex;
  justify-content:space-between;
  gap:12px;
}

.footer__right{display:flex; gap:10px; align-items:center}
.footer a{color:var(--gold); text-decoration:none}
.footer a:hover{text-decoration:underline}

@media (max-width: 920px){
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2, 1fr)}
  .brand__name{font-size:40px}
}
