@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --studio-dark: #1d1a17;
  --studio-warm: #8d6e53;
  --studio-cream: #f7f2eb;
  --studio-gold: #c8a46a;
  --studio-muted: #6c757d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--studio-cream);
  color: #222;
}

.navbar {
  background: rgba(20, 18, 16, 0.9) !important;
  backdrop-filter: blur(8px);
}

.navbar-brand,
.nav-link {
  letter-spacing: 0.04em;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(18, 16, 14, 0.55), rgba(18, 16, 14, 0.65)),
    url('images/studio/Studio-inside-2.jpg') center center / cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
}

.hero .lead {
  font-size: 1.25rem;
  max-width: 720px;
}

.hero-card {
  max-width: 46rem;
  background: linear-gradient(160deg, rgba(24, 20, 18, 0.92), rgba(14, 11, 10, 0.88));
  backdrop-filter: blur(4px);
}

.hero-card .badge-soft {
  background: rgba(200, 164, 106, 0.18);
  color: #f4dfbd;
}

.section-pad {
  padding: 5rem 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.soft-card {
  background: linear-gradient(160deg, #201c19, #151210);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  box-shadow: 0 0.9rem 2.4rem rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.92);
}

.soft-card .border {
  border-color: rgba(255,255,255,0.14) !important;
  background: rgba(255,255,255,0.04);
}

.soft-card code {
  color: #f3d4a1;
}

.soft-card .small-note {
  color: rgba(255,255,255,0.72);
}

.soft-card .form-label {
  color: rgba(255,255,255,0.88);
}

.soft-card .form-control {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

.soft-card .form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.soft-card .form-control:focus {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200, 164, 106, 0.75);
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(200, 164, 106, 0.18);
}

.badge-soft {
  background: rgba(200, 164, 106, 0.15);
  color: #5f4727;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.quote-band {
  background: var(--studio-dark);
  color: white;
}

.btn-gold {
  background: var(--studio-gold);
  border-color: var(--studio-gold);
  color: #1f1a14;
}

.btn-gold:hover,
.btn-gold:focus {
  background: #b78e4e;
  border-color: #b78e4e;
  color: #1f1a14;
}

.price-box {
  background: linear-gradient(135deg, #201a15, #3b2e24);
  color: white;
  border-radius: 1.25rem;
}

.placeholder-media {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius: 1rem;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.78);
  padding: 1.5rem;
  border: 1px dashed rgba(255,255,255,0.16);
}

.audio-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
}

.audio-embed {
  width: 100%;
  display: block;
}

.contact-card a,
footer a {
  color: inherit;
}

footer {
  background: #171412;
  color: rgba(255,255,255,0.8);
}

.small-note {
  color: var(--studio-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero .lead {
    font-size: 1.1rem;
  }
}
