/* Royal purple + gold accent for jewellery setting */
:root {
  --jsa-purple-50: #faf5ff;
  --jsa-purple-100: #f3e8ff;
  --jsa-purple-600: #7c3aed;
  --jsa-purple-700: #6d28d9;
  --jsa-gold-500: #f59e0b;
  --jsa-gold-600: #d97706;
}

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

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

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

.jsa-hero__bg {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

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

.jsa-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.12));
}

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

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

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

.jsa-hero__content {
  max-width: 44rem;
}

.jsa-pill {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.2);
  color: rgba(243, 232, 255, 0.95);
  backdrop-filter: blur(6px);
  font-size: 0.875rem;
  font-weight: 600;
}

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

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

.btn--jsa {
  background: linear-gradient(135deg, var(--jsa-purple-600), var(--jsa-purple-700));
  border-color: rgba(124, 58, 237, 0.85);
  color: var(--white);
}

.btn--jsa:hover {
  background: linear-gradient(135deg, var(--jsa-purple-700), #5b21b6);
  border-color: rgba(124, 58, 237, 1);
}

.jsa-badge {
  background: var(--jsa-purple-100);
  color: var(--jsa-purple-700);
}

.jsa-section--soft {
  background: linear-gradient(to bottom, var(--white), rgba(250, 245, 255, 0.85));
}



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

/* FAQ chevron (list styles in service-faq.css) */
.jsa-faq-section .service-faq__item summary::after {
  color: var(--jsa-purple-700);
}


/* CTA: layout in service-cta.css */
.jsa-cta {
  background: linear-gradient(90deg, var(--jsa-purple-700), var(--jsa-gold-600));
}

.jsa-cta .service-cta__text {
  color: rgba(250, 245, 255, 0.95);
}

.jsa-cta .btn--cta {
  background: var(--white);
  color: var(--jsa-purple-700);
  border-color: var(--white);
}

.jsa-cta .btn--cta:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.jsa-cta .btn--cta-outline {
  background: rgba(109, 40, 217, 0.95);
  color: var(--white);
  border-color: rgba(109, 40, 217, 0.95);
}

.jsa-cta .btn--cta-outline:hover {
  background: rgba(109, 40, 217, 0.88);
  border-color: rgba(109, 40, 217, 0.88);
}


/* Look options — jsa (defaults in service-look-options.css) */
section[aria-labelledby="jsa-styles"] .service-look-options__card:hover {
  border-color: rgba(124, 58, 237, 0.25);
}
section[aria-labelledby="jsa-styles"] .service-look-options__icon {
  background: rgba(124, 58, 237, 0.12);
  color: var(--jsa-purple-700);
}


/* Our expertise — jsa */
section[aria-labelledby="jsa-expertise"] .service-our-expertise__icon {
  background: rgba(124, 58, 237, 0.12);
  color: var(--jsa-purple-700);
}


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

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

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

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

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




}

