:root {
  --iw-ink: #071522;
  --iw-ink-2: #0d2436;
  --iw-blue: #006b96;
  --iw-blue-bright: #11a8d8;
  --iw-sky: #b8ecff;
  --iw-coral: #c94128;
  --iw-lime: #d7ff61;
  --iw-paper: #f4f7f8;
  --iw-white: #ffffff;
  --iw-muted: #536270;
  --iw-line: rgba(7, 21, 34, .13);
  --iw-shadow: 0 28px 80px rgba(4, 21, 34, .18);
  --iw-radius: 28px;
  --iw-max: 1240px;
}

html { scroll-behavior: smooth; }
body.iworld-site {
  margin: 0;
  background: var(--iw-paper);
  color: var(--iw-ink);
  font-family: "Avenir Next", Avenir, "Century Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.iworld-site .site.grid-container,
body.iworld-site .site-content,
body.iworld-site #page {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
}
body.iworld-site .content-area { width: 100%; }
body.iworld-site a { color: inherit; }
body.iworld-site img { display: block; max-width: 100%; }
.iw-skip {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 9999;
  background: var(--iw-white);
  color: var(--iw-ink);
  padding: 12px 18px;
  border-radius: 10px;
}
.iw-skip:focus { top: 18px; }
.iw-wrap { width: min(calc(100% - 40px), var(--iw-max)); margin-inline: auto; }
.iw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--iw-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.iw-kicker::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.iw-hero .iw-kicker,
.iw-page-hero .iw-kicker,
.iw-section--dark .iw-kicker,
.iw-footer .iw-kicker { color: var(--iw-sky); }
.iw-display {
  margin: 0;
  font-family: Futura, "Avenir Next Condensed", "Century Gothic", sans-serif;
  font-size: clamp(46px, 7.4vw, 106px);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -.062em;
}
.iw-h2 {
  margin: 0;
  max-width: 820px;
  font-family: Futura, "Avenir Next Condensed", "Century Gothic", sans-serif;
  font-size: clamp(36px, 5vw, 67px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
}
.iw-h3 {
  margin: 0 0 12px;
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.13;
  letter-spacing: -.025em;
}
.iw-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(18px, 2vw, 22px);
}
.iw-copy { max-width: 720px; color: var(--iw-muted); font-size: 18px; }
.iw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--iw-coral);
  color: var(--iw-white) !important;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.iw-button:hover { transform: translateY(-2px); background: #ad341e; box-shadow: 0 14px 30px rgba(201,65,40,.28); }
.iw-button--ghost { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); }
.iw-button--ghost:hover { background: rgba(255,255,255,.14); }
.iw-button--dark { background: var(--iw-ink); }
.iw-button svg { width: 18px; height: 18px; }

/* Header */
.iw-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--iw-white);
}
.iw-header.is-scrolled {
  position: fixed;
  background: rgba(7,21,34,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  animation: iw-drop .35s ease both;
}
@keyframes iw-drop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.iw-header__inner {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  min-height: 92px;
  gap: 34px;
}
.iw-logo {
  display: block;
  width: 226px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}
.iw-logo img { width: 100%; height: auto; }
.iw-nav { justify-self: center; }
.iw-nav ul { display: flex; align-items: center; gap: 34px; margin: 0; padding: 0; list-style: none; }
.iw-nav a {
  position: relative;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.iw-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--iw-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.iw-nav a:hover::after, .iw-nav a[aria-current="page"]::after { transform: scaleX(1); }
.iw-header__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--iw-white) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.iw-header__call svg { width: 22px; height: 22px; flex: 0 0 auto; }
.iw-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--iw-white);
}

/* Hero */
.iw-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--iw-ink);
  color: var(--iw-white);
}
.iw-hero__photo, .iw-page-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iw-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,18,29,.97) 0%, rgba(5,18,29,.8) 44%, rgba(5,18,29,.2) 78%),
    linear-gradient(0deg, rgba(5,18,29,.96) 0%, transparent 42%);
}
.iw-hero__orb {
  position: absolute;
  z-index: 2;
  top: 175px;
  right: -90px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(184,236,255,.32);
  border-radius: 50%;
}
.iw-hero__orb::before, .iw-hero__orb::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 160%;
  height: 1px;
  background: rgba(184,236,255,.23);
  transform: translate(-50%,-50%) rotate(22deg);
}
.iw-hero__orb::after { transform: translate(-50%,-50%) rotate(-22deg); }
.iw-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 850px;
  flex-direction: column;
  justify-content: center;
  padding: 160px 0 130px;
}
.iw-hero__content .iw-display { max-width: 900px; }
.iw-accent { color: var(--iw-sky); }
.iw-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.iw-flightstrip {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  background: rgba(4,18,29,.64);
  backdrop-filter: blur(14px);
}
.iw-flightstrip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  min-height: 94px;
  gap: 28px;
}
.iw-flightstat span { display: block; color: rgba(255,255,255,.48); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.iw-flightstat strong { color: var(--iw-white); font-size: 17px; letter-spacing: .01em; }
.iw-flightstatus { display: inline-flex; align-items: center; gap: 8px; color: var(--iw-lime); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.iw-flightstatus::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--iw-lime); box-shadow: 0 0 0 6px rgba(215,255,97,.13); }

/* Sections */
.iw-section { padding: 118px 0; }
.iw-section--dark { background: var(--iw-ink); color: var(--iw-white); }
.iw-section--blue {
  overflow: hidden;
  background: var(--iw-blue);
  color: var(--iw-white);
}
.iw-section__head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.iw-section__head p { max-width: 470px; margin: 0; color: var(--iw-muted); }
.iw-section--dark .iw-section__head p, .iw-section--blue .iw-section__head p { color: rgba(255,255,255,.7); }
.iw-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.iw-service {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--iw-radius);
  background: var(--iw-ink);
  color: var(--iw-white);
  box-shadow: var(--iw-shadow);
}
.iw-service__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.2,1); }
.iw-service::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,18,29,.96), rgba(4,18,29,.08) 76%); }
.iw-service:hover .iw-service__image { transform: scale(1.04); }
.iw-service__content { position: absolute; z-index: 2; right: 34px; bottom: 34px; left: 34px; }
.iw-service__number { display: block; margin-bottom: 14px; color: var(--iw-lime); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.iw-service__content p { max-width: 520px; margin: 0 0 22px; color: rgba(255,255,255,.72); }
.iw-text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--iw-white) !important; font-size: 14px; font-weight: 800; text-decoration: none; }
.iw-text-link::after { content: "→"; color: var(--iw-lime); font-size: 20px; transition: transform .2s ease; }
.iw-text-link:hover::after { transform: translateX(5px); }
.iw-capabilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 70px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.13); }
.iw-capability { min-height: 240px; padding: 30px; background: var(--iw-ink-2); }
.iw-capability svg { width: 31px; height: 31px; margin-bottom: 38px; color: var(--iw-sky); }
.iw-capability h3 { margin: 0 0 12px; font-size: 18px; }
.iw-capability p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

/* Airline wall */
.iw-airlines { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.iw-airline {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 11px;
  padding: 18px;
  border: 1px solid var(--iw-line);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  color: var(--iw-ink);
  font-family: Futura, "Avenir Next", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.iw-airline:hover { transform: translateY(-4px); border-color: var(--iw-blue); box-shadow: 0 18px 38px rgba(7,21,34,.1); }
.iw-airline--featured { grid-column: span 2; min-height: 154px; background: var(--iw-white); font-size: 15px; box-shadow: 0 14px 38px rgba(7,21,34,.08); }
.iw-airline__logo { width: 64px; height: 64px; object-fit: contain; }
.iw-airline__logo--wide { width: min(100%, 230px); height: 72px; }
.iw-airline--featured > span { color: var(--iw-muted); font-family: "Avenir Next", Avenir, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.iw-airline[data-brand="turkish"] { color: #c90019; }
.iw-airline[data-brand="pegasus"] { color: #8a6300; }
.iw-airline[data-brand="ajet"] { color: #b20f16; }
.iw-airline[data-brand="corendon"] { color: #b31924; }
.iw-airline[data-brand="southwind"] { color: #0f568c; }
.iw-airline[data-brand="sunexpress"] { color: #a34700; }
.iw-airline[data-brand="lufthansa"] { color: #001b62; }
.iw-airline[data-brand="emirates"] { color: #d71920; }

/* Process + location */
.iw-process { display: grid; grid-template-columns: repeat(3, 1fr); counter-reset: step; gap: 22px; margin-top: 52px; }
.iw-step { position: relative; padding: 34px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.06); }
.iw-step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 54px; color: var(--iw-lime); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.iw-step h3 { margin: 0 0 10px; font-size: 21px; }
.iw-step p { margin: 0; color: rgba(255,255,255,.65); font-size: 15px; }
.iw-location-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--iw-white);
  box-shadow: var(--iw-shadow);
}
.iw-location-card__copy { padding: 60px; }
.iw-location-card__copy address { margin: 28px 0; color: var(--iw-muted); font-style: normal; }
.iw-location-card__visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--iw-blue);
}
.iw-location-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(35deg, transparent 45%, rgba(255,255,255,.12) 45% 47%, transparent 47%),
    radial-gradient(circle at 60% 45%, var(--iw-lime) 0 9px, transparent 10px),
    repeating-radial-gradient(circle at 60% 45%, transparent 0 42px, rgba(255,255,255,.14) 43px 44px);
}
.iw-location-card__code {
  position: absolute;
  right: 34px;
  bottom: 28px;
  color: var(--iw-white);
  font-family: "Courier New", monospace;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -.08em;
}

/* Page hero + long form */
.iw-page-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--iw-ink);
  color: var(--iw-white);
}
.iw-page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,18,29,.97), rgba(5,18,29,.64) 56%, rgba(5,18,29,.18)); }
.iw-page-hero__content { position: relative; z-index: 2; padding: 200px 0 100px; }
.iw-page-hero__content .iw-display { max-width: 900px; font-size: clamp(48px, 7vw, 92px); }
.iw-content-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.iw-sticky { position: sticky; top: 130px; }
.iw-toc { margin: 28px 0 0; padding: 0; list-style: none; }
.iw-toc li { border-bottom: 1px solid var(--iw-line); }
.iw-toc a { display: flex; justify-content: space-between; padding: 14px 0; color: var(--iw-muted) !important; font-size: 14px; font-weight: 700; text-decoration: none; }
.iw-toc a::after { content: "↗"; color: var(--iw-blue); }
.iw-prose h2 { margin: 0 0 18px; font-size: clamp(31px, 4vw, 48px); line-height: 1; letter-spacing: -.04em; }
.iw-prose h3 { margin: 0 0 10px; font-size: 23px; }
.iw-prose p { margin: 0 0 22px; color: var(--iw-muted); }
.iw-prose-section { padding: 0 0 70px; margin-bottom: 70px; border-bottom: 1px solid var(--iw-line); }
.iw-feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.iw-feature-list li { position: relative; min-height: 100%; padding: 20px 20px 20px 50px; border-radius: 16px; background: var(--iw-white); box-shadow: 0 8px 24px rgba(7,21,34,.06); }
.iw-feature-list li::before { content: "✓"; position: absolute; left: 20px; top: 19px; color: var(--iw-blue); font-weight: 900; }
.iw-note { padding: 24px; border-left: 4px solid var(--iw-lime); border-radius: 0 16px 16px 0; background: var(--iw-ink); color: rgba(255,255,255,.72); }
.iw-note strong { color: var(--iw-white); }
.iw-cta-band {
  padding: 46px;
  border-radius: 26px;
  background: var(--iw-blue);
  color: var(--iw-white);
}
.iw-cta-band p { color: rgba(255,255,255,.72); }

/* Legal pages */
.iw-page-hero--legal { min-height: 500px; background: radial-gradient(circle at 82% 28%, rgba(17,168,216,.22), transparent 30%), var(--iw-ink); }
.iw-page-hero--legal .iw-page-hero__content { padding-bottom: 84px; }
.iw-legal { max-width: 850px; }
.iw-legal h2:not(:first-child) { margin-top: 46px; }
.iw-legal strong { color: var(--iw-ink); }
.iw-legal a:not(.iw-button) { color: var(--iw-blue) !important; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.iw-legal code { padding: 3px 7px; border-radius: 7px; background: rgba(0,107,150,.09); color: var(--iw-ink); font-size: .9em; }
.iw-legal__source { padding: 22px 24px; border-radius: 16px; background: rgba(0,107,150,.07); font-size: 14px; }
.iw-cookie a { color: var(--iw-sky) !important; }

/* Contact */
.iw-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; }
.iw-contact-panel, .iw-map-panel { overflow: hidden; border-radius: 28px; background: var(--iw-white); box-shadow: 0 18px 54px rgba(7,21,34,.1); }
.iw-contact-panel { padding: 44px; }
.iw-contact-list { margin: 34px 0; padding: 0; list-style: none; }
.iw-contact-list li { padding: 18px 0; border-bottom: 1px solid var(--iw-line); }
.iw-contact-list span { display: block; color: var(--iw-muted); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.iw-contact-list a, .iw-contact-list strong { display: inline-block; margin-top: 5px; color: var(--iw-ink) !important; font-size: 19px; font-weight: 800; text-decoration: none; }
.iw-map-panel { position: relative; min-height: 600px; background: var(--iw-ink); }
.iw-map-panel iframe { width: 100%; height: 100%; min-height: 600px; border: 0; filter: saturate(.75) contrast(1.08); }
.iw-map-consent { position: absolute; inset: 0; display: grid; place-items: center; padding: 40px; color: var(--iw-white); text-align: center; background: radial-gradient(circle at 50% 45%, rgba(17,168,216,.3), transparent 32%), var(--iw-ink); }
.iw-map-consent__inner { max-width: 420px; }
.iw-map-consent svg { width: 62px; height: 62px; margin: 0 auto 22px; color: var(--iw-sky); }
.iw-map-consent p { color: rgba(255,255,255,.68); }
.iw-faq { max-width: 900px; margin: 0 auto; }
.iw-faq details { border-bottom: 1px solid var(--iw-line); }
.iw-faq summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font-size: 19px; font-weight: 800; list-style: none; }
.iw-faq summary::-webkit-details-marker { display: none; }
.iw-faq summary::after { content: "+"; color: var(--iw-blue); font-size: 24px; }
.iw-faq details[open] summary::after { content: "–"; }
.iw-faq details p { max-width: 760px; margin: 0 0 24px; color: var(--iw-muted); }

/* Footer */
.iw-footer { background: #04101a; color: var(--iw-white); }
.iw-footer__top { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 70px; padding: 78px 0 54px; }
.iw-footer__title { max-width: 560px; margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -.045em; }
.iw-footer__photo { max-width: 540px; margin: 22px 0 0; color: rgba(255,255,255,.48); font-size: 11px; }
.iw-footer h3 { margin: 0 0 18px; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.iw-footer ul { margin: 0; padding: 0; list-style: none; }
.iw-footer li { margin: 0 0 10px; }
.iw-footer a { color: rgba(255,255,255,.77) !important; text-decoration: none; }
.iw-footer a:hover { color: var(--iw-lime) !important; }
.iw-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.43); font-size: 12px; }

/* Cookie banner */
.iw-cookie {
  position: fixed;
  z-index: 9998;
  right: 24px;
  bottom: 24px;
  display: none;
  width: min(470px, calc(100% - 48px));
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(4,16,26,.96);
  color: var(--iw-white);
  box-shadow: 0 30px 100px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}
.iw-cookie.is-visible { display: block; animation: iw-rise .45s ease both; }
@keyframes iw-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.iw-cookie__label { color: var(--iw-lime); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.iw-cookie h2 { margin: 8px 0 10px; font-size: 25px; }
.iw-cookie p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }
.iw-cookie__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.iw-cookie .iw-button { min-height: 44px; padding-inline: 17px; font-size: 13px; }

/* Motion */
.iw-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.iw-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .iw-header__inner { grid-template-columns: 205px 1fr auto; gap: 20px; }
  .iw-logo { width: 198px; }
  .iw-nav ul { gap: 19px; }
  .iw-nav a { font-size: 13px; }
  .iw-header__call span { display: none; }
  .iw-airlines { grid-template-columns: repeat(4, 1fr); }
  .iw-capabilities { grid-template-columns: repeat(2, 1fr); }
  .iw-content-grid { grid-template-columns: 1fr; gap: 55px; }
  .iw-sticky { position: static; }
}

@media (max-width: 760px) {
  body.iworld-site { font-size: 16px; }
  .iw-wrap { width: min(calc(100% - 28px), var(--iw-max)); }
  .iw-header__inner { grid-template-columns: 1fr auto auto; min-height: 78px; gap: 10px; }
  .iw-logo { width: 178px; }
  .iw-nav { display: none; position: absolute; top: 82px; right: 14px; left: 14px; padding: 25px; border-radius: 18px; background: var(--iw-ink); box-shadow: var(--iw-shadow); }
  .iw-nav.is-open { display: block; }
  .iw-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
  .iw-nav a { display: block; padding: 12px 0; font-size: 14px; }
  .iw-menu-toggle { display: inline-grid; place-items: center; }
  .iw-header__call { width: 46px; height: 46px; justify-content: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
  .iw-hero, .iw-hero__content { min-height: 760px; }
  .iw-hero__content { padding: 130px 0 200px; }
  .iw-hero__orb { display: none; }
  .iw-flightstrip__inner { grid-template-columns: 1fr 1fr; min-height: 150px; gap: 14px; }
  .iw-flightstrip__inner > :last-child { grid-column: span 2; }
  .iw-section { padding: 82px 0; }
  .iw-section__head { align-items: start; flex-direction: column; margin-bottom: 36px; }
  .iw-service-grid, .iw-process, .iw-contact-grid, .iw-location-card { grid-template-columns: 1fr; }
  .iw-service { min-height: 460px; }
  .iw-service__content { right: 24px; bottom: 26px; left: 24px; }
  .iw-airlines { grid-template-columns: repeat(2, 1fr); }
  .iw-airline--featured { grid-column: span 1; min-height: 105px; font-size: 16px; }
  .iw-capabilities { grid-template-columns: 1fr; }
  .iw-capability { min-height: auto; }
  .iw-location-card__copy { padding: 38px 28px; }
  .iw-location-card__visual { min-height: 300px; }
  .iw-page-hero { min-height: 560px; }
  .iw-page-hero__content { padding: 170px 0 80px; }
  .iw-feature-list { grid-template-columns: 1fr; }
  .iw-cta-band { padding: 30px 24px; }
  .iw-contact-panel { padding: 34px 24px; }
  .iw-map-panel, .iw-map-panel iframe { min-height: 480px; }
  .iw-footer__top { grid-template-columns: 1fr; gap: 36px; padding-top: 62px; }
  .iw-footer__bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .iw-reveal { opacity: 1; transform: none; }
}