/* ═══════════════════════════════════════════════════════
   OurPath Guidance — Global Stylesheet
   TERRA Design System: cream, navy, terracotta/gold
   ═══════════════════════════════════════════════════════ */

:root {
  --dark: #1A2F36;
  --dark-mid: #1E3640;
  --cream: #F7F3EE;
  --cream-dark: #EDE8E0;
  --gold: #C4993C;
  --gold-light: #D4AD5A;
  --subtle: #7A8B8F;
  --body: #2A3F46;
  --white: #FFFFFF;
  --line: #D4C9B8;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', 'Calibri', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--cream); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--dark); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--dark); }
p { margin-bottom: 1.2em; }
a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-light); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-family: var(--sans); font-size: .75rem; letter-spacing: .25em;
  color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1.5rem;
}

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes drawLine { from { width: 0; } to { width: 60px; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0; transition: background .4s, backdrop-filter .4s, box-shadow .4s;
  background: rgba(26, 47, 54, .85); backdrop-filter: blur(8px);
}
nav.scrolled {
  background: rgba(26, 47, 54, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196, 153, 60, .15);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--cream); letter-spacing: .02em; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(247, 243, 238, .7); font-size: .82rem; font-weight: 400;
  letter-spacing: .03em; transition: color .3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.nav-cta {
  color: var(--gold) !important; border: 1px solid rgba(196, 153, 60, .4);
  padding: .5rem 1.2rem; font-size: .78rem !important; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500; transition: all .4s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark) !important; border-color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--cream); margin: 5px 0; transition: .3s; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem;
    border-top: 1px solid rgba(196, 153, 60, .15);
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
}

/* ── Hero (shared) ── */
.hero {
  min-height: 100vh; background: var(--dark); display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(196, 153, 60, .04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(30, 54, 64, .8) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .3;
}
.hero-content { position: relative; max-width: 720px; animation: fadeUp 1s ease .3s both; }
.hero h1 { margin-bottom: 1.5rem; font-weight: 400; font-style: italic; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { color: var(--subtle); font-size: 1.1rem; max-width: 560px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-line { width: 0; height: 1.5px; background: var(--gold); animation: drawLine 1s ease 1s forwards; margin-bottom: 2rem; }
.hero-cta {
  display: inline-block; font-family: var(--sans); font-size: .85rem; letter-spacing: .15em;
  color: var(--gold); border: 1px solid rgba(196, 153, 60, .4); padding: .9rem 2.2rem;
  transition: all .4s; text-transform: uppercase; font-weight: 500;
}
.hero-cta:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── Page Hero (interior pages) ── */
.page-hero {
  padding: 10rem 0 5rem; background: var(--dark); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(196, 153, 60, .04) 0%, transparent 60%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .3;
}
.page-hero-content { position: relative; animation: fadeUp 1s ease .3s both; }
.page-hero h1 { margin-bottom: 1.5rem; font-weight: 400; font-style: italic; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { color: var(--subtle); font-size: 1.1rem; max-width: 600px; line-height: 1.8; margin-bottom: 0; }

/* ── Problem Section ── */
.problem { padding: 7rem 0; background: var(--cream); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.problem-left h2 { font-style: italic; margin-bottom: 1.5rem; }
.problem-left p { color: var(--subtle); font-size: 1rem; }
.problem-items { display: flex; flex-direction: column; gap: 1.5rem; }
.problem-item {
  padding: 1.5rem; background: var(--white); border-left: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .03);
}
.problem-item h4 { font-family: var(--serif); font-size: 1.05rem; color: var(--dark); margin-bottom: .4rem; font-weight: 600; }
.problem-item p { font-size: .9rem; color: var(--subtle); margin: 0; line-height: 1.6; }
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── Approach / Pillars ── */
.approach { padding: 7rem 0; background: var(--dark); }
.approach h2 { color: var(--cream); text-align: center; margin-bottom: 1rem; font-style: italic; }
.approach-subtitle { text-align: center; color: var(--subtle); font-size: 1rem; max-width: 580px; margin: 0 auto 4rem; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pillar {
  background: var(--dark-mid); padding: 2.5rem 2rem; border-top: 2px solid var(--gold);
  transition: transform .3s, box-shadow .3s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, .2); }
.pillar h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 1rem; font-weight: 500; }
.pillar p { color: var(--subtle); font-size: .92rem; line-height: 1.7; }
@media (max-width: 768px) { .pillars { grid-template-columns: 1fr; } }

/* ── Offering Cards ── */
.offerings { padding: 7rem 0; background: var(--cream); }
.offerings h2 { text-align: center; margin-bottom: 1rem; font-style: italic; }
.offerings-subtitle { text-align: center; color: var(--subtle); max-width: 540px; margin: 0 auto 4rem; font-size: 1rem; }
.offering-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.offering-card {
  background: var(--white); padding: 2.5rem 2rem; border: 1px solid var(--line);
  position: relative; transition: box-shadow .4s, transform .3s;
}
.offering-card:hover { box-shadow: 0 8px 40px rgba(0, 0, 0, .06); transform: translateY(-3px); }
.offering-card .card-label {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .2em;
  color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1rem;
}
.offering-card h3 { margin-bottom: 1rem; font-weight: 500; }
.offering-card p { color: var(--subtle); font-size: .92rem; line-height: 1.7; }
.card-cta {
  display: inline-block; margin-top: 1.5rem; font-size: .82rem; letter-spacing: .1em;
  color: var(--gold); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color .3s;
}
.card-cta:hover { border-bottom-color: var(--gold); }
@media (max-width: 768px) { .offering-cards { grid-template-columns: 1fr; } }

/* ── Workshop Detail ── */
.workshops-detail { padding: 7rem 0; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.workshops-detail h2 { margin-bottom: 1rem; font-style: italic; }
.workshops-intro { color: var(--subtle); max-width: 620px; margin-bottom: 3rem; }
.week-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.week-card { padding: 2rem; background: var(--cream); border-left: 3px solid var(--gold); }
.week-card .week-num { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 600; line-height: 1; margin-bottom: .5rem; }
.week-card h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--dark); margin-bottom: .5rem; font-weight: 600; }
.week-card p { font-size: .88rem; color: var(--subtle); margin: 0; line-height: 1.6; }
.workshop-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.detail-item h4 {
  font-family: var(--sans); font-size: .75rem; letter-spacing: .15em;
  color: var(--gold); text-transform: uppercase; margin-bottom: .5rem;
}
.detail-item p { color: var(--body); font-size: .95rem; margin: 0; }
.workshop-cta { margin-top: 2.5rem; padding-top: 2rem; }
@media (max-width: 768px) { .week-grid, .workshop-details { grid-template-columns: 1fr; } }

/* ── Journal ── */
.journal { padding: 7rem 0; background: var(--cream); }
.journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.journal-visual {
  background: var(--dark); padding: 3rem; display: flex; align-items: center;
  justify-content: center; min-height: 380px; position: relative; overflow: hidden;
}
.journal-visual::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(196, 153, 60, .08), transparent 60%);
}
.journal-mock {
  position: relative; background: var(--cream); width: 180px; height: 240px;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, .3); display: flex; flex-direction: column;
  justify-content: center; align-items: center; padding: 1.5rem;
}
.journal-mock .mock-title { font-family: var(--serif); font-size: 1rem; color: var(--dark); text-align: center; font-weight: 600; margin-bottom: .3rem; }
.journal-mock .mock-sub { font-family: var(--sans); font-size: .55rem; color: var(--subtle); letter-spacing: .15em; text-transform: uppercase; }
.journal-mock .mock-line { width: 40px; height: 1px; background: var(--gold); margin: .8rem 0; }
.journal-content h2 { margin-bottom: 1rem; font-style: italic; }
.journal-content p { color: var(--subtle); font-size: .95rem; }
.journal-features { list-style: none; margin-top: 1.5rem; padding: 0; }
.journal-features li {
  padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .9rem;
  color: var(--body); display: flex; align-items: baseline; gap: .8rem;
}
.journal-features li::before {
  content: ''; display: inline-block; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0; margin-top: .3rem;
}
@media (max-width: 768px) { .journal-grid { grid-template-columns: 1fr; } }

/* ── Mentoring ── */
.mentoring { padding: 7rem 0; background: var(--white); border-top: 1px solid var(--line); }
.mentoring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.mentoring h2 { margin-bottom: 1rem; font-style: italic; }
.mentoring p { color: var(--subtle); font-size: .95rem; }
.mentoring-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.mentoring-step { display: flex; gap: 1.2rem; align-items: start; }
.step-num { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); font-weight: 600; line-height: 1; min-width: 2rem; }
.step-content h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--dark); margin-bottom: .3rem; font-weight: 600; }
.step-content p { font-size: .88rem; color: var(--subtle); margin: 0; }
@media (max-width: 768px) { .mentoring-grid { grid-template-columns: 1fr; } }

/* ── Reviews ── */
.reviews { padding: 7rem 0; background: var(--cream); border-top: 1px solid var(--line); }
.reviews h2 { text-align: center; margin-bottom: 1rem; font-style: italic; }
.reviews-subtitle { text-align: center; color: var(--subtle); max-width: 540px; margin: 0 auto 3rem; font-size: 1rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review-card {
  background: var(--white); padding: 2.5rem 2rem 2rem; border-left: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .03); position: relative;
}
.review-card .quote-mark { font-family: var(--serif); font-size: 3rem; color: var(--gold); opacity: .25; position: absolute; top: .5rem; left: 1.2rem; line-height: 1; }
.review-card blockquote { font-size: .92rem; color: var(--subtle); line-height: 1.7; font-style: italic; margin: 0 0 1.2rem; padding-top: .3rem; }
.review-author { font-family: var(--sans); font-size: .82rem; font-weight: 500; color: var(--dark); font-style: normal; }
.review-context { font-family: var(--sans); font-size: .75rem; color: var(--subtle); font-style: normal; margin-top: .15rem; }
.reviews-note { text-align: center; margin-top: 2.5rem; font-size: .85rem; color: var(--subtle); font-style: italic; }
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── Review submission form ── */
.review-submit {
  margin-top: 3rem; max-width: 520px; margin-left: auto; margin-right: auto;
  padding: 2.5rem; background: var(--white); border: 1px solid var(--line);
}
.review-submit h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--dark); margin-bottom: .5rem; font-weight: 500; text-align: center; }
.review-submit p { font-size: .88rem; color: var(--subtle); text-align: center; margin-bottom: 1.5rem; }

/* ── About ── */
.about { padding: 7rem 0; background: var(--cream); border-top: 1px solid var(--line); }
.about-content { max-width: 680px; margin: 0 auto; }
.about h2 { margin-bottom: 1.5rem; font-style: italic; text-align: center; }
.about p { color: var(--subtle); font-size: 1rem; text-align: center; line-height: 1.8; }

/* ── FAQ ── */
.faq { padding: 5rem 0; background: var(--white); border-top: 1px solid var(--line); }
.faq h2 { text-align: center; margin-bottom: 3rem; font-style: italic; }
.faq-grid { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.faq-item h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--dark); margin-bottom: .5rem; font-weight: 600; cursor: pointer; }
.faq-item p { color: var(--subtle); font-size: .92rem; margin: 0; line-height: 1.7; }

/* ── Shared Form Styles ── */
.ourpath-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }
.ourpath-form label {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .1em;
  color: var(--subtle); text-transform: uppercase; font-weight: 500; margin-bottom: .3rem; display: block;
}
.ourpath-form input, .ourpath-form textarea, .ourpath-form select {
  width: 100%; font-family: var(--sans); font-size: .92rem; color: var(--body);
  background: var(--cream); border: 1px solid var(--line); padding: .75rem 1rem;
  transition: border-color .3s; outline: none; line-height: 1.5;
}
.ourpath-form input:focus, .ourpath-form textarea:focus, .ourpath-form select:focus { border-color: var(--gold); }
.ourpath-form textarea { resize: vertical; min-height: 100px; }
.form-submit {
  font-family: var(--sans); font-size: .82rem; letter-spacing: .15em; color: var(--gold);
  background: transparent; border: 1px solid rgba(196, 153, 60, .4); padding: .85rem 2rem;
  cursor: pointer; text-transform: uppercase; font-weight: 500; transition: all .4s; align-self: flex-start;
}
.form-submit:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.form-note { font-size: .78rem; color: var(--subtle); margin-top: .5rem; font-style: italic; }
.form-success { display: none; text-align: center; padding: 2rem; background: var(--cream); border: 1px solid var(--gold); }
.form-success.show { display: block; }
.form-success p { color: var(--dark); font-size: .95rem; margin: 0; }
.form-success .success-tick { font-size: 1.8rem; color: var(--gold); margin-bottom: .5rem; }

/* ── Dark form variant (contact) ── */
.dark-form .ourpath-form input, .dark-form .ourpath-form textarea, .dark-form .ourpath-form select {
  background: var(--dark-mid); border-color: rgba(196, 153, 60, .2); color: var(--cream);
}
.dark-form .ourpath-form input::placeholder, .dark-form .ourpath-form textarea::placeholder { color: var(--subtle); }
.dark-form .ourpath-form input:focus, .dark-form .ourpath-form textarea:focus { border-color: var(--gold); }
.dark-form .ourpath-form label { color: rgba(196, 153, 60, .7); }
.dark-form .form-submit { align-self: center; }
.dark-form .form-success { background: var(--dark-mid); }

/* ── Contact Section ── */
.contact { padding: 7rem 0; background: var(--dark); border-top: 1px solid rgba(196, 153, 60, .15); }
.contact h2 { color: var(--cream); text-align: center; margin-bottom: 1rem; font-style: italic; }
.contact-subtitle { text-align: center; color: var(--subtle); max-width: 480px; margin: 0 auto 3rem; font-size: 1rem; }
.contact-form-wrap { max-width: 560px; margin: 0 auto; }

/* ── Mentoring form ── */
.mentoring-form { margin-top: 1.5rem; padding: 2rem; background: var(--cream); border: 1px solid var(--line); }
.mentoring-form h4 { font-family: var(--serif); font-size: 1.05rem; color: var(--dark); margin-bottom: .3rem; font-weight: 600; }
.mentoring-form > p { font-size: .85rem; color: var(--subtle); margin-bottom: 1.2rem; }

/* ── Footer ── */
footer { background: var(--dark); padding: 4rem 0 2rem; }
.footer-content { display: flex; justify-content: space-between; align-items: start; margin-bottom: 3rem; }
.footer-brand .nav-logo { font-size: 1.6rem; margin-bottom: .5rem; display: block; }
.footer-brand p { color: var(--subtle); font-size: .85rem; max-width: 300px; }
.footer-links h4 { font-family: var(--sans); font-size: .7rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--subtle); font-size: .88rem; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(196, 153, 60, .1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(122, 139, 143, .5); font-size: .78rem; margin: 0; }
@media (max-width: 768px) {
  .footer-content { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

/* ── CTA Band (reusable) ── */
.cta-band { padding: 5rem 0; background: var(--dark); text-align: center; }
.cta-band h2 { color: var(--cream); font-style: italic; margin-bottom: 1rem; }
.cta-band p { color: var(--subtle); max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; font-family: var(--sans); font-size: .85rem; letter-spacing: .15em;
  color: var(--gold); border: 1px solid rgba(196, 153, 60, .4); padding: .9rem 2.2rem;
  transition: all .4s; text-transform: uppercase; font-weight: 500;
}
.btn-primary:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-secondary {
  display: inline-block; font-family: var(--sans); font-size: .85rem; letter-spacing: .15em;
  color: rgba(247, 243, 238, .5); border: 1px solid rgba(247, 243, 238, .15); padding: .9rem 2.2rem;
  transition: all .4s; text-transform: uppercase; font-weight: 500;
}
.btn-secondary:hover { color: var(--cream); border-color: rgba(247, 243, 238, .4); }

/* ── Our Story sections ── */
.story-section { padding: 6rem 0; }
.story-section.cream { background: var(--cream); border-top: 1px solid var(--line); }
.story-section.white { background: var(--white); border-top: 1px solid var(--line); }
.story-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .story-grid { grid-template-columns: 1fr; gap: 2rem; } }
.story-label-col .section-label { position: sticky; top: 7rem; }
.story-body p { color: var(--subtle); font-size: 1rem; line-height: 1.8; margin-bottom: 1.4em; }
.story-body p:last-child { margin-bottom: 0; }
.story-body em { font-style: italic; color: var(--body); }
.story-pullquote {
  margin: 2rem 0; padding: 1.5rem 2rem; background: var(--white);
  border-left: 3px solid var(--gold); box-shadow: 0 2px 20px rgba(0, 0, 0, .03);
}
.story-section.white .story-pullquote { background: var(--cream); box-shadow: none; }
.story-pullquote p { font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-style: italic; color: var(--dark); line-height: 1.45; margin: 0; }

/* Stats strip */
.stats-strip { padding: 5rem 0; background: var(--dark-mid); border-top: 1px solid rgba(196, 153, 60, .1); border-bottom: 1px solid rgba(196, 153, 60, .1); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr; gap: 2rem; } }
.stat-item { text-align: center; }
.stat-num { font-family: var(--serif); font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: .5rem; }
.stat-title { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream); font-weight: 500; margin-bottom: .75rem; }
.stat-text { font-size: .88rem; color: var(--subtle); line-height: 1.7; max-width: 260px; margin: 0 auto; }
.beliefs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 768px) { .beliefs-grid { grid-template-columns: 1fr; } }
.belief-card { padding: 2rem; background: var(--cream); border-left: 3px solid var(--gold); }
.belief-num { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 600; line-height: 1; margin-bottom: .5rem; }
.belief-card h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--dark); margin-bottom: .5rem; font-weight: 600; }
.belief-card p { font-size: .9rem; color: var(--subtle); margin: 0; line-height: 1.65; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 3rem; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--white); border: 1px solid var(--line); padding: 2.5rem 2rem;
  transition: box-shadow .4s, transform .3s;
}
.blog-card:hover { box-shadow: 0 8px 40px rgba(0, 0, 0, .06); transform: translateY(-3px); }
.blog-card .blog-date { font-family: var(--sans); font-size: .72rem; letter-spacing: .15em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: .8rem; }
.blog-card h3 { font-size: 1.3rem; margin-bottom: .8rem; font-weight: 500; }
.blog-card p { color: var(--subtle); font-size: .9rem; line-height: 1.7; }
.blog-card .card-cta { margin-top: 1rem; }

/* ── Calendly embed ── */
.calendly-section { padding: 5rem 0; background: var(--white); border-top: 1px solid var(--line); }
.calendly-section h2 { text-align: center; margin-bottom: 1rem; font-style: italic; }
.calendly-section > .container > p { text-align: center; color: var(--subtle); max-width: 540px; margin: 0 auto 2rem; }

/* ── Pricing cards ── */
.pricing-section { padding: 7rem 0; background: var(--cream); }
.pricing-section h2 { text-align: center; margin-bottom: 1rem; font-style: italic; }
.pricing-subtitle { text-align: center; color: var(--subtle); max-width: 580px; margin: 0 auto 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; } }
.pricing-card {
  background: var(--white); border: 1px solid var(--line); padding: 2.5rem 2rem;
  text-align: center; transition: box-shadow .4s, transform .3s; position: relative;
}
.pricing-card:hover { box-shadow: 0 8px 40px rgba(0, 0, 0, .06); transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--gold); }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark); font-family: var(--sans); font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase; font-weight: 500; padding: .3rem 1.2rem;
}
.pricing-card .card-label { font-family: var(--sans); font-size: .7rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.pricing-card h3 { margin-bottom: .5rem; }
.pricing-card .price { font-family: var(--serif); font-size: 2.4rem; color: var(--dark); font-weight: 600; margin-bottom: .3rem; }
.pricing-card .price-note { font-size: .82rem; color: var(--subtle); margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-card li {
  padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .88rem;
  color: var(--body); display: flex; align-items: baseline; gap: .6rem;
}
.pricing-card li::before { content: '\2713'; color: var(--gold); font-weight: 600; font-size: .8rem; }

/* ── Referral form ── */
.referral-section { padding: 7rem 0; background: var(--cream); }
.referral-form-wrap { max-width: 680px; margin: 0 auto; }
.referral-form-wrap h2 { margin-bottom: 1rem; font-style: italic; }
.referral-form-wrap > p { color: var(--subtle); margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: .3rem; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 768px) { .form-group-row { grid-template-columns: 1fr; } }

/* ── Coming soon badge ── */
.coming-soon-badge {
  display: inline-block; background: var(--dark); color: var(--gold);
  font-family: var(--sans); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 500; padding: .5rem 1.5rem;
  border: 1px solid rgba(196, 153, 60, .3); margin-top: 1.5rem;
}

/* ── Notify form ── */
.notify-form { display: flex; gap: .8rem; margin-top: 1.5rem; max-width: 400px; }
.notify-form input {
  flex: 1; font-family: var(--sans); font-size: .88rem; padding: .7rem 1rem;
  border: 1px solid var(--line); background: var(--white); color: var(--body); outline: none;
}
.notify-form input:focus { border-color: var(--gold); }
.notify-form button {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; color: var(--gold);
  background: transparent; border: 1px solid rgba(196, 153, 60, .4); padding: .7rem 1.5rem;
  cursor: pointer; text-transform: uppercase; font-weight: 500; transition: all .4s; white-space: nowrap;
}
.notify-form button:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
