navigating fertility with
compassion & expertise.

Personalized, evidence-based fertility care from a licensed Nurse Practitioner, combining functional and conventional medicine to uncover root causes and guide you toward natural conception or IVF success.

Welcome to Sacred Roots

Compassionate, Evidence-Based Fertility Services Rooted in Functional Medicine Based in Eagle, Idaho

I’m Brennan Carmody, FNP-C, a Board-Certified Family Nurse Practitioner (AANP) licensed in Idaho and Washington, and the founder of Sacred Roots Fertility Consulting, PLLC.

I combine the precision of Western reproductive medicine with the depth of functional, root-cause fertility care to help women and couples finally understand why conception isn’t happening—and create a clear, personalized plan to restore balance and optimize fertility.

My medical background and years of clinical experience have shaped the foundation of my practice—but my heart for this work comes from living it myself.

Read My Story

Your Partner in Creating Miracles.

Fertility struggles are complex, and no two journeys are alike. Through a compassionate, evidence-based approach, I help you uncover the underlying causes and create a clear plan to support your body, restore balance, and optimize your chances of conception.

At Sacred Roots, we believe in:

  • Faith & Grace

    Trusting in God’s plan while empowering you with the tools and support to take the next step forward.

  • Holistic Care

    Addressing your physical, emotional, and spiritual well-being to create the best foundation for a healthy pregnancy.

  • Expertise and Compassion

    Drawing on years of medical experience and personal insight to guide you with empathy and precision.

Our Mission

My mission is to bridge medical science, functional medicine, and faith to help women and couples uncover the why behind infertility and restore the body’s natural ability to conceive.

Through personalized, evidence-based care, I guide each client in preparing their body—just like training for a marathon—strengthening the foundations of health, balancing hormones, and nurturing hope along the way.

At Sacred Roots Fertility, I believe fertility is not just about conception—it’s about healing, alignment, and trusting God’s perfect timing. My goal is to help every couple move from confusion to clarity, from fear to faith, and from waiting to preparation for the family they were created to have.

Our Services

A Message of Hope

“For I know the plans I have for you,” declares the Lord, “plans to prosper you and not to harm you, plans to give you hope and a future.”

– Jeremiah 29:11

Our Services

We offer a comprehensive range of services to support you wherever you are in your fertility journey: 

Note: Sacred Roots Fertility does not perform assisted reproductive procedures. All IVF/IUI treatements are conducted in partnership with your reproductive endocrinologist.

Explore Our Services

In-depth evaluations to identify factors impacting fertility and tailored recommendations for improvement.

Personalized strategies for diet, exercise, and stress management to optimize fertility.

In-depth evaluations to identify factors impacting fertility and tailored recommendations for improvement.

Comprehensive strategies to create the best possible foundation for conception and a healthy pregnancy.

Guidance in understanding your menstrual cycle and faith-based family planning methods.

Compassionate care to navigate the emotional challenges of infertility and miscarriage, with faith-centered encouragement.

Empathetic guidance to process loss and prepare for future pregnancies.

/* The purpose of the script is to have the aria-expanded and aria-controls attributes for web accessibility. 
 You can remove this script and the accordion will still work. */
const btnFaq = document.querySelectorAll('.faq-4__question');
const contentFaq = document.querySelectorAll('.faq-4__answer');

btnFaq.forEach((button) => {
  button.addEventListener('click', () => {
    // Gets the current state of the button
    const isExpanded = button.getAttribute('aria-expanded') === 'true';

    // Reset all buttons to "false".
    btnFaq.forEach((currentBtn) => {
      currentBtn.setAttribute('aria-expanded', 'false');
    });

    // Changes the status of the current button
    button.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
  });
});

// Load function after HTML content is loaded
document.addEventListener('DOMContentLoaded', function () {
  // Make a tour on each button there is
  btnFaq.forEach((button, i) => {
    const contentId = contentFaq[i].getAttribute('id');
    button.setAttribute('aria-controls', contentId);
  });
});