:root {
  --bg: #0c0c0f;
  --bg-alt: #141419;
  --card: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.1);
  --text: #f5f5f7;
  --muted: #b6b6c3;
  --gold: #b48b2e;
  --gold-soft: rgba(180, 139, 46, 0.18);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(180,139,46,0.12), transparent 24%),
    linear-gradient(180deg, #0c0c0f 0%, #0e0f14 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(12,12,15,0.72);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand strong { display: block; font-size: 1rem; }
.brand small { color: var(--muted); }

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(180,139,46,0.22);
  background: #fff;
}
.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
}
.nav a:hover { color: var(--text); }

.hero {
  padding: 78px 0 34px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 700;
}
.hero h1, .section-head h2, .cta-inner h2 {
  margin: 12px 0;
  line-height: 1.05;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); max-width: 14ch; }
.lead, .section-head p, .contact-card p, .service-card p { color: var(--muted); }
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 22px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #d0ac55, var(--gold));
  color: #111;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.hero-card {
  position: relative;
  min-height: 480px;
}
.mockup-glow {
  position: absolute;
  inset: 9% 10% auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(180,139,46,0.25);
  filter: blur(60px);
}
.mockup-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mini-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .8rem;
  color: var(--muted);
}
.mockup-list {
  display: grid;
  gap: 14px;
}
.mini-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}
.mini-card span { color: var(--muted); font-size: .9rem; }

.section {
  padding: 74px 0;
}
.section-alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.artist-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.artist-visual {
  aspect-ratio: 16 / 11;
  position: relative;
  background: linear-gradient(135deg, #1f1f27 0%, #2d2110 100%);
  display: flex;
  align-items: end;
  padding: 22px;
}
.artist-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.55) 100%);
}
.artist-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.3);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .84rem;
}
.artist-body {
  padding: 22px;
}
.artist-body h3 { margin: 0 0 8px; }
.artist-meta {
  color: var(--gold);
  font-size: .93rem;
  margin-bottom: 12px;
}
.artist-body p {
  margin: 0 0 18px;
  color: var(--muted);
}
.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.artist-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--text);
  font-size: .9rem;
}
.artist-links a:hover {
  border-color: rgba(180,139,46,0.45);
  background: var(--gold-soft);
}


.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .booking-grid,
  .service-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .nav { display: none; }
  .hero { padding-top: 52px; }
  .hero h1 { max-width: 100%; }
  .footer-wrap,
  .cta-inner { flex-direction: column; align-items: start; }
}

.artist-visual.has-image {
  background-size: cover;
  background-position: center;
}
.artist-visual.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.62) 100%);
}
.artist-visual.has-image .artist-tag {
  backdrop-filter: blur(6px);
}
