/* Feature pages — Meet Your Guide + Anatomy of Enlightenment
   Loaded after styles.css so layouts always win over cache/old rules. */

.page-feature .feature-hero {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5.5rem) 0 clamp(2.75rem, 5vw, 4rem);
  overflow: hidden;
}

.page-feature .feature-hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 88% 18%, rgba(111, 129, 104, 0.18), transparent 58%),
    radial-gradient(ellipse 55% 60% at 6% 88%, rgba(106, 125, 145, 0.14), transparent 52%);
}

.page-anatomy .feature-hero-atmosphere {
  background:
    radial-gradient(ellipse 70% 70% at 50% -8%, rgba(176, 138, 90, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 55% at 96% 72%, rgba(111, 129, 104, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 50% at 4% 65%, rgba(106, 125, 145, 0.1), transparent 48%);
}

/* Guide hero: text + portrait side by side */
.page-guide .feature-hero-grid {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.page-guide .feature-hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 3.85rem);
  max-width: 11ch;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.page-guide .feature-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
  font-style: italic;
  color: var(--sage-deep);
  line-height: 1.35;
  margin: 0 0 1.35rem;
  max-width: 28ch;
}

.page-guide .feature-lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 2rem;
}

.page-guide .guide-portrait {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 380px;
  justify-self: end;
}

.page-guide .guide-portrait-frame {
  position: absolute;
  inset: -0.75rem -0.75rem 0.9rem 0.9rem;
  border: 1px solid rgba(176, 138, 90, 0.45);
  z-index: 0;
  pointer-events: none;
}

.page-guide .guide-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: min(520px, 62vh);
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 55px rgba(42, 42, 42, 0.14);
}

/* Anatomy hero: centered composition */
.page-anatomy .feature-hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0.5rem 0 1rem;
}

.page-anatomy .feature-hero-center h1 {
  font-size: clamp(2.7rem, 5.8vw, 4.2rem);
  max-width: 16ch;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.page-anatomy .feature-lead-wide {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto 1.5rem;
}

.page-anatomy .feature-chip {
  display: inline-flex;
  margin: 0 0 1.75rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(176, 138, 90, 0.4);
  background: rgba(255, 252, 248, 0.85);
  color: var(--gold-deep);
  font-size: 0.88rem;
  letter-spacing: 0.045em;
}

.page-anatomy .feature-hero-cta {
  justify-content: center;
}

/* Shared section rhythm */
.page-feature .section,
.page-feature .feature-band {
  padding: clamp(3.25rem, 7vw, 5.25rem) 0;
}

.page-feature .feature-section-title {
  max-width: 18ch;
  margin-bottom: 2.25rem;
}

.page-feature .feature-muted {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* Experience pillars — always 3-up on desktop */
.page-guide .guide-pillars {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-guide .guide-pillars article {
  position: relative;
  padding: 2.1rem 1.5rem 1.75rem;
  min-height: 100%;
  background: linear-gradient(165deg, rgba(255, 252, 248, 0.98), rgba(238, 242, 239, 0.7));
  border: 1px solid rgba(42, 42, 42, 0.08);
  overflow: hidden;
}

.page-guide .guide-pillars article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

.page-guide .pillar-stat {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  line-height: 0.9;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}

.page-guide .pillar-unit {
  display: block;
  margin: 0.35rem 0 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.page-guide .guide-pillars h3 {
  font-size: 1.4rem;
  margin-bottom: 0.55rem;
}

.page-guide .guide-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Empowerment */
.page-guide .empower-band {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.25rem, 4.5vw, 3.25rem);
  background:
    linear-gradient(120deg, rgba(111, 129, 104, 0.12), rgba(176, 138, 90, 0.09) 55%, rgba(106, 125, 145, 0.12));
  border: 1px solid rgba(111, 129, 104, 0.2);
  text-align: center;
}

.page-guide .empower-band .eyebrow {
  margin-bottom: 0.85rem;
}

.page-guide .empower-quote {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--charcoal);
  margin: 0 auto 1.75rem;
  max-width: 26ch;
}

.page-guide .empower-band .cta-row {
  justify-content: center;
}

/* Book strip */
.page-feature .book-strip {
  display: block !important;
  padding: clamp(2rem, 4vw, 2.75rem);
  border: 1px solid rgba(42, 42, 42, 0.08);
  background:
    linear-gradient(90deg, rgba(238, 242, 239, 0.65), rgba(255, 252, 248, 0.35) 55%, rgba(232, 238, 243, 0.5));
}

.page-feature .book-strip-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 2rem 2.5rem;
  align-items: end;
}

.page-feature .book-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.55rem;
  color: var(--charcoal);
}

.page-feature .book-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.page-feature .book-strip .cta-row {
  margin-top: 1.15rem;
}

.page-feature .book-rating {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(42, 42, 42, 0.1);
  max-width: 52rem;
}

.page-feature .book-rating-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.page-feature .book-rating-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.page-feature .book-rating-quote {
  margin: 0;
  padding: 0;
  border: 0;
}

.page-feature .book-rating-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
}

/* Anatomy story + pull quote */
.page-anatomy .anatomy-story {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: stretch;
}

.page-anatomy .anatomy-story-copy .section-title {
  margin-bottom: 1.15rem;
}

.page-anatomy .anatomy-story-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
}

.page-anatomy .anatomy-pull {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: clamp(2rem, 3.5vw, 2.75rem);
  background: #2a2a2a;
  color: #fffcf8;
  position: relative;
  overflow: hidden;
}

.page-anatomy .anatomy-pull::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -50px;
  top: -60px;
  border-radius: 50%;
  background: rgba(176, 138, 90, 0.25);
}

.page-anatomy .anatomy-pull p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: 1.45;
  font-style: italic;
}

/* Sacred texts */
.page-anatomy .texts-head {
  margin-bottom: 1.5rem;
}

.page-anatomy .sacred-texts {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-anatomy .sacred-texts li {
  display: grid !important;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  gap: 1.1rem;
  align-items: baseline;
  padding: 1.5rem 0.35rem;
  border-bottom: 1px solid var(--line);
}

.page-anatomy .sacred-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

.page-anatomy .sacred-name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  color: var(--charcoal);
  line-height: 1.2;
}

/* Enrollment panel */
.page-anatomy .enroll-section {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.page-anatomy .enroll-panel {
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 2rem 2.5rem;
  align-items: center;
  padding: clamp(2.25rem, 4.5vw, 3.25rem);
  background: linear-gradient(145deg, #54634e, #4f6173);
  color: #fffcf8;
  box-shadow: 0 28px 65px rgba(42, 42, 42, 0.18);
  position: relative;
  overflow: hidden;
}

.page-anatomy .enroll-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -70px;
  bottom: -90px;
  background: rgba(176, 138, 90, 0.22);
  pointer-events: none;
}

.page-anatomy .enroll-panel .eyebrow {
  color: rgba(255, 252, 248, 0.72);
  margin-bottom: 0.75rem;
}

.page-anatomy .enroll-panel h2 {
  color: #fffcf8;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.page-anatomy .enroll-sessions {
  font-size: 1.08rem;
  opacity: 0.92;
  margin-bottom: 0.85rem;
}

.page-anatomy .enroll-panel .feature-muted {
  color: rgba(255, 252, 248, 0.72);
  font-size: 0.94rem;
}

.page-anatomy .enroll-action {
  position: relative;
  z-index: 1;
  text-align: right;
}

.page-anatomy .enroll-price {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 3.5rem);
  line-height: 1;
  margin: 0 0 1.35rem;
  color: #fffcf8;
  letter-spacing: -0.02em;
}

/* Optional sections created in Admin → Page sections */
.cms-section {
  position: relative;
}

.cms-section-inner {
  max-width: 900px;
}

.cms-section-inner > .section-title {
  max-width: 22ch;
}

.cms-text-section .cms-section-inner > p {
  max-width: 70ch;
  line-height: 1.75;
}

.cms-text-section .cta-row {
  margin-top: 1.5rem;
}

.cms-faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin-top: 1.5rem;
}

.cms-faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.78);
}

.cms-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--charcoal);
}

.cms-faq-item summary::-webkit-details-marker {
  display: none;
}

.cms-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold-deep);
  font-family: var(--font-body);
}

.cms-faq-item[open] summary::after {
  content: "−";
}

.cms-faq-item > div {
  padding: 0 1.35rem 1.15rem;
  color: var(--muted);
}

.cms-faq-item > div p {
  margin: 0;
}

.cms-product-section .section-intro {
  margin-bottom: 1.5rem;
}

.cms-product-grid {
  margin-top: 1.25rem;
}

.cms-book-section .book-name {
  margin-top: 0.5rem;
}

.cms-book-section .cms-book-rating {
  max-width: 720px;
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.cms-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.cms-book-rating p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.55;
  font-style: italic;
}

@media (max-width: 900px) {
  .page-guide .feature-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
  }

  .page-guide .feature-hero-copy h1,
  .page-guide .feature-kicker,
  .page-guide .feature-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 36ch;
  }

  .page-guide .feature-hero-copy .cta-row {
    justify-content: center;
  }

  .page-guide .guide-portrait {
    justify-self: center;
    order: -1;
    max-width: 300px;
  }

  .page-guide .guide-portrait img {
    height: min(420px, 55vh);
  }

  .page-guide .guide-pillars {
    grid-template-columns: 1fr !important;
  }

  .page-anatomy .anatomy-story,
  .page-anatomy .enroll-panel,
  .page-feature .book-strip-row {
    grid-template-columns: 1fr !important;
  }

  .page-anatomy .enroll-action,
  .page-feature .book-strip-actions {
    text-align: left;
    justify-content: flex-start;
  }

  .page-anatomy .sacred-texts li {
    grid-template-columns: 3.5rem 1fr !important;
  }
}

/* Guide FAQ + disclaimer */
.page-guide .guide-faq {
  display: grid;
  gap: 1.5rem;
  max-width: 820px;
}

.page-guide .guide-faq-card {
  padding: clamp(1.75rem, 3.5vw, 2.4rem);
  background: rgba(255, 252, 248, 0.85);
  border: 1px solid rgba(42, 42, 42, 0.08);
}

.page-guide .guide-faq-emphasis {
  border-color: rgba(176, 138, 90, 0.45);
  background:
    linear-gradient(145deg, rgba(176, 138, 90, 0.1), rgba(255, 252, 248, 0.95));
}

.page-guide .guide-faq-card h2 {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  margin-bottom: 0.85rem;
}

.page-guide .guide-faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.disclaimer-block h2,
.disclaimer-block h3 {
  margin-top: 1.25rem;
}

.disclaimer-block h2:first-child,
.disclaimer-block > h2.section-title {
  margin-top: 0;
}

.footer-disclaimer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(42, 42, 42, 0.1);
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 72ch;
}

.receipt-disclaimer {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: rgba(238, 242, 239, 0.55);
}
