/* ============================================================
   Service Page — scoped under sp- prefix
   All classes prefixed to avoid Bootstrap / theme collisions
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  --sp-rose:       #c9856a;
  --sp-rose-light: #e8b4a0;
  --sp-rose-dark:  #a8624d;
  --sp-cream:      #faf6f1;
  --sp-warm-white: #fffdf9;
  --sp-sand:       #e8e0d4;
  --sp-charcoal:   #2c2420;
  --sp-text:       #4a3e38;
  --sp-text-light: #8a7b72;
  --sp-nav-height: 80px; /* adjust to match your navbar height */
}

/* ============================================================
   CONTAINER
   ============================================================ */

.sp-container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   HERO — desktop: sp-why-style section layout
           mobile:  full-screen immersive (unchanged)
   ============================================================ */

/* --- Desktop default (sp-why style) --- */

.sp-hero {
  position: relative;
  background: var(--sp-cream);
  padding: 80px 0;
  overflow: hidden;
}

/* bg + overlay hidden on desktop, shown only on mobile */
.sp-hero__bg,
.sp-hero__overlay {
  display: none;
}

.sp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sp-hero__content {
  position: relative;
  text-align: center;
  padding: 0;
  max-width: none;
  animation: sp-fadeUp 1s 0.3s both;
}

@keyframes sp-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sp-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--sp-rose);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sp-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 76px);
  font-weight: 300;
  color: var(--sp-charcoal);
  line-height: 1.06;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.sp-hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--sp-text-light);
  max-width: 480px;
  margin: 0 0 32px;
  line-height: 1.65;
}

.sp-hero__photo-col {
  position: relative;
}

.sp-hero__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* scroll hint hidden on desktop */
.sp-scroll-hint {
  display: none;
}

.sp-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.sp-scroll-hint__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: sp-scrollPulse 2s ease-in-out infinite;
}

@keyframes sp-scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@keyframes sp-heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

/* --- Mobile: restore full-screen immersive hero --- */

@media (max-width: 768px) {
  .sp-hero {
    height: calc(100svh - var(--sp-nav-height));
    min-height: 540px;
    max-height: 860px;
    background: none;
    padding: 0 0 10vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }

  .sp-hero__bg {
    display: block;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    animation: sp-heroZoom 12s ease-out forwards;
  }

  .sp-hero__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(44, 36, 32, 0.10) 0%,
      rgba(44, 36, 32, 0.18) 40%,
      rgba(44, 36, 32, 0.60) 75%,
      rgba(44, 36, 32, 0.76) 100%
    );
  }

  .sp-hero .sp-container {
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .sp-hero__inner {
    display: block;
  }

  .sp-hero__photo-col {
    display: none;
  }

  .sp-hero__content {
    text-align: center;
    padding: 0 24px;
    max-width: 720px;
    margin: 0 auto;
  }

  .sp-hero__eyebrow {
    color: var(--sp-rose-light);
  }

  .sp-hero__title {
    font-size: clamp(38px, 7vw, 76px);
    color: #fff;
  }

  .sp-hero__subtitle {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 32px;
  }

  .sp-scroll-hint {
    display: flex;
    position: absolute;
    bottom: 1rem;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    flex-direction: column;
    align-items: center;
    animation: sp-fadeUp 1s 1.2s both;
    z-index: 1;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.sp-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 15px 42px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s, color 0.3s, border-color 0.3s;
  line-height: 1;
}

.sp-btn--primary {
  background: var(--sp-rose);
  color: #fff !important;
}

.sp-btn--primary:hover {
  background: var(--sp-rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(168, 98, 77, 0.38);
}

.sp-btn--outline {
  background: transparent;
  color: var(--sp-rose) !important;
  border: 1.5px solid var(--sp-rose);
  padding: 13px 36px;
}

.sp-btn--outline:hover {
  background: var(--sp-rose);
  color: #fff !important;
  border-color: var(--sp-rose);
}

.sp-btn--white {
  background: #fff;
  color: var(--sp-rose-dark) !important;
}

.sp-btn--white:hover {
  background: var(--sp-cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   SHARED SECTION
   ============================================================ */

.sp-section {
  padding: 80px 0;
}

.sp-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sp-rose);
  margin-bottom: 10px;
}

.sp-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 300;
  color: var(--sp-charcoal);
  line-height: 1.14;
  margin-bottom: 16px;
}

.sp-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--sp-text-light);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.sp-why {
  background: var(--sp-warm-white);
}

.sp-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.sp-feature-card {
  background: var(--sp-cream);
  border: 1px solid var(--sp-sand);
  border-radius: 4px;
  padding: 22px 18px;
  transition: border-color 0.3s, transform 0.3s;
}

.sp-feature-card:hover {
  border-color: var(--sp-rose-light);
  transform: translateY(-2px);
}

.sp-feature-card__icon {
  font-size: 20px;
  margin-bottom: 10px;
}

.sp-feature-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--sp-charcoal);
  margin-bottom: 5px;
}

.sp-feature-card__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--sp-text-light);
  line-height: 1.62;
  font-weight: 300;
  margin: 0;
}

.sp-why__photo-col {
  position: relative;
}

.sp-why__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ============================================================
   GALLERY
   ============================================================ */

.sp-gallery {
  background: var(--sp-cream);
}

.sp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.sp-gallery__item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}

.sp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sp-gallery__item:hover img {
  transform: scale(1.07);
}

.sp-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 32, 0.28), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.sp-gallery__item:hover::after {
  opacity: 1;
}

/* ============================================================
   SERVICES / PRICING
   ============================================================ */

.sp-services {
  background: var(--sp-warm-white);
}

.sp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.sp-card {
  background: var(--sp-cream);
  border: 1px solid var(--sp-sand);
  border-radius: 4px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(181, 168, 152, 0.28);
}

.sp-card__badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sp-rose);
  background: rgba(201, 133, 106, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  width: fit-content;
}

.sp-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--sp-charcoal);
  margin-bottom: 10px;
}

.sp-card__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--sp-text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 22px;
}

.sp-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--sp-charcoal);
  margin-bottom: 20px;
  line-height: 1;
}

.sp-card__price span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--sp-text-light);
}

/* Auto-fit for non-3 counts */
@media (min-width: 901px) {
  .sp-cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.sp-process {
  background: var(--sp-charcoal);
  position: relative;
  overflow: hidden;
}

.sp-process::before,
.sp-process::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(201, 133, 106, 0.1);
}

.sp-process::before {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -100px;
}

.sp-process::after {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: -60px;
}

.sp-process .sp-label  { color: var(--sp-rose-light); }
.sp-process .sp-heading { color: #fff; }

.sp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
  position: relative;
}

/* Connector line between steps */
.sp-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(16.666% + 20px);
  right: calc(16.666% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--sp-rose), transparent 50%, var(--sp-rose));
  opacity: 0.25;
}

.sp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sp-step__circle {
  color: var(--sp-cream);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 133, 106, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  background: rgba(201, 133, 106, 0.07);
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}

.sp-step:hover .sp-step__circle {
  background: rgba(201, 133, 106, 0.2);
  border-color: var(--sp-rose);
}

.sp-step__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-step__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--sp-rose);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sp-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.sp-step__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--sp-warm-white);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */

.sp-faq {
  background: var(--sp-cream);
}

.sp-faq__list {
  margin-top: 36px;
  border-top: 1px solid var(--sp-sand);
}

.sp-faq__item {
  border-bottom: 1px solid var(--sp-sand);
}

.sp-faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.sp-faq__question-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--sp-charcoal);
}

.sp-faq__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid var(--sp-sand);
  display: flex;
  /*align-items: center;*/
  justify-content: center;
  font-size: 16px;
  color: var(--sp-rose);
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}

.sp-faq__item.open .sp-faq__icon {
  transform: rotate(45deg);
  border-radius: 2%;
  background: var(--sp-rose);
  color: #fff;
  border-color: var(--sp-rose);
}

.sp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.sp-faq__answer-inner {
  font-family: 'Montserrat', sans-serif;
  padding-bottom: 22px;
  font-size: 14px;
  font-weight: 300;
  color: var(--sp-text-light);
  line-height: 1.78;
  max-width: 720px;
}

/* ============================================================
   READY TO BEGIN / CTA
   ============================================================ */

.sp-cta {
  background: linear-gradient(135deg, var(--sp-rose-dark) 0%, var(--sp-rose) 55%, var(--sp-rose-light) 100%);
}

.sp-cta__inner {
  text-align: center;
  max-width: 640px;
}

.sp-cta__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}

.sp-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.sp-cta__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.68;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.sp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

.sp-reveal.sp-visible {
  opacity: 1;
  transform: translateY(0);
}

.sp-reveal--d1 { transition-delay: 0.10s; }
.sp-reveal--d2 { transition-delay: 0.20s; }
.sp-reveal--d3 { transition-delay: 0.30s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .sp-why__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sp-why__photo-col {
    /*order: -1;*/
  }

  .sp-why__photo {
    /*aspect-ratio: 16 / 9;*/
    /*max-height: 400px;*/
  }

  .sp-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-cards {
    grid-template-columns: 1fr;
  }

  .sp-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sp-steps::before {
    display: none;
  }

  .sp-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }

  .sp-step__body {
    align-items: flex-start;
  }

  .sp-step__circle {
    margin-bottom: 0;
    min-width: 52px;
  }
}

@media (max-width: 576px) {
  .sp-section {
    padding: 56px 0;
  }

  .sp-features {
    grid-template-columns: 1fr;
  }

  .sp-gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .sp-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sp-step__body {
    align-items: center;
  }
}


/* ============================================================
   Footer
   Matches reference design from example_service.html
   ============================================================ */

.sp-footer {
  background: var(--black-md-m);
  padding: 56px 24px 32px;
}

.sp-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.sp-footer__brand-name {
  /*font-family: 'Cormorant Garamond', serif;*/
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.sp-footer__brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 24px;
}

.sp-footer__socials {
  display: flex;
  gap: 12px;
}

.sp-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s, color 0.3s;
}

.sp-social-link:hover {
  border-color: #c9856a;
  color: #c9856a;
}

.sp-footer__col-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9856a;
  margin-bottom: 20px;
}

.sp-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-footer__links a,
.sp-footer__links li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}

.sp-footer__links a:hover {
  color: #e8b4a0;
}

.sp-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .sp-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}