A very ‘Yule-VA’ victory: Alumni couple wins Hallmark baking show premiere

“The Great British Bake Off” is a smash hit, so it didn’t take long for spin-offs to pop up. The Hallmark Channel recently debuted its own take on the wholesome concept, “Baked With Love: Holiday.”

A married pair of Wahoos, college sweethearts, won with their take on a classic holiday confection: the yule log.

Hallmark poster advertising Saman Zomorodi and Susan Gravatt’s show “Baked With Love: Holiday.”

Gravatt and Zomorodi are college sweethearts who married in December 2022, partly due to their love of Christmas. (Image provided by Hallmark)

“We present to you our dark bark and snow yule log,” Saman Zomorodi, a 2014 graduate of the University of Virginia School of Architecture, announced to the judges.

“To complete it, we’ve got the Iranian pistachios,” added Susan Gravatt, who graduated the same year from the College of Arts & Sciences.

Then the judges dug in. “I love that,” said Vaughn Vreeland, with The New York Times’ NYT Cooking website. He noted how the mascarpone filling cut through the bitter, dark chocolate used to mimic tree bark texture.

For the show, Hallmark recruited 10 pairs of bakers, including Gravatt and Zomorodi. After deliberating, the other judge, acclaimed Irish chef Anna Haugh, had an announcement of her own: “We think that there is one team in particular that stood out,” she said. “It is Susan and Saman. We felt that Susan and Saman captured the festive feeling, the festive flavors. They really showed a lot of skill.”

Susan Gravatt and Shravya Kovela on the Lawn when they were both students at UVA

Gravatt and her UVA bestie, Shravya Kovela, pose on the Lawn. Kovela introduced Gravatt to Zomorodi. (Photo contributed by Gravatt)

“We felt incredibly grateful and proud to have not just made it through the first round, but to have won it,” Gravatt said. “We were surrounded by such talented bakers from the very beginning, so winning while all the teams were still in the competition felt like a huge and unexpected accomplishment.”

How do you get on a baking show?

The story of how the couple, married in December 2022, came to be on Hallmark’s “Baked” is as suspenseful as that first bake off. Gravatt developed a love for baking during the COVID-19 pandemic and posted photos of her beautiful creations on her Instagram account. A producer for the show saw them and invited her to come on the show. The only twist was that she had to be part of a pair.

Discovery and Innovation: Daily research. Life-changing results.
Discovery and Innovation: Daily research. Life-changing results.

Her husband is not really a baker, so first Gravatt tried her Aunt Susan, a baker and another UVA graduate. “No, thank you,” came the reply. Gravatt also knew her mother would not be interested. So she turned to her husband. “Would you?” she asked. “And he was like, ‘Well, I guess I’ll do it.’ And he really didn't hesitate.”

You’ll love this yule log

“Baked With Love: Holiday” is all about baking and family recipes. So, Gravatt and Zomorodi went all in, blending her American upbringing in Buena Vista with his Iranian roots.

Susan Gravatt singing with the UVA choir Jubilate on the steps of the Rotunda

Gravatt sings with Jubilate, the oldest Christian choir at the University of Virginia, at the 2013 Lighting of the Lawn. (Photo contributed by Gravatt)

The pair won two of the show’s eight episodes, the second for . Their last appearance on the show was during the semifinals on Dec. 8.

One of Gravatt’s credos is that anyone can bake beautiful cookies, pies, cupcakes and cakes. She has quit her day job to go all in on baking with her brand, , drawing heavily from her schoolteacher parents as she teaches at her for-hire cookie-decorating parties.

Don’t be intimidated by the yule log. She says you’ll love it.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Print Recipe'); printWindow.document.write(''); printWindow.document.write('

鶹ƽ

'); // Write the content of the selected accordion into the print window printWindow.document.write(content.innerHTML); // Close the body and html tags printWindow.document.write(''); // Wait for the content to load before triggering the print dialog printWindow.document.close(); // Necessary for the content to fully load // Trigger the print dialog for the new window printWindow.print(); // Close the print window after printing printWindow.close(); // Restore the visibility of the print button after printing printButton.style.display = 'inline-block'; } document.addEventListener("DOMContentLoaded", function() { 'use strict'; // Accordion functionality class Accordion { constructor(domNode) { // Target the root of the accordion this.rootEl = domNode; // Get the button that triggers the accordion (with aria-expanded and aria-controls) this.buttonEl = this.rootEl.querySelector('.accordion-trigger'); // Get the id of the content panel from aria-controls attribute of the button const controlsId = this.buttonEl.getAttribute('aria-controls'); this.contentEl = document.getElementById(controlsId); // Check if the content element exists if (!this.contentEl) { console.error('Accordion content panel not found for aria-controls:', controlsId); return; } // Set the initial state of the accordion (open or closed) this.open = this.buttonEl.getAttribute('aria-expanded') === 'true'; // Add event listener to toggle on button click this.buttonEl.addEventListener('click', this.onButtonClick.bind(this)); } // Method called when the button is clicked onButtonClick() { this.toggle(!this.open); } // Method to toggle the accordion's open/close state toggle(open) { // If the state doesn't change, do nothing if (open === this.open) { return; } // Update internal state this.open = open; // Update the aria-expanded attribute on the button this.buttonEl.setAttribute('aria-expanded', `${open}`); // Show or hide the content based on the open state if (open) { this.contentEl.removeAttribute('hidden'); } else { this.contentEl.setAttribute('hidden', ''); } } // Public methods for opening and closing the accordion directly open() { this.toggle(true); } close() { this.toggle(false); } } // Initialize all accordions on the page document.querySelectorAll('.accordion').forEach((accordionEl) => { new Accordion(accordionEl); }); });

Media Contacts

Jane Kelly

University News Senior Associate Office of University Communications