/* global React, Placeholder */ const { useState, useEffect, useRef, useMemo } = React; /* ============================================================ HERO — VARIANT A (cinematic full-bleed) ============================================================ */ function HeroCinematic() { return (
{/* Background */}
Private aviation · Est. 2008 · Prague

Feel the
difference
in the sky.

A Czech-flagged operator running five business jets out of Prague — from super-light Learjets to ultra-long-range Globals. Quoted in minutes, wheels-up in hours.

Get an instant quote Explore the fleet
Live operations
{[ { v: '5', l: 'Aircraft in fleet' }, { v: '11.1k', l: 'km max range' }, { v: '< 4h', l: 'Avg. response' }, { v: '24/7', l: 'Ops & dispatch' }, ].map(s => (
{s.v}
{s.l}
))}
{/* Marker bar */}
LKPR · 50.1008°N · 14.2632°E Wind 240° / 8kt · QNH 1018 Visibility 10km+ OAT 14°C
); } /* ============================================================ HERO — VARIANT B (editorial split + map) ============================================================ */ function HeroEditorial() { return (
01 / Private aviation · Prague

Anywhere
you need
to be — now.

Five business jets, hand-picked crews, and a dispatch desk that never sleeps. Quote in minutes, wheels-up in hours, anywhere from London to Dubai.

{/* Inline quick-quote */}
{[ { l: 'From', v: 'PRG' }, { l: 'To', v: 'LCY' }, { l: 'Date', v: '12 May' }, ].map(f => (
{f.l}
{f.v}
))} Quote
{[ { v: '5', l: 'Aircraft' }, { v: '160+', l: 'Destinations' }, { v: '24/7', l: 'Dispatch' }, ].map(s => (
{s.v}
{s.l}
))}
Latest dispatch
OK-GRX
Global 6000 · positioning LKPR → EGGW · ETA 14:32 UTC
); } /* ============================================================ SERVICES STRIP ============================================================ */ function Services() { const items = [ { num: '01', title: 'Aircraft Charter', desc: 'Tailored business and leisure flights, customized to the smallest detail.', img: 'Charter cabin' }, { num: '02', title: 'VIP Lounge Prague', desc: 'Private terminal lounge at LKPR Terminal 3 — open 24/7 to clients.', img: 'VIP Lounge interior' }, { num: '03', title: 'Aircraft Management', desc: 'Full operational ownership: crew, maintenance, dispatch, regulatory.', img: 'Aircraft on apron' }, { num: '04', title: 'Consulting Services', desc: 'Decades of business and cargo aviation expertise on call.', img: 'Boardroom' }, { num: '05', title: 'Flight Planning', desc: 'Licensed dispatchers planning routes worldwide, around the clock.', img: 'Dispatch desk' }, { num: '06', title: 'Aircraft Sales', desc: 'Buying or selling — we handle inspection, paperwork, and delivery.', img: 'Aircraft hangar' }, { num: '07', title: 'Cargo Transportation', desc: 'Small freight to medium loads, anywhere our fleet can reach.', img: 'Cargo loading' }, ]; const [open, setOpen] = useState(0); return (
02 — What we do

Seven services,
one operator.

From a single charter request to full ownership of your aircraft, every operation runs through the same Prague dispatch desk and the same accountable team.

{/* Left: list */}
{items.map((it, i) => { const isOpen = open === i; return (
setOpen(i)} style={{ borderTop: '1px solid var(--line)', borderBottom: i === items.length - 1 ? '1px solid var(--line)' : 'none', padding: '24px 0', cursor: 'pointer', transition: 'all var(--t-base)', }}>
{it.num}

{it.title}

{it.desc}

Learn more
); })}
{/* Right: preview */}
Service · {items[open].num}

{items[open].title}

{items[open].desc}

); } Object.assign(window, { HeroCinematic, HeroEditorial, Services });