/* Rose accent (makeup page); keeps --emerald-* names so copied utilities stay minimal */
:root {
  --emerald-50: #fff1f2;
  --emerald-100: #ffe4e6;
  --emerald-500: #f43f5e;
  --emerald-600: #e11d48;
  --emerald-700: #be123c;
}

.bs-page {
  min-height: 100vh;
}

.bs-main {
  padding-top: var(--header-h);
}

.bs-hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: #0f172a;
}

.bs-hero__bg {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  background-color: #1c1917;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bs-hero__bg.bs-hero__bg--custom {
  transform: none;
  background-size: cover;
}

.bs-hero__bg:not(.bs-hero__bg--custom) {
  background-image: url("https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1600");
}

.bs-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
}

.bs-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.bs-back {
  display: inline-block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bs-back:hover {
  color: var(--white);
}

.bs-hero__content {
  max-width: 42rem;
}

.bs-pill {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(244, 63, 94, 0.2);
  color: rgba(255, 241, 242, 0.98);
  backdrop-filter: blur(6px);
  font-size: 0.875rem;
  font-weight: 600;
}

.bs-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.bs-hero__lead {
  margin: 0 0 2rem;
  color: rgba(243, 244, 246, 0.92);
  font-size: 1.125rem;
}

.btn--bs {
  background: var(--emerald-500);
  border-color: var(--emerald-500);
  color: var(--white);
}

.btn--bs:hover {
  background: var(--emerald-600);
  border-color: var(--emerald-600);
}

.bs-badge {
  background: var(--emerald-100);
  color: var(--emerald-600);
}

.bs-section--soft {
  background: linear-gradient(to bottom, var(--white), rgba(255, 241, 242, 0.55));
}



.bs-footnote {
  margin: 1.75rem 0 0;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9rem;
}



/* CTA: layout + default buttons in service-cta.css */
.bs-cta {
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-600));
}


/* Mobile hardening: prevent overflow + improve tap targets */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .bs-hero {
    min-height: auto;
  }

  .bs-hero__inner {
    padding-block: 3.5rem;
  }

  .bs-hero__title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .bs-hero__lead {
    font-size: 1rem;
  }

  /* Ensure page-specific CTA buttons wrap nicely */
  /* Pricing switch: allow wrap instead of forcing overflow */


  /* FAQ: tighter padding */
}

