/* ============================================================
   Layouts — Ask a Psychic for Free
   ============================================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container--narrow {
  max-width: 768px;
}

/* ---- Hero Section ---- */
.section-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-navy-primary);
}
.section-hero .starfield {
  opacity: 0.6;
}
.hero-candle-wrap {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(52vw, 520px);
  aspect-ratio: 1;
  z-index: 2;
}
.hero-candle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.hero-candle-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-navy-primary), transparent);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-20) var(--space-4) var(--space-12);
}
.hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.hero-sparkles {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.hero-sparkles svg {
  color: var(--color-gold);
  opacity: 0.7;
}
.hero-subtitle {
  color: var(--color-gray-blue);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto var(--space-8);
}
.hero-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

/* ---- Two-Column Section ---- */
.section-split {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy-primary);
  padding: var(--space-20) 0;
}
.section-split .starfield {
  opacity: 0.3;
}
.section-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
  width: 100%;
}
.section-split__text .eyebrow {
  margin-bottom: var(--space-4);
}
.section-split__text h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.section-split__text > p {
  font-size: 18px;
  color: var(--color-gray-blue);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ---- FAQ Section ---- */
.section-faq {
  position: relative;
  overflow: hidden;
  background: var(--color-navy-primary);
  padding: var(--space-24) 0;
}
.section-faq .starfield {
  opacity: 0.2;
}
.section-faq__header {
  text-align: center;
  margin-bottom: var(--space-12);
  position: relative;
  z-index: var(--z-content);
}
.section-faq__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: var(--space-4);
}
.section-faq__header p {
  color: var(--color-gray-blue);
  font-size: 18px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  z-index: var(--z-content);
}

/* ---- CTA Section ---- */
.section-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-navy-primary);
  padding: var(--space-24) 0;
  text-align: center;
}
.section-cta .starfield {
  opacity: 0.3;
}
.section-cta__inner {
  position: relative;
  z-index: var(--z-content);
  max-width: 768px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.cta-image {
  width: 192px;
  height: 192px;
  margin: 0 auto var(--space-8);
  position: relative;
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.8;
}
.cta-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-navy-primary), transparent);
  border-radius: 50%;
}
.section-cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: var(--space-4);
}
.section-cta > .section-cta__inner > p {
  color: var(--color-gray-blue);
  font-size: 18px;
  margin-bottom: var(--space-8);
}
.cta-contact {
  margin-top: var(--space-8);
  color: var(--color-gray-blue);
  font-size: 14px;
}
.cta-contact a {
  color: var(--color-gold);
}
.cta-contact a:hover {
  text-decoration: underline;
}

/* ---- Responsive ---- */
@media (min-width: 768px) {
  .site-nav__links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .section-split__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
  .section-split__grid--reverse .section-split__image {
    order: -1;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-form {
    padding: var(--space-8);
  }
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .section-split {
    min-height: auto;
    padding: var(--space-16) 0;
  }
  .section-hero {
    min-height: auto;
    padding: var(--space-24) 0 var(--space-16);
  }
  .hero-candle-wrap {
    width: 80vw;
    top: 45%;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}
