:root{
  --bg:#07070a;
  --panel:#0f0f15;
  --panel2:#141422;
  --text:#f5f5f7;
  --muted:#b8b8c7;
  --gold:#d4af37;
  --gold2:#f2d27a;
  --line: rgba(212,175,55,.22);
  --shadow: 0 24px 70px rgba(0,0,0,.55);
  --radius: 22px;
}

/* RESET */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(212,175,55,.14), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(242,210,122,.10), transparent 60%),
    radial-gradient(900px 520px at 60% 95%, rgba(212,175,55,.08), transparent 60%),
    linear-gradient(180deg, #050506, #0b0b12 70%, #050506);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1200px;margin:0 auto;padding:0 18px}

/* TOP BAR */
.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(7,7,10,.60);
  border-bottom:1px solid rgba(212,175,55,.18);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{height:42px;border-radius:12px}
.brand__text strong{letter-spacing:.6px}
.brand__text span{font-size:12px;color:var(--muted)}

.nav{display:flex; gap:18px}
.nav a{font-size:13px;color:rgba(245,245,247,.86)}
.nav a:hover{color:var(--gold2)}

.btn{
  border-radius:999px;
  padding:10px 16px;
  font-weight:700;
  border:1px solid rgba(212,175,55,.34);
  transition:.2s;
}
.btn--primary{
  background: linear-gradient(180deg, rgba(212,175,55,.30), rgba(212,175,55,.12));
}
.btn--ghost{
  background: rgba(10,10,14,.45);
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(242,210,122,.55);
}

/* HERO */
.hero{padding:60px 0}
.hero__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
}
@media(max-width:900px){
  .hero__grid{grid-template-columns:1fr}
}

.pill{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.25);
  background: rgba(212,175,55,.10);
  color:var(--gold2);
  font-size:12px;
  font-weight:700;
}

.hero h1{
  font-size:46px;
  line-height:1.1;
  margin:16px 0;
}
.lead{
  color:rgba(245,245,247,.82);
  line-height:1.7;
  max-width:60ch;
}

/* ARTIST GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:20px;
}
.artist{
  grid-column:span 4;
  background:linear-gradient(180deg, rgba(20,20,34,.62), rgba(10,10,14,.52));
  border:1px solid rgba(212,175,55,.18);
  border-radius:var(--radius);
  overflow:hidden;
  transition:.2s;
}
.artist:hover{
  transform:translateY(-4px);
  border-color:rgba(242,210,122,.55);
}
@media(max-width:900px){.artist{grid-column:span 6}}
@media(max-width:600px){.artist{grid-column:span 12}}

.artist__img img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.artist__b{padding:16px}
.artist__b b{font-size:15px}

/* TAG */
.tag{
  font-size:11px;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.25);
  background:rgba(212,175,55,.10);
}

/* SERVICES */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media(max-width:900px){.cards{grid-template-columns:1fr}}
.card{
  padding:20px;
  border-radius:var(--radius);
  border:1px solid rgba(212,175,55,.18);
  background:linear-gradient(180deg, rgba(20,20,34,.62), rgba(10,10,14,.52));
}

/* CONTACT */
.contact{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
}
@media(max-width:900px){.contact{grid-template-columns:1fr}}
.row{
  display:flex;
  justify-content:space-between;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.14);
  background:rgba(0,0,0,.25);
}

/* FOOTER */
.footer{
  margin-top:40px;
  padding:20px 0;
  border-top:1px solid rgba(212,175,55,.14);
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:var(--muted);
}