/* ───────────────────────────────────────────
   Elemental Oracle Deck — Subpage styles
   Extends styles.css for /pricing, /readings,
   /about, /guidebook, /faq, /thank-you
   ─────────────────────────────────────────── */

/* ── Page hero (smaller than home hero) ── */
.page-hero {
  padding: 110px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 600px 280px at 50% 30%, rgba(201,168,76,0.10), transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin: 12px 0 16px;
}
.page-hero p.lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ── Pricing page comparison table ── */
.compare-wrap {
  max-width: 880px;
  margin: 40px auto 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-secondary);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 16px 18px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.compare-row.head {
  background: var(--bg-tertiary, rgba(255,255,255,0.03));
  font-family: var(--font-display);
}
.compare-row.head > div { font-size: 1.05rem; font-weight: 600; }
.compare-row > div:first-child { color: var(--text-secondary); }
.compare-row > div + div { border-left: 1px solid var(--border); justify-content: center; }
.tick { color: var(--sage); font-weight: 700; }
.dash { color: var(--text-muted); }
@media (max-width: 640px) {
  .compare-row { grid-template-columns: 1.2fr 0.9fr 0.9fr; }
  .compare-row > div { padding: 12px 10px; font-size: 0.85rem; }
}

/* ── Readings page ── */
.readings-hero-img {
  width: min(280px, 70vw);
  margin: 28px auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 0 2px var(--gold), 0 0 60px rgba(201,168,76,0.25);
  aspect-ratio: 2 / 3;
}
.readings-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 40px auto 0;
}
@media (min-width: 760px) { .tier-grid { grid-template-columns: 1fr 1fr 1fr; } }
.tier-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.06), var(--bg-secondary));
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.tier-card h3 { font-family: var(--font-display); margin: 0 0 6px; }
.tier-card .duration { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.tier-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  margin: 18px 0 4px;
}
.tier-card .price-sub { color: var(--text-muted); font-size: 0.85rem; }
.tier-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.tier-card ul li {
  padding-left: 26px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}
.tier-card ul li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
}
.tier-card .btn { width: 100%; justify-content: center; }

/* ── About page ── */
.story-block {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.story-block p { font-size: 1.05rem; line-height: 1.75; color: var(--text-secondary); }
.story-block p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--gold);
}
.story-figure {
  margin: 28px auto;
  max-width: 520px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
}
.story-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mentors-list {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
}
.mentors-list h3 { font-family: var(--font-display); }
.mentors-list ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  color: var(--text-secondary);
}
.mentors-list li { font-family: var(--font-display); font-style: italic; }

/* ── Guidebook (lead magnet) page ── */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .lead-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
}
.lead-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
  max-width: 420px;
  margin: 0 auto;
  /* No forced aspect-ratio: the image is a book cover and its native
     proportions vary. Letting height auto-flow shows the whole image
     without cropping any edges off. */
}
.lead-visual img { width: 100%; height: auto; display: block; }
.lead-visual::after {
  content: "FREE · 24 PAGES";
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.lead-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-top: 28px;
}
.lead-form label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lead-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: inherit;
}
.lead-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.lead-form .btn { width: 100%; justify-content: center; }
.lead-form .small {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 12px;
  text-align: center;
}

/* ── FAQ page ── */
.faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 28px 0 40px;
}
.faq-toc a {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: all 200ms;
}
.faq-toc a:hover { border-color: var(--gold); color: var(--gold); }
.faq-section { margin-bottom: 48px; }
.faq-section h3 {
  font-family: var(--font-display);
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

/* ── Thank-you page ── */
.ty-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15), 0 0 60px rgba(201,168,76,0.35);
}
.ty-icon svg { width: 44px; height: 44px; color: var(--bg-primary); }
.ty-next {
  max-width: 720px;
  margin: 40px auto 0;
  display: grid;
  gap: 14px;
}
.ty-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
}
.ty-step-num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.ty-step h4 { margin: 0 0 4px; font-family: var(--font-display); }
.ty-step p { margin: 0; color: var(--text-secondary); font-size: 0.95rem; }
