/* =====================================================================
   Mello Edwards - Temple of Divine Love  ·  Demo design system
   Palette base: tarabrach.com (amethyst + teal), warmed for "Divine Love"
   Type: Cormorant Garamond (display serif) + Inter (body/UI)
   ===================================================================== */

:root {
  /* Brand colour - swap these to re-theme the whole site */
  --amethyst:       #563276;   /* primary / structural (from Tara Brach) */
  --amethyst-deep:  #3a1f54;
  --amethyst-soft:  #7a5299;
  --plum:           #9b2d6c;   /* inline link accent, used sparingly */
  --teal:           #2c5b65;   /* secondary accent (dark turquoise) */
  --teal-deep:      #1c3942;
  --gold:           #c9a24b;   /* CTA warmth, the devotional note */
  --gold-deep:      #a8842f;

  /* Surfaces */
  --lavender:   #f4f1f9;       /* page background, the soft "purpley" light */
  --lavender-2: #eae3f3;       /* alternate band */
  --cream:      #faf8fc;
  --white:      #ffffff;

  /* Ink */
  --ink:      #3f3a47;
  --ink-soft: #6c6675;
  --hair:     #e2dbee;

  /* System */
  --container: 1180px;
  --radius:   18px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 18px rgba(58, 31, 84, .08);
  --shadow:    0 18px 48px rgba(58, 31, 84, .16);
  --shadow-lg: 0 30px 80px rgba(58, 31, 84, .26);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--lavender);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--plum); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--amethyst); }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--amethyst-deep);
  letter-spacing: .002em;
}
h1 { font-size: clamp(2.6rem, 1.4rem + 4.6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 1.2rem + 2.8vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); }
p  { color: var(--ink); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--teal);
}
.serif-lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.05rem + 1.1vw, 1.85rem);
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- layout ---------- */
.container { width: min(92%, var(--container)); margin-inline: auto; }
.narrow    { width: min(92%, 760px); margin-inline: auto; }
section { padding: clamp(3.5rem, 2rem + 6vw, 7rem) 0; scroll-margin-top: 84px; }
.band-lavender { background: var(--lavender-2); }
.band-cream    { background: var(--cream); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 1rem + 3vw, 3.4rem); text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: .9rem; }
.section-head p { color: var(--ink-soft); margin-top: .8rem; font-size: 1.08rem; }

/* decorative top stripe (Tara Brach signature) */
.brandstripe { height: 6px; background: linear-gradient(90deg, var(--amethyst), var(--plum) 45%, var(--teal) 100%); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  letter-spacing: .02em; line-height: 1;
  padding: 1.05em 1.9em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #2c2208; box-shadow: 0 10px 26px rgba(168, 132, 47, .38);
}
.btn-gold:hover { color: #2c2208; box-shadow: 0 16px 34px rgba(168, 132, 47, .5); }
.btn-amethyst {
  background: var(--amethyst); color: #fff; box-shadow: 0 10px 26px rgba(86, 50, 118, .34);
}
.btn-amethyst:hover { background: var(--amethyst-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--amethyst); border-color: var(--amethyst-soft); }
.btn-ghost:hover { background: var(--amethyst); color: #fff; border-color: var(--amethyst); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--amethyst-deep); }
.btn-sm { padding: .8em 1.4em; font-size: .9rem; }
.link-arrow { font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: .4em; }
.link-arrow:hover { color: var(--amethyst); gap: .65em; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 252, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .85rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { width: 40px; height: 40px; }
.brand b {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--amethyst-deep);
  letter-spacing: .01em; line-height: 1;
}
.brand span { display:block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; padding: 0; }
.nav-links a {
  position: relative; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; color: var(--ink);
}
.nav-links a:hover { color: var(--amethyst); }
.nav-links a.active { color: var(--amethyst); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--amethyst-deep); margin: 5px 0; transition: .3s var(--ease); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(3rem, 1.5rem + 6vw, 6rem) 0 clamp(3rem, 2rem + 4vw, 5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 78% 18%, rgba(122, 82, 153, .22), transparent 60%),
    radial-gradient(50% 60% at 12% 85%, rgba(44, 91, 101, .16), transparent 60%),
    linear-gradient(180deg, var(--lavender) 0%, var(--cream) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 1.3rem; display: block; }
.hero-copy h1 { margin-bottom: 1.3rem; }
.hero-copy h1 .accent { color: var(--amethyst); font-style: italic; }
.hero-copy .serif-lead { margin-bottom: 2rem; max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero-visual .hero-portrait {
  width: min(84%, 400px); aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%;
  border-radius: var(--radius); border: 8px solid #fff; box-shadow: var(--shadow-lg);
}
.hero-visual .hero-book {
  position: absolute; left: 1%; bottom: -16px; width: 33%; max-width: 150px;
  border-radius: 6px; box-shadow: var(--shadow); transform: rotate(-5deg);
  transition: transform .5s var(--ease);
}
.hero-visual:hover .hero-book { transform: rotate(-2deg) translateY(-5px); }
.hero-visual::after {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(201,162,75,.42), transparent 65%); filter: blur(34px);
  top: 46%; left: 50%; transform: translate(-50%,-50%);
}

.credstrip { margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem); border-top: 1px solid var(--hair); padding-top: 2.2rem; }
.credstrip ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem 2rem; }
.credstrip li { font-size: .92rem; line-height: 1.45; color: var(--ink-soft); display: flex; flex-direction: column; align-items: center; text-align: center; gap: .55rem; }
.credstrip li b { color: var(--amethyst); font-weight: 700; }
.credstrip li::before { content: "✦"; color: var(--gold); font-size: 1rem; line-height: 1; }

/* ---------- generic feature band (image + copy) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.feature.flip .feature-media { order: 2; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-media.book-shot { display:flex; justify-content:center; }
.feature-media.book-shot img { width: min(74%, 320px); border-radius: 8px; }
.feature h2 { margin-bottom: 1.1rem; }
.feature .eyebrow { display:block; margin-bottom: 1rem; }
.ticklist { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; display: grid; gap: .75rem; }
.ticklist li { position: relative; padding-left: 2rem; color: var(--ink); }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: .32em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.risk-note { font-size: .9rem; color: var(--ink-soft); margin-top: 1.1rem; }
.risk-note b { color: var(--teal); }

/* ---------- "ways to walk" cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--hair);
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--lavender-2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .5rem; }
.card-tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; color: var(--gold-deep); margin-bottom: .7rem; }
.card-body p { font-size: .96rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.card-body .link-arrow { margin-top: auto; }

/* ---------- quote band ---------- */
.quoteband { position: relative; background: linear-gradient(135deg, var(--amethyst-deep), var(--amethyst) 55%, var(--teal) 130%); color: #fff; overflow: hidden; }
.quoteband::before {
  content: "\201C"; position: absolute; top: -.1em; left: .15em; font-family: var(--font-display);
  font-size: 22rem; line-height: 1; color: rgba(255,255,255,.07);
}
.quoteband .container { position: relative; }
.quoteband blockquote {
  font-family: var(--font-display); font-size: clamp(1.7rem, 1.2rem + 2.4vw, 3rem); line-height: 1.32;
  font-weight: 500; font-style: italic; max-width: 18ch; margin: 0 auto; text-align: center; color: #fff;
}
.quoteband cite { display: block; margin-top: 1.8rem; font-family: var(--font-body); font-style: normal; font-size: .8rem; text-transform: uppercase; letter-spacing: .24em; color: var(--gold); text-align: center; }

/* ---------- community / split teal band ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-fig { background: center/cover no-repeat; min-height: 340px; }
.split-body { background: var(--teal-deep); color: #fff; padding: clamp(2rem, 1.5rem + 3vw, 3.6rem); display: flex; flex-direction: column; justify-content: center; }
.split-body h2 { color: #fff; margin-bottom: 1rem; }
.split-body p { color: rgba(255,255,255,.82); margin-bottom: 1.6rem; }
.split-body .eyebrow { color: var(--gold); display:block; margin-bottom: 1rem; }
.mini-list { list-style:none; padding:0; margin:0 0 1.8rem; display:grid; gap:.6rem; }
.mini-list li { padding-left: 1.6rem; position: relative; color: rgba(255,255,255,.9); font-size: .98rem; }
.mini-list li::before { content:"♡"; position:absolute; left:0; color: var(--gold); }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testi {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 2.1rem 1.9rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.testi .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 1rem; font-size: .95rem; }
.testi blockquote {
  font-family: var(--font-display); font-size: 1.4rem; line-height: 1.42; font-style: italic;
  color: var(--ink); margin-bottom: 1.6rem; flex: 1;
}
.testi figcaption { display: flex; align-items: center; gap: .85rem; }
.testi figcaption b { color: var(--amethyst-deep); font-family: var(--font-body); font-size: .96rem; font-weight: 600; }
.avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.avatar-mono {
  background: var(--a, var(--amethyst)); color: #fff; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: .9rem; letter-spacing: .04em; font-family: var(--font-body);
}

/* ---------- about ---------- */
.about { display:grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items:center; }
.about-fig { position: relative; }
.about-fig img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-fig .portrait {
  border-radius: var(--radius); max-width: 440px; margin-inline: auto; border: 8px solid #fff;
  box-shadow: var(--shadow); background: var(--lavender-2);
}
.feature-media.framed img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.about-fig .portrait-ph {
  aspect-ratio: 4/5; border-radius: var(--radius); box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--amethyst-soft), var(--teal)); display:flex; align-items:center; justify-content:center; text-align:center; color:#fff; padding:2rem;
}
.about-fig .portrait-ph span { font-family: var(--font-body); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; opacity:.85; }

/* ---------- email capture ---------- */
.capture { background: radial-gradient(120% 140% at 50% 0%, var(--lavender-2), var(--lavender)); text-align: center; }
.capture form { display: flex; gap: .7rem; max-width: 480px; margin: 1.8rem auto 0; flex-wrap: wrap; justify-content: center; }
.capture input {
  flex: 1; min-width: 220px; padding: 1em 1.3em; border-radius: 999px; border: 1.5px solid var(--hair);
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink);
}
.capture input:focus { outline: none; border-color: var(--amethyst-soft); box-shadow: 0 0 0 4px rgba(122,82,153,.14); }

/* ---------- channelings page ---------- */
.page-hero { background: radial-gradient(80% 120% at 50% -10%, var(--lavender-2), var(--lavender)); text-align: center; padding: clamp(3.5rem, 2rem + 6vw, 6.5rem) 0 clamp(2.5rem, 1.5rem + 4vw, 4rem); }
.page-hero .eyebrow { display:inline-block; margin-bottom:1.1rem; }
.page-hero p { max-width: 60ch; margin: 1.2rem auto 0; color: var(--ink-soft); font-size: 1.1rem; }

.chan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.chan-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 132px 1fr; transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.chan-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.chan-cover { position: relative; }
.chan-cover img { width: 100%; height: 100%; object-fit: cover; min-height: 100%; }
.chan-cover::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, transparent 55%, rgba(58,31,84,.12)); }
.chan-body { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; }
.chan-attr { font-size:.66rem; text-transform:uppercase; letter-spacing:.18em; font-weight:700; color: var(--teal); margin-bottom:.5rem; }
.chan-body h3 { font-size: 1.5rem; line-height:1.1; margin-bottom:.5rem; }
.chan-desc { font-size:.9rem; color: var(--ink-soft); margin-bottom: 1rem; flex: 1; }
.chan-card audio { width: 100%; height: 38px; border-radius: 999px; }
.chan-card audio::-webkit-media-controls-panel { background: var(--lavender); }

/* ---------- footer ---------- */
.footer { background: var(--amethyst-deep); color: rgba(255,255,255,.72); padding: clamp(3rem, 2rem + 3vw, 4.5rem) 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer .brand b { color: #fff; }
.footer .brand span { color: var(--gold); }
.footer p { font-size: .94rem; color: rgba(255,255,255,.62); margin-top: 1rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.footer ul a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom .as-above { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--gold); }

/* ---------- demo banner ---------- */
.demo-flag {
  background: repeating-linear-gradient(45deg, var(--teal-deep), var(--teal-deep) 12px, var(--teal) 12px, var(--teal) 24px);
  color: #fff; text-align: center; font-size: .76rem; letter-spacing: .1em; padding: .5rem 1rem; font-weight: 600;
}
.demo-flag b { color: var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav[data-open="true"] .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: var(--cream); padding: 1.4rem 6%; gap: 1.2rem; border-bottom: 1px solid var(--hair); box-shadow: var(--shadow);
  }
  .nav[data-open="true"] .nav-links a { font-size: .95rem; }
  .hero-grid, .feature, .about { grid-template-columns: 1fr; }
  .feature.flip .feature-media { order: 0; }
  .hero-visual { order: -1; }
  .feature-copy, .hero-copy { text-align: center; }
  .hero-copy .serif-lead { max-width: none; }
  .hero-actions { justify-content: center; }
  .ticklist { text-align: left; max-width: 420px; margin-inline: auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .credstrip ul { grid-template-columns: repeat(2, 1fr); max-width: 460px; margin-inline: auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .chan-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-fig { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .credstrip ul { grid-template-columns: 1fr; }
  .chan-card { grid-template-columns: 1fr; }
  .chan-cover { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   Additions: about spacing, story page prose, retreats & channeling
   subscription. Appended; safe to re-theme via the :root variables above.
   ===================================================================== */

/* breathing room under the About heading */
.about .feature-copy .eyebrow { display: block; margin-bottom: 1rem; }
.about .feature-copy h2 { margin-bottom: 1.2rem; }

/* long-form prose (Mello's full story) */
.prose { width: min(92%, 720px); margin-inline: auto; }
.prose > .eyebrow { display: block; text-align: center; margin-bottom: .8rem; }
.prose h2 { text-align: center; margin-bottom: 1.6rem; }
.prose h3 { margin: 2.4rem 0 .7rem; }
.prose p { margin-bottom: 1.2rem; }
.prose .pull {
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.4;
  color: var(--amethyst); border-left: 3px solid var(--gold); padding-left: 1.3rem; margin: 2rem 0;
}

/* retreat list (experiences page) */
.retreat-list { display: grid; gap: 1.4rem; max-width: 820px; margin: 0 auto; }
.retreat {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 1.8rem 1.8rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem 1.6rem; align-items: center;
}
.retreat h3 { margin-bottom: .35rem; }
.retreat p { color: var(--ink-soft); font-size: .96rem; }
.retreat .meta { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--teal); margin-bottom: .6rem; }
.retreat .btn { white-space: nowrap; }
@media (max-width: 600px) { .retreat { grid-template-columns: 1fr; } }

/* subscription / pricing */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; max-width: 760px; margin: 2.6rem auto 0; text-align: left; }
.plan { background: #fff; border: 1px solid var(--hair); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 2rem 1.9rem; display: flex; flex-direction: column; }
.plan.featured { border: 1.5px solid var(--gold); box-shadow: var(--shadow); }
.plan .plan-tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; color: var(--gold-deep); margin-bottom: .8rem; }
.plan h3 { margin-bottom: .4rem; }
.plan .price { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--amethyst-deep); margin: .4rem 0 1rem; }
.plan .price small { font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .6rem; }
.plan ul li { padding-left: 1.5rem; position: relative; font-size: .95rem; color: var(--ink); }
.plan ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.plan .btn { margin-top: auto; justify-content: center; }
@media (max-width: 600px) { .pricing { grid-template-columns: 1fr; } }

/* locked (members-only) channelings */
.chan-card.locked .chan-cover img { filter: saturate(.55) brightness(.92); }
.chan-lockbar {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  background: var(--lavender-2); border: 1px solid var(--hair); border-radius: 999px; padding: .4rem .4rem .4rem 1rem;
}
.chan-lockbar .lock-label { display: inline-flex; align-items: center; gap: .45em; font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); }
.chan-lockbar .btn { padding: .55em 1.1em; font-size: .8rem; }
.chan-attr .free-pill { display: inline-block; margin-left: .5em; background: var(--teal); color: #fff; border-radius: 999px; padding: .1em .7em; font-size: .82em; letter-spacing: .08em; }
