Banner Headline: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam rhoncus non lacus eget commodo.
Call to Action
Menu
Menu
Hi,' + fname + '
'; }; }); }; let photoFilepath = data["image"]; let role = data["userRoleFormatted"] || ""; let domain = "https://d2wsrejhnxatgp.cloudfront.net/"; // Set the user profile image let url = domain + photoFilepath; if (photoFilepath === undefined || photoFilepath === "") { url = "/static/media/user_profile_logo.1943adb5.svg"; } //populate menu profile for non-SC if ( role !== "Sundance Circle") { //populate desktop menu profile jQuery('li.menu-item-14573 a').each(function(i) { let userGreeting = 'Hi,'; if (jQuery('li.menu-item-14573 a')[i].innerHTML === userGreeting) { jQuery('li.menu-item-14573 a').css("opacity", "1"); jQuery('li.menu-item-14573 a')[i].innerHTML = '
' + role + '
Hi,' + fname + '
'; }; }); //populate mobile profile name jQuery('#user-profile-name').html('
Hi, ' + fname + '
' + role + '
'); //Populate mobile profile image upper nav jQuery('#mobile-profile-image').html(''); }; //populate menu profile for SC if ( role === "Sundance Circle") { //populate desktop menu jQuery('li.menu-item-14573 a').each(function(i) { let userGreeting = 'Hi,'; if (jQuery('li.menu-item-14573 a')[i].innerHTML === userGreeting) { jQuery('li.menu-item-14573 a').css("opacity", "1"); jQuery('li.menu-item-14573 a')[i].innerHTML = '
' + role + '
Hi,' + fname + '
'; }; }); //populate mobile name and user type for SC jQuery('#user-profile-name').html('
Hi, ' + fname + '
' + role + '
'); //Populate mobile profile image upper nav jQuery('#mobile-profile-image').html(''); }; //show my festival menu links jQuery('.my-fest-mobile').show(); //Populate mobile profile // jQuery('.mobile-profile').html('
Hi, ' + fname + ''); //show user profile menu on desktop jQuery('elementor-nav-menu--layout-horizontal li.menu-item-14573').show(); jQuery(".mobile_menu .menu-item-14573").css("display","none") // Hide Sign In / Register jQuery('li.menu-item-1281').hide(); // Show Cart Icon //jQuery('.cart_icon').show(); //jQuery('.cart_header_column').show(); // Show Schedule Icon //jQuery('.calendar_header_column').show(); //jQuery('.calendar_icon').show(); // Widen nav_header_column// jQuery('.nav_header_column').css("width","80%"); //hide search Icon// jQuery('.search_icon').hide(); //show/hide desktop profile Item depending on screensize// if(jQuery(window.width() < 768) {// //show user profile menu// jQuery('li.menu-item-1260').show();// } else {// jQuery('li.menu-item-1260').hide();// }); jQuery('.mobile_logged_in').show(); jQuery('.mobile_logged_out').hide();} else { // Hide My Library jQuery('li.menu-item-942').hide(); // Hide Hi, User jQuery('li.menu-item-14573').hide(); // Hide role specific pages jQuery('li.menu-item-22560').hide(); jQuery('li.menu-item-22561').hide(); jQuery('li.menu-item-22562').hide(); // Show Sign In / Register jQuery('li.menu-item-1281').show(); // Widen nav_header_column// jQuery('.nav_header_column').css("width","80%"); //hide upper sign-in button jQuery(".upper-sign-in-button").show(); //increase upper nav column width jQuery(".upper-nav-col").css("width","30%"); //decrease logo col width jQuery(".logo-col").css("width","55%"); //align sign-in button jQuery('.upper-sign-in-button').css("margin-bottom","0px !important"); // Hide Cart Icon //jQuery('.cart_header_column').hide(); //jQuery('.cart_icon').hide(); // Hide Schedule Icon //jQuery('.calendar_header_column').hide(); //jQuery('.calendar_icon').hide(); //show my festival menu links jQuery('.my-fest-mobile').hide(); //hide search Icon// jQuery('.search_icon').hide(); jQuery('.mobile_logged_in').hide(); jQuery('.mobile_logged_out').show();}// Sign OutjQuery(".menu-item-object-custom .menu-item-1261 a").click(function(event) { signOut(event);});jQuery(".mobile-sign-out").click(function(event) { signOut(event);});jQuery(".mobile-logout-button").click(function(event) { signOut(event);});// Show Cart Items (hidden during off season)if (loggedinData) { data = JSON.parse(loggedinData); jQuery.ajax({ url: cartUrl, type: 'post', data: { "userToken": data["token"] }, headers: { auth: "Bearer 5iMhxOXyxzKylr41AY5X6BljYpCBK1n6" }, dataType: 'json', success: function (data) { if (data.message.count > 0) { jQuery('.cart_items').html(data.message.count); jQuery('.cart_items').show(); } } });}// Open SearchjQuery(".search_icon").click(function(event) { jQuery('.elementor-element-6eba26eb').show();});// Close SearchjQuery(".close_search").click(function(event) { event.preventDefault; event.stopPropogation; event.stopImmediatePropogation; jQuery('.elementor-element-6eba26eb').hide();});// NOTE: DISABLED Spaceship for SFF23 as New Frontier cancelled.// Set the Spaceship link//let tokenData = getCookie("myLoginToken");let tokenData = false;if (tokenData) { jQuery.ajax({ url: 'https://digitalcms.sundance.org:3000/api/thirdPartyToken', type: 'post', data: {"id": "62bc1275092076223a6764c5","redirectLink": "https://newfrontier.sundance.org/"}, headers: { Authorization: "Bearer " + tokenData }, dataType: 'json', success: function (data) { jQuery('li.menu-item-934 a').attr('href',data.URL); } });}// Toggle the mobile menujQuery("#elementor-popup-modal-2099 .dialog-close-button").click(function(event) { event.preventDefault; event.stopPropogation; event.stopImmediatePropogation; jQuery('.toggle_menu').removeClass('navmenu-active'); var pathname = window.location.pathname; window.history.pushState("object or string", "Title", pathname);});jQuery("#elementor-popup-modal-2099 .dialog-widget-content").on("transitionend webkitTransitionEnd oTransitionEnd", function(){ //do something here console.log('mobile popup animationend');}, false);// Do not search if less than two charactersjQuery(".sd_enter_serach").click(function(event) { event.preventDefault(); if (jQuery("#serach_form input")[0].value.length < 2) { jQuery(".sd_error_msg").html('Enter at least two characters to search.'); jQuery("#search_input").attr("placeholder", ""); } else { jQuery(".sd_error_msg").html(''); jQuery("#serach_form").submit(); }});// when user clicks to start typing in the search input, hide error messagejQuery("#search_input").click(function(event) { event.preventDefault(); jQuery(".sd_error_msg").html('');});jQuery(".sd_error_msg").click(function(event) { event.preventDefault(); jQuery(".sd_error_msg").html('');});}jQuery( document ).ready(function() { configHeader();});//--------------------------------// Re-run configHeader once mobile menu is Open//-------------------------------- // Select the entire DOM for observing:const target = document.querySelector('body'); // Create a new observer instance:const observer = new MutationObserver(function() { if (document.getElementById('elementor-popup-modal-2099')) { //jQuery('.toggle_menu').toggleClass('navmenu-active'); //jQuery('body,html').toggleClass('dialog-prevent-scroll'); setTimeout(() => { var pathname = window.location.pathname; window.history.pushState("object or string", "Title", pathname); }, "10"); //jQuery('.toggle_menu').toggleClass('navmenu-active'); configHeader(); }}); // Set configuration object:const config = { childList: true }; // Start the observerobserver.observe(target, config);
Sign In
Highlights
- October 22, 2024
- October 22, 2024
It’s almost time to dust off that down puffer coat, slip on those all-weather boots, and take to Park City and Salt Lake City, Utah, for the 2025 Sundance Film Festival. Whether you’re coming to catch the latest independent premieres, attend talks, or meet new friends, finding the right place to stay is crucial. But don’t stress. We’re here to help! Offering a wide range of lodging options for every kind of traveler, our official lodging partner’s booking site is the best resource for finding the right place to stay. From affordable hotels and cozy cabins to lavish resorts, there’s something for every budget.
For those seeking a luxurious experience, the official hotel partner of the Fest is World of Hyatt, offering fabulous accommodations just minutes from the heart of the action on Main Street. If you’re looking for more economical choices, Park City and the surrounding areas have plenty of options like condos, lodges, and budget-friendly hotels. Make your search easier using the Popular Sundance Features filter, and look out for our special recommendations — they’ll have the SFF Pick tag!
But don’t wait too long! Cinephiles love to flock to Park City, so accommodations during the Festival tend to fill up fast. Book early to ensure you get the best rates and a place that suits your needs. Below, we’ve highlighted some of our favorite spots to help jump-start your search.
FOR THOSE LOOKING TO ACCESS THE SUNDANCE SHUTTLE
Hyatt Centric Park City
The Hyatt Centric Park City is close to Main Street, offers ski-in/ski-out access, is pet friendly, and features the Escala Provisions Company, a restaurant serving locally sourced comfort food and unique cocktails.
Montage Deer Valley
The Montage Deer Valley offers picturesque views, live music at its Vista lounge, and nightly homemade s’mores.
Newpark Resort
The Newpark Resort offers easy access to ski resorts, and the rooms feature cozy gas fireplaces, heated bathroom floors, and private hot tub decks.
Waldorf Astoria Park City
This Forbes Travel Guide four-star resort is just a 10-minute drive from most Fest venues and features an opulent spa; elevated comfort food at Powder, the on-site restaurant; and is pet friendly
FOR THOSE LOOKING TO WALK TO PARK CITY THEATERS
The Caledonian
Get a front-row seat to downtown action from the private hot tub right over Main Street or from your balcony at The Caledonian, which features luxury condos equipped with fireplaces and full kitchens.
Join the Fest buzz right when you step out of this hotel, which is located near Main Street, and enjoy private balconies with city views and private hot tubs in select suites.
FOR THOSE ON A BUDGET
Best Western Plus Landmark Inn
This Best Western is walking distance from a Whole Foods, the rooms come with in-unit fireplaces and jetted tubs, and the property has an indoor heated pool, hot tub, and sauna.
FOR THE SKIERS
Grand Summit Hotel at Canyons Village
This family-friendly hotel includes a child care center and ski school, and guests can warm up in the heated outdoor pool and hot tub set among beautiful mountain views.
FOR THOSE LOOKING TO WALK TO SALT LAKE CITY THEATERS
The Grand America Hotel
Located near Broadway Centre Cinemas and Rose Wagner Performing Arts Center, where many of our films screen, The Grand America Hotel features French Richelieu furnishings, Italian marble soaking tubs in the suites, and an expansive indoor pool.
FOR THOSE LOOKING FOR LUXURY
Hotel Park City
This hotel is a short walk to many Fest venues and has herbal-infused steam rooms and hydrotherapy at the on-site spa, a Ruth’s Chris Steakhouse, and fitness classes at the complimentary fitness facility.
Stein Eriksen Lodge
This lodge features professional on-site child care services, in-room massage options, and two outdoor heated pools and hot tubs.
St. Regis Deer Valley
This property offers the ability to ski directly to the hotel or bar, a snow beach with award-winning specialty cocktails, and a heated, split-level outdoor pool with infinity edge.
PRESENTING SPONSORS
PRESENTING SPONSORS
FESTIVAL HOST STATE
FESTIVAL HOST STATE
LEADERSHIP SPONSORS
LEADERSHIP SPONSORS
SUSTAINING SPONSORS
SUSTAINING SPONSORS
MEDIA SPONSORS
MEDIA SPONSORS
VIEW ALL SPONSORS
January 23–February 2
January 23–February 2
Festival News
& Updates
Sign Up
[form_submit_test]
Sign Up
Festival News
& Updates
Top Links
Merch
Highlights
Lodging
Sundance Industry Office
Press Center
Customer Support
Tickets
In Person
Online
How to Fest
At a Glance
Ticketing
Attend in Person
Watch Online
Accessibility
Donors
Press
Industry
My Festival
My Account
Log Out
Sign In
Create Account
Top Links
Merch
Highlights
Lodging
Sundance Industry Office
Press Center
Customer Support
How to Fest
At a Glance
Ticketing
Attend in Person
Watch Online
Accessibility
Donors
Press
Industry
Tickets
In Person
Online
My Festival
Sign In
Create Account
Log Out
My Account
Copyright © 2024 Sundance Institute, All Rights Reserved
About Sundance Institute
Community Agreement
Privacy Policy
Privacy Policy
About Sundance Institute
Community Agreement
Copyright © 2024 Sundance
Institute, All Rights Reserved