/* ============================================================
   LisaYogaAngel.com — Global Stylesheet
   Palette: Sage · Cream · Slate | Cormorant Garamond + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --sage:        #7A9E8E;
  --sage-light:  #A8C4B8;
  --sage-bg:     #EDF2EF;
  --cream:       #FDFAF5;
  --cream-dark:  #EDE5D4;
  --slate:       #4A5568;
  --slate-dark:  #2D3748;
  --slate-light: #718096;
  --white:       #FFFFFF;
  --accent:      #C9A86C;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --max-w:       1200px;
  --pad:         5rem 1.5rem;
  --ease:        0.3s ease;
  --radius:      1rem;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--slate-dark);
  line-height: 1.75;
  font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--slate-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p  { font-size: 1.05rem; color: var(--slate); max-width: 68ch; line-height: 1.75; }
em { font-style: italic; color: var(--sage); }

/* ── Utilities ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.bg-cream     { background: var(--cream); }
.bg-sage      { background: var(--sage-bg); }
.bg-white     { background: var(--white); }
.bg-cream-dk  { background: var(--cream-dark); }
.bg-slate     { background: var(--slate-dark); color: var(--cream); }

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.divider {
  width: 56px; height: 2px;
  background: var(--sage);
  margin: 1.25rem 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary  { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-primary:hover { background: var(--slate-dark); border-color: var(--slate-dark); }
.btn-outline  { background: transparent; color: var(--slate-dark); border-color: var(--slate-dark); }
.btn-outline:hover { background: var(--slate-dark); color: var(--white); }
.btn-ghost    { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn-ghost:hover { background: var(--sage); color: var(--white); }
.btn-white    { background: var(--white); color: var(--slate-dark); border-color: var(--white); }
.btn-white:hover { background: var(--cream); }

/* ── Nav ────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(253,250,245,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  color: var(--slate-dark);
}
.nav-logo span { color: var(--sage); }
.nav-logo img {
  display: block;
  width: 170px;
  height: 90px;
  object-fit: contain;
}
@media (max-width: 860px) {
  .nav-logo img { width: 130px; height: 70px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage); }
.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 3rem;
}
.nav-cta:hover { background: var(--slate-dark) !important; color: var(--white) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--slate-dark);
  transition: var(--ease);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: inline-block; }
}

/* ── Opening Quote ──────────────────────────────────────────── */
.opening-quote {
  background: var(--sage);
  padding: 3rem 1.5rem 3rem;
  padding-top: calc(106px + 2.5rem);
  text-align: center;
}
.opening-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--white);
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
}
.opening-quote__cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.75rem;
}

/* ── Hero (Homepage) ────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 5rem 1.5rem;
  max-width: 600px;
  margin-left: auto;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 2.75rem;
  max-width: 50ch;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--sage-bg);
}
.hero-photo-slot {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: linear-gradient(155deg, var(--sage-light) 0%, var(--sage-bg) 55%, var(--cream-dark) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3rem;
}
.hero-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  position: absolute;
  inset: 0;
}
.photo-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; margin-top: 0; }
  .hero-image { order: -1; margin-top: 0; }
  .hero-photo-slot { min-height: 70vw; }
  .hero-content { padding: 3rem 1.5rem; max-width: 100%; margin: 0; }
}

/* ── Page Hero (interior pages) ─────────────────────────────── */
.page-hero {
  padding: 9rem 1.5rem 5rem;
  background: var(--sage-bg);
  text-align: center;
}
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { margin: 0 auto; font-size: 1.15rem; max-width: 56ch; }

/* ── Pathways ───────────────────────────────────────────────── */
.pathways { padding: var(--pad); background: var(--white); }
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pathway-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}
.pathway-thumb {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.pathway-thumb.t-sage    { background: linear-gradient(135deg, #B5CCBE, #EDF2EF); }
.pathway-thumb.t-cream   { background: linear-gradient(135deg, #EDE5D4, #FDFAF5); }
.pathway-thumb--img { padding: 0; overflow: hidden; background: #c8c0b8; }
.pathway-thumb--img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.pathway-thumb--portrait { height: 300px; background: #b8b0a8; }
.pathway-thumb--portrait img { object-fit: cover; object-position: center 18%; transform: scale(1.35); transform-origin: center 18%; }
.pathway-thumb--bg {
  height: 280px;
  background-size: cover;
  background-repeat: no-repeat;
}
.pathway-thumb--contain { height: 300px; padding: 0; overflow: hidden; }
.pathway-thumb--contain img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pathway-thumb.t-slate   { background: linear-gradient(135deg, #A8B8C8, #E8EDF2); }
.pathway-body { padding: 2rem 2rem 2.25rem; }
.pathway-body h3 { margin-bottom: 0.75rem; }
.pathway-body p  { font-size: 0.95rem; margin-bottom: 1.75rem; max-width: 100%; }

@media (max-width: 900px) {
  .pathways-grid { grid-template-columns: 1fr; max-width: 440px; margin: 3rem auto 0; }
}

/* ── Mission ────────────────────────────────────────────────── */
.mission { padding: var(--pad); background: var(--sage-bg); }
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mission-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.mission-text h2 { margin-bottom: 1.5rem; }
.mission-text p   { margin-bottom: 1.25rem; }
.mission-subheading { font-size: 1.25rem; font-weight: 600; }
.mission-subheading--accent { color: var(--sage); }
.mission-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-light);
}

@media (max-width: 900px) {
  .mission-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-photo { aspect-ratio: 16/9; }
}

/* ── Testimonials (homepage strip) ─────────────────────────── */
.testimonials-strip { padding: var(--pad); background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 3px solid var(--sage);
  transition: box-shadow var(--ease);
}
.t-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.t-stars { color: var(--accent); letter-spacing: 0.08em; margin-bottom: 1rem; font-size: 0.85rem; }
.t-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--slate-dark);
  margin-bottom: 1.5rem;
}
.t-author strong { display: block; font-size: 0.9rem; color: var(--slate-dark); font-weight: 500; }
.t-author span   { font-size: 0.8rem; color: var(--slate-light); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter {
  padding: 5rem 1.5rem;
  background: var(--sage);
  text-align: center;
}
.newsletter h2 { color: var(--white); margin-bottom: 1rem; }
.newsletter p  { color: rgba(255,255,255,0.85); margin: 0 auto 2.5rem; max-width: 50ch; }
.nl-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.nl-form input {
  flex: 1;
  padding: 1.1rem 1.5rem;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--slate-dark);
  outline: none;
}
.nl-form input::placeholder { color: var(--slate-light); }
.nl-form button {
  padding: 1.1rem 2rem;
  background: var(--slate-dark);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease);
  white-space: nowrap;
}
.nl-form button:hover { background: var(--accent); }

@media (max-width: 600px) {
  .nl-form { flex-direction: column; border-radius: var(--radius); }
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--slate-dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 1.5rem 2.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}
.footer-brand .fl { color: var(--white); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; max-width: 28ch; line-height: 1.65; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.65rem;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.8rem;
}
.socials { display: flex; gap: 1.25rem; }
.socials a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: color var(--ease);
}
.socials a:hover { color: var(--sage-light); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── Next Steps (sub-pages) ─────────────────────────────────── */
.next-steps { padding: var(--pad); background: var(--cream-dark); text-align: center; }
.next-steps h2 { margin-bottom: 0.75rem; }
.next-steps > p { margin: 0 auto 2.5rem; }
.ns-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.ns-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  width: 240px;
  text-align: left;
  transition: transform var(--ease), box-shadow var(--ease);
}
.ns-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.ns-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.ns-card h4 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.ns-card p  { font-size: 0.875rem; margin-bottom: 1.25rem; max-width: 100%; }

/* ── Meditation – practices grid ────────────────────────────── */
.practices-section { padding: var(--pad); background: var(--white); }
.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.practice-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.practice-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.06); }
.practice-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.practice-card h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.practice-card p  { font-size: 0.85rem; max-width: 100%; }

/* Insight Timer section */
.insight-section { padding: var(--pad); background: var(--sage-bg); }
.insight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.insight-embed {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
}
.embed-placeholder {
  color: var(--slate-light);
  font-size: 0.9rem;
  line-height: 1.6;
}
.embed-placeholder .embed-icon { font-size: 3rem; margin-bottom: 1rem; }

@media (max-width: 900px) {
  .insight-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Podcast – platform buttons ─────────────────────────────── */
.platform-section { padding: var(--pad); background: var(--cream); }
.platform-section .section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.platform-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 0.6rem;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-dark);
  transition: all var(--ease);
}
.platform-btn:hover { border-color: var(--sage); color: var(--sage); }
.platform-btn .pb-icon { font-size: 1.2rem; }

@media (max-width: 900px) {
  .platform-section .section-intro { grid-template-columns: 1fr; gap: 2rem; }
}

/* Episodes grid */
.episodes-section { padding: var(--pad); background: var(--white); }
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ep-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 3px solid var(--sage-light);
  transition: transform var(--ease), box-shadow var(--ease);
}
.ep-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.07); }
.ep-num {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.ep-card h3  { font-size: 1.4rem; margin-bottom: 0.75rem; }
.ep-card p   { font-size: 0.9rem; margin-bottom: 1.25rem; max-width: 100%; }
.ep-meta     { font-size: 0.78rem; color: var(--slate-light); }

@media (max-width: 900px) {
  .episodes-grid { grid-template-columns: 1fr; }
}

/* ── Courses – pricing cards ─────────────────────────────────── */
.courses-section { padding: var(--pad); background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.p-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.p-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.09); }
.p-card.featured { border-color: var(--sage); }
.p-card-badge {
  background: var(--sage);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  text-align: center;
}
.p-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.p-thumb.t1 { background: linear-gradient(135deg, #B5CCBE, #EDF2EF); }
.p-thumb--img { padding: 0; overflow: hidden; height: auto; aspect-ratio: 1; }
.p-thumb--img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.p-thumb--book { aspect-ratio: 3 / 4; background: #f5f0e8; }
.p-thumb--book img { object-fit: contain; object-position: center; }
.p-thumb--landscape { aspect-ratio: 4 / 3; height: auto; background: #2d1b7a; }
.p-thumb--landscape img { object-fit: cover; object-position: center; }
.p-thumb--portrait { aspect-ratio: 4 / 5; height: auto; }
.p-thumb--portrait img { object-fit: cover; object-position: center; }
.p-thumb.t2 { background: linear-gradient(135deg, #EDE5D4, #FDFAF5); }
.p-thumb.t3 { background: linear-gradient(135deg, #D4C5B5, #F5EFE8); }
.p-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.p-body h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.p-body .p-desc { font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; max-width: 100%; }
.p-features { margin-bottom: 1.75rem; }
.p-features li {
  font-size: 0.875rem;
  color: var(--slate);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.p-features li::before { content: "✓"; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.p-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--slate-dark);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.p-price span { font-size: 1rem; color: var(--slate-light); font-family: var(--font-sans); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 3rem auto 0; }
}

/* How it works */
.how-section { padding: var(--pad); background: var(--sage-bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step { text-align: center; padding: 0 1rem; }
.step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.step h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.step p  { font-size: 0.95rem; margin: 0 auto; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Testimonials wall (connect page) ───────────────────────── */
.twall-section { padding: var(--pad); background: var(--white); }
.twall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.twall-grid .t-card:nth-child(4),
.twall-grid .t-card:nth-child(5),
.twall-grid .t-card:nth-child(6) { border-left-color: var(--accent); }

@media (max-width: 900px) {
  .twall-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: var(--pad); background: var(--sage-bg); }
.faq-list { max-width: 740px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--slate-dark);
  text-align: left;
  transition: color var(--ease);
  gap: 1rem;
}
.faq-q:hover { color: var(--sage); }
.faq-icon {
  font-size: 1.5rem;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p { padding-bottom: 1.5rem; font-size: 0.95rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 400px; }

/* ── Contact Form ───────────────────────────────────────────── */
.contact-section { padding: var(--pad); background: var(--cream); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-info h2 { margin-bottom: 1rem; }
.form-info p  { margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.f-field { display: flex; flex-direction: column; gap: 0.45rem; }
.f-field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.f-field input,
.f-field textarea,
.f-field select {
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--slate-dark);
  background: var(--white);
  transition: border-color var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.f-field input:focus,
.f-field textarea:focus,
.f-field select:focus { border-color: var(--sage); }
.f-field textarea { resize: vertical; min-height: 140px; }

@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── About section (meditation philosophy) ──────────────────── */
.philosophy-section { padding: var(--pad); background: var(--cream); }
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophy-inner .p-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--sage-light), var(--cream-dark));
}
.philosophy-inner .p-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .philosophy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Podcast about-show ──────────────────────────────────────── */
.about-show { padding: var(--pad); background: var(--sage-bg); }
.about-show-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}
.about-show-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sage-light), var(--cream-dark));
}
.about-show-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .about-show-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Scroll-to-top ───────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), background var(--ease);
  z-index: 800;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--slate-dark); }
