/* Onyx Aero Ltd. — landing styles. Tokens per MEDIA/BRAND_GUIDE.md */
:root {
  --oa-lime: #B4D031;
  --oa-lime-dark: #96B020;
  --oa-lime-text: #5F7C10; /* lime for small text on light bg — WCAG AA 4.5:1 */
  --oa-lime-light: #E9F2C0;
  --oa-lime-tint: #F6FAE6;
  --oa-charcoal: #403F3F;
  --oa-charcoal-dark: #2B2B2B;
  --oa-grey: #999D9F;
  --oa-grey-mid: #C9CCCE;
  --oa-grey-light: #EDEEEF;
  --oa-text-secondary: #6B6F71;
  --oa-bg: #F8F9F9;
  --oa-white: #FFFFFF;
  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-he: "Heebo", "Segoe UI", Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(64,63,63,.08);
  --container: 1180px;
  --header-h: 76px;
  --accent-gap: 24px; /* uniform distance between the lime side stripe and content, site-wide */
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0; font-family: var(--font-body); font-size: 1rem; line-height: 1.55;
  color: var(--oa-charcoal); background: var(--oa-bg); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; line-height: 1.15; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: .04em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.05rem; letter-spacing: .08em; }
p { margin: 0 0 1em; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.kicker { font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--oa-lime-text); margin: 0 0 .8em; }
.kicker-light { color: var(--oa-lime); }
.kicker-lime { color: var(--oa-lime); }
.sub { color: var(--oa-text-secondary); margin-top: -.4em; margin-bottom: 2em; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; font-family: var(--font-head); font-weight: 600; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1; padding: 1.05em 1.7em; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .1s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--oa-lime); color: var(--oa-charcoal); border-color: var(--oa-lime); }
.btn-primary:hover { background: var(--oa-lime-dark); border-color: var(--oa-lime-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn.is-disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }
.btn-sm { padding: .7em 1.3em; font-size: .78rem; }

/* Header */
.site-header { direction: ltr; position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--oa-grey-light); }
/* logo and actions take their natural (fixed) width, the menu is centred in the remaining space; nothing can overflow at 1180px */
.header-inner { height: var(--header-h); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; }
/* the logo never shrinks, whatever the menu width (6 items since 13.09.2026): fixed height, no max-width from the global img rule */
.brand { justify-self: start; flex: none; }
.brand img { height: 52px; width: auto; max-width: none; }
.nav { display: grid; grid-auto-flow: column; grid-auto-columns: 108px; justify-content: center; }
.nav a { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--oa-charcoal); padding: 6px 0; text-align: center; white-space: nowrap; border-bottom: 2px solid transparent; transition: border-color .2s; }
.nav a:hover { border-color: var(--oa-lime); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
/* team button: fixed width for all languages (header never shifts) and always one line; label auto-fits */
.header-actions .btn { width: 156px; min-width: 156px; white-space: nowrap; padding-inline: .7em; }
.lang { display: inline-flex; border: 1px solid var(--oa-grey-mid); border-radius: 999px; overflow: hidden; }
.lang button { background: none; border: 0; width: 44px; min-height: 30px; padding: 6px 0; text-align: center; font: 600 .75rem var(--font-head); letter-spacing: .1em; color: var(--oa-text-secondary); cursor: pointer; }
.lang button.is-active { background: var(--oa-charcoal); color: #fff; }
/* the cart always reserves its slot in the header so nothing shifts when it appears */
.cart { position: relative; width: 42px; height: 42px; }
.cart-btn { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--oa-grey-mid); background: #fff; cursor: pointer; display: grid; place-items: center; position: relative; }
.cart-btn:hover { border-color: var(--oa-charcoal); }
.cart-btn svg { width: 22px; height: 22px; fill: none; stroke: var(--oa-charcoal); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge { position: absolute; top: -4px; inset-inline-end: -4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--oa-lime); color: var(--oa-charcoal); font: 700 .68rem var(--font-head); display: grid; place-items: center; }
.cart-pop { position: absolute; top: calc(100% + 12px); inset-inline-end: 0; width: max-content; min-width: 20rem; max-width: min(36rem, calc(100vw - 32px)); max-height: calc(100vh - 120px); overflow-y: auto; background: #fff; border-radius: var(--radius); box-shadow: 0 16px 48px rgba(0,0,0,.22); border: 1px solid var(--oa-grey-light); padding: 12px; z-index: 60; text-align: start; }
.cart-list { display: grid; gap: 10px; }
/* signed-in client: lime ring on the icon + user strip with "sign out" on top of the popup */
/* two entrances, two colours: client cabinet = graphite circle (person icon), team = lime "Sign in" button */
.cart-btn { background: var(--oa-charcoal); border-color: var(--oa-charcoal); }
.cart-btn svg { stroke: #fff; }
.cart-btn:hover { background: #2b2a2a; border-color: #2b2a2a; }
.cart.is-signed .cart-btn { box-shadow: 0 0 0 3px var(--oa-lime); }
.cart[hidden] { display: none; }
.login-form { display: grid; gap: 4px; }
.modal-login .ord-field { margin-bottom: 12px; }
.modal-login .ord-phone-change { margin-top: 6px; font-size: .85rem; }
.cart-badge[hidden] { display: none; }
.cart-user { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 14px; padding-inline-start: var(--accent-gap); border-radius: 10px; background: var(--oa-lime-tint); border-inline-start: 4px solid var(--oa-lime); }
.cart-user-body p { margin: 0; white-space: nowrap; }
.cart-user-name { font-weight: 600; font-size: .95rem; }
.cart-user-phone { font-size: .85rem; color: var(--oa-text-secondary); }
.cart-logout { white-space: nowrap; font-size: .85rem; flex: none; }
.cart-empty { margin: 4px 0; font-size: .9rem; color: var(--oa-text-secondary); white-space: nowrap; }
.cart-sec { margin: 4px 0 0; font: 600 .68rem var(--font-head); letter-spacing: .1em; text-transform: uppercase; color: var(--oa-text-secondary); white-space: nowrap; }
.cart-order { cursor: default; border-inline-start-color: var(--oa-lime); background: #fff; }
.cart-order:hover { background: #fff; border-color: var(--oa-grey-light); border-inline-start-color: var(--oa-lime); }
.cart-order.is-confirmed { border-inline-start-color: var(--oa-lime-text); }
.cart-order.is-cancel_requested, .cart-order.is-reschedule_requested { border-inline-start-color: #C98A00; }
.cart-order.is-cancelled { border-inline-start-color: var(--oa-grey-mid); opacity: .75; }
.cart-status { color: var(--oa-lime-text); letter-spacing: 0; text-transform: none; font-weight: 600; }
.cart-order .cart-actions { flex-wrap: nowrap; }
.cart-item { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 14px 16px; padding-inline-start: var(--accent-gap); border-radius: 10px; border: 1px solid var(--oa-grey-light); border-inline-start: 4px solid var(--oa-grey-mid); background: var(--oa-bg); }
.cart-item.is-active { border-inline-start-color: var(--oa-lime); background: #fff; }
.cart-item { cursor: pointer; transition: background .15s, border-color .15s; }
.cart-item:hover, .cart-item:focus-visible { background: var(--oa-lime-tint); border-color: var(--oa-lime); }
.cart-item .cart-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cart-go { white-space: nowrap; padding: .6em 1.1em; }
.cart-item .cart-act-del { flex: none; }
.cart-pop[hidden] { display: none; }
.cart-pop::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.cart-body { display: grid; gap: 6px; }
.cart-body p { margin: 0; white-space: nowrap; }
.cart-id { font: 600 .72rem var(--font-head); letter-spacing: .06em; color: var(--oa-text-secondary); }
.cart-flight { font-weight: 600; font-size: .95rem; }
.cart-pax { font-size: .88rem; color: var(--oa-text-secondary); }
.cart-meta { font-size: .88rem; color: var(--oa-text-secondary); }
.cart-meta strong { font-family: var(--font-head); color: var(--oa-charcoal); }
.cart-actions { display: grid; gap: 8px; }
.cart-act { width: 40px; height: 40px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; display: grid; place-items: center; transition: background .15s, border-color .15s; }
.cart-act svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cart-act-go { background: var(--oa-lime); color: var(--oa-charcoal); border-color: var(--oa-lime); }
.cart-act-go:hover { background: var(--oa-lime-dark); border-color: var(--oa-lime-dark); }
.cart-act-del { background: #fff; color: var(--oa-text-secondary); border-color: var(--oa-grey-mid); }
.cart-act-del:hover { color: #B3261E; border-color: #B3261E; }
[dir="rtl"] .cart-act-go svg { transform: scaleX(-1); }
.burger { display: none; width: 42px; height: 42px; border: 0; background: none; cursor: pointer; position: relative; }
.burger span, .burger span::before, .burger span::after { content: ""; position: absolute; left: 9px; width: 24px; height: 2px; background: var(--oa-charcoal); transition: transform .2s, opacity .2s; }
.burger span { top: 20px; } .burger span::before { top: -7px; left: 0; } .burger span::after { top: 7px; left: 0; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: calc(100vh - var(--header-h)); min-height: 640px; display: flex; align-items: center; color: #fff; overflow: hidden; background: #1f1a14; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 82%; transform: scale(1.1); transform-origin: 50% 100%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.38) 40%, rgba(0,0,0,.05) 75%, rgba(0,0,0,0) 100%); }
.hero-content { position: relative; padding: 80px 0; text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.hero-content > * { max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.lead { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 560px; margin-bottom: 2em; }
/* three CTAs always in ONE row: the row may be wider than the text column; fitUniform shrinks the labels on narrow screens */
.hero-cta { display: flex; flex-wrap: nowrap; gap: 14px; margin-bottom: 56px; max-width: none; width: max-content; }
.hero-cta .btn { flex: none; white-space: nowrap; }
@media (max-width: 760px) { .hero-cta { width: 100%; flex-direction: column; align-items: stretch; gap: 10px; } .hero-cta .btn { width: 100%; } }
.hero-cta .btn { text-shadow: none; }
.featured { display: inline-block; padding: 22px 26px 20px; border-radius: var(--radius); background: rgba(0,0,0,.35); border: 1px solid rgba(180,208,49,.55); backdrop-filter: blur(6px); text-shadow: none; }
.featured-title { font-family: var(--font-head); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--oa-lime); margin: 0 0 12px; }
.featured-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.featured-list li { display: flex; align-items: center; gap: 12px; font-size: 1.15rem; font-weight: 600; color: #fff; white-space: nowrap; }
.featured-list svg { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--oa-lime); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Sections */
.section { padding: 88px 0; }
/* Services: the four cards under the hero now carry the section heading (photo block removed 13.09.2026) */
.offers { position: relative; z-index: 2; }
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.offers-grid { margin-top: 28px; }
.card { background: #fff; border-radius: var(--radius); padding: 30px 28px; padding-inline-start: var(--accent-gap); box-shadow: var(--shadow); border-inline-start: 4px solid var(--oa-lime); }
.card p { color: var(--oa-text-secondary); margin: 0; }
.card-featured { background: var(--oa-charcoal); color: #fff; display: flex; flex-direction: column; }
.card-cta { margin-top: 22px; align-self: flex-start; white-space: nowrap; }
.card-featured .card-cta { margin-top: auto; }
.card-featured p { margin-bottom: 22px; }
.card-featured h3 { color: var(--oa-lime); }
.card-featured p { color: rgba(255,255,255,.82); }
.card-featured .icon { background: rgba(180,208,49,.15); }
.card-featured .icon svg { stroke: var(--oa-lime); }
.icon { width: 46px; height: 46px; border-radius: 50%; background: var(--oa-lime-tint); display: grid; place-items: center; margin-bottom: 18px; }
.icon svg { width: 24px; height: 24px; fill: none; stroke: var(--oa-charcoal); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* About / Diamond: text on the start side, logo card on the end side; the text column is stretched to the card height —
   first paragraph level with the card top, last element (paragraph / button) level with the card bottom */
.split-rev { grid-template-columns: 1fr 1.05fr; align-items: stretch; }
.split-rev .split-media { order: 2; }
.split-rev .split-text { order: 1; display: flex; flex-direction: column; justify-content: space-between; }
.split-rev .split-text > :first-child { margin-top: 0; }
.split-rev .split-text > :last-child { margin-bottom: 0; }
.split-rev .split-text p { margin-top: 0; }
.split-rev .split-media { align-self: start; }
/* two-column blocks (About, Diamond): identical grid so the text of every block starts on the same vertical line */
.split, .diamond-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.split-text p { color: var(--oa-text-secondary); font-size: 1.05rem; }
.about { background: #fff; }
/* About: company logo instead of a photo — white card, logo centred with generous air (decision 13.09.2026) */
/* logo cards: fixed 16:10 box, the logo is absolutely centred inside with 10% air — it can never overflow the card */
.about .split-media.about-logo, .diamond-logo { position: relative; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16 / 10; overflow: hidden; padding: 0; display: block; }
.about .split-media.about-logo { background: #fff; }
.about .split-media.about-logo img, .diamond-logo img { position: absolute; inset: 10%; width: 80%; height: 80%; max-width: 80%; object-fit: contain; aspect-ratio: auto; border-radius: 0; box-shadow: none; margin: 0; }

.service-grid { grid-template-columns: 1fr; }
.service { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: grid; grid-template-columns: 320px 1fr; }
.service img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 26px 26px 22px; }
.service-body p { color: var(--oa-text-secondary); margin: 0; font-size: .95rem; }
.service-featured { outline: 2px solid var(--oa-lime); outline-offset: -2px; }
.service-featured h3 { color: var(--oa-lime-text); }


/* Diamond Aircraft — official sales partner */
.diamond { background: #fff; border-top: 1px solid var(--oa-grey-light); }
.diamond-text .kicker { margin-top: 0; }
/* logo cards (About, Diamond): same size 16:10, same padding, no accent stripe */
.diamond-logo { background: var(--oa-bg); }
.diamond-text p { color: var(--oa-text-secondary); font-size: 1.05rem; }
.diamond-text .kicker { color: var(--oa-lime-text); }
.diamond-text .btn { margin-top: 8px; align-self: flex-start; }
.btn-secondary { background: transparent; color: var(--oa-charcoal); border-color: var(--oa-charcoal); }
.btn-secondary:hover { background: var(--oa-charcoal); color: #fff; }

/* Catalog modal */
/* JS also freezes the page (position:fixed with the saved scroll offset) — iOS ignores overflow:hidden on body */
.modal-open { overflow: hidden; }
.modal-open.scroll-locked { position: fixed; inset-inline: 0; width: 100%; }
.modal-backdrop { touch-action: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(43,43,43,.72); backdrop-filter: blur(4px); }
.modal-dialog { position: relative; width: min(100%, 1180px); max-height: calc(100vh - 48px); background: var(--oa-bg); border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.35); display: flex; flex-direction: column; overflow: hidden; animation: modal-in .22s ease-out; }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal-head { display: flex; align-items: center; gap: 16px; padding: 22px 28px; background: #fff; border-bottom: 1px solid var(--oa-grey-light); }
.modal-head h2 { font-size: 1.25rem; margin: 0 0 2px; }
.modal-head p { margin: 0; color: var(--oa-text-secondary); font-size: .92rem; }
.modal-close { margin-inline-start: auto; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--oa-grey-mid); background: #fff; cursor: pointer; position: relative; flex: none; }
.modal-close span::before, .modal-close span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 2px; background: var(--oa-charcoal); transform: translate(-50%,-50%) rotate(45deg); }
.modal-close span::after { transform: translate(-50%,-50%) rotate(-45deg); }
.modal-close:hover { border-color: var(--oa-charcoal); }
/* flex column: head/foot fixed, body is the only scroll area; min-height:0 is required, otherwise a flex child refuses to shrink and the dialog clips the list without scrolling (mobile catalog bug 14.09.2026) */
.modal-head, .modal-foot { flex: none; }
.modal-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; touch-action: pan-y; padding: 24px 28px; display: grid; gap: 28px; align-content: start; }
.cat-group-title { font-size: .8rem; letter-spacing: .16em; color: var(--oa-lime-text); margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--oa-grey-light); }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cat-group:first-child .cat-grid { grid-template-columns: repeat(3, 1fr); }
.cat-group:first-child .cat-item { grid-template-columns: 1fr; }
.cat-group:first-child .cat-item img { aspect-ratio: 16 / 10; height: auto; }
.modal-foot { padding: 14px 28px; background: #fff; border-top: 1px solid var(--oa-grey-light); }
.modal-foot p { margin: 0 0 4px; font-size: .8rem; line-height: 1.45; color: var(--oa-text-secondary); }
.modal-foot .rules-title { font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--oa-lime-text); margin-bottom: 6px; }
[dir="rtl"] .modal-foot .rules-title { font-family: var(--font-he); letter-spacing: 0; text-transform: none; }
.cat-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: grid; grid-template-columns: 150px 1fr; }
.cat-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.cat-body { padding: 18px 20px 16px; display: grid; grid-template-rows: auto auto 1fr auto; gap: 6px; min-width: 0; }
.cat-body h4 { font-family: var(--font-head); font-size: .92rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin: 0; white-space: nowrap; overflow: hidden; }
[dir="rtl"] .cat-body h4 { font-family: var(--font-he); letter-spacing: 0; text-transform: none; }
.cat-meta { font-size: .78rem; color: var(--oa-lime-text); font-weight: 600; white-space: nowrap; }
.cat-body p { margin: 0; font-size: .9rem; color: var(--oa-text-secondary); }
.cat-row { display: grid; gap: 10px; margin-top: 10px; min-width: 0; }
.cat-row .btn { white-space: nowrap; overflow: hidden; width: 100%; min-width: 0; }
.cat-pricebox { flex: none; }
.cat-body p { min-height: calc(1.55em * 3); }
.cat-pricebox { display: grid; gap: 1px; }
.cat-price { font-family: var(--font-head); font-size: 1.05rem; white-space: nowrap; line-height: 1.2; }
.cat-per { font-size: .7rem; color: var(--oa-text-secondary); white-space: nowrap; }
[dir="rtl"] .cat-price { font-family: var(--font-he); }

.dark { background: var(--oa-charcoal-dark); color: #fff; }
.dark h2 { color: #fff; }

.fleet-main { margin-top: 24px; }
.fleet-name { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 1.3rem; }
.reg { font-family: var(--font-head); font-size: .85rem; letter-spacing: .12em; padding: 4px 10px; border: 1.5px solid var(--oa-charcoal); border-radius: 6px; }
.badge { font-size: .7rem; letter-spacing: .14em; background: var(--oa-lime); color: var(--oa-charcoal); padding: 5px 10px; border-radius: 999px; }
.chips { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { background: var(--oa-lime-tint); color: var(--oa-charcoal); font-size: .85rem; font-weight: 500; padding: 8px 14px; border-radius: 999px; }
/* DA62: the same two-column block as the DA40; the photo card is empty until the aircraft arrives, but has the identical size */
.fleet-soon { margin-top: 40px; }
/* renders on a plain background are shown whole (no cropping of wing tips), on the same 16:10 card */
.split-media img.img-contain { object-fit: contain; background: #f3f4f4; }
.fleet-soon p { color: var(--oa-text-secondary); margin: 0; }

.team { background: #fff; }
.team-grid { max-width: 640px; }
.person { text-align: center; padding: 28px; }
.avatar { width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; border: 4px solid var(--oa-lime); box-shadow: var(--shadow); display: block; }
.person h3 { text-transform: none; letter-spacing: 0; font-size: 1.1rem; margin-bottom: .2em; }
.person p { color: var(--oa-text-secondary); margin: 0; font-family: var(--font-head); font-size: .8rem; letter-spacing: .15em; }

.contact { background: #fff; }
.contact-grid { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-grid li { background: var(--oa-bg); border-radius: var(--radius); padding: 22px 22px; padding-inline-start: var(--accent-gap); display: grid; gap: 6px; border-inline-start: 3px solid var(--oa-lime); min-width: 0; overflow: hidden; }
.contact-label { font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--oa-text-secondary); white-space: nowrap; }
.contact-grid a { font-weight: 500; font-size: 1.05rem; white-space: nowrap; }
.contact-grid a:hover { color: var(--oa-lime-text); }


.site-footer { background: var(--oa-charcoal-dark); color: rgba(255,255,255,.8); padding: 48px 0; }
.footer-inner { display: grid; gap: 14px; justify-items: center; text-align: center; }
.footer-inner p { margin: 0; font-size: .9rem; }
.copy { color: rgba(255,255,255,.78); font-size: .8rem !important; }

/* RTL / Hebrew */
[dir="rtl"] body, [dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] .btn, [dir="rtl"] .kicker, [dir="rtl"] .contact-label, [dir="rtl"] .stats strong, [dir="rtl"] .reg, [dir="rtl"] .badge, [dir="rtl"] .person p, [dir="rtl"] .avatar { font-family: var(--font-he); letter-spacing: 0; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { text-transform: none; font-weight: 700; }
[dir="rtl"] .hero-bg img { object-position: 30% 82%; }
[dir="rtl"] .contact-grid a { direction: ltr; unicode-bidi: isolate; display: inline-block; }
[dir="rtl"] .contact-grid li { text-align: right; }
[dir="rtl"] .fleet-name .reg { font-family: var(--font-head); }
[dir="rtl"] .site-header .btn { font-family: var(--font-head); letter-spacing: .1em; }
[dir="rtl"] .nav a { font-family: var(--font-he); font-size: .95rem; letter-spacing: 0; text-transform: none; }
[dir="rtl"] .hero-shade { background: linear-gradient(270deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.08) 80%, rgba(0,0,0,0) 100%); }

/* Responsive */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; }
  .split, .diamond-inner { grid-template-columns: 1fr; gap: 32px; }
  .split-rev .split-media { order: 1; } .split-rev .split-text { order: 2; display: block; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .service { grid-template-columns: 200px 1fr; }
}
/* Header on tablets and phones: burger menu, cabinet icon stays, team button hidden (it is for staff) */
@media (max-width: 1080px) {
  .header-inner { display: flex; justify-content: space-between; gap: 12px; }
  .nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: #fff; display: flex; flex-direction: column; gap: 0; padding: 12px 20px 20px; border-bottom: 1px solid var(--oa-grey-light); transform: translateY(-120%); transition: transform .25s; box-shadow: 0 16px 40px rgba(0,0,0,.12); }
  .nav.is-open { transform: none; }
  .nav a { padding: 14px 0; text-align: start; border-bottom: 1px solid var(--oa-grey-light); }
  .header-actions .btn { display: none; }
  .burger { display: block; }
  /* cabinet dropdown: full-width sheet under the header instead of a popover that can leave the screen */
  .cart-pop { position: fixed; top: calc(var(--header-h) + 8px); left: 12px; right: 12px; inset-inline-end: auto; width: auto; min-width: 0; max-width: none; max-height: calc(100vh - var(--header-h) - 24px); }
}
@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .brand img { height: 44px; }
  .hero { min-height: 560px; }
  .hero-content { padding: 64px 0; }
  .hero-shade { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 100%); }
  .featured { display: block; }
  .featured-list li { white-space: normal; font-size: 1.05rem; }
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .modal { padding: 0; }
  .modal-dialog { height: 100vh; height: 100dvh; max-height: 100vh; max-height: 100dvh; border-radius: 0; }
  .modal-order .modal-dialog { height: auto; }
  /* phones: the whole dialog scrolls as one page (header sticky), the footer with the rules travels below the list instead of eating the screen (bug 14.09.2026) */
  .modal-dialog { overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
  .modal-body, .modal-order .modal-body { flex: none; min-height: 0; overflow: visible; }
  .modal-head { position: sticky; top: 0; z-index: 2; }
  .modal-foot { border-top: 1px solid var(--oa-grey-light); }
  .modal-foot p { font-size: .78rem; }
  .modal-body { padding: 16px; }
  .cat-grid, .cat-group:first-child .cat-grid { grid-template-columns: 1fr; }
  /* phones: photo on top, text and the full-width order button below — a 110 px side photo left the button ~200 px, too narrow for the one-line CTA (bug 14.09.2026) */
  .cat-item, .cat-group:first-child .cat-item { grid-template-columns: 1fr; }
  .cat-item img, .cat-group:first-child .cat-item img { aspect-ratio: 16 / 9; height: auto; }
  .cat-body p { min-height: 0; }
  .cat-row .btn { letter-spacing: .05em; padding-inline: .8em; }
  .contact-grid { grid-template-columns: 1fr; }
  .service { grid-template-columns: 1fr; }
  .service img { aspect-ratio: 16/9; }
  /* clip, not hidden: overflow-x:hidden on html+body turns body into a scroll container on iOS — the page then scrolls behind open dialogs and the dialog itself refuses to scroll (bug 14.09.2026) */
  html, body { overflow-x: clip; }
  .hero-content > * { max-width: none; }
  .lang { flex: none; }
  .lang button { width: 38px; min-width: 38px; height: 38px; padding: 0; font-size: .7rem; letter-spacing: .06em; }
  .header-actions { gap: 8px; }
  .cart, .cart-btn, .burger { flex: none; }
  .brand img { height: 40px; }
  .cart-item .cart-actions { flex-wrap: wrap; }
  .cart-order .cart-actions { flex-wrap: wrap; }
  .a11y-toggle { width: 48px; height: 48px; }
  .modal-head { padding: 14px 16px; }
  .ord-nav { flex-wrap: wrap; gap: 10px; }
  .ord-nav .btn { flex: 1 1 auto; }
  .ord-choice-inline { flex-wrap: wrap; }
  .ord-cabin { max-width: 100%; }
  .card-cta { width: 100%; }
  /* nothing may be wider than the screen: grid children shrink, long single-line labels wrap only where they are not buttons */
  .grid > *, .split > *, .container > * { min-width: 0; max-width: 100%; }
  .card, .service, .contact-grid li, .featured { max-width: 100%; box-sizing: border-box; }
  .modal-dialog, .modal-order .modal-dialog, .modal-ui .modal-dialog, .modal-doc .modal-dialog { width: 100%; min-width: 0; max-width: 100vw; overflow-x: hidden; }
  .modal-head { gap: 10px; }
  .modal-head h2 { font-size: 1.05rem; }
  .modal-head p { font-size: .82rem; }
  .ord-otp-status, .ord-pax-later, .cart-empty, .cart-body p, .ord-rl-val bdi, .ord-paxline bdi, .ord-sum-val bdi { white-space: normal; }
  .ord-layout { grid-template-columns: 1fr; }
  .ord-side { min-width: 0; }
  .ord-receipt { padding-inline-start: 16px; }
  .ord-phone { flex-wrap: wrap; }
  .ord-phone input[type="tel"] { flex-basis: 100%; }
  .ord-phone .ord-otp-code { flex: 1 1 7rem; width: auto; }
  .ord-phone .btn { flex: 1 1 auto; }
}

/* ===== Accessibility (IS 5568 / WCAG 2.0 AA) ===== */
.skip-link { position: absolute; top: -100px; inset-inline-start: 16px; z-index: 1000; background: var(--oa-charcoal); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 10px; font-family: var(--font-head); font-weight: 600; font-size: .85rem; letter-spacing: .06em; text-decoration: none; transition: top .15s; }
.skip-link:focus { top: 0; outline: 3px solid var(--oa-lime); outline-offset: 2px; }
main:focus { outline: none; }
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--oa-charcoal); outline-offset: 3px; border-radius: 4px; }
.dark :focus-visible, .hero :focus-visible, .site-footer :focus-visible, .card-featured :focus-visible { outline-color: var(--oa-lime); }
.btn:focus-visible { outline-offset: 4px; }
.lang button:focus-visible { outline-offset: -3px; border-radius: 999px; }
.link-btn { background: none; border: 0; padding: 0; color: inherit; font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.link-btn:hover { color: var(--oa-lime); }
.footer-links { font-size: .85rem; }
.footer-links .link-btn { color: rgba(255,255,255,.85); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Accessibility menu */
.a11y { position: fixed; inset-inline-start: 18px; bottom: 18px; z-index: 90; }
.a11y-toggle { width: 54px; height: 54px; border-radius: 50%; border: 2px solid #fff; background: var(--oa-charcoal); color: #fff; box-shadow: 0 6px 22px rgba(0,0,0,.28); cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .15s; }
.a11y-toggle:hover { background: var(--oa-charcoal-dark); transform: translateY(-1px); }
.a11y-toggle svg { width: 30px; height: 30px; fill: none; stroke: var(--oa-lime); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.a11y-toggle svg circle { fill: var(--oa-lime); stroke: none; }
.a11y-panel { position: absolute; bottom: 66px; inset-inline-start: 0; width: 24rem; max-width: calc(100vw - 36px); background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.3); border: 1px solid var(--oa-grey-light); padding: 18px 18px 14px; color: var(--oa-charcoal); }
.a11y-panel[hidden] { display: none; }
.a11y-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.a11y-head h2 { font-size: 1rem; margin: 0; }
.a11y-close { width: 36px; height: 36px; }
.a11y-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 12px; font-size: .9rem; font-weight: 500; margin-bottom: 12px; white-space: nowrap; }
.a11y-steps { display: inline-flex; align-items: center; border: 1px solid var(--oa-grey-mid); border-radius: 999px; overflow: hidden; }
.a11y-steps button { width: 44px; height: 36px; border: 0; background: none; font: 700 .95rem var(--font-head); color: var(--oa-charcoal); cursor: pointer; }
.a11y-steps button:hover { background: var(--oa-lime-tint); }
.a11y-steps output { min-width: 56px; text-align: center; font-size: .85rem; font-weight: 600; direction: ltr; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-grid button { min-height: 44px; padding: 8px 10px; border-radius: 10px; border: 1.5px solid var(--oa-grey-mid); background: #fff; color: var(--oa-charcoal); font: 500 .82rem var(--font-body); cursor: pointer; text-align: center; line-height: 1.25; white-space: nowrap; overflow: hidden; min-width: 0; transition: border-color .15s, background .15s; }
.a11y-grid button:hover { border-color: var(--oa-charcoal); }
.a11y-grid button[aria-pressed="true"] { background: var(--oa-charcoal); border-color: var(--oa-charcoal); color: #fff; box-shadow: inset 0 0 0 2px var(--oa-lime); }
.a11y-foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 12px; margin-top: 14px; font-size: .8rem; white-space: nowrap; }
.a11y-foot .link-btn { color: var(--oa-text-secondary); }
.a11y-foot .link-btn:hover { color: var(--oa-charcoal); }
[dir="rtl"] .a11y-panel, [dir="rtl"] .a11y-grid button, [dir="rtl"] .a11y-row { font-family: var(--font-he); }

/* Statement / document modal */
.modal-doc .modal-dialog { width: min(100%, 860px); }
.doc-body { display: block; line-height: 1.65; }
.doc-body h3 { font-size: .9rem; letter-spacing: .1em; margin: 1.4em 0 .5em; color: var(--oa-charcoal); }
.doc-body p { margin: 0 0 .8em; color: var(--oa-charcoal); }
.doc-contact { list-style: none; padding: 16px 20px; padding-inline-start: var(--accent-gap); margin: 0 0 1em; background: #fff; border-radius: var(--radius); border-inline-start: 3px solid var(--oa-lime); display: grid; gap: 6px; }
.doc-contact a { text-decoration: underline; text-underline-offset: 3px; }
.doc-contact a:hover { color: var(--oa-lime-text); }
.doc-note { font-size: .85rem; color: var(--oa-text-secondary) !important; }

/* Modes toggled from the accessibility menu (class on <html>) */
.a11y-text-1 { font-size: 112.5%; } .a11y-text-2 { font-size: 125%; } .a11y-text-3 { font-size: 137.5%; }
.a11y-text-1 .header-inner, .a11y-text-2 .header-inner, .a11y-text-3 .header-inner { min-height: 76px; height: auto; padding: 8px 0; }
.a11y-links a, .a11y-links .link-btn { text-decoration: underline !important; text-underline-offset: 3px; text-decoration-thickness: 2px; }
.a11y-links .nav a { border-bottom-color: var(--oa-charcoal); }
.a11y-font, .a11y-font body, .a11y-font h1, .a11y-font h2, .a11y-font h3, .a11y-font h4, .a11y-font .btn, .a11y-font .kicker, .a11y-font .nav a, .a11y-font .contact-label, .a11y-font .lang button, .a11y-font .a11y-grid button { font-family: Arial, Helvetica, "Segoe UI", sans-serif !important; letter-spacing: 0 !important; }
.a11y-motion, .a11y-motion *, .a11y-motion *::before, .a11y-motion *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
.a11y-cursor, .a11y-cursor * { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewBox='0 0 40 48'><path d='M4 2l30 26H18l8 16-6 3-8-16L4 42z' fill='%23fff' stroke='%23000' stroke-width='3'/></svg>") 4 2, auto !important; }
.a11y-cursor a, .a11y-cursor button, .a11y-cursor [role="button"], .a11y-cursor a *, .a11y-cursor button * { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='48' viewBox='0 0 44 48'><path d='M14 4h6v20h4V10h6v14h4V14h6v22c0 4-4 8-8 8H22c-3 0-6-2-8-4L4 28l4-4 6 6z' fill='%23fff' stroke='%23000' stroke-width='3' stroke-linejoin='round'/></svg>") 14 4, pointer !important; }
.a11y-gray { filter: grayscale(1); }
.a11y-dark { filter: invert(1) hue-rotate(180deg); background: #fff; }
.a11y-dark img, .a11y-dark video { filter: invert(1) hue-rotate(180deg); }
.a11y-gray.a11y-dark { filter: invert(1) hue-rotate(180deg) grayscale(1); }
.a11y-contrast { --oa-text-secondary: #000; --oa-lime-text: #000; --oa-grey: #000; --oa-grey-mid: #000; --oa-grey-light: #000; --oa-bg: #fff; --oa-lime-tint: #fff; --shadow: 0 0 0 2px #000; }
.a11y-contrast body { color: #000; background: #fff; }
.a11y-contrast .btn-primary { background: #000; color: #fff; border-color: #000; }
.a11y-contrast .btn-primary:hover { background: #333; border-color: #333; }
.a11y-contrast .btn-ghost { background: #000; border-color: #fff; }
.a11y-contrast .card, .a11y-contrast .diamond-logo, .a11y-contrast .ord-pax, .a11y-contrast .ord-flight, .a11y-contrast .ord-addon, .a11y-contrast .ord-summary, .a11y-contrast .service, .a11y-contrast .cat-item, .a11y-contrast .contact-grid li, .a11y-contrast .featured, .a11y-contrast .a11y-panel, .a11y-contrast .modal-dialog { border: 2px solid #000; box-shadow: none; }
.a11y-contrast .card-featured, .a11y-contrast .dark, .a11y-contrast .site-footer, .a11y-contrast .lang button.is-active, .a11y-contrast .a11y-grid button[aria-pressed="true"], .a11y-contrast .a11y-toggle, .a11y-contrast .skip-link { background: #000; color: #fff; }
.a11y-contrast .card-featured h3, .a11y-contrast .kicker-light, .a11y-contrast .kicker-lime, .a11y-contrast .featured-title { color: #FFFF00; }
.a11y-contrast .featured-list svg, .a11y-contrast .card-featured .icon svg, .a11y-contrast .a11y-toggle svg { stroke: #FFFF00; }
.a11y-contrast .a11y-toggle svg circle { fill: #FFFF00; }
.a11y-contrast .card-featured p, .a11y-contrast .copy, .a11y-contrast .footer-links .link-btn, .a11y-contrast .site-footer { color: #fff; }
.a11y-contrast .hero-shade { background: rgba(0,0,0,.72); }
.a11y-contrast .hero-content { text-shadow: none; }
.a11y-contrast .badge, .a11y-contrast .chips li { background: #000; color: #fff; }
.a11y-contrast .icon { background: #fff; border: 2px solid #000; }
.a11y-contrast .avatar { border-color: #000; }
.a11y-contrast .site-header { background: #fff; border-bottom: 2px solid #000; }
.a11y-contrast a, .a11y-contrast .link-btn { text-decoration: underline; text-underline-offset: 3px; }
.a11y-contrast .nav a, .a11y-contrast .btn, .a11y-contrast .brand { text-decoration: none; }
.a11y-contrast :focus-visible { outline: 4px solid #000; box-shadow: 0 0 0 7px #FFFF00; }

/* ===== WhatsApp always visible ===== */
.btn-wa { background: #25D366; color: #073b1c; border-color: #25D366; gap: .45em; }
.btn-wa:hover { background: #1ebe5b; border-color: #1ebe5b; }
.btn-wa svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.modal-head .btn-wa { margin-inline-start: auto; }
.modal-head .btn-wa + .modal-close { margin-inline-start: 0; }
.wa-float { position: fixed; inset-inline-end: 18px; bottom: 18px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; background: #25D366; color: #073b1c; font-family: var(--font-head); font-weight: 700; font-size: .9rem; letter-spacing: .06em; box-shadow: 0 8px 26px rgba(0,0,0,.28); transition: transform .15s, background .2s; }
.wa-float:hover { background: #1ebe5b; transform: translateY(-1px); }
.wa-float svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.modal-open .wa-float { display: none; }

/* ===== Order configurator ===== */
/* Configurator: window anchored to the top, header never moves; content grows/scrolls downward */
.modal-order { align-items: flex-start; }
/* window grows to the right (up to the viewport) when the receipt needs more room for text */
.modal-order .modal-dialog { width: fit-content; min-width: min(100%, 1180px); max-width: 100%; max-height: calc(100vh - 48px); animation: none; }
.modal-order .modal-head { flex: none; }
.modal-order .modal-body { overflow-y: auto; overscroll-behavior: contain; }
/* receipt column grows to fit its content (up to 28rem) so nothing is clipped; the step column takes the rest */
.ord-head { margin: 0 0 18px; }
.ord-head h3 { margin: 0 0 6px; }
.ord-head .ord-desc { margin: 0; }
.ord-layout { display: grid; grid-template-columns: minmax(0, 1fr) fit-content(28rem); gap: 28px; align-items: start; }
.ord-side { position: sticky; top: 0; min-width: 20rem; }
/* passenger without a name: no weight input — a short grey badge sits where the input would be, sized to its text */
.ord-pax-row.is-later { grid-template-columns: 1fr auto; }
.ord-pax-later { margin: 0; justify-self: end; padding: 8px 14px; border-radius: 999px; background: var(--oa-grey-light); color: var(--oa-text-secondary); font-size: .85rem; white-space: nowrap; }
.ord-receipt { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border-inline-start: 4px solid var(--oa-lime); padding: 18px 20px; padding-inline-start: var(--accent-gap); display: grid; gap: 10px; }
.ord-receipt h4 { margin: 0 0 4px; font-family: var(--font-head); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--oa-lime-text); }
[dir="rtl"] .ord-receipt h4 { font-family: var(--font-he); letter-spacing: 0; text-transform: none; font-size: .95rem; }
.ord-rl-id { margin: -6px 0 2px; font: 600 .72rem var(--font-head); letter-spacing: .06em; color: var(--oa-text-secondary); white-space: nowrap; }
/* label + price on the first line (price top/end), value on the next line across the full width */
.ord-rl { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; padding-bottom: 10px; border-bottom: 1px solid var(--oa-grey-light); font-size: .88rem; }
.ord-rl-label { grid-column: 1; grid-row: 1; align-self: center; white-space: nowrap; font-family: var(--font-head); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--oa-text-secondary); }
[dir="rtl"] .ord-rl-label { font-family: var(--font-he); letter-spacing: 0; text-transform: none; font-size: .8rem; }
.ord-rl-val { grid-column: 1 / -1; grid-row: 2; line-height: 1.4; overflow-wrap: anywhere; }
.ord-rl-val bdi, .ord-sum-val bdi { unicode-bidi: isolate; }
.ord-rl.is-empty .ord-rl-val { color: var(--oa-grey); }
.ord-rl-price { grid-column: 2; grid-row: 1; align-self: center; justify-self: end; font-family: var(--font-head); font-weight: 700; white-space: nowrap; }
.ord-rl-edit { grid-column: 1 / -1; grid-row: 3; justify-self: start; font-size: .75rem; color: var(--oa-text-secondary); }
.ord-rl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.ord-rl-total { display: flex; align-items: baseline; gap: 10px; padding-top: 4px; }
.ord-rl-total strong { font-family: var(--font-head); font-size: 1.35rem; margin-inline-start: auto; }
.ord-rl-note { margin: 0; font-size: .8rem; color: #7a5a00; background: #FFF7DC; border-radius: 8px; padding: 8px 10px; }
.ord-body { display: block; padding: 22px 28px 26px; }
.ord-progress { margin-bottom: 18px; }
.ord-bar { height: 6px; border-radius: 999px; background: var(--oa-grey-light); overflow: hidden; }
.ord-bar span { display: block; height: 100%; background: var(--oa-lime); transition: width .3s; }
.ord-stepno { margin: 8px 0 0; font-size: .78rem; color: var(--oa-text-secondary); font-family: var(--font-head); letter-spacing: .1em; text-transform: uppercase; }
[dir="rtl"] .ord-stepno { font-family: var(--font-he); letter-spacing: 0; text-transform: none; }
.ord-step h3, .ord-head h3 { font-size: 1.35rem; margin-bottom: .3em; }
.ord-desc { color: var(--oa-text-secondary); margin: 0 0 20px; max-width: 680px; }
.ord-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--oa-grey-light); }
.ord-nav .btn:only-child { margin-inline-start: auto; }
.btn-lg { padding: 1.1em 2.2em; font-size: .95rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.ord-field { display: block; margin: 0 0 16px; }
.ord-label { display: block; font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--oa-text-secondary); margin-bottom: 6px; }
[dir="rtl"] .ord-label { font-family: var(--font-he); letter-spacing: 0; text-transform: none; font-size: .85rem; }
.ord-field input, .ord-field textarea { width: 100%; font: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--oa-grey-mid); border-radius: 10px; background: #fff; color: var(--oa-charcoal); }
.ord-field input:focus-visible, .ord-field textarea:focus-visible { outline: 3px solid var(--oa-charcoal); outline-offset: 1px; border-color: var(--oa-charcoal); }
.ord-field input.is-invalid, .ord-field textarea.is-invalid { border-color: #B3261E; }
.ord-err { display: block; margin-top: 6px; font-size: .82rem; color: #B3261E; }
.ord-choice { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 16px; }
.ord-choice-inline { display: inline-flex; margin-bottom: 8px; }
.ord-choice-stack { flex-direction: column; align-items: stretch; }
.ord-chip { border: 1.5px solid var(--oa-grey-mid); background: #fff; color: var(--oa-charcoal); border-radius: 999px; padding: 10px 18px; font: 500 .92rem var(--font-body); cursor: pointer; transition: border-color .15s, background .15s, color .15s; min-height: 44px; }
.ord-chip:hover { border-color: var(--oa-charcoal); }
.ord-chip.is-on { background: var(--oa-charcoal); border-color: var(--oa-charcoal); color: #fff; box-shadow: inset 0 0 0 2px var(--oa-lime); }
.ord-choice-stack .ord-chip { border-radius: 12px; text-align: start; padding: 14px 18px; }
.ord-note { margin: 12px 0 0; padding: 12px 16px; padding-inline-start: var(--accent-gap); border-radius: 10px; font-size: .9rem; line-height: 1.5; border-inline-start: 3px solid var(--oa-lime); background: var(--oa-lime-tint); color: var(--oa-charcoal); }
.ord-note-review { border-color: #E0A800; background: #FFF7DC; }
.ord-note-blocked { border-color: #B3261E; background: #FCE8E6; }
.ord-note-err { border-color: #B3261E; background: #FCE8E6; }
.ord-rules { margin: 18px 0 0; font-size: .8rem; color: var(--oa-text-secondary); }
.ord-live { margin-top: 4px; }
.ord-live .btn { margin-top: 10px; }

.ord-flights, .ord-addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ord-addons { grid-template-columns: repeat(2, 1fr); }
.ord-flight, .ord-addon { text-align: start; padding: 0; border: 2px solid transparent; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); border-inline-start: 4px solid var(--oa-lime); overflow: hidden; cursor: pointer; font: inherit; color: inherit; display: grid; transition: border-color .15s, transform .15s; }
.ord-flight:hover, .ord-addon:hover { transform: translateY(-2px); }
.ord-flight.is-on, .ord-addon.is-on { border-color: var(--oa-charcoal); background: var(--oa-lime-tint); }
.ord-flight-body, .ord-addon-body { padding: 16px; padding-inline-start: var(--accent-gap); display: grid; gap: 4px; align-content: start; }
.ord-flight-body strong, .ord-addon-body strong { font-family: var(--font-head); font-size: .95rem; letter-spacing: .03em; text-transform: uppercase; }
[dir="rtl"] .ord-flight-body strong, [dir="rtl"] .ord-addon-body strong { font-family: var(--font-he); letter-spacing: 0; text-transform: none; }
.ord-flight-meta { font-size: .78rem; color: var(--oa-lime-text); font-weight: 600; }
.ord-flight-body p, .ord-addon-body p { margin: 0; font-size: .88rem; color: var(--oa-text-secondary); }
.ord-flight-price { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-top: 6px; }
.ord-pax { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px 6px; padding-inline-start: var(--accent-gap); margin-bottom: 14px; border-inline-start: 3px solid var(--oa-lime); }
.ord-pax h4 { margin: 0 0 12px; font-family: var(--font-head); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
[dir="rtl"] .ord-pax h4 { font-family: var(--font-he); letter-spacing: 0; text-transform: none; font-size: 1rem; }
.ord-pax-row { display: grid; grid-template-columns: 1fr 160px; gap: 16px; align-items: center; padding-bottom: 6px; }
.ord-pax-row h4 { margin: 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ord-badge { font: 600 .72rem var(--font-body); letter-spacing: 0; text-transform: none; background: var(--oa-lime-tint); color: var(--oa-lime-text); padding: 3px 10px; border-radius: 999px; }
.ord-pax-row .ord-field { margin: 0; }

.ord-seatwrap { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.ord-seatwrap .ord-cabin { max-width: 640px; }
.ord-cabin { position: relative; width: 100%; max-width: 560px; margin: 0; direction: ltr; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.ord-cabin img { display: block; width: 100%; height: auto; }
.ord-pin { position: absolute; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.ord-pin-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--oa-lime); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--oa-lime), 0 2px 8px rgba(0,0,0,.35); flex: none; }
.ord-pin-label { font: 600 .82rem var(--font-body); color: var(--oa-charcoal); background: rgba(255,255,255,.96); border: 1.5px solid var(--oa-lime); border-radius: 999px; padding: 4px 12px; box-shadow: 0 2px 10px rgba(0,0,0,.25); }
[dir="rtl"] .ord-pin-label { font-family: var(--font-he); }
.ord-seat-pilot .ord-pin-dot { background: var(--oa-charcoal); box-shadow: 0 0 0 2px var(--oa-charcoal), 0 2px 8px rgba(0,0,0,.35); }
.ord-seat-pilot .ord-pin-label { background: var(--oa-charcoal); color: #fff; border-color: var(--oa-charcoal); }
.ord-seat-front .ord-pin-label { background: var(--oa-lime); border-color: var(--oa-lime); }
.ord-seat-empty .ord-pin-dot { background: #fff; box-shadow: 0 0 0 2px var(--oa-grey-mid), 0 2px 8px rgba(0,0,0,.25); }
.ord-seat-empty .ord-pin-label { color: var(--oa-grey); border-style: dashed; border-color: var(--oa-grey-mid); }
/* rule: the label is ALWAYS to the right of the dot (never above/below/left), the dot sits exactly on the seat */
.ord-pin { transform: translate(-9px, -50%); flex-direction: row; }
.ord-cabin-note { position: absolute; right: 10px; bottom: 8px; margin: 0; font: 600 .62rem var(--font-head); letter-spacing: .12em; color: var(--oa-grey); background: rgba(255,255,255,.85); padding: 3px 8px; border-radius: 6px; }
.ord-seatside { display: grid; gap: 14px; align-content: start; }
.ord-seatside .btn { justify-self: start; white-space: nowrap; }
.ord-seatlist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.ord-seatlist li { display: flex; flex-direction: column; gap: 4px; padding: 12px 16px; padding-inline-start: var(--accent-gap); border-inline-start: 3px solid var(--oa-lime); background: #fff; border-radius: 10px; min-width: 0; white-space: nowrap; overflow: hidden; box-shadow: var(--shadow); }
.ord-seatlist .ord-label { margin: 0; white-space: nowrap; }
.ord-seatlist strong { white-space: nowrap; }
/* one-line rule for every label and name in the configurator */
.ord-label, .ord-rl-label, .ord-pin-label, .ord-chip, .ord-nav .btn, .ord-rl-price, .ord-flight-price { white-space: nowrap; }
.ord-paxline bdi, .ord-sum-val bdi, .ord-rl-val bdi { white-space: nowrap; }

.ord-check { display: flex; gap: 12px; align-items: flex-start; margin: 14px 0 0; font-size: .9rem; line-height: 1.45; cursor: pointer; }
.ord-check-inline { margin: -6px 0 14px; font-size: .85rem; color: var(--oa-text-secondary); }
.ord-field input:disabled { background: var(--oa-grey-light); color: var(--oa-text-secondary); }
/* hint inside name / company fields: readable but clearly a hint; never wraps or clips */
.ord-field input::placeholder { color: #8a8e90; opacity: 1; font-size: .92em; white-space: nowrap; overflow: hidden; text-overflow: clip; }
/* phone + one-time code in one row */
.ord-phone { display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; }
.ord-phone input[type="tel"] { flex: 1 1 12rem; min-width: 10rem; }
.ord-phone input[readonly] { background: var(--oa-grey-light); }
.ord-phone .ord-otp-code { flex: 0 0 7.5rem; width: 7.5rem; text-align: center; letter-spacing: .3em; font-variant-numeric: tabular-nums; }
.ord-phone .btn { flex: none; white-space: nowrap; }
.ord-phone .btn-sm { padding: 10px 16px; font-size: .85rem; }
.ord-verified { flex: none; display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; background: #EEF5D6; color: var(--oa-lime-text); font-weight: 600; font-size: .85rem; white-space: nowrap; }
.ord-verified::before { content: '\2713'; font-weight: 700; }
.ord-phone-change, .ord-otp-again { white-space: nowrap; font-size: .85rem; }
.ord-otp-status { margin: 8px 0 0; font-size: .85rem; color: var(--oa-text-secondary); white-space: nowrap; }
.ord-otp-again:disabled { color: var(--oa-text-secondary); cursor: default; text-decoration: none; }
.ord-rl-ok { color: var(--oa-lime-text); font-weight: 700; }
.ord-note-ok { background: #EEF5D6; color: var(--oa-lime-text); border-inline-start: 4px solid var(--oa-lime); }
@media (max-width: 560px) { .ord-phone { flex-wrap: wrap; } .ord-phone input[type="tel"] { flex-basis: 100%; } }
.ord-check input { width: 20px; height: 20px; margin: 2px 0 0; flex: none; accent-color: var(--oa-charcoal); }
.ord-check .ord-err { flex-basis: 100%; }
.ord-consent { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--oa-grey-light); }

.ord-summary { display: grid; grid-template-columns: 1fr; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border-inline-start: 4px solid var(--oa-lime); }
.ord-summary-body { padding: 22px 24px; padding-inline-start: var(--accent-gap); display: grid; gap: 12px; align-content: start; }
.ord-sum-row { display: grid; grid-template-columns: 120px minmax(0, 1fr) auto; gap: 12px; align-items: start; padding-bottom: 12px; border-bottom: 1px solid var(--oa-grey-light); }
.ord-sum-row .ord-label { margin: 2px 0 0; white-space: nowrap; }
.ord-sum-val { font-size: .95rem; line-height: 1.45; overflow-wrap: anywhere; min-width: 0; }
.ord-sum-seats .ord-cabin { max-width: 420px; }
.ord-sum-seats .ord-cabin-note { display: none; }
.ord-sum-seats .ord-pin-label { font-size: .7rem; padding: 2px 8px; }
.ord-sum-seats .ord-pin-dot { width: 12px; height: 12px; border-width: 2px; }
.ord-edit { font-size: .8rem; color: var(--oa-text-secondary); }
.ord-sum-total { display: flex; align-items: baseline; gap: 12px; margin-top: 4px; }
.ord-sum-total strong { font-family: var(--font-head); font-size: 1.5rem; }
.ord-vat { font-size: .8rem; color: var(--oa-text-secondary); }
.ord-sent { text-align: center; padding: 30px 0; }
.ord-sent .btn { margin: 8px 6px 0; }

@media (max-width: 960px) {
  .ord-flights { grid-template-columns: 1fr; }
  .ord-addons { grid-template-columns: 1fr; }
  .ord-seatlist { grid-template-columns: 1fr; }
  .ord-layout { grid-template-columns: 1fr; }
  .ord-side { position: static; order: -1; }
  .ord-receipt { padding: 14px 16px; }
  .ord-sum-row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 760px) {
  .ord-body { padding: 16px; }
  .ord-pax-row { grid-template-columns: 1fr; gap: 8px; }
  .wa-float { padding: 12px 16px; font-size: .8rem; }
  .modal-head .btn-wa span { display: none; }
  .modal-head .btn-wa { padding: .7em; }
}

/* Site confirm / alert */
.modal-ui .modal-dialog { width: min(100%, 520px); }
.ui-body { display: block; padding: 24px 28px 26px; }
.ui-text { margin: 0 0 22px; font-size: 1rem; line-height: 1.55; }
.ui-actions { display: flex; justify-content: flex-end; gap: 12px; }
.ui-actions .btn { white-space: nowrap; }
.btn-danger { background: #B3261E; border-color: #B3261E; color: #fff; }
.btn-danger:hover { background: #8f1d17; border-color: #8f1d17; }

/* Phones — final word for all dialogs (placed last so it beats the desktop rules above by order): the dialog fills the visible screen and is the single scroll container; head sticky; body/foot flow inside (bug 14.09.2026: the configurator was clipped 48 px above the bottom and did not scroll) */
@media (max-width: 760px) {
  .modal, .modal-order { align-items: stretch; padding: 0; }
  .modal-dialog, .modal-order .modal-dialog, .modal-doc .modal-dialog {
    width: 100%; min-width: 0; max-width: 100vw; height: 100vh; height: 100dvh; max-height: 100vh; max-height: 100dvh;
    border-radius: 0; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; animation: none;
  }
  .modal-body, .modal-order .modal-body, .ord-body { flex: none; min-height: 0; overflow: visible; }
  .modal-head { position: sticky; top: 0; z-index: 2; }
  .ord-side { position: static; }
  /* small confirm/login dialogs stay compact and centred */
  .modal-ui { align-items: center; padding: 16px; }
  .modal-ui .modal-dialog { width: 100%; height: auto; max-height: calc(100dvh - 32px); border-radius: 16px; overflow-y: auto; }
}
