/* Soft ivory + rose accent for veil setting */
:root {
  --vs-ivory-50: #fff7ed;
  --vs-rose-100: #ffe4e6;
  --vs-rose-500: #f43f5e;
  --vs-rose-600: #e11d48;
  --vs-rose-700: #be123c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn--vs {
  background: var(--vs-rose-500);
  border-color: var(--vs-rose-500);
  color: var(--white);
}

.btn--vs:hover {
  background: var(--vs-rose-600);
  border-color: var(--vs-rose-600);
}

.vs-badge {
  background: var(--vs-rose-100);
  color: var(--vs-rose-600);
}

.vs-section--soft {
  background: linear-gradient(to bottom, var(--white), rgba(255, 247, 237, 0.75));
}



.vs-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) */
.vs-faq-section .service-faq__item summary::after {
  color: var(--vs-rose-600);
}


/* CTA: layout in service-cta.css */
.vs-cta {
  background: linear-gradient(90deg, var(--vs-rose-500), var(--vs-rose-600));
}

.vs-cta .service-cta__text {
  color: rgba(255, 228, 230, 0.95);
}

.vs-cta .btn--cta {
  background: var(--white);
  color: var(--vs-rose-600);
  border-color: var(--white);
}

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

.vs-cta .btn--cta-outline {
  background: var(--vs-rose-700);
  color: var(--white);
  border-color: var(--vs-rose-700);
}

.vs-cta .btn--cta-outline:hover {
  background: rgba(190, 18, 60, 0.92);
  border-color: rgba(190, 18, 60, 0.92);
}


/* Look options — vs icon (hover matches shared rose) */
section[aria-labelledby="vs-styles"] .service-look-options__icon {
  background: rgba(244, 63, 94, 0.12);
  color: var(--vs-rose-600);
}


/* Our expertise — vs */
section[aria-labelledby="vs-expertise"] .service-our-expertise__icon {
  background: rgba(244, 63, 94, 0.12);
  color: var(--vs-rose-600);
}


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

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

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

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

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




}

