Scroll Down

Presence
·
Clarity
·
Grounded Guidance

(function () { const FRAME_COUNT = 37; const BASE_URL = 'https://res.cloudinary.com/df94hakfq/image/upload/q_auto,f_auto,w_1600/samples/doorway/'; /* — Build overlay — */ const overlay = document.createElement('div'); overlay.style.cssText = 'position:fixed;top:0;left:0;width:100vw;height:100dvh;z-index:99000;opacity:0;transition:opacity 0.2s ease;pointer-events:none;background:#F2F0EF;'; const canvas = document.createElement('canvas'); canvas.style.cssText = 'position:absolute;inset:0;width:100%;height:100%;display:block;transform-origin:center center;will-change:transform,filter;'; const loader = document.createElement('div'); loader.style.cssText = 'position:absolute;top:0;left:0;width:0%;height:2px;background:rgba(0,0,0,0.25);transition:width 0.15s;z-index:2;'; overlay.appendChild(canvas); overlay.appendChild(loader); /* — Move HTML elements into overlay — */ const beginEl = document.getElementById('dw-begin'); const textEl = document.getElementById('dw-text'); const text2El = document.getElementById('dw-text2'); if (beginEl) overlay.appendChild(beginEl); if (textEl) overlay.appendChild(textEl); if (text2El) overlay.appendChild(text2El); document.body.appendChild(overlay); const ctx = canvas.getContext('2d'); const images = []; let loadedCount = 0; let isReady = false; let curFrame = 0; let rafPending = false; function clamp(v, lo, hi) { return Math.min(hi, Math.max(lo, v)); } function resize() { const dpr = Math.min(window.devicePixelRatio || 1, 2); const vw = overlay.offsetWidth; const vh = overlay.offsetHeight; canvas.width = vw * dpr; canvas.height = vh * dpr; ctx.setTransform(dpr, 0, 0, dpr, 0, 0); } function draw(i) { const img = images[i]; if (!img || !img.complete || !img.naturalWidth) return; const vw = window.innerWidth, vh = window.innerHeight; const s = Math.max(vw / img.naturalWidth, vh / img.naturalHeight); const w = img.naturalWidth * s; const h = img.naturalHeight * s; ctx.clearRect(0, 0, vw, vh); ctx.drawImage(img, (vw - w) / 2, (vh - h) / 2, w, h); } function update() { rafPending = false; if (!isReady) return; const trigger = document.getElementById('dw-trigger'); if (!trigger) return; const rect = trigger.getBoundingClientRect(); const triggerH = trigger.offsetHeight; const vh = window.innerHeight; const scrolled = -rect.top; const total = triggerH - vh; const progress = clamp(total > 0 ? scrolled / total : 0, 0, 1); const inZone = rect.top <= 0 && rect.bottom >= vh; overlay.style.opacity = inZone ? '1' : '0'; if (beginEl) beginEl.style.pointerEvents = inZone ? 'auto' : 'none'; if (!inZone) return; /* — Frames play through first 82% — */ const seqProgress = clamp(progress / 0.82, 0, 1); const frameIndex = Math.min(FRAME_COUNT - 1, Math.round(seqProgress * (FRAME_COUNT - 1))); if (frameIndex !== curFrame) { curFrame = frameIndex; draw(curFrame); } /* — Blur + zoom + fade canvas in final 18% — */ const endProgress = clamp((progress - 0.82) / 0.18, 0, 1); canvas.style.transform = `scale(${1 + endProgress * 0.08})`; canvas.style.filter = `blur(${endProgress * 10}px)`; canvas.style.opacity = 1 - endProgress; /* — Begin indicator fades out in first 12% — */ if (beginEl) beginEl.style.opacity = 1 - clamp(progress / 0.12, 0, 1); /* — Text 1: fades in at 82%, out at 90% — */ const text1In = clamp((progress - 0.73) / 0.15, 0, 1); if (textEl) { textEl.style.opacity = text1In; textEl.style.filter = 'blur(0px)'; } } window.addEventListener('scroll', function () { if (!rafPending) { rafPending = true; requestAnimationFrame(update); } }, { passive: true }); window.addEventListener('resize', function () { resize(); draw(curFrame); update(); }); function loadImages() { for (let i = 1; i <= FRAME_COUNT; i++) { const img = new Image(); img.onload = function () { loadedCount++; loader.style.width = (loadedCount / FRAME_COUNT * 100) + '%'; if (loadedCount === FRAME_COUNT) { isReady = true; resize(); draw(0); update(); setTimeout(function () { loader.style.opacity = '0'; }, 250); } }; img.onerror = function () { loadedCount++; loader.style.width = (loadedCount / FRAME_COUNT * 100) + '%'; }; img.src = BASE_URL + 'frame_' + String(i).padStart(3, '0') + '.jpg'; images.push(img); } } resize(); loadImages(); var trigger = document.getElementById('dw-trigger'); trigger.style.height = window.innerWidth <= 768 ? '250vh' : '350vh'; if (beginEl) { beginEl.style.pointerEvents = 'auto'; beginEl.style.cursor = 'pointer'; beginEl.addEventListener('click', function () { const trigger = document.getElementById('dw-trigger'); if (!trigger) return; const triggerH = trigger.offsetHeight; const vh = window.innerHeight; const targetScroll = trigger.offsetTop + triggerH + (vh * 0); const startScroll = window.scrollY; const distance = targetScroll - startScroll; const duration = 5500; let startTime = null; function autoScroll(timestamp) { if (!startTime) startTime = timestamp; const elapsed = timestamp - startTime; const progress = Math.min(elapsed / duration, 1); const eased = progress < 0.5 ? 2 * progress * progress : 1 - Math.pow(-2 * progress + 2, 2) / 2; const currentPos = startScroll + distance * eased; const presenceScroll = trigger.offsetTop + (triggerH - vh) * 0.78; const nearPresence = currentPos >= presenceScroll - 100 && currentPos <= presenceScroll + 500; window.scrollTo(0, currentPos); if (progress < 1) { setTimeout(function() { requestAnimationFrame(autoScroll); }, nearPresence ? 32 : 0); } } requestAnimationFrame(autoScroll); }); } })();
Schedule a Call

This is private one-on-one work.

This is where we figure out what’s really going on after everything changed.

If something on this list sounds familiar, that's not a coincidence. This is exactly the kind of work I do.

I'm going through a lossGrief, disconnection, someone gone
  • I don't know who I am without them
  • I thought I'd be further along in my grief by now
  • I never got to say what I needed to say
  • I don't know how to move forward without feeling like I'm leaving them behind
  • Everything changed and I still haven't caught up
  • I keep waiting to feel normal again
Something else is going onStuck, ready for more, not sure why
  • I know I'm capable of more but I can't get out of my own way
  • I keep self-sabotaging right when things start going well
  • Who am I to want this
  • I've been doing everything for everyone else and I don't know what I actually want
  • I'm ready for the next level but I don't feel ready
  • I've been playing small and I'm tired of it
  • I built the wrong life and I'm just now seeing it
  • I know what I need to do. I just can't make myself do it.
  • I feel like I'm standing at something big and I don't know how to step into it
  • I've been living for other people's version of me
  • Something is trying to come through and I keep blocking it

Whatever brought you here — I take it seriously.

I work for God.

I serve as a tool for spirit.

Mediumship is part of the work.

Faith makes it possible.


We begin with a short call.



What to expect

You're going through something.Maybe you lost someone. Maybe your life looked fine from the outside and then one day it didn't anymore. Maybe you don't know what your next move is, and the people around you don't really get it.That's not a problem. That's a transition.People have always needed a guide for moments like this. For thousands of years, across every culture, every religion, every part of the world, there was always someone whose job it was to sit with people in the hard in-between. Not to fix it. Not to give a pep talk. Just to be there, hold the space, and help the person find their footing again.They went by different names in different times. Elder. Shaman. Priest. Spiritual director. The title kept changing. The need never did.

Here's how it works

We start with a short call. A conversation to see if this is the right fit.

From there, sessions are private and go at whatever pace makes sense.

Sometimes the work goes places neither of us expected. That's okay. We follow what shows up.

You don't need to have it figured out before you reach out. That's the whole point.


About the Work

Some losses are obvious. Someone is gone and the world changes shape around you.But sometimes the loss is you. The version of yourself you recognized.The plan you were counting on. The certainty you didn't know you were carrying until it was gone.Both are real. Both bring people here.This is private, one-on-one work. There's no group, no program, no steps. Just an honest look at where you are and where you can go from here.If something in you recognizes what you're reading, that's enough. Reach out.Schedule a call. Let's start there.

About Brian

If you feel the need to connect, you’re welcome to reach out.

Schedule a Call

Get in Touch

Message received. I'll be in touch.
const SCRIPT_URL = 'https://script.google.com/macros/s/AKfycbxVD04O7KUBkNaX3ePOSW86It01Lb1Q1nf0GG8cN8u1bwUkWUBd2iaWhF6ctCrYP0r1/exec'; document.getElementById('contact-btn').addEventListener('click', function() { document.getElementById('contact-overlay').classList.add('open'); }); document.getElementById('contact-close').addEventListener('click', function() { document.getElementById('contact-overlay').classList.remove('open'); }); document.getElementById('contact-overlay').addEventListener('click', function(e) { if (e.target === this) this.classList.remove('open'); }); document.getElementById('contact-submit').addEventListener('click', function() { var name = document.getElementById('c-name').value.trim(); var email = document.getElementById('c-email').value.trim(); var message = document.getElementById('c-message').value.trim(); if (!name || !email || !message) return; fetch(SCRIPT_URL, { method: 'POST', mode: 'no-cors', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ name, email, message }) }); document.getElementById('contact-form-wrap').style.display = 'none'; document.getElementById('contact-success').style.display = 'block'; setTimeout(function() { document.getElementById('contact-overlay').classList.remove('open'); document.getElementById('contact-form-wrap').style.display = 'block'; document.getElementById('contact-success').style.display = 'none'; document.getElementById('c-name').value = ''; document.getElementById('c-email').value = ''; document.getElementById('c-message').value = ''; }, 3000); });

I came to this work through loss.In 2015 I lost someone close to me.What I didn't expect was how much of myself went with them. The confidence, the direction, the sense of who I was.I started searching for a way back to myself and somewhere in that process I discovered I had a gift for mediumship.I took it seriously from the beginning. I studied under internationally recognized mediums and eventually made my way to Arthur Findlay College in England, one of the most respected institutions for this kind of work in the world, where I studied Healing Mediumship.That training didn't just sharpen the gift. It gave me a real understanding of how to use it responsibly and what it actually means to help someone.What I believe, at the core of all of it, is that anything is possible.
Not in a way that ignores reality, but in the sense that if you can see something for yourself, it becomes reachable. God has a plan.
Sometimes the work is just learning to listen for what it is.I'll be straight with you. Sometimes more than you're expecting. That's not something I apologize for. It's usually where things start to move.I'm based in Miami. I'm a parent. I take what I do seriously because the people who come to me are at real moments in their lives.

About Liminal Guides

The history of “liminal guides” stretches from ancient tribal traditions into modern psychology and transformation work. The term itself is modern, but the role is one of the oldest in human history.In traditional cultures, these figures were often tribal elders, shamans, healers, priestesses, or spiritual advisors. Their role was not simply to witness change, but to help people move through it. They guided individuals through major transitions like grief, initiation, illness, spiritual crisis, loss, or transformation. They helped create a stability during periods where life felt uncertain or in-between.Many cultures believed these transitional periods left a person vulnerable. The guide’s role was to protect the space, offer grounding and interpretation, and help the individual cross from one stage of life into another with greater clarity.As traditional rites of passage faded in the modern West, the role evolved rather than disappeared. The language shifted from spiritual and religious frameworks into psychology, philosophy, and archetypal work.Thinkers like Carl Jung explored these “in-between” states through ideas like the shadow, individuation, and the midlife crisis, moments where an old identity begins to dissolve before something more authentic can emerge. Later, Joseph Campbell popularized the idea that transformation often requires a mentor or guide to help someone cross the threshold into the unknown.At its core, a liminal guide is someone who helps another person navigate the space between what was and what comes next.In many ways, this is how I understand my own role in the work I do.


{ "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "What actually happens in a session?", "acceptedAnswer": { "@type": "Answer", "text": "We talk. I listen — to you, and to what else is present. What comes through guides where we go." } }, { "@type": "Question", "name": "What's the difference between this and therapy?", "acceptedAnswer": { "@type": "Answer", "text": "Therapy works with what you know. This works with what you can't quite name yet." } }, { "@type": "Question", "name": "How do I know if this is right for me?", "acceptedAnswer": { "@type": "Answer", "text": "If something brought you here, that's usually enough." } }, { "@type": "Question", "name": "Do I need to be religious?", "acceptedAnswer": { "@type": "Answer", "text": "No. I work within my own faith. Yours doesn't need to match." } }, { "@type": "Question", "name": "Can you connect with a specific person who passed?", "acceptedAnswer": { "@type": "Answer", "text": "I can't guarantee who comes through. I don't control that. I show up prepared to receive whatever is there." } }, { "@type": "Question", "name": "What if I'm skeptical?", "acceptedAnswer": { "@type": "Answer", "text": "Skepticism is fine. Openness is enough." } }, { "@type": "Question", "name": "How long is a session?", "acceptedAnswer": { "@type": "Answer", "text": "About an hour — we start with a short call before booking anything." } }, { "@type": "Question", "name": "How many sessions do I need?", "acceptedAnswer": { "@type": "Answer", "text": "That depends entirely on you. Some people come once. Some come back." } }, { "@type": "Question", "name": "Where do sessions take place?", "acceptedAnswer": { "@type": "Answer", "text": "Virtual or in person." } } ] }
The Work
What actually happens in a session?
We talk. I listen — to you, and to what else is present. What comes through guides where we go.
What's the difference between this and therapy?
Therapy works with what you know. This works with what you can't quite name yet.
How do I know if this is right for me?
If something brought you here, that's usually enough.
Faith & Mediumship
Do I need to be religious?
No. I work within my own faith. Yours doesn't need to match.
Can you connect with a specific person who passed?
I can't guarantee who comes through. I don't control that. I show up prepared to receive whatever is there.
What if I'm skeptical?
Skepticism is fine. Openness is enough.
Sessions & Logistics
How long is a session?
About an hour — we start with a short call before booking anything.
How many sessions do I need?
That depends entirely on you. Some people come once. Some come back.
Where do sessions take place?
Virtual or in person.

This is not a place to test the universe, or test whether any of this is real.If you’re here looking for it not to work, this isn’t for you.
There’s no proof I can offer that will make up for a closed mind.
This is for the person who was guided here.
Who feels something reading this and knows it’s time.
If that’s you, I’ll see you on the other side of that call.


What is Mediumship?

Mediumship is the practice of communication between the living and those who have passed away. A medium perceives information from the spirit world through impressions, emotions, memories, images, sensations, or direct knowing, and communicates it to the person they are sitting with.For many people, mediumship becomes part of the grieving and healing process after loss. Others seek it during periods of transition, uncertainty, or spiritual awakening.This work is not fortune telling or entertainment. At its core, mediumship is about communication, connection, and healing.

What is the Difference Between a Medium and a Psychic?

A psychic reads the energy of a living person, including emotional patterns, relationships, circumstances, and potential direction in life.A medium specifically works with communication from those who have died.The two abilities can overlap, but they are not the same practice. Mediumship involves a third presence: someone in spirit choosing to communicate.People searching for psychic readings are often looking for guidance about life. People seeking mediumship are usually looking for connection, clarity, healing, or confirmation after loss.

Can You Guarantee a Specific Person Will Come Through?

No.
Mediumship does not work like a phone call where a specific person can simply be requested on demand.
A medium cannot force communication from someone in spirit. Sometimes the person someone hopes to hear from comes through clearly. Sometimes another presence steps forward instead. This is part of the nature of genuine mediumship.In many cases, what comes through ends up carrying meaning or relevance that becomes clearer over time. The medium’s responsibility is to communicate what is genuinely received, not to manufacture an experience to meet expectations.

What Happens During a Mediumship Session?

The medium opens themselves to receive information from spirit and communicates what comes through as clearly and accurately as possible. This information can appear as images, emotions, sensations, memories, personality traits, words, or direct knowing.These forms of perception are often referred to as the “clairs”: clairvoyance (seeing), clairaudience (hearing), clairsentience (feeling), and claircognizance (knowing).Every session is different. Some communication is highly specific and evidential. Some is emotional. Some is subtle. The medium’s role is not to perform or control the experience, but to communicate honestly what is received.

What Should Someone Expect From a Session?

A mediumship session is a conversation between the person sitting, the medium, and the spirit world.There is no performance and no pressure to believe anything beforehand. Most people come simply looking for clarity, connection, healing, or understanding.Some information may make immediate sense. Other parts may settle in over time after reflection. The role of the medium is not to convince you of anything, but to communicate honestly and allow you to decide what the experience means for you.This is not a place to test whether any of this is real. The work asks for openness, sincerity, and presence.

What is Healing Mediumship?

Healing Mediumship is a form of spiritual healing that works through the forces and energies of God directed through the spirit world.In healing mediumship, the healing medium serves as a channel for spiritual healing energy intended to support emotional, mental, physical, and spiritual balance.This may involve light physical contact, such as placing a hand on the body, though healing can also be offered remotely or at a distance when in-person sessions are not possible.Healing mediumship is not about performance or dramatic experiences. The work is quiet, grounded, and deeply focused on care, presence, and restoration.This is the form of mediumship I trained in at Arthur Findlay College, one of the most respected institutions for mediumship and spiritual healing in the world. That training changed how I understand what mediumship is actually for, and the responsibility required to practice it with integrity.

If you feel pulled toward this, trust that. Schedule a call and we'll start there.

(function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement("script")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; if (typeof namespace === "string") { cal.ns[namespace] = cal.ns[namespace] || api; p(cal.ns[namespace], ar); p(cal, ["initNamespace", namespace]); } else p(cal, ar); return; } p(cal, ar); }; })(window, "https://app.cal.com/embed/embed.js", "init"); Cal("init", "15min", { origin: "https://app.cal.com" }); Cal.ns["15min"]("ui", { "theme": "light", "cssVarsPerTheme": {"light": {"cal-brand": "#9b8959"}}, "hideEventTypeDetails": false, "layout": "month_view" });

Disclaimer:

This is not therapy, medical care, or professional advice of any kind.This is conversation, perspective, and spiritual/faith-based guidance.Nothing shared should replace licensed support in medical, psychological, legal, financial, or business matters. If you need those, seek the appropriate professional.You are responsible for your own decisions and outcomes. No guarantees are made.This work may include intuitive or spiritual elements that are subjective in nature.By engaging, you understand and accept this.


Terms of Service

Brian Korchman
Miami, Florida, USA
Contact: [email protected]
Nature of ServicesThis is private, one-on-one work involving:
• Coaching-style conversations
• Spiritual / faith-based guidance
• Mentorship and perspective
This is not therapy, medical care, legal advice, or financial advice.No guarantees are made regarding outcomes.Booking & Payment
• Initial 15-minute introductory call is free
• Paid sessions are scheduled after the initial call
• Payment is required in advance
Payments may be processed through Cal.com, Stripe, PayPal, or other third-party providers.Refund PolicyAll sales are final.
No refunds will be issued under any circumstances.
Rescheduling & Missed Sessions
• Rescheduling may be accommodated with notice
• Sessions must be canceled at least 24 hours in advance
If no communication is made:
• The session is forfeited
• No refund will be provided
Client ResponsibilityYou understand and agree:
• You are responsible for your own decisions and actions
• This work is supportive, not directive
• Results vary and are not guaranteed
Age Considerations
• Minors must be accompanied by a parent or guardian
• All participants must understand the nature of the work
DisclaimerBy engaging in this work, you acknowledge:
This work is grounded in conversation, perspective, and spiritual/faith-based guidance.
It is not medical care, therapy, psychological treatment, legal advice, financial advice, or business consulting. Nothing shared should be taken as professional advice in those areas. If you need support in those domains, you should seek a licensed professional.This is not a substitute for therapy or clinical care.All insights, perspectives, and guidance are offered for reflection and personal consideration. You remain fully responsible for your decisions, actions, and outcomes.No guarantees are made regarding results.This work may involve intuitive or spiritual elements. By engaging, you understand and accept that these perspectives are subjective and not measurable or verifiable in a conventional sense.Participation is voluntary. You are choosing to engage in this work of your own will.If you require those services, you should seek a licensed professional.Limitation of LiabilityTo the fullest extent permitted by law:Brian Korchman shall not be liable for any direct, indirect, incidental, or consequential outcomes resulting from participation in services.Global UseServices are offered worldwide.
You are responsible for ensuring participation is permitted in your jurisdiction.
AgreementBy using this site or booking a session, you agree to these Terms.


Privacy Policy

Brian Korchman
Miami, Florida, USA
Contact: [email protected]
Information CollectedYou may provide:
• Name
• Email address
• Phone number
This information is collected through contact forms and scheduling tools.How Information Is UsedYour information is used to:
• Respond to inquiries
• Schedule calls and sessions
• Communicate regarding services
No information is sold, rented, or shared for marketing purposes.Third-Party ServicesScheduling and payments may be handled through third-party platforms such as Cal.com, Stripe, PayPal, or similar services.These platforms operate under their own privacy policies. By using them, you agree to their terms.Data ProtectionReasonable steps are taken to protect your information.
However, no method of transmission over the internet is 100% secure.
Your RightsYou may request:
• Access to your data
• Correction or deletion of your data
To do so, contact: [email protected]ScopeServices are offered worldwide. By using this site, you consent to the handling of your information under this policy.UpdatesThis policy may be updated at any time. Continued use of the site constitutes acceptance of any changes.