/* Service pages (tarot, numerology, healing) */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.breadcrumb a {
  color: var(--terra-deep);
  font-weight: 600;
}

.page-hero--service .wrap {
  max-width: 720px;
}
.page-hero--service .hero-cta {
  margin-top: 1.6rem;
}

.section--sand { background: var(--cream-2); }
.section--plum {
  background: var(--plum-deep);
  color: var(--cream);
}
.section--plum .eyebrow { color: var(--gold); }
.section--plum .sec-head h2 { color: var(--cream); }
.section--plum .sec-head p { color: rgba(251, 245, 238, 0.78); }

.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc-split--reverse .svc-split__media { order: -1; }
.svc-split__media {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.svc-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-split__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--plum);
  margin-top: 0.5rem;
}
.svc-split__text p {
  color: var(--ink-soft);
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.svc-list--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.svc-list li {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}
.svc-list li strong { color: var(--ink); }

.section--plum .svc-list li { color: rgba(251, 245, 238, 0.78); }
.section--plum .svc-list li strong { color: var(--cream); }

.svc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.svc-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.svc-step .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}
.svc-step h3 {
  font-size: 1.2rem;
  color: var(--plum);
  margin: 12px 0 8px;
}
.svc-step p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.svc-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}
.svc-note a {
  color: var(--terra-deep);
  font-weight: 600;
  font-style: normal;
}

.svc-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px 16px;
  max-width: 720px;
  margin-inline: auto;
}
.svc-team-card {
  text-align: center;
}
.svc-team-card .photo {
  width: 88px;
  height: 88px;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, var(--terra), var(--terra-deep));
  box-shadow: 0 8px 22px -12px rgba(95, 42, 79, 0.45);
}
.svc-team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-team-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--plum);
}

.faq-details {
  max-width: 800px;
  margin: 0 auto;
}
.faq-details details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-details summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--plum);
  position: relative;
}
.faq-details summary::-webkit-details-marker { display: none; }
.faq-details summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  font-size: 1.5rem;
  color: var(--terra);
  transition: transform 0.3s;
}
.faq-details details[open] summary::after { transform: rotate(45deg); }
.faq-details details p {
  padding: 0 30px 22px 0;
  color: var(--ink-soft);
}
.faq-details a {
  color: var(--terra-deep);
  font-weight: 600;
}

.cta-band .hero-cta {
  justify-content: center;
}

@media (max-width: 920px) {
  .svc-split,
  .svc-split--reverse .svc-split__media {
    grid-template-columns: 1fr;
    order: unset;
  }
  .svc-split__media { order: -1; }
  .svc-list--2col,
  .svc-steps {
    grid-template-columns: 1fr;
  }
}
