/* Beautiful Music Studios — Warm Studio design system */
:root {
  --bmp-walnut: #3d2b1f;
  --bmp-amber: #c8922a;
  --bmp-slate: #4a5d7a;
  --bmp-cream: #faf7f2;
  --bmp-charcoal: #2c2c2c;
  --global-palette1: var(--bmp-amber) !important;
  --global-palette2: #a67622 !important;
  --global-palette3: var(--bmp-walnut) !important;
  --global-palette4: var(--bmp-charcoal) !important;
  --global-palette8: var(--bmp-cream) !important;
  --global-palette9: #ffffff !important;
}

body.bmp-site {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--bmp-charcoal);
  background: var(--bmp-cream);
}

body.bmp-site h1,
body.bmp-site h2,
body.bmp-site h3,
body.bmp-site .entry-title {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--bmp-walnut);
}

/* Hero */
.bmp-hero {
  background: linear-gradient(135deg, var(--bmp-walnut) 0%, var(--bmp-slate) 100%);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 0 0 12px 12px;
  margin-bottom: 2rem;
}
.bmp-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.bmp-hero .bmp-tagline {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.bmp-hero .bmp-phone {
  display: inline-block;
  background: var(--bmp-amber);
  color: var(--bmp-walnut);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
}
.bmp-hero .bmp-phone:hover {
  background: #ddb04a;
  color: var(--bmp-walnut);
}

/* Instrument grid */
.bmp-instruments {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.bmp-instrument-card {
  background: #fff;
  border: 1px solid #e8e0d5;
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--bmp-walnut);
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.bmp-instrument-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(61, 43, 31, 0.12);
  border-color: var(--bmp-amber);
  color: var(--bmp-amber);
}
.bmp-instrument-card .bmp-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Sections */
.bmp-section {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.bmp-section h2 {
  border-bottom: 3px solid var(--bmp-amber);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}

/* Testimonials */
.bmp-testimonial {
  background: #fff;
  border-left: 4px solid var(--bmp-amber);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.bmp-testimonial cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--bmp-slate);
}

/* CTA strip */
.bmp-cta-strip {
  background: var(--bmp-slate);
  color: #fff;
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}
.bmp-cta-strip a {
  color: var(--bmp-amber);
  font-weight: 700;
}

/* Sticky mobile call bar */
.bmp-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bmp-amber);
  text-align: center;
  padding: 0.85rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.bmp-call-bar a {
  color: var(--bmp-walnut);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}
@media (max-width: 768px) {
  .bmp-call-bar { display: block; }
  body.bmp-site { padding-bottom: 3.5rem; }
}

/* Page content from archive */
.bmp-page-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Contact Form 7 */
.bmp-site .entry-content .wpcf7 {
  max-width: 520px;
  margin: 0.25rem 0 2.5rem;
}

.bmp-site .entry-content .wpcf7 form {
  background: #fff;
  border: 1px solid #ddd2c4;
  border-radius: 12px;
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 4px 18px rgba(61, 43, 31, 0.07);
}

.bmp-site .entry-content .wpcf7 form > p {
  margin: 0 0 1rem;
}

.bmp-site .entry-content .wpcf7 form > p:last-of-type {
  margin-bottom: 0;
}

.bmp-site .entry-content .wpcf7 form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--bmp-walnut);
}

.bmp-site .entry-content .wpcf7-form-control-wrap {
  display: block;
}

.bmp-site .entry-content .wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  border: 2px solid #b8aa96;
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--bmp-charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bmp-site .entry-content .wpcf7-form-control::placeholder {
  color: #8a7f72;
}

.bmp-site .entry-content .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--bmp-amber);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.22);
}

.bmp-site .entry-content .wpcf7 textarea.wpcf7-form-control {
  min-height: 140px;
  resize: vertical;
}

.bmp-site .entry-content .wpcf7 input[type="submit"] {
  display: inline-block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.8rem 1.75rem;
  border: none;
  border-radius: 8px;
  background: var(--bmp-amber);
  color: var(--bmp-walnut);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.bmp-site .entry-content .wpcf7 input[type="submit"]:hover,
.bmp-site .entry-content .wpcf7 input[type="submit"]:focus {
  background: #ddb04a;
  outline: none;
}

.bmp-site .entry-content .wpcf7 input[type="submit"]:active {
  transform: translateY(1px);
}

.bmp-site .entry-content .wpcf7-not-valid-tip {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #b82105;
}

.bmp-site .entry-content .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.bmp-site .entry-content .wpcf7 form.sent .wpcf7-response-output {
  border: 2px solid #2e7d4f;
  background: #edf7f0;
  color: #1f5c38;
}

.bmp-site .entry-content .wpcf7 form.failed .wpcf7-response-output,
.bmp-site .entry-content .wpcf7 form.invalid .wpcf7-response-output {
  border: 2px solid #b82105;
  background: #fdf0ed;
  color: #8f1a04;
}

.bmp-site .entry-content h2 + .wpcf7 {
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .bmp-site .entry-content .wpcf7 form {
    padding: 1.75rem 1.75rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .bmp-site .entry-content .wpcf7 {
    max-width: 720px;
  }

  .bmp-site .entry-content .wpcf7 form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
    row-gap: 1rem;
    align-items: start;
  }

  .bmp-site .entry-content .wpcf7 form > fieldset,
  .bmp-site .entry-content .wpcf7 form > p:has([data-name="your-message"]),
  .bmp-site .entry-content .wpcf7 form > p:has([type="submit"]),
  .bmp-site .entry-content .wpcf7 form > .wpcf7-response-output {
    grid-column: 1 / -1;
  }

  .bmp-site .entry-content .wpcf7 form > p {
    margin: 0;
  }

  .bmp-site .entry-content .wpcf7 input[type="submit"] {
    width: auto;
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  .bmp-site .entry-content .wpcf7 {
    max-width: none;
  }

  .bmp-site .entry-content .wpcf7 input[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .bmp-site .entry-content .wpcf7 form {
    padding: 1.25rem 1rem 1rem;
  }
}
