/* ============================================================
   AIR CHATEAU — visual system
   Palette: noir #0B0D10 + warm metallic gold #C9A86A + parchment
   #F4EFE7. Rooted in the recovered gold T-wing brand mark + the
   H125 livery (black w/ gold accents). Editorial luxury, not
   generic dark-luxe-gradient slop.
   ============================================================ */

:root {
  --noir: #0B0D10;
  --graphite: #14181E;
  --char: #1B2028;
  --line-dk: #2A2F38;
  --line: #DCD3C2;
  --paper: #F4EFE7;
  --mist: #E8E1D2;
  --ink: #0B0D10;
  --muted-dk: #8A8F98;
  --muted-lt: #6B6256;
  --gold: #C9A86A;
  --gold-bright: #E1C189;
  --gold-deep: #8A6B33;
  --accent: var(--gold);

  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-brand: 'Tenor Sans', Georgia, serif;
  --f-body: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --f-mono: 'JetBrains Mono', 'Menlo', monospace;

  --max: 1380px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  font-weight: 350;
  background: var(--noir);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--noir); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- TYPE ---------- */
.brand-set { font-family: var(--f-brand); letter-spacing: 0.22em; text-transform: uppercase; }
.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.editorial { font-family: var(--f-display); font-weight: 300; line-height: 1.02; letter-spacing: -0.01em; }
.editorial em { font-style: italic; color: var(--gold); }
.eyebrow { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); }
.eyebrow .dot { display: inline-block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-right: 10px; vertical-align: 2px; }

h1.hero-title { font-family: var(--f-display); font-weight: 300; font-size: clamp(56px, 8.4vw, 142px); line-height: 0.92; letter-spacing: -0.025em; margin: 0; }
h2.section-title { font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5.6vw, 88px); line-height: 0.98; letter-spacing: -0.02em; margin: 0; }
h3 { font-family: var(--f-brand); font-weight: 400; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; margin: 0; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  padding: 22px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(11,13,16,0.85) 0%, rgba(11,13,16,0) 100%);
  transition: background .3s ease, padding .3s ease;
}
.nav.scrolled { background: rgba(11,13,16,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 14px var(--pad); border-bottom: 1px solid var(--line-dk); }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand .mark { width: 38px; height: 38px; flex: none; display: flex; align-items: center; justify-content: center; }
.nav-brand .name { font-family: var(--f-brand); font-size: 15px; letter-spacing: 0.34em; color: var(--paper); }
.nav-brand .sub { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.3em; color: var(--gold); margin-top: 2px; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper); opacity: 0.78; transition: opacity .2s, color .2s; }
.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta { display: flex; gap: 12px; align-items: center; }
.lang-toggle { display: flex; gap: 0; border: 1px solid var(--line-dk); border-radius: 999px; padding: 3px; }
.lang-toggle button { padding: 5px 10px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--paper); opacity: 0.55; border-radius: 999px; }
.lang-toggle button.active { background: var(--gold); color: var(--noir); opacity: 1; }
.lang-toggle button:hover:not(.active) { opacity: 0.9; }

@media (max-width: 980px) { .nav-links { display: none; } }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; border: 1px solid transparent; transition: all .25s ease; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--noir); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-ghost:hover { background: var(--paper); color: var(--noir); }
.btn-ghost-dk { background: transparent; color: var(--noir); border-color: var(--noir); }
.btn-ghost-dk:hover { background: var(--noir); color: var(--paper); }
.btn .arr { display: inline-block; transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero { position: relative; width: 100%; height: 100vh; min-height: 720px; overflow: hidden; background: var(--noir); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity .6s ease, transform .8s ease; }
.hero::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(11,13,16,0.55) 0%, rgba(11,13,16,0.15) 35%, rgba(11,13,16,0.7) 100%),
  radial-gradient(ellipse at 50% 100%, rgba(11,13,16,0.85) 0%, transparent 60%);
  pointer-events: none; }
.hero-inner { position: relative; z-index: 2; height: 100%; padding: 0 var(--pad) 80px; display: flex; flex-direction: column; justify-content: flex-end; max-width: var(--max); margin: 0 auto; }

.hero-meta-top { position: absolute; top: 110px; left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; align-items: flex-start; max-width: var(--max); margin: 0 auto; }
.hero-meta-top .mono { color: var(--gold); }

.hero-title .line2 { font-style: italic; color: var(--gold); }
.hero-sub { max-width: 560px; margin-top: 28px; font-size: 16px; line-height: 1.65; color: rgba(244,239,231,0.85); }
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.hero-strip { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; border-top: 1px solid rgba(244,239,231,0.12); background: rgba(11,13,16,0.55); backdrop-filter: blur(8px); padding: 18px var(--pad); }
.hero-strip-inner { display: flex; justify-content: space-between; gap: 32px; max-width: var(--max); margin: 0 auto; flex-wrap: wrap; }
.hero-strip-item { display: flex; gap: 12px; align-items: center; }
.hero-strip-item .label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.hero-strip-item .val { font-family: var(--f-brand); font-size: 13px; letter-spacing: 0.14em; color: var(--paper); }

/* ---------- SECTIONS ---------- */
section { position: relative; padding: clamp(80px, 11vw, 160px) var(--pad); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; margin-bottom: 80px; align-items: end; }
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; } }
.section-head .lhs { display: flex; flex-direction: column; gap: 18px; }
.section-head .rhs { color: rgba(244,239,231,0.7); font-size: 16px; line-height: 1.65; max-width: 540px; }

.paper { background: var(--paper); color: var(--ink); }
.paper .section-head .rhs { color: var(--muted-lt); }
.paper .eyebrow { color: var(--gold-deep); }
.paper .eyebrow .dot { background: var(--gold-deep); }
.paper h2.section-title em { color: var(--gold-deep); font-style: italic; }

/* ---------- TRUST STRIP ---------- */
.trust { background: var(--graphite); padding: 38px var(--pad); border-top: 1px solid var(--line-dk); border-bottom: 1px solid var(--line-dk); }
.trust-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
@media (max-width: 880px) { .trust-inner { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; flex-direction: column; gap: 4px; padding-left: 14px; border-left: 1px solid var(--gold); }
.trust-item .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.trust-item .v { font-family: var(--f-brand); font-size: 13px; letter-spacing: 0.12em; color: var(--paper); }

/* ---------- TOURS ---------- */
.tours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 1100px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tours-grid { grid-template-columns: 1fr; } }

.tour-card { position: relative; overflow: hidden; cursor: pointer; background: var(--graphite); transition: transform .4s ease; }
.tour-card:hover { transform: translateY(-4px); }
.tour-card .img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.tour-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .4s ease; filter: brightness(0.85) saturate(0.95); }
.tour-card:hover img { transform: scale(1.04); filter: brightness(1) saturate(1.05); }
.tour-card .img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,13,16,0) 40%, rgba(11,13,16,0.85) 100%); }
.tour-card .num { position: absolute; top: 18px; left: 18px; z-index: 2; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--gold); }
.tour-card .price-chip { position: absolute; top: 18px; right: 18px; z-index: 2; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; padding: 6px 10px; background: rgba(11,13,16,0.6); border: 1px solid var(--gold); color: var(--gold); }
.tour-card .body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 22px; z-index: 2; }
.tour-card .name { font-family: var(--f-display); font-weight: 300; font-size: 30px; line-height: 1; letter-spacing: -0.01em; color: var(--paper); margin: 0 0 8px 0; }
.tour-card .meta { display: flex; gap: 16px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,239,231,0.8); }
.tour-card .cta-row { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.tour-card .cta-row .arr { transition: transform .25s; }
.tour-card:hover .cta-row .arr { transform: translateX(6px); }

/* ---------- FLEET ---------- */
.fleet-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .fleet-grid { grid-template-columns: 1fr; gap: 36px; } }
.fleet-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.fleet-specs { display: flex; flex-direction: column; gap: 4px; }
.spec-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line-dk); }
.spec-row .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.spec-row .v { font-family: var(--f-body); font-size: 17px; color: var(--paper); }
.spec-row .v .tag { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.18em; padding: 3px 6px; background: var(--gold-deep); color: var(--paper); margin-left: 8px; vertical-align: 2px; }

/* ---------- CHARTER QUOTE ---------- */
.charter { background: var(--paper); color: var(--ink); }
.charter-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 980px) { .charter-grid { grid-template-columns: 1fr; gap: 48px; } }
.charter-lhs h2 em { color: var(--gold-deep); }
.charter-lhs p { color: var(--muted-lt); font-size: 16px; line-height: 1.7; max-width: 480px; margin-top: 20px; }
.charter-bullets { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.charter-bullets .b { display: flex; gap: 14px; align-items: baseline; font-family: var(--f-body); font-size: 15px; color: var(--ink); }
.charter-bullets .b::before { content: "→"; color: var(--gold-deep); font-family: var(--f-mono); }

.quote-form { background: var(--noir); color: var(--paper); padding: 40px; }
.quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.quote-form .row.single { grid-template-columns: 1fr; }
@media (max-width: 600px) { .quote-form .row { grid-template-columns: 1fr; } .quote-form { padding: 28px; } }
.quote-form label { display: block; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; background: transparent; color: var(--paper); border: none; border-bottom: 1px solid var(--line-dk);
  padding: 10px 0; font-family: var(--f-body); font-size: 15px; outline: none; transition: border-color .25s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-bottom-color: var(--gold); }
.quote-form select { color: var(--paper); appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1l4 4 4-4' stroke='%23C9A86A' fill='none' stroke-width='1.4'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 4px center; }
.quote-form option { background: var(--noir); color: var(--paper); }
.quote-form textarea { resize: none; min-height: 80px; }
.quote-form .submit-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- ECOSYSTEM (B2B) ---------- */
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dk); border: 1px solid var(--line-dk); }
@media (max-width: 880px) { .eco-grid { grid-template-columns: 1fr; } }
.eco-card { padding: 38px 32px; background: var(--noir); display: flex; flex-direction: column; gap: 16px; min-height: 280px; transition: background .25s; }
.eco-card:hover { background: var(--graphite); }
.eco-card .num { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold); }
.eco-card h3 { font-family: var(--f-display); font-weight: 300; font-size: 28px; line-height: 1.1; letter-spacing: -0.005em; color: var(--paper); text-transform: none; }
.eco-card p { color: rgba(244,239,231,0.7); font-size: 14px; line-height: 1.6; margin: 0; }
.eco-card .link { margin-top: auto; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: flex; gap: 8px; align-items: center; }

/* ---------- HELIPORT FEATURE ---------- */
.heliport-feature { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; min-height: 600px; margin-top: 80px; border: 1px solid var(--line-dk); }
@media (max-width: 980px) { .heliport-feature { grid-template-columns: 1fr; min-height: auto; } }
.heliport-feature .img-side { position: relative; min-height: 480px; }
.heliport-feature .img-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.heliport-feature .img-side .mbrah-lockup { position: absolute; left: 22px; bottom: 22px; z-index: 2; background: rgba(244,239,231,0.95); padding: 12px 16px; max-width: 240px; }
.heliport-feature .img-side .mbrah-lockup img { position: static; width: 100%; height: auto; object-fit: contain; display: block; }
.heliport-feature .info-side { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; gap: 18px; background: var(--graphite); }
.heliport-feature .info-side h3 { font-family: var(--f-display); font-weight: 300; font-size: 42px; letter-spacing: -0.01em; line-height: 1; color: var(--paper); text-transform: none; margin-bottom: 8px; }
.heliport-feature .stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px; }
.heliport-feature .stat .k { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.heliport-feature .stat .v { font-family: var(--f-display); font-weight: 300; font-size: 32px; line-height: 1; color: var(--paper); }
.heliport-feature .stat .v .unit { font-size: 14px; font-family: var(--f-mono); letter-spacing: 0.16em; color: rgba(244,239,231,0.6); margin-left: 6px; }

/* ---------- FUTURE / ROADMAP ---------- */
.roadmap { background: var(--graphite); border-top: 1px solid var(--line-dk); }
.roadmap .roadmap-tag { display: inline-block; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; padding: 6px 10px; background: transparent; border: 1px solid var(--gold); color: var(--gold); margin-bottom: 24px; }
.roadmap-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .roadmap-grid { grid-template-columns: 1fr; gap: 40px; } }
.roadmap-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.92) contrast(1.05); }
.roadmap-img-cap { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.2em; color: rgba(244,239,231,0.5); margin-top: 10px; }

/* ---------- ABOUT / FOUNDERS ---------- */
.about { background: var(--paper); color: var(--ink); }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 64px; }
@media (max-width: 880px) { .founders { grid-template-columns: 1fr; } }
.founder { display: flex; flex-direction: column; gap: 14px; }
.founder .portrait { width: 100%; aspect-ratio: 4/5; background: repeating-linear-gradient(45deg, var(--mist) 0px, var(--mist) 10px, var(--paper) 10px, var(--paper) 20px); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.founder .portrait .ph { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--muted-lt); text-align: center; }
.founder .name { font-family: var(--f-display); font-weight: 400; font-size: 26px; color: var(--ink); }
.founder .role { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); margin-top: -6px; }
.founder .bio { font-size: 14px; color: var(--muted-lt); line-height: 1.65; margin-top: 6px; }

.timeline { margin-top: 80px; border-top: 1px solid var(--line); padding-top: 32px; }
.timeline-rows { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 880px) { .timeline-rows { grid-template-columns: repeat(2, 1fr); } }
.tl { padding: 4px 0 0 16px; border-left: 1px solid var(--gold-deep); }
.tl .yr { font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.14em; color: var(--gold-deep); }
.tl .ev { font-family: var(--f-body); font-size: 14px; color: var(--ink); margin-top: 4px; line-height: 1.4; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block { display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--line-dk); }
.contact-row .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); padding-top: 4px; }
.contact-row .v { font-family: var(--f-body); font-size: 16px; color: var(--paper); }
.contact-row .v small { display: block; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; color: rgba(244,239,231,0.5); margin-top: 4px; }

.map-block { aspect-ratio: 4/5; background: var(--graphite); position: relative; overflow: hidden; border: 1px solid var(--line-dk); }
.map-block svg { width: 100%; height: 100%; display: block; }
.map-cap { position: absolute; top: 18px; left: 18px; right: 18px; display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--gold); }
.map-pin { position: absolute; top: 52%; left: 56%; transform: translate(-50%, -50%); }

/* ---------- FOOTER ---------- */
footer { background: var(--noir); border-top: 1px solid var(--line-dk); padding: 80px var(--pad) 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-col h4 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.footer-col a, .footer-col p { font-family: var(--f-body); font-size: 14px; color: rgba(244,239,231,0.7); display: block; margin: 6px 0; line-height: 1.5; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max); margin: 56px auto 0; padding-top: 24px; border-top: 1px solid var(--line-dk); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom .mono { color: rgba(244,239,231,0.45); }

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 80; background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.35); cursor: pointer; transition: transform .25s; }
.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-fab .label { position: absolute; right: 70px; background: var(--noir); color: var(--paper); padding: 8px 14px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all .25s; pointer-events: none; }
.whatsapp-fab:hover .label { opacity: 1; transform: translateX(0); }

/* ---------- BOOKING MODAL ---------- */
.modal-bg { position: fixed; inset: 0; z-index: 100; background: rgba(11,13,16,0.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-bg.open { display: flex; }
.modal { background: var(--noir); border: 1px solid var(--line-dk); width: 100%; max-width: 940px; max-height: 92vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
@media (max-width: 760px) { .modal { grid-template-columns: 1fr; max-height: 96vh; overflow-y: auto; } }
.modal .img-side { position: relative; background: var(--graphite); min-height: 320px; }
.modal .img-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal .img-side::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,13,16,0.2), rgba(11,13,16,0.7)); }
.modal .img-side .tag { position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2; }
.modal .img-side .tag .name { font-family: var(--f-display); font-size: 32px; line-height: 1; color: var(--paper); }
.modal .img-side .tag .meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold); margin-top: 8px; }
.modal .form-side { padding: 36px; overflow-y: auto; max-height: 92vh; }
.modal .close { position: absolute; top: 18px; right: 18px; z-index: 5; width: 36px; height: 36px; border-radius: 50%; background: rgba(11,13,16,0.7); color: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; }
.modal .step-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.modal .step-dot { flex: 1; height: 2px; background: var(--line-dk); }
.modal .step-dot.active { background: var(--gold); }
.modal h4 { font-family: var(--f-display); font-weight: 300; font-size: 28px; color: var(--paper); margin: 0 0 8px; text-transform: none; letter-spacing: -0.01em; }
.modal .sub { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }

.modal .field { margin-bottom: 18px; }
.modal label { display: block; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.modal input, .modal select { width: 100%; background: transparent; color: var(--paper); border: none; border-bottom: 1px solid var(--line-dk); padding: 10px 0; font-family: var(--f-body); font-size: 15px; outline: none; }
.modal input:focus, .modal select:focus { border-bottom-color: var(--gold); }
.modal .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal .pax-picker { display: flex; gap: 8px; }
.modal .pax-picker button { flex: 1; padding: 10px; border: 1px solid var(--line-dk); font-family: var(--f-mono); font-size: 12px; color: var(--paper); background: transparent; transition: all .2s; }
.modal .pax-picker button.active { border-color: var(--gold); background: var(--gold); color: var(--noir); }
.modal .pax-picker button:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.modal .footer-row { display: flex; gap: 12px; justify-content: space-between; margin-top: 28px; flex-wrap: wrap; }

.modal .summary { background: var(--graphite); padding: 24px; margin-bottom: 20px; }
.modal .summary .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dotted var(--line-dk); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.modal .summary .row:last-child { border-bottom: none; }
.modal .summary .row .k { color: var(--gold); }
.modal .summary .row .v { color: var(--paper); }
.modal .price-line { font-family: var(--f-display); font-size: 32px; color: var(--paper); margin: 16px 0 4px; }
.modal .price-line span { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--gold); margin-left: 8px; }
.modal .price-note { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.16em; color: rgba(244,239,231,0.5); margin-bottom: 20px; }

/* ---------- RTL ---------- */
[dir="rtl"] .nav-brand { flex-direction: row-reverse; }
[dir="rtl"] .trust-item, [dir="rtl"] .tl { border-left: none; border-right: 1px solid var(--gold); padding-left: 0; padding-right: 14px; }
[dir="rtl"] .charter-bullets .b::before { content: "←"; }
[dir="rtl"] body { font-family: 'Noto Kufi Arabic', var(--f-body); }
[dir="rtl"] .editorial, [dir="rtl"] h1.hero-title, [dir="rtl"] h2.section-title { font-family: 'Noto Serif', 'Noto Kufi Arabic', serif; }

/* ---------- UTIL ---------- */
.hairline { width: 60px; height: 1px; background: var(--gold); }
.flex-grow { flex: 1; }
.divider { width: 100%; height: 1px; background: var(--line-dk); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
