Pan Am Is Back! This Time as an Airport Hotel Chain.

Engine Marketing
October 15, 2025
Pan Am Is Back! This Time as an Airport Hotel Chain.

Story quick summary

Pan Am is being revived as an airport hotel brand focused on terminal-convenient locations, retro design cues, and fast digital check-in to streamline overnight stays around major hubs.

Concept targets airport districts and frequent flyer corridors

Design language references classic Pan Am while adding modern tech

Positioning emphasizes quick turnarounds, early flights, and day-use options

Why it matters for travelers If Pan Am delivers reliable airport-proximate inventory with predictable check-in and late checkout, it could simplify tight schedules, missed connections, and early departures.

Airport-area focus Retro brand aesthetic Digital check-in Late checkout options

Copy summary Copy story link Share on X Share on LinkedIn

(function () { var summary = document.getElementById('summary-takeaway').innerText.trim(); var url = window.location.href;

// Copy summary document.getElementById('copy-summary-btn').addEventListener('click', function () { navigator.clipboard.writeText(summary).then(function () { alert('Summary copied'); }); });

// Copy link document.getElementById('copy-link-btn').addEventListener('click', function () { navigator.clipboard.writeText(url).then(function () { alert('Link copied'); }); });

// Share links var textParam = encodeURIComponent(summary); var urlParam = encodeURIComponent(url); document.getElementById('share-twitter').setAttribute('href', 'https://twitter.com/intent/tweet?text=' + textParam + '&url=' + urlParam); document.getElementById('share-linkedin').setAttribute('href', 'https://www.linkedin.com/sharing/share-offsite/?url=' + urlParam); })();

{ "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [{ "@type": "Question", "name": "What is the new Pan Am airport hotel concept?", "acceptedAnswer": { "@type": "Answer", "text": "A hotel brand inspired by the historic Pan Am name that focuses on properties near major airports with quick digital check in and classic retro styling." } },{ "@type": "Question", "name": "Why would airport area hotels appeal to frequent travelers?", "acceptedAnswer": { "@type": "Answer", "text": "They reduce transfer time, support early departures and missed connections, and offer predictable amenities for short stays between flights." } }] }

A classic airline name is returning to terminals with a new airport-first hotel concept. The pitch blends mid-century style with day-use rooms, shower suites, and crew-friendly operations aimed at fixing the modern layover.

A new hotel brand using the classic Pan Am name is being developed for major airports, with first openings targeted for 2028. The concept blends mid-century design cues with 24-hour operations, day-use flexibility, and services aimed at travelers stuck between flights.

What the Pan Am Hotel brand is promising

The plan positions Pan Am Hotel as an airport-first lifestyle brand. Expect a mix of hourly micro-stays, standard rooms for disrupted itineraries, and crew contract blocks. Supporting features may include quiet work pods, shower suites, reliable soundproofing, and landside access so guests can arrive without clearing security first. The developer has indicated it will operate properties directly and is pursuing a pipeline of airport sites, with early focus on Europe and additional locations under discussion.

Timing and rollout

Initial openings are slated for 2028. Specific airports have not been announced, but the target list favors large hubs where walking times, security queues, and irregular operations create sustained demand for recovery options near the gate.

PAN AM is coming back as an airport hotel chainHow this differs from other nostalgia plays

Airline heritage in hospitality is not new. The Pan Am concept appears to lean more into operations that serve real layover needs, such as day-use inventory, crew solutions, and predictable quiet hours, rather than only building a design showpiece. A separate Pan Am-themed project in Los Angeles under Hilton’s Tapestry Collection is planned for 2026 at the Citadel Outlets. That property is off-airport and distinct from the airport-focused chain described here.

Yes No

One vote per device. Results update instantly.

.eng-poll{--accent:#ff4700;--border:#e5e7eb;--bg:#fff;--text:#111827;--muted:#6b7280; border:1px solid var(--border);border-left:4px solid var(--accent);background:var(--bg); color:var(--text);border-radius:14px;padding:16px;box-shadow:0 8px 24px rgba(0,0,0,.06);max-width:900px;margin:24px auto} .eng-poll__q{font-weight:700;font-size:1.05rem;margin-bottom:12px} .eng-poll__options{display:flex;gap:10px;flex-wrap:wrap} .eng-poll__btn{border:1px solid var(--border);background:#fff;color:var(--text); border-radius:10px;padding:10px 14px;font-weight:600;cursor:pointer} .eng-poll__btn[disabled]{opacity:.6;cursor:not-allowed} .eng-poll__results{margin-top:14px;display:grid;gap:10px} .eng-row{display:flex;justify-content:space-between;align-items:center;color:var(--muted)} .eng-bar{border:1px solid var(--border);border-radius:10px;overflow:hidden;background:#fafafa} .eng-fill{height:28px;background:var(--accent);display:flex;align-items:center;padding:0 10px;color:#fff;font-weight:700} .eng-poll__foot{margin-top:8px;color:var(--muted)} body[data-theme="dark"] .eng-poll{--bg:#0f1115;--text:#e5e7eb;--border:#23262b;--muted:#9aa0a6;box-shadow:none} body[data-theme="dark"] .eng-poll__btn{background:#0b0d11;color:var(--text);border-color:#23262b} body[data-theme="dark"] .eng-bar{background:#0b0d11;border-color:#23262b}

(function(){ function ready(fn){ if(document.readyState!=='loading'){fn()} else {document.addEventListener('DOMContentLoaded',fn)} }

ready(function(){ var root = document.getElementById('eng-poll-1'); if(!root) return;

var question = root.getAttribute('data-question') || 'Would you stay at a Pan Am Hotel?'; root.querySelector('.eng-poll__q').textContent = question;

// Poll identity per page var canonical = document.querySelector('link[rel="canonical"]'); var pageUrl = canonical && canonical.href ? canonical.href : window.location.href; var pollKey = 'engPoll:'+encodeURIComponent(pageUrl);

// Seed counts: [Yes, No] var SEED = [173, 26];

// Load state or initialize with seed var state = load(); if(!state){ state = { counts: SEED.slice(), votedIdx: null }; save(state); }

var optionsEl = root.querySelector('.eng-poll__options'); var resultsEl = root.querySelector('.eng-poll__results');

// If already voted on this device, show results immediately if(state.votedIdx !== null){ optionsEl.hidden = true; renderResults(); resultsEl.hidden = false; }

// Wire buttons root.querySelectorAll('.eng-poll__btn').forEach(function(btn){ btn.addEventListener('click', function(){ if(state.votedIdx !== null) return; var idx = parseInt(btn.getAttribute('data-idx'),10); state.votedIdx = idx; state.counts[idx] = (state.counts[idx] || 0) + 1; save(state);

// Swap views: hide question/options, show tally optionsEl.hidden = true; renderResults(); resultsEl.hidden = false; }); });

function renderResults(){ var yes = state.counts[0] || 0; var no = state.counts[1] || 0; var total = yes + no || 1; var yesPct = Math.round((yes/total)*100); var noPct = Math.round((no/total)*100);

resultsEl.innerHTML = row('Yes', yes, yesPct) + bar(yesPct) + row('No', no, noPct) + bar(noPct); }

function row(label, count, pct){ return ''+label+''+pct+'% ('+count+')

'; } function bar(pct){ return ''+(pct?pct+'%':'')+'

'; }

function load(){ try{ return JSON.parse(localStorage.getItem(pollKey)); }catch(e){ return null; } } function save(s){ try{ localStorage.setItem(pollKey, JSON.stringify(s)); }catch(e){} } }); })();

Early brand touchpoints

A Berlin lounge and suite carrying the Pan Am name, along with two boutique hotels in Vienna labeled “operated by Pan Am Hotel,” have been used to preview aesthetic cues and service standards that could carry into the airport portfolio. You can take a peek at those two locations here and here.

Why airport hotels are getting a rethink

Airports are evolving into mixed-use districts with rail links, retail, and office components. That shift opens new real estate plots and changes guest expectations. A brand that treats delays, tight connections, and early arrivals as core use cases can build demand that is not tied only to overnight stays. On-airport assets also benefit from non-discretionary demand created by disruptions and crew scheduling.

What to watch next

Site announcements that show how the brand balances landside convenience with gate proximity

Airline partnerships for delay vouchers and crew scheduling

Day-use pricing transparency and app flows that show live checkpoint times and walking distance

The broader Pan Am revival arc

The hotel plan arrives alongside other efforts that trade on the brand’s legacy, such as specialty trips and terminal restorations. These projects target different traveler segments but signal ongoing commercial interest in Pan Am imagery.

Share this story

Copy

Share X LinkedIn Facebook Email

.eng-share{--eng-border:#e5e7eb;--eng-text:#111827;--eng-muted:#6b7280;--eng-bg:#ffffff;--eng-accent:#ff4700;--eng-radius:14px;--eng-shadow:0 8px 24px rgba(0,0,0,.06);border:1px solid var(--eng-border);border-left:4px solid var(--eng-accent);background:var(--eng-bg);color:var(--eng-text);border-radius:var(--eng-radius);padding:16px;box-shadow:var(--eng-shadow);max-width:900px;margin:24px auto} .eng-share__header{display:flex;align-items:center;gap:8px;font-weight:700;font-size:1.05rem} .eng-share__row{display:flex;gap:8px;margin-top:12px} .eng-share__input{flex:1;border:1px solid var(--eng-border);border-radius:10px;padding:10px 12px;font-size:.95rem;color:var(--eng-text);background:#fff;outline:none} .eng-share__copy{white-space:nowrap;border:1px solid var(--eng-accent);background:var(--eng-accent);color:#fff;border-radius:10px;padding:10px 14px;font-weight:600;cursor:pointer} .eng-share__buttons{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px} .eng-share__btn{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--eng-border);border-radius:10px;padding:8px 12px;font-weight:600;font-size:.9rem;cursor:pointer;text-decoration:none;color:var(--eng-text);background:#fff} .eng-share__btn:hover,.eng-share__copy:hover{filter:brightness(.97)} body[data-theme="dark"] .eng-share{--eng-bg:#0f1115;--eng-text:#e5e7eb;--eng-border:#23262b;--eng-muted:#9aa0a6;box-shadow:none} body[data-theme="dark"] .eng-share__input{background:#0b0d11;color:var(--eng-text);border-color:#23262b} body[data-theme="dark"] .eng-share__btn{background:#0b0d11;color:var(--eng-text);border-color:#23262b}

(function initEngShare(){ function ready(fn){ if(document.readyState!=='loading'){fn()} else {document.addEventListener('DOMContentLoaded',fn)} } ready(function(){ var wrap = document.getElementById('eng-share-1'); if(!wrap) return;

// 1) Resolve URL: data-url > canonical > location var pageUrl = (wrap.getAttribute('data-url') || '').trim(); if(!pageUrl){ var link = document.querySelector('link[rel="canonical"]'); pageUrl = link && link.href ? link.href : window.location.href; } var pageTitle = document.title.replace(/\s+\|\s+.*/,'').trim() || 'This story'; var input = wrap.querySelector('.eng-share__input'); var copyBtn = wrap.querySelector('.eng-share__copy');

input.value = pageUrl;

function copyToClipboard(){ var val = pageUrl; if(navigator.clipboard && window.isSecureContext){ navigator.clipboard.writeText(val).then(showOK, showOK); }else{ input.select(); try{ document.execCommand('copy'); }catch(e){} showOK(); } } function showOK(){ var original = copyBtn.textContent; copyBtn.textContent = 'Copied'; setTimeout(function(){ copyBtn.textContent = original; }, 1500); } copyBtn.addEventListener('click', copyToClipboard);

function openShare(which){ var url = encodeURIComponent(pageUrl); var title = encodeURIComponent(pageTitle); if(which==='native' && navigator.share){ navigator.share({title: pageTitle, text: pageTitle, url: pageUrl}).catch(function(){}); return; } var href = '#'; if(which==='x'){ href = 'https://x.com/intent/tweet?text='+title+'&url='+url; } if(which==='linkedin'){ href = 'https://www.linkedin.com/sharing/share-offsite/?url='+url; } if(which==='facebook'){ href = 'https://www.facebook.com/sharer/sharer.php?u='+url; } if(which==='email'){ href = 'mailto:?subject='+title+'&body='+title+'%0A%0A'+url; } if(href!=='#'){ window.open(href, '_blank', 'noopener'); } }

wrap.querySelectorAll('.eng-share__btn').forEach(function(btn){ btn.addEventListener('click', function(e){ var which = btn.getAttribute('data-share'); if(which){ e.preventDefault(); openShare(which); } }); }); }); })();

Table Of Contents
A hotel, a car, and a luggage
Engine streamlines business travel.
Join for Free
Share This Article: