navigating fertility with
compassion & expertise.

Your Partner in Creating Miracles.

Infertility can be one of the most challenging, lonely and emotional journeys a person or couple can face. Causes can be as varied as those who experience it—including medical conditions, environmental consequences, and lifestyle factors—and the path to parenthood can feel overwhelming and uncertain. I am here to provide hope, guidance, expertise, and loving support through every step of this journey.

Welcome to Sacred Roots

I’m Brennan Carmody, a Family Nurse Practitioner and Fertility Coach with years of experience in women’s health and fertility care. My mission is to empower individuals and couples with personalized, holistic strategies to optimize fertility, navigate treatments, and embrace hope for the future.


Having walked this road myself—through infertility, multiple miscarriages, and ultimately, the joy of a successful pregnancy—I understand the physical, emotional, and spiritual challenges that come with it. My own journey inspired a heartfelt calling to serve others, combining evidence-based medical knowledge with a faith-centered approach to create a space where healing, hope, and new beginnings can flourish.

Read My Story

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

At Sacred Roots Fertility Consulting, the mission is to empower individuals and couples navigating the complexities of infertility with compassion, expertise, and faith. I am dedicated to providing personalized, evidence-based care that integrates holistic wellness, emotional support, and spiritual guidance.


Rooted in love and integrity, we strive to honor each client’s unique journey, offering hope, healing, and the tools needed to achieve their dream of growing their family. Through every step of the process, we seek to inspire confidence, foster resilience, champion health, and walk alongside our clients with grace and unwavering support.

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:

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);
  });
});