/* ---------- Consultation page (mystical) ---------- */

/* Shared section header */
.cs-sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.4rem;
}
.cs-sec-kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cs-sec-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
}
.cs-sec-title em { font-style: italic; color: var(--gold); }
.cs-sec-lede {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Intro */
.cs-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 5.5rem;
  background:
    linear-gradient(90deg,
      rgba(245, 239, 230, 0.97) 0%,
      rgba(245, 239, 230, 0.85) 40%,
      rgba(245, 239, 230, 0.45) 70%,
      rgba(245, 239, 230, 0.15) 100%),
    url('../images/banner3.jpg') center / cover no-repeat;
}
.cs-hero::before {
  content: '';
  position: absolute;
  right: -6%;
  top: -30%;
  width: 46vmax;
  height: 46vmax;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  box-shadow: inset 0 0 0 40px rgba(168, 134, 61, 0.05);
  opacity: 0.6;
  pointer-events: none;
}
.cs-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.breadcrumb a { color: var(--ink-soft); transition: color 0.25s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb em { font-style: normal; color: var(--ink); }
.breadcrumb span { opacity: 0.5; }

.cs-hero__eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.cs-hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.cs-hero__title em { font-style: italic; color: var(--gold); }
.cs-hero__lede {
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 40rem;
  margin-bottom: 2.2rem;
}

/* Two readings — full-width split with hover image switch */
.split {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  background: #14100a;
  color: var(--cream);
}
.split__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s ease, transform 8s ease;
}
.split.show-a .split__layer--a,
.split.show-b .split__layer--b { opacity: 0.55; transform: scale(1); }
.split__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 9, 5, 0.55), rgba(12, 9, 5, 0.62));
}

.split__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
}
.split__half {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
  color: var(--cream);
  text-align: center;
  transition: opacity 0.5s ease, background 0.5s ease;
}
/* vertical divider line */
.split__half--b { border-left: 1px solid rgba(212, 185, 106, 0.4); }
/* dim the non-hovered side */
.split.show-a .split__half--b,
.split.show-b .split__half--a { opacity: 0.4; }

.split__content {
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.split__price {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: var(--gold);
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
  margin-bottom: 1.6rem;
}
.split__emblem {
  width: 108px;
  height: 108px;
  color: var(--gold-bright);
  margin-bottom: 1.4rem;
  transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1);
}
.split__half:hover .split__emblem { transform: rotate(72deg); }
.split__half--b:hover .split__emblem { transform: rotate(45deg); }
.split__kicker {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.7rem;
}
.split__title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
}
.split__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.82);
  margin-bottom: 1.8rem;
}
.split__cta {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.split__half:hover .split__cta { color: var(--gold-bright); letter-spacing: 0.26em; }

/* Benefits */
.cs-benefits { background: var(--cream); padding: 6rem 0; }

/* Elementor editor does not run the front-end reveal observer. Keep widgets visible while editing. */
.elementor-editor-active [data-reveal] {
  opacity: 1;
  transform: none;
}
.cs-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.cs-benefit {
  text-align: center;
  padding: 2.6rem 1.8rem;
  background: var(--cream-soft);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.cs-benefit:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px var(--shadow);
}
.cs-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--ink);
  margin-bottom: 1.4rem;
  transition: background 0.35s ease, color 0.35s ease, transform 0.5s ease;
}
.cs-benefit:hover .cs-benefit__icon {
  background: var(--ink);
  color: var(--gold-bright);
  transform: rotate(8deg);
}
.cs-benefit__icon svg { width: 40px; height: 40px; }
.cs-benefit h3 {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.cs-benefit p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* How it works — horizontal timeline */
.cs-steps {
  background: var(--cream-deep);
  color: var(--ink);
  padding: 6rem 0;
}
.cs-steps__title {
  text-align: center;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3.5rem;
}
.cs-steps__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cs-steps__grid--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .cs-steps__grid--four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cs-steps__grid--four { grid-template-columns: 1fr; } }
/* connecting line behind the number badges */
.cs-steps__grid::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 185, 106, 0.5), transparent);
}
.cs-step {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}
.cs-step__num {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.cs-step:hover .cs-step__num {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-4px);
}
.cs-step h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.cs-step p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 20rem;
  margin: 0 auto;
}

/* Atmosphere band */
.cs-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 7rem 0;
  text-align: center;
}
.cs-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 12, 8, 0.72), rgba(16, 12, 8, 0.6));
}
.cs-band__inner { position: relative; z-index: 2; max-width: 780px; }
.cs-band__mark {
  display: block;
  font-size: 1.6rem;
  color: var(--gold-bright);
  margin-bottom: 1.2rem;
}
.cs-band__quote {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
}
.cs-band__by {
  display: block;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* FAQ */
.cs-faq { padding: 6rem 0; max-width: 900px; }
.cs-faq__title {
  text-align: center;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.faq__item { border-bottom: 1px solid var(--gold-line); }
.faq__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.3rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
  text-align: left;
}
.faq__icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); opacity: 0; }
.faq__panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__item.is-open .faq__panel { max-height: 260px; }
.faq__panel p {
  padding: 0 0 1.3rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Responsive */
@media (max-width: 960px) {
  .cs-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .split { min-height: 0; }
  .split__grid { grid-template-columns: 1fr; min-height: 0; }
  .split__half { padding: 3.5rem 1.6rem; }
  .split__half--b { border-left: none; border-top: 1px solid rgba(212, 185, 106, 0.4); }
  .split.show-a .split__half--b,
  .split.show-b .split__half--a { opacity: 1; }
  .split__layer--a { opacity: 0.45 !important; }
  .cs-steps__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cs-steps__grid::before { display: none; }
}
@media (max-width: 560px) {
  .cs-benefits__grid { grid-template-columns: 1fr; }
}
