:root {
  color-scheme: dark;
  --ink: #07141d;
  --text: #f7fbfd;
  --muted: #b7c7cf;
  --panel: #0d2533;
  --panel-raised: #15323f;
  --lime: #e9ff70;
  --ink-2: #0d2533;
  --sky: #15323f;
  --blue: #98dfff;
  --orange: #e9ff70;
  --mist: #0d2533;
  --line: #30454e;
  --white: #fff;
  --shadow: 0 22px 60px rgba(8, 35, 61, .13);
  --display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  font-family: Inter, Roboto, system-ui, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--panel);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
body::before {
  background-image:
    linear-gradient(rgba(8, 35, 61, .9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 35, 61, .9) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  opacity: .035;
  pointer-events: none;
  position: fixed;
  z-index: 20;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.shell { margin-inline: auto; width: min(1180px, calc(100% - 40px)); }
.skip-link {
  background: var(--panel);
  left: 8px;
  padding: 10px;
  position: fixed;
  top: 8px;
  transform: translateY(-160%);
  z-index: 1000;
}
.skip-link:focus { transform: none; }

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(8, 35, 61, .1);
  display: flex;
  gap: 24px;
  height: 86px;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { align-items: center; display: flex; gap: 12px; line-height: 1; }
.brand-mark {
  background: linear-gradient(145deg, var(--sky) 0 54%, var(--orange) 55% 64%, var(--panel) 65%);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: block;
  height: 42px;
  position: relative;
  width: 42px;
}
.brand-mark::after {
  border-radius: 50%;
  border-top: 3px solid var(--ink);
  content: "";
  height: 8px;
  left: 8px;
  position: absolute;
  right: 8px;
  top: 12px;
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.42rem;
  letter-spacing: .04em;
}
.brand em { color: var(--orange); font-style: normal; }
.brand small {
  color: var(--muted);
  display: block;
  font-size: .62rem;
  letter-spacing: .18em;
  margin-top: 6px;
}
.main-nav {
  align-items: center;
  display: flex;
  font-size: .88rem;
  font-weight: 600;
  gap: 25px;
}
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
  background: var(--orange);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 100%;
  transition: .25s;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-cta { background: var(--ink); border-radius: 8px; color: var(--text); padding: 12px 18px; }
.menu-button, .mobile-book { display: none; }

.eyebrow {
  color: var(--blue);
  font-family: var(--display);
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-hero {
  align-items: center;
  display: grid;
  gap: 68px;
  grid-template-columns: 1.08fr .92fr;
  min-height: 650px;
  padding: 64px 0 48px;
}
.hero-copy h1, .inner-copy h1, .booking-copy h1 {
  font-family: var(--display);
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  letter-spacing: -.035em;
  line-height: .9;
  margin: 20px 0 26px;
  text-transform: uppercase;
}
.hero-copy h1 em { color: var(--orange); display: block; font-style: normal; }
.lead { color: var(--muted); font-size: 1.11rem; max-width: 680px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  min-height: 50px;
  padding: 13px 22px;
}
.button.primary { background: var(--orange); box-shadow: 0 10px 25px rgba(233, 255, 112, .12); color: var(--text); }
.button.primary:hover { background: var(--panel); }
.button.ghost { background: var(--panel); border-color: var(--line); }
.button.white { background: var(--panel); color: var(--text); }
.button.full { width: 100%; }
.text-link { align-items: center; display: inline-flex; font-weight: 700; gap: 10px; }
.text-link span { color: var(--orange); }
.micro-trust { color: var(--muted); display: flex; flex-wrap: wrap; font-size: .78rem; font-weight: 600; gap: 18px; margin-top: 30px; }
.micro-trust span { align-items: center; display: flex; gap: 8px; }
.micro-trust span::before { background: var(--orange); content: ""; height: 6px; transform: rotate(45deg); width: 6px; }
.hero-visual { justify-self: end; position: relative; width: min(440px, 100%); }
.hero-visual::before { background: var(--sky); content: ""; height: 90%; left: -28px; position: absolute; top: 45px; width: 100%; z-index: -1; }
.hero-visual img {
  box-shadow: var(--shadow);
  clip-path: polygon(8% 0, 100% 0, 100% 93%, 92% 100%, 0 100%, 0 8%);
  height: 530px;
  object-fit: cover;
  object-position: center 32%;
  width: 100%;
}
.altitude-rail {
  align-items: center;
  bottom: 70px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  position: absolute;
  right: -36px;
  top: 50px;
}
.altitude-rail span { font-family: var(--display); font-size: 1.2rem; font-weight: 800; writing-mode: vertical-rl; }
.altitude-rail i { background: rgba(255, 255, 255, .65); flex: 1; margin: 9px; width: 1px; }
.altitude-rail small { font-size: .6rem; letter-spacing: .15em; writing-mode: vertical-rl; }
.hero-badge { background: var(--ink); bottom: 24px; box-shadow: var(--shadow); color: var(--text); left: -45px; min-width: 210px; padding: 18px 24px; position: absolute; }
.hero-badge small, .hero-badge span { display: block; }
.hero-badge small { color: var(--muted); font-size: .65rem; letter-spacing: .18em; }
.hero-badge strong { font-family: var(--display); font-size: 1.45rem; }
.hero-badge span { color: var(--muted); font-size: .74rem; }

.route-strip { background: var(--ink); color: var(--text); }
.route-strip-inner { align-items: center; display: flex; gap: 20px; min-height: 100px; }
.route-label { color: var(--muted); font-size: .65rem; letter-spacing: .18em; writing-mode: vertical-rl; }
.route-strip-inner div { align-items: center; display: flex; gap: 10px; white-space: nowrap; }
.route-strip-inner b { color: var(--orange); font-family: var(--display); font-size: 1.3rem; }
.route-strip-inner span { font-size: .82rem; }
.route-strip-inner i { background: var(--panel); flex: 1; height: 1px; }

.section { padding: 110px 0; }
.section-heading > span, .section-heading div > span, .light-heading > span, .review-proof span, .final-cta span {
  color: var(--orange);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-heading h2, .light-heading h2, .pilot-section h2, .review-proof h2, .final-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
  letter-spacing: -.02em;
  line-height: .95;
  margin: 12px 0 0;
  text-transform: uppercase;
}
.split-heading { align-items: end; display: flex; gap: 50px; justify-content: space-between; margin-bottom: 42px; }
.split-heading > p { color: var(--muted); margin: 0; max-width: 460px; }
.region-grid { display: grid; gap: 24px; grid-template-columns: 1.1fr .9fr; }
.region-card { background: var(--panel); border: 1px solid var(--line); display: grid; grid-template-columns: 46% 54%; min-height: 430px; overflow: hidden; }
.region-image { position: relative; }
.region-image img { height: 100%; object-fit: cover; width: 100%; }
.region-image > span { background: var(--orange); bottom: 0; color: var(--text); font-size: .68rem; font-weight: 700; left: 0; letter-spacing: .1em; padding: 9px 13px; position: absolute; }
.region-body { display: flex; flex-direction: column; padding: 36px; }
.region-body small { color: var(--blue); font-size: .68rem; font-weight: 700; letter-spacing: .13em; }
.region-body h3 { font-family: var(--display); font-size: 3.2rem; line-height: 1; margin: 12px 0; }
.region-body p { color: var(--muted); }
.region-body > a { border-top: 1px solid var(--line); font-weight: 700; margin-top: auto; padding-top: 20px; }
.region-body > a b { color: var(--orange); float: right; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-row span { border: 1px solid var(--line); border-radius: 5px; font-size: .71rem; padding: 6px 9px; }
.ormanli-card { background: var(--ink); color: var(--text); display: flex; flex-direction: column; }
.ormanli-card .region-image { height: 220px; flex-shrink: 0; }
.ormanli-card .region-body { height: auto; flex: 1; }
.ormanli-card .region-body p { color: var(--muted); }
.ormanli-card .region-body > a { border-color: var(--line); }

.flight-section { background: var(--ink); color: var(--text); padding: 110px 0; }
.light-heading { max-width: 800px; }
.light-heading h2 { color: var(--text); }
.light-heading p { color: var(--muted); }
.flight-grid { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr .9fr; margin-top: 50px; }
.flight-grid > article { border-right: 1px solid var(--line); padding: 42px; position: relative; }
.flight-grid > .recommended { background: var(--panel); }
.recommend-label { background: var(--orange); font-size: .66rem; font-weight: 800; letter-spacing: .12em; padding: 7px 12px; position: absolute; right: 0; top: 0; }
.flight-number { color: var(--text); font-family: var(--display); font-size: 5.2rem; font-weight: 800; line-height: .9; }
.flight-number span { color: var(--muted); font-size: 1.4rem; }
.flight-grid h3 { font-family: var(--display); font-size: 1.8rem; margin: 20px 0 0; }
.flight-grid article > p { color: var(--muted); margin: 4px 0 18px; }
.flight-grid article > strong { color: var(--orange); font-family: var(--display); font-size: 2.4rem; }
.flight-grid article > strong small { color: var(--muted); font-size: .85rem; }
.flight-grid ul { list-style: none; margin: 20px 0; padding: 0; }
.flight-grid li { color: var(--muted); font-size: .85rem; padding: 5px 0; }
.flight-grid li::before { color: var(--muted); content: "✓"; margin-right: 9px; }
.flight-grid article > a { color: var(--text); font-weight: 700; }
.flight-grid > aside { background: var(--orange); color: var(--text); padding: 42px; }
.flight-grid aside small { letter-spacing: .15em; }
.flight-grid aside h3 { font-size: 2.2rem; line-height: 1.05; }
.flight-grid aside p { font-size: .92rem; }
.flight-grid aside > a { border-top: 1px solid rgba(255, 255, 255, .35); display: block; font-weight: 700; margin-top: 30px; padding-top: 18px; }

.pilot-section { align-items: center; display: grid; gap: 80px; grid-template-columns: .75fr 1.25fr; padding: 120px 0; }
.pilot-section figure { margin: 0; position: relative; }
.pilot-section figure::before { background: var(--sky); bottom: -22px; content: ""; height: 90%; left: -22px; position: absolute; width: 86%; z-index: -1; }
.pilot-section figure img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.pilot-section figcaption { background: var(--ink); bottom: 24px; color: var(--text); padding: 16px 20px; position: absolute; right: -25px; }
.pilot-section figcaption span, .pilot-section figcaption strong { display: block; }
.pilot-section figcaption span { color: var(--muted); font-size: .65rem; letter-spacing: .12em; }
.pilot-section figcaption strong { font-family: var(--display); font-size: 1.1rem; }
.pilot-title { color: var(--muted); font-size: 1.12rem; }
.pilot-principles { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); margin: 32px 0; }
.pilot-principles > div { border-top: 2px solid var(--ink); display: flex; gap: 12px; padding-top: 15px; }
.pilot-principles b { color: var(--orange); font-family: var(--display); }
.pilot-principles span { color: var(--muted); font-size: .78rem; }
.pilot-principles strong { color: var(--text); display: block; font-size: .88rem; }

.guide-section { padding-bottom: 110px; }
.guide-grid { border-top: 1px solid var(--line); }
.guide-grid > a { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 24px; grid-template-columns: 70px 1fr 30px; padding: 28px 10px; transition: .2s; }
.guide-grid > a:hover { background: var(--mist); padding-left: 20px; }
.guide-grid > a > span { color: var(--muted); font-family: var(--display); font-size: 2rem; }
.guide-grid small { color: var(--orange); font-size: .66rem; font-weight: 700; letter-spacing: .15em; }
.guide-grid h3 { font-family: var(--display); font-size: 1.8rem; line-height: 1; margin: 7px 0; }
.guide-grid p { color: var(--muted); font-size: .9rem; margin: 0; }
.guide-grid > a > b { color: var(--orange); font-size: 1.4rem; }

.review-proof { background: var(--panel); color: var(--text); }
.review-proof-inner { align-items: center; display: flex; gap: 50px; justify-content: space-between; min-height: 250px; }
.review-proof span { color: var(--muted); }
.review-proof h2 { font-size: 3rem; }
.review-proof p { color: var(--muted); max-width: 660px; }
.home-faq { padding: 100px 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0; }
.faq-list summary { cursor: pointer; font-family: var(--display); font-size: 1.55rem; font-weight: 700; list-style: none; padding: 23px 48px 23px 0; position: relative; }
.faq-list summary::after { color: var(--orange); content: "+"; font-size: 1.8rem; position: absolute; right: 8px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { color: var(--muted); margin: 0; max-width: 850px; padding: 0 0 24px; }
.final-cta { background: var(--mist); border-top: 1px solid var(--line); }
.final-cta-inner { align-items: center; display: grid; gap: 80px; grid-template-columns: 1.2fr .8fr; padding: 80px 0; }
.final-cta h2 { font-size: 3.6rem; }
.final-cta p { color: var(--muted); }

.breadcrumb { color: var(--muted); display: flex; flex-wrap: wrap; font-size: .75rem; gap: 10px; padding-top: 26px; }
.breadcrumb strong { color: var(--text); }
.inner-hero-grid { align-items: center; display: grid; gap: 70px; grid-template-columns: 1fr .72fr; min-height: 540px; padding: 42px 0; }
.inner-copy h1 { font-size: clamp(3.2rem, 6.5vw, 6rem); }
.inner-visual { margin: 0; position: relative; }
.inner-visual img { box-shadow: var(--shadow); height: 430px; object-fit: cover; width: 100%; }
.inner-visual figcaption { background: var(--ink); bottom: 0; color: var(--text); font-size: .68rem; left: 0; padding: 8px 12px; position: absolute; }
.route-board, .region-poster { background: var(--ink); color: var(--text); display: flex; flex-direction: column; justify-content: flex-end; min-height: 360px; overflow: hidden; padding: 40px; position: relative; }
.route-board::before, .region-poster::before { border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 35px rgba(62, 112, 143, .12), 0 0 0 70px rgba(62, 112, 143, .08); content: ""; height: 260px; position: absolute; right: -70px; top: -60px; width: 260px; }
.route-board small, .region-poster small { color: var(--muted); left: 35px; letter-spacing: .15em; position: absolute; top: 30px; }
.route-board strong, .region-poster strong { font-family: var(--display); font-size: 3.5rem; line-height: .9; max-width: 90%; text-transform: uppercase; }
.route-board span, .region-poster span { color: var(--muted); margin-top: 12px; }
.region-poster { background: linear-gradient(145deg, var(--panel), var(--panel)); }
.region-poster i { background: var(--orange); border-radius: 50%; height: 12px; left: 60%; position: absolute; top: 43%; width: 12px; }
.region-poster i::after { border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; content: ""; height: 70px; left: -30px; position: absolute; top: -30px; width: 70px; }
.fact-strip { background: var(--sky); border-left: 5px solid var(--orange); display: grid; grid-template-columns: repeat(3, 1fr); }
.fact-strip div { border-right: 1px solid var(--line); padding: 21px 28px; }
.fact-strip span, .fact-strip strong { display: block; }
.fact-strip span { color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.fact-strip strong { font-family: var(--display); font-size: 1.22rem; }
.content-section { padding: 90px 0; }
.detail-sections { margin-left: auto; max-width: 900px; }
.detail-sections article { border-top: 1px solid var(--line); display: grid; gap: 22px; grid-template-columns: 80px 1fr; padding: 36px 0; }
.detail-sections article > span { color: var(--muted); font-family: var(--display); font-size: 2.2rem; }
.detail-sections h2 { font-family: var(--display); font-size: 2.1rem; line-height: 1; margin: 0 0 12px; }
.detail-sections p { color: var(--muted); margin: 0; max-width: 760px; }
.pilot-note { background: var(--mist); border-left: 3px solid var(--orange); display: flex; gap: 18px; margin: 35px 0 0 auto; max-width: 900px; padding: 24px; }
.pilot-note > span { background: var(--ink); border-radius: 50%; color: var(--text); display: grid; flex: none; font-family: var(--display); font-weight: 700; height: 42px; place-items: center; width: 42px; }
.pilot-note strong { font-family: var(--display); font-size: 1.2rem; }
.pilot-note p { color: var(--muted); font-size: .85rem; margin: 3px 0; }
.related-section { padding: 0 0 100px; }
.related-section .section-heading { margin-bottom: 28px; }
.related-grid { border-left: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.related-grid a { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); display: flex; flex-direction: column; font-weight: 700; justify-content: space-between; min-height: 120px; padding: 22px; }
.related-grid a:hover { background: var(--sky); }
.related-grid b { align-self: flex-end; color: var(--orange); }
.content-section > .faq-list { margin-left: auto; max-width: 900px; }

.booking-hero { padding-bottom: 100px; }
.booking-grid { align-items: start; display: grid; gap: 90px; grid-template-columns: .85fr 1.15fr; padding-top: 55px; }
.booking-copy { position: sticky; top: 130px; }
.booking-copy h1 { font-size: 5.5rem; }
.booking-steps { border-top: 1px solid var(--line); margin-top: 40px; }
.booking-steps > div { border-bottom: 1px solid var(--line); display: grid; gap: 12px; grid-template-columns: 38px 1fr; padding: 18px 0; }
.booking-steps b { color: var(--orange); font-family: var(--display); }
.booking-steps span { color: var(--muted); font-size: .82rem; }
.booking-steps strong { color: var(--text); display: block; font-size: .9rem; }
.booking-form { background: var(--ink); box-shadow: var(--shadow); color: var(--text); padding: 42px; }
.form-heading { border-bottom: 1px solid var(--line); display: flex; gap: 20px; justify-content: space-between; margin-bottom: 30px; padding-bottom: 18px; }
.form-heading span { font-family: var(--display); font-size: 1.4rem; font-weight: 700; }
.form-heading strong { color: var(--muted); font-size: .72rem; }
.booking-form label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .03em; margin-bottom: 17px; }
.booking-form input, .booking-form select, .booking-form textarea { background: var(--panel); border: 1px solid var(--line); border-radius: 5px; color: var(--text); display: block; margin-top: 7px; min-height: 50px; padding: 13px 14px; width: 100%; }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: var(--muted); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: 2px solid var(--line); outline-offset: 2px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.consent { align-items: flex-start; color: var(--muted); display: flex !important; font-weight: 400 !important; gap: 10px; }
.consent input { flex: none; height: 18px; margin: 3px 0 0; min-height: 0; width: 18px; }
.form-note { color: var(--muted); font-size: .7rem; margin: 15px 0 0; text-align: center; }

.site-footer { background: var(--panel); color: var(--text); padding: 70px max(24px, calc((100vw - 1180px) / 2)) 24px; }
.footer-grid { display: grid; gap: 55px; grid-template-columns: 1.5fr repeat(3, .75fr); }
.footer-brand .brand-mark { border-color: var(--line); }
.footer-grid p { color: var(--muted); font-size: .84rem; max-width: 380px; }
.footer-grid h2 { color: var(--muted); font-family: var(--display); font-size: 1.2rem; margin: 0 0 18px; }
.footer-grid > div > a:not(.brand) { color: var(--muted); display: block; font-size: .82rem; margin: 9px 0; }
.footer-bottom { border-top: 1px solid var(--line); color: var(--muted); display: flex; font-size: .7rem; justify-content: space-between; margin-top: 48px; padding-top: 20px; }

@media (max-width: 980px) {
  .main-nav { align-items: stretch; background: var(--panel); box-shadow: var(--shadow); display: none; flex-direction: column; left: 0; padding: 24px; position: absolute; right: 0; top: 86px; }
  .main-nav.open { display: flex; }
  .menu-button { align-items: center; background: transparent; border: 0; color: var(--text); display: flex; flex-direction: column; gap: 4px; }
  .menu-button span { background: var(--ink); height: 2px; width: 24px; }
  .menu-button b { font-size: .75rem; margin-top: 2px; }
  .home-hero { gap: 35px; grid-template-columns: 1fr .75fr; }
  .hero-visual img { height: 470px; }
  .region-grid { grid-template-columns: 1fr; }
  .flight-grid { grid-template-columns: 1fr 1fr; }
  .flight-grid > aside { grid-column: 1 / -1; }
  .pilot-section { gap: 45px; }
  .pilot-principles { grid-template-columns: 1fr; }
  .inner-hero-grid { gap: 35px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .booking-grid { gap: 45px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { height: 72px; padding: 0 14px; }
  .brand-mark { height: 36px; width: 36px; }
  .brand strong { font-size: 1.2rem; }
  .brand small { font-size: .53rem; }
  .main-nav { top: 72px; }
  .mobile-book { align-items: center; background: var(--orange); bottom: 0; box-shadow: 0 -5px 20px rgba(8, 35, 61, .18); color: var(--text); display: flex; height: 68px; justify-content: space-between; left: 0; padding: 0 18px; position: fixed; right: 0; z-index: 45; }
  .mobile-book span { font-size: .74rem; }
  .mobile-book strong { font-family: var(--display); font-size: 1.3rem; text-transform: uppercase; }
  .home-hero { display: flex; flex-direction: column; min-height: 0; padding: 38px 0 62px; }
  .hero-copy h1 { font-size: 3.5rem; }
  .lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1; }
  .hero-visual { align-self: flex-end; margin-top: 25px; width: 92%; }
  .hero-visual img { height: 460px; }
  .hero-badge { left: -26px; }
  .altitude-rail { right: 10px; }
  .micro-trust { gap: 10px; }
  .route-strip-inner { gap: 12px; min-height: 78px; overflow: auto; }
  .route-strip-inner i { min-width: 35px; }
  .route-label { display: none; }
  .section, .flight-section { padding: 75px 0; }
  .split-heading { display: block; }
  .split-heading > p { margin-top: 18px; }
  .section-heading h2, .light-heading h2, .pilot-section h2 { font-size: 2.8rem; }
  .region-card { display: block; }
  .region-image { height: 260px; }
  .region-body { min-height: 330px; padding: 28px; }
  .flight-grid { grid-template-columns: 1fr; }
  .flight-grid > article { border-bottom: 1px solid var(--line); border-right: 0; padding: 32px; }
  .flight-grid > aside { grid-column: auto; padding: 32px; }
  .pilot-section { display: block; padding: 80px 0; }
  .pilot-section figure { margin-bottom: 60px; width: 88%; }
  .pilot-section figcaption { right: -25px; }
  .pilot-principles { margin-bottom: 28px; }
  .guide-grid > a { gap: 12px; grid-template-columns: 42px 1fr 20px; }
  .guide-grid p { display: none; }
  .review-proof-inner { display: block; padding: 55px 0; }
  .review-proof .button { margin-top: 20px; }
  .final-cta-inner { display: block; padding: 60px 0; }
  .final-cta h2 { font-size: 2.8rem; }
  .inner-hero-grid { display: flex; flex-direction: column; padding: 35px 0 0; }
  .inner-copy h1 { font-size: 3.7rem; }
  .inner-visual, .route-board, .region-poster { min-height: 300px; width: 100%; }
  .inner-visual img { height: 330px; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact-strip div { border-bottom: 1px solid var(--line); border-right: 0; padding: 16px 20px; }
  .content-section { padding: 65px 0; }
  .detail-sections article { grid-template-columns: 46px 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .related-grid a { min-height: 105px; }
  .booking-grid { display: block; padding-top: 35px; }
  .booking-copy { position: static; }
  .booking-copy h1 { font-size: 4rem; }
  .booking-form { margin-top: 45px; padding: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { gap: 35px; grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin: 5px 0; }
}

@media (max-width: 440px) {
  .hero-copy h1 { font-size: 3.1rem; }
  .hero-actions { display: grid; }
  .hero-visual { width: 96%; }
  .hero-visual img { height: 420px; }
  .hero-badge { min-width: 180px; padding: 14px 18px; }
  .flight-number { font-size: 4.4rem; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* newweb content expansion: readable type, directories and explicit price comparison. */
:focus-visible { outline: 3px solid var(--line); outline-offset: 4px; }
[id] { scroll-margin-top: 110px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero-copy, .inner-copy, .booking-copy, .directory-card { min-width: 0; }
.hero-copy h1, .inner-copy h1, .booking-copy h1 { line-height: 1.04; letter-spacing: -.025em; overflow-wrap: anywhere; }
.hero-copy h1 { font-size: clamp(2.8rem, 4.1vw, 4.2rem); }
.inner-copy h1 { font-size: clamp(2.45rem, 4.1vw, 4.1rem); }
.section-heading h2, .pilot-section h2, .final-cta h2, .detail-sections h2 { line-height: 1.12; overflow-wrap: anywhere; }
.brand small, .hero-badge small, .altitude-rail small, .guide-grid small, .region-body small, .region-image > span, .recommend-label, .fact-strip span, .inner-visual figcaption { font-size: .75rem; }
.brand small { letter-spacing: .08em; }
.micro-trust, .tag-row span, .hero-badge span, .pilot-principles span, .booking-steps span, .booking-form label, .form-heading strong, .form-note, .breadcrumb, .mobile-book span { font-size: .875rem; }
.booking-form input, .booking-form select, .booking-form textarea { font-size: 1rem; }
.button.primary, .recommend-label, .region-image > span, .mobile-book { color: var(--text); }
.altitude-rail { right: 14px; }
.nav-group { position: relative; }
.nav-group > summary { cursor: pointer; list-style: none; padding: 15px 0; white-space: nowrap; }
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary::after { content: '+'; padding-left: 7px; color: var(--muted); }
.nav-group[open] > summary::after { content: '−'; }
.nav-panel { position: absolute; top: 100%; left: -20px; min-width: 260px; background: var(--panel); padding: 12px; box-shadow: var(--shadow); border: 1px solid var(--line); border-top: 3px solid var(--orange); }
.nav-panel a { display: block; padding: 10px 12px; font-size: .9rem; }
.nav-panel a:hover, .nav-panel a:focus-visible { background: var(--sky); }
.nav-panel a::after { display: none; }
.region-price { color: var(--muted); font-size: 2.2rem; line-height: 1.3; margin: 4px 0 24px; }
.region-price small { color: var(--muted); font-size: .875rem; }
.ormanli-card .region-body > small { color: var(--muted); }
.ormanli-card .tag-row { margin-bottom: 26px; }
.flight-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.flight-grid > article { padding: 36px 28px; }
.flight-word { font-family: var(--display); font-size: clamp(2.5rem, 3.5vw, 3.2rem); font-weight: 800; line-height: 1.48; }
.ormanli-flight { background: var(--panel); }
.flight-links { display: flex; flex-wrap: wrap; gap: 22px; padding-top: 25px; }
.flight-links a { font-weight: 600; text-decoration: underline; text-underline-offset: 5px; color: var(--muted); }
.inner-hero-grid { min-height: 0; grid-template-columns: 1.4fr 1fr; align-items: start; padding: 50px 0; }
.inner-visual img { height: 350px; }
.article-toc { background: var(--mist); border-top: 3px solid var(--orange); padding: 25px 28px; }
.article-toc > .eyebrow { display: block; padding-bottom: 16px; }
.article-toc a { border-top: 1px solid var(--line); padding: 12px 0; display: flex; gap: 13px; font-size: .95rem; line-height: 1.45; }
.article-toc a span { color: var(--muted); font-size: .875rem; min-width: 20px; }
.article-toc a:hover { color: var(--muted); }
.detail-sections { margin-inline: auto; }
.detail-sections p { line-height: 1.85; }
.detail-sections article > span { font-size: 1.8rem; }
.detail-sections h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.article-meta, .table-note { color: var(--muted); font-size: .875rem; }
.article-faq { max-width: 900px; margin: 55px auto 0; }
.article-faq h2 { font-size: 1.9rem; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-top: 3px solid var(--orange); }
table { border-collapse: collapse; width: 100%; text-align: left; min-width: 680px; }
caption { text-align: left; padding: 20px; font-size: 1.1rem; font-weight: 700; color: var(--text); background: var(--sky); }
th, td { padding: 18px 20px; vertical-align: top; border-bottom: 1px solid var(--line); }
thead { background: var(--mist); font-size: .875rem; }
tbody th { max-width: 230px; }
tbody td { max-width: 290px; }
.price-cell { white-space: nowrap; font-weight: 800; }
.table-cta { display: inline-block; white-space: nowrap; text-decoration: underline; text-underline-offset: 4px; font-size: .9rem; }
.price-comparison { margin-bottom: 50px; }
.directory-hero { grid-template-columns: 1fr; max-width: 900px; }
.directory-section { margin-bottom: 55px; }
.directory-section h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); }
.directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.directory-card { display: flex; flex-direction: column; padding: 26px; background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--ink); }
.directory-card:hover { border-top-color: var(--orange); background: var(--mist); }
.directory-card > span { font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.directory-card h3 { font-size: 1.4rem; line-height: 1.25; margin: 14px 0; }
.directory-card p { font-size: 1rem; color: var(--muted); margin: 0 0 22px; }
.directory-card b { margin-top: auto; color: var(--muted); }
.gallery-grid { columns: 3; column-gap: 24px; margin-bottom: 60px; }
.gallery-grid figure { break-inside: avoid; margin: 0 0 28px; }
.gallery-grid img { width: 100%; aspect-ratio: auto; height: auto; }
.gallery-grid a { display: block; }
.gallery-grid a:focus-visible { outline: 3px solid var(--orange); outline-offset: 5px; }
.article-media { min-width: 0; width: 100%; }
.article-media .inner-visual { margin: 0 0 28px; }
.article-media .inner-visual img { height: auto; max-height: 480px; object-fit: contain; box-shadow: none; }
.article-media .article-toc { margin-top: 24px; }
.gallery-grid figcaption { padding-top: 14px; font-size: .9rem; }
.source-callout { background: var(--sky); padding: 30px; margin-bottom: 45px; }
.booking-summary { padding: 22px; margin-bottom: 25px; border: 1px solid var(--line); background: var(--panel); }
.booking-summary > span { display: block; color: var(--muted); font-size: .875rem; }
.booking-summary > strong { display: block; color: var(--muted); font-size: 2rem; line-height: 1.3; margin-top: 7px; }
.booking-summary > p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 0; }
.booking-form noscript a { text-decoration: underline; }
@media (max-width: 1100px) {
  .site-header { gap: 16px; }
  .main-nav { gap: 14px; }
  .brand strong { font-size: 1.2rem; }
  .main-nav { align-items: stretch; background: var(--panel); box-shadow: var(--shadow); display: none; flex-direction: column; left: 0; padding: 24px; position: absolute; right: 0; top: 86px; }
  .main-nav.open { display: flex; max-height: calc(100dvh - 100px); overflow-y: auto; }
  .menu-button { align-items: center; background: transparent; border: 0; color: var(--text); display: flex; flex-direction: column; gap: 4px; }
  .menu-button span { background: var(--ink); height: 2px; width: 24px; }
  .menu-button b { font-size: .875rem; margin-top: 2px; }
  .nav-panel { position: static; box-shadow: none; border: 0; border-left: 2px solid var(--orange); min-width: 0; }
}
@media (max-width: 1000px) {
  .main-nav.open { max-height: calc(100dvh - 86px); overflow-y: auto; align-items: stretch; }
  .nav-group > summary { padding: 12px 0; }
  .nav-panel { position: static; box-shadow: none; border: 0; border-left: 2px solid var(--orange); min-width: 0; padding: 0 0 0 10px; }
  .nav-panel a { padding: 10px; }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inner-hero-grid { gap: 30px; }
}
@media (max-width: 720px) {
  .main-nav { top: 72px; }
  .home-hero { gap: 22px; }
  .hero-copy h1, .inner-copy h1, .booking-copy h1 { font-size: clamp(2.2rem, 8.2vw, 3.3rem); }
  .inner-hero-grid { display: flex; flex-direction: column; padding: 30px 0; }
  .article-toc { width: 100%; padding: 20px; }
  .content-section { padding: 45px 0; }
  .detail-sections article { gap: 15px; grid-template-columns: 30px 1fr; padding: 27px 0; }
  .detail-sections article > span { font-size: 1.2rem; padding-top: 5px; }
  .flight-grid { grid-template-columns: 1fr; }
  .flight-word { font-size: 3rem; line-height: 1.2; }
  .flight-links { display: grid; gap: 14px; }
  .directory-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .gallery-grid img { max-height: none; }
  .main-nav.open { max-height: calc(100dvh - 140px); }
  .brand small { font-size: .75rem; letter-spacing: .04em; }
  .brand { gap: 8px; }
  .brand strong { font-size: 1.1rem; }
  .booking-form { padding: 24px 18px; }
  .form-heading { display: block; }
  .form-heading strong { display: block; margin-top: 6px; }
  .region-body { padding: 26px; }
}

/* Futuristic direction, matching the owner's coming-soon reference. */
body {
  background:
    radial-gradient(ellipse at 8% 0%, rgba(152,223,255,.15), transparent 850px),
    radial-gradient(ellipse at 100% 650px, rgba(233,255,112,.065), transparent 650px),
    var(--ink);
  color: var(--text);
}
body::before {
  inset: auto -200px -220px auto;
  width: 540px; height: 540px;
  border: 1px solid rgba(233,255,112,.08);
  border-radius: 50%;
  background: none; opacity: 1; z-index: -1;
}
::selection { color: var(--ink); background: var(--lime); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 5px; }
.site-header { background: rgba(7,20,29,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { gap: 12px; }
.brand-mark, .footer-brand .brand-mark {
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(233,255,112,.03); border: 1px solid rgba(233,255,112,.55);
  box-shadow: inset 0 0 0 5px rgba(233,255,112,.045);
  color: var(--lime); font-size: .82rem; font-weight: 600; letter-spacing: .02em;
}
.brand-mark::after { display: none; }
.brand strong { font-size: 1.05rem; font-weight: 600; letter-spacing: .19em; }
.brand em { color: var(--text); }
.brand small { font-size: .75rem; color: var(--muted); letter-spacing: .1em; }
.nav-group > summary::after { color: var(--lime); }
.nav-panel { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 20px 60px #0005; }
.nav-panel a { border-radius: 8px; }
.nav-cta, .button.primary { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.nav-cta { border-radius: 999px; padding: 12px 22px; }
.button { border-radius: 999px; min-height: 54px; padding: 16px 25px; font-size: 1rem; font-weight: 650; }
.button.primary { box-shadow: 0 0 28px rgba(233,255,112,.07); }
.button.primary:hover, .nav-cta:hover { background: #f2ffa8; border-color: #f2ffa8; }
.button.ghost, .button.white { background: transparent; border-color: #627781; color: var(--text); }
.button.ghost:hover, .button.white:hover { background: var(--panel-raised); border-color: var(--muted); }
.eyebrow { color: var(--lime); letter-spacing: .2em; font-weight: 600; font-size: .875rem; }
.home-hero { padding: 95px 0 90px; min-height: 760px; gap: 54px; grid-template-columns: 1.15fr .85fr; }
.hero-copy h1 { font-size: clamp(3.8rem, 6.3vw, 5.9rem); line-height: 1; letter-spacing: -.055em; font-weight: 400; margin: 24px 0 28px; }
.hero-location { display: block; max-width: 440px; color: var(--muted); font-size: 1rem; font-weight: 400; letter-spacing: .015em; line-height: 1.6; text-transform: none; margin-bottom: 24px; }
.hero-copy h1 em { color: var(--text); font-weight: 400; font-style: normal; }
.lead { color: var(--muted); font-size: 1.06rem; line-height: 1.8; }
.micro-trust { font-weight: 400; color: var(--muted); gap: 12px 20px; }
.micro-trust span::before { transform: none; width: 4px; height: 4px; border-radius: 50%; }
.hero-visual { isolation: isolate; width: 100%; max-width: 440px; }
.hero-visual::before { inset: -18px; width: auto; height: auto; background: none; border: 1px solid rgba(233,255,112,.28); border-radius: 140px 24px 140px 24px; }
.hero-visual img { clip-path: none; border-radius: 125px 16px 125px 16px; height: 530px; box-shadow: 0 32px 70px #0004; }
.hero-badge { bottom: 32px; left: -20px; padding: 20px 24px; background: rgba(7,20,29,.94); border: 1px solid var(--line); border-radius: 16px; min-width: 195px; }
.hero-badge strong { font-size: 1.25rem; font-weight: 500; }
.hero-badge small { color: var(--lime); font-weight: 600; letter-spacing: .2em; margin-bottom: 5px; }
.hero-badge span { color: var(--muted); }
.altitude-rail { right: 20px; top: 95px; bottom: 125px; text-shadow: 0 1px 6px #000; }
.route-strip { background: rgba(13,37,51,.4); border-block: 1px solid var(--line); }
.route-strip-inner { min-height: 90px; }
.route-strip-inner b { font-size: 1rem; font-weight: 500; }
.route-label { color: var(--muted); }
.route-strip-inner i { background: var(--line); }
.section-heading h2, .light-heading h2, .pilot-section h2, .review-proof h2, .final-cta h2 {
  font-weight: 400; letter-spacing: -.045em; line-height: 1.08; font-size: clamp(2.3rem,4.5vw,3.8rem);
}
.region-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.region-card, .ormanli-card { display: flex; flex-direction: column; background: rgba(13,37,51,.7); border: 1px solid var(--line); border-radius: 24px; min-height: 0; }
.region-image, .ormanli-card .region-image { height: 285px; flex-shrink: 0; overflow: hidden; }
.region-image img { transition: transform .4s ease; }
.region-card:hover .region-image img { transform: scale(1.025); }
.region-image > span { bottom: 18px; left: 20px; background: var(--ink); color: var(--lime); border: 1px solid var(--line); border-radius: 999px; }
.region-body, .ormanli-card .region-body { flex: 1; padding: 30px; height: auto; }
.region-body h3 { font-size: 2.65rem; font-weight: 400; letter-spacing: -.035em; }
.region-body small, .ormanli-card .region-body > small { color: var(--lime); }
.region-body p, .ormanli-card .region-body p { color: var(--muted); }
.region-body > a, .ormanli-card .region-body > a { border-color: var(--line); }
.region-price { color: var(--lime); font-weight: 500; }
.tag-row { margin-bottom: 24px; }
.tag-row span { border-radius: 999px; color: var(--muted); padding: 5px 12px; }
.flight-section { background: linear-gradient(155deg,rgba(152,223,255,.045),rgba(233,255,112,.025)); border-block: 1px solid var(--line); }
.flight-grid { border: 0; gap: 20px; }
.flight-grid > article, .flight-grid > .recommended, .flight-grid > .ormanli-flight { background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 42px 28px 30px; }
.flight-grid > .recommended { background: linear-gradient(145deg,rgba(233,255,112,.09),var(--panel) 70%); border-color: #85974f; }
.recommend-label { top: 12px; right: 12px; border-radius: 999px; color: var(--ink); padding: 5px 12px; font-size: .75rem; }
.flight-number, .flight-word { font-weight: 400; letter-spacing: -.05em; }
.flight-number { font-size: 4.8rem; line-height: 1.1; }
.flight-word { font-size: 3.2rem; line-height: 1.65; }
.flight-number span { color: var(--lime); font-weight: 400; }
.flight-grid h3 { font-size: 1.45rem; font-weight: 500; }
.flight-grid article > strong { font-weight: 500; }
.flight-grid li::before, .flight-links a { color: var(--lime); }
.pilot-section figure::before { border: 1px solid var(--line); background: none; border-radius: 26px; }
.pilot-section figure img { border-radius: 24px; }
.pilot-section figcaption { border: 1px solid var(--line); border-radius: 14px; background: rgba(7,20,29,.96); }
.pilot-section figcaption span { color: var(--lime); }
.pilot-principles > div { border-color: var(--line); }
.guide-grid h3 { font-weight: 450; letter-spacing: -.02em; }
.guide-grid > a { border-radius: 0; padding-block: 30px; }
.review-proof { background: var(--panel); border-block: 1px solid var(--line); }
.review-proof span { color: var(--lime); }
.faq-list summary { font-weight: 450; font-size: 1.3rem; line-height: 1.5; }
.final-cta { background: radial-gradient(ellipse at 100% 100%,rgba(233,255,112,.065),transparent 65%); }
.inner-copy h1, .booking-copy h1 { font-weight: 400; letter-spacing: -.045em; line-height: 1.1; font-size: clamp(2.7rem,4.9vw,4.5rem); }
.inner-visual img, .gallery-grid img { border-radius: 20px; }
.inner-visual figcaption { position: static; display: block; background: none; padding: 12px 0; color: var(--muted); }
.article-toc, .fact-strip, .table-scroll, .source-callout, .booking-form, .booking-summary { border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.article-toc { border-top: 1px solid #85974f; }
.article-toc a:hover, .directory-card b { color: var(--lime); }
.fact-strip div { border-color: var(--line); }
.fact-strip strong { font-weight: 500; }
.detail-sections h2 { font-weight: 500; line-height: 1.3; }
.detail-sections article > span { color: var(--lime); font-weight: 400; }
.related-grid { border: 0; gap: 14px; }
.related-grid a { border: 1px solid var(--line); border-radius: 16px; font-weight: 500; background: rgba(13,37,51,.5); }
.directory-card { border-radius: 18px; background: var(--panel); border-top: 1px solid var(--line); }
.directory-card h3 { font-weight: 500; }
.gallery-grid figcaption { color: var(--muted); }
.table-scroll { overflow: auto; }
caption { background: var(--panel-raised); color: var(--text); }
.booking-form { box-shadow: 0 25px 80px #0003; }
.booking-form input, .booking-form select, .booking-form textarea { background: var(--ink); border: 1px solid #617780; border-radius: 12px; color: var(--text); accent-color: var(--lime); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline-color: var(--lime); }
.booking-summary { background: rgba(233,255,112,.045); border-color: #75864f; border-radius: 14px; }
.booking-summary > strong { color: var(--lime); font-weight: 500; }
.site-footer { background: #07141d; border-top: 1px solid var(--line); }
.footer-grid h2 { color: var(--lime); font-size: 1rem; font-weight: 500; }
.footer-bottom { color: var(--muted); }
.skip-link { background: var(--lime); color: var(--ink); border-radius: 8px; }
@media (max-width: 1100px) {
  .main-nav { background: #0d2533; border-bottom: 1px solid var(--line); }
  .nav-panel { border-radius: 0; }
  .menu-button { color: var(--text); }
  .menu-button span { background: var(--text); }
  .home-hero { gap: 35px; }
  .hero-copy h1 { font-size: clamp(3.1rem,6.2vw,4.8rem); }
  .region-body { padding: 26px; }
}
@media (max-width: 720px) {
  .shell { width: calc(100% - 36px); }
  .site-header { padding: 0 18px; }
  .brand strong { font-size: .95rem; letter-spacing: .12em; }
  .brand small { font-size: .75rem; }
  .home-hero { padding: 55px 0 60px; gap: 40px; min-height: 0; }
  .hero-copy .eyebrow { font-size: .8rem; letter-spacing: .18em; }
  .hero-copy h1 { font-size: clamp(2.8rem,11.8vw,4.8rem); line-height: 1.02; letter-spacing: -.045em; }
  .hero-location { font-size: 1rem; margin-bottom: 23px; }
  .hero-actions { gap: 12px; }
  .hero-visual { width: 100%; max-width: none; margin: 8px 0 0; }
  .hero-visual::before { inset: -8px; border-radius: 92px 24px 92px 24px; }
  .hero-visual img { height: 400px; border-radius: 85px 18px 85px 18px; }
  .hero-badge { left: 15px; bottom: 18px; min-width: 0; padding: 14px 18px; }
  .hero-badge strong { font-size: 1.15rem; }
  .altitude-rail { top: 55px; bottom: 120px; right: 15px; }
  .region-grid { grid-template-columns: 1fr; }
  .region-image, .ormanli-card .region-image { height: 235px; }
  .region-body, .ormanli-card .region-body { padding: 25px; min-height: 0; }
  .region-body h3 { font-size: 2.5rem; }
  .flight-grid { grid-template-columns: 1fr; }
  .section-heading h2, .pilot-section h2, .review-proof h2, .final-cta h2 { font-size: clamp(2.1rem,8.5vw,3.1rem); }
  .inner-copy h1, .booking-copy h1 { font-size: clamp(2.2rem,8.5vw,3.5rem); }
  .pilot-section figure { width: 100%; }
  .pilot-section figcaption { right: 12px; }
  .mobile-book { background: var(--lime); color: var(--ink); border-top: 1px solid rgba(7,20,29,.2); padding-bottom: max(14px,env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .booking-copy { position: static; }
}
@media (max-width: 420px) {
  .hero-actions { display: flex; flex-direction: column; align-items: stretch; }
  .hero-actions .button { flex: auto; }
  .hero-copy h1 { font-size: clamp(2.6rem,11.5vw,3rem); }
}
@media (prefers-reduced-motion: reduce) {
  .region-card:hover .region-image img { transform: none; }
}

/* One-time entrance and optional desktop motion, inspired by the supplied reference. */
.hero-visual::after {
  content: ''; pointer-events: none; position: absolute; z-index: -2;
  width: 320px; height: 320px; right: -16px; top: -42px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(233,255,112,.14),rgba(152,223,255,.06) 45%,transparent 70%);
  transform: translate(var(--light-x,0px),var(--light-y,0px));
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy h1 em { animation: heading-arrive .85s cubic-bezier(.2,.65,.3,1) both; }
  .hero-visual::before { animation: frame-arrive 1.2s cubic-bezier(.2,.65,.3,1) both; }
  .button, .nav-cta { transition: background-color .2s, border-color .2s, box-shadow .2s; }
  .region-card, .flight-grid > article, .directory-card, .related-grid a { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
  @keyframes heading-arrive { from { transform: translateY(12px); } to { transform: translateY(0); } }
  @keyframes frame-arrive { from { opacity: .4; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .region-card:hover, .flight-grid > article:hover, .directory-card:hover, .related-grid a:hover { transform: translateY(-5px); border-color: #85974f; box-shadow: 0 16px 35px #0003; }
  .button.primary:hover { box-shadow: 0 0 24px rgba(233,255,112,.15); }
}
@media (max-width: 720px) {
  .hero-visual::after { width: 240px; height: 240px; right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 em, .hero-visual::before { animation: none; }
  .hero-visual::after { transform: none; }
  .region-card, .flight-grid > article, .directory-card, .related-grid a { transition: none; }
}
