/* ============================================================
   Guided Taste — shared styles for the self-paced video product
   pages (Life Navigation / Spiritual Inquiry / Career Crossroads,
   the sales page and the basic/feedback delivery variants).
   Nav styles come from /css/site-nav.css (linked separately).
   ============================================================ */

/* ── Design tokens ── */
:root {
  --bg:           #F7F4EF;
  --surface:      #FFFFFF;
  --navy:         #1C2B3A;
  --navy-mid:     #2C3E50;
  --navy-deep:    #0F1E2D;
  --gold:         #B8965A;
  --gold-light:   #F0E4CA;
  --gold-mid:     #D4B278;
  --sage:         #4A7A6D;
  --sage-light:   #D8EDEA;
  --rust:         #A85A3A;
  --plum:         #4A3A5A;
  --purple:       #5B2D8E;
  --muted:        #7A8E9E;
  --border:       #DDD5C8;
  --text:         #2C3E50;

  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 2px 16px rgba(28,43,58,0.09);
  --shadow-lg:    0 8px 40px rgba(28,43,58,0.14);

  --max-w:        1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.03em; padding: 14px 28px;
  border-radius: var(--radius-sm); border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-mid); transform: translateY(-1px); }

.btn-sage {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sage); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.03em; padding: 14px 28px;
  border-radius: var(--radius-sm); border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-sage:hover { background: #3d6b5f; transform: translateY(-1px); }

/* ── SHARED TYPOGRAPHY ── */
.section-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.875rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 1rem;
}
.section-lead { font-size: 1rem; color: var(--muted); line-height: 1.75; }

.prose p { font-size: 1rem; line-height: 1.85; color: var(--text); margin-bottom: 1.375rem; }
.prose p:last-child { margin-bottom: 0; }

.eyebrow-link { border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.eyebrow-link:hover { border-bottom-color: var(--gold); }

/* ── HERO ── */
.page-hero {
  background: var(--navy); padding: 8rem 1.5rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 65% at 75% 30%, rgba(74,122,109,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 20% 80%, rgba(74,122,109,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2; color: #fff; margin-bottom: 1.25rem;
}
.hero-tagline {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--gold-mid); line-height: 1.65; margin-bottom: 2rem;
}
.hero-intro {
  font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.85;
  max-width: 600px; margin: 0 auto 2.25rem;
}
.hero-meta { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(184,150,90,0.3);
  border-radius: 999px; padding: 0.45rem 1.1rem;
  font-size: 0.825rem; font-weight: 500; color: rgba(255,255,255,0.75);
}
/* Pricing highlight pill — used only on the sales pages (/guided-taste/); the
   delivery pages (basic/feedback) use the plain .hero-pill for both pills. */
.hero-pill.price {
  background: rgba(74,122,109,0.25); border-color: var(--sage);
  color: #fff; font-weight: 700; font-size: 1rem;
}
.hero-photo {
  width: 100%; max-width: 720px; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius); border: 2px solid var(--gold);
  margin: 1.75rem auto 0; display: block;
}

/* ── SECTION: VIDEOS ── */
.section-videos { background: var(--bg); padding: 5.5rem 1.5rem; }
.videos-inner { max-width: 860px; margin: 0 auto; }
.videos-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.video-grid { display: flex; flex-direction: column; gap: 2.5rem; }
.video-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: var(--navy-deep); display: flex; align-items: center; justify-content: center;
}
/* Placeholder shown until the real embed/iframe is dropped in. */
.video-placeholder { text-align: center; color: rgba(255,255,255,0.5); padding: 1.5rem; }
.video-placeholder .vp-icon {
  font-size: 2.5rem; line-height: 1; color: var(--gold-mid); margin-bottom: 0.75rem; display: block;
}
.video-placeholder .vp-label {
  font-family: var(--font-heading); font-size: 1.05rem; color: rgba(255,255,255,0.8);
}
.video-placeholder .vp-sub { font-size: 0.8rem; margin-top: 0.35rem; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Self-hosted HTML5 video: fills the 16/9 frame; contain avoids cropping when the
   source is a slightly different ratio (bars fall on the navy background). */
.video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: contain; background: var(--navy-deep); }
.video-meta { padding: 1.25rem 1.5rem 1.5rem; }
.video-num {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
}
.video-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--navy); }

/* ── SECTION: WHAT TO EXPECT (three things) ── */
.section-expect { background: var(--surface); padding: 5.5rem 1.5rem; }
.expect-inner { max-width: var(--max-w); margin: 0 auto; }
.expect-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.expect-card {
  background: var(--bg); border-radius: var(--radius); padding: 2rem 1.75rem;
  border-top: 3px solid var(--sage); box-shadow: var(--shadow);
}
.expect-num {
  font-size: 2rem; font-family: var(--font-heading); font-weight: 700;
  color: var(--sage); line-height: 1; margin-bottom: 1rem; opacity: 0.4;
}
.expect-title {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  color: var(--navy); line-height: 1.35; margin-bottom: 0.75rem;
}
.expect-body { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── SECTION: WHO IT'S FOR ── */
.section-who { background: var(--bg); padding: 5rem 1.5rem; }
.who-inner { max-width: 760px; margin: 0 auto; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1.75rem; }
.who-list li { font-size: 1rem; color: var(--text); line-height: 1.7; padding-left: 1.5rem; position: relative; }
.who-list li::before {
  content: '·'; position: absolute; left: 0; color: var(--sage);
  font-weight: 700; font-size: 1.25rem; line-height: 1.4;
}

/* ── SECTION: ANATOMY OF THE SOUL (Life Navigation only) ── */
.section-anatomy { background: var(--surface); padding: 5rem 1.5rem; }
.anatomy-inner { max-width: var(--max-w); margin: 0 auto; }
.anatomy-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.anatomy-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.anatomy-cards { display: flex; flex-direction: column; gap: 1rem; }
.topic-card {
  background: var(--bg); border-radius: var(--radius); padding: 1.5rem;
  border-left: 3px solid var(--sage); box-shadow: var(--shadow);
}
.topic-term { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.topic-def { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── SECTION: FORMAT (how it works) ── */
.section-format {
  background: var(--gold-light); padding: 4rem 1.5rem;
  border-top: 1px solid rgba(184,150,90,0.3); border-bottom: 1px solid rgba(184,150,90,0.3);
}
.format-inner { max-width: 760px; margin: 0 auto; }
.format-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.format-list li {
  font-size: 1.02rem; color: var(--navy-mid); line-height: 1.6;
  padding-left: 2rem; position: relative; font-weight: 500;
}
.format-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--sage); font-weight: 700; font-size: 1.05rem;
}

/* ── UPGRADE STRIP (Page A, after videos) ── */
.section-upgrade { background: var(--bg); padding: 0 1.5rem 5.5rem; }
.upgrade-strip {
  max-width: 760px; margin: 0 auto; background: var(--sage); color: #fff;
  border-radius: var(--radius); padding: 2rem 2.25rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.upgrade-text { flex: 1; min-width: 240px; }
.upgrade-text h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; }
.upgrade-text p { font-size: 0.925rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.upgrade-strip .btn-gold { white-space: nowrap; }

/* ── FEEDBACK INVITATION (feedback delivery page, after videos) ── */
.section-feedback { background: var(--bg); padding: 0 1.5rem 5.5rem; }
.feedback-block {
  max-width: 760px; margin: 0 auto; background: var(--surface);
  border-radius: var(--radius); border-left: 4px solid var(--sage);
  box-shadow: var(--shadow); padding: 2rem 2.25rem;
}
.feedback-block h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
.feedback-block p { font-size: 1rem; color: var(--text); line-height: 1.75; }

/* ── SECTION: PRICING / CTA (navy) ── */
.section-pricing { background: var(--navy); padding: 5rem 1.5rem; }
.pricing-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.pricing-inner .section-eyebrow { color: var(--gold-mid); }
.pricing-title {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600; color: #fff; line-height: 1.3; margin-bottom: 2.25rem;
}
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; text-align: left; }
.price-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(184,150,90,0.25);
  border-radius: var(--radius); padding: 2rem 1.75rem; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--sage); background: rgba(74,122,109,0.16); }
.price-tier {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-mid); margin-bottom: 0.75rem;
}
.price-amount { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 0.4rem; }
.price-amount span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.55); }
.price-desc { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }
.price-card .btn-gold, .price-card .btn-sage { justify-content: center; width: 100%; }
.price-note {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7;
  margin-top: 1.5rem; max-width: 620px; margin-left: auto; margin-right: auto;
}
.price-note a { color: var(--gold-mid); font-weight: 600; }

/* Audit recommendation block */
.pricing-audit { margin-top: 2.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; }
.pricing-audit a { color: var(--gold-mid); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.pricing-audit a:hover { border-bottom-color: var(--gold-mid); }

/* Refund policy */
.pricing-refund {
  font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.75;
  margin-top: 1.75rem; text-align: left; max-width: 720px; margin-left: auto; margin-right: auto;
}
.pricing-refund a { color: var(--gold-mid); }

.back-link {
  display: inline-block; margin-top: 2.5rem; font-size: 0.825rem;
  color: rgba(255,255,255,0.35); border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.back-link:hover { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(184,150,90,0.12); padding: 3rem 1.5rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand .footer-logo { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 0.875rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-social { display: flex; gap: 16px; margin-top: 1rem; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 0.2s; line-height: 0; }
.footer-social a:hover { color: rgba(255,255,255,0.9); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .expect-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .anatomy-columns { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 6rem 1.25rem 3.5rem; }
  .section-videos, .section-expect, .section-who, .section-anatomy,
  .section-format, .section-pricing { padding: 3.5rem 1.25rem; }
  .section-upgrade, .section-feedback { padding: 0 1.25rem 3.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-meta { gap: 0.75rem; }
  .upgrade-strip { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
