/* Plaza Noble · Home V2
   Cream-on-cream split hero + 3 cards + partner box + 3-col dark footer
   Scope: .pn-h2 only (no global conflict) */

:root {
    --pn-h2-cream: #F2EDE3;
    --pn-h2-cream-soft: #F7F2E8;
    --pn-h2-ink: #1B1B1B;
    --pn-h2-gold: #C3A256;
    --pn-h2-gold-deep: #A88A4A;
    --pn-h2-gold-soft: #E4D2A0;
    --pn-h2-divider: rgba(27,27,27,0.12);
    --pn-h2-muted: rgba(27,27,27,0.62);
}

.pn-h2 { background: var(--pn-h2-cream); color: var(--pn-h2-ink); min-height: 100vh; }
.pn-h2 a { color: inherit; text-decoration: none; }
.pn-h2 *, .pn-h2 *::before, .pn-h2 *::after { box-sizing: border-box; }

/* ========== NAV ========== */
.pn-h2-nav { padding: 22px 40px; background: var(--pn-h2-cream-soft); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent; box-shadow: 0 1px 0 transparent; transition: background .2s, border-color .2s, box-shadow .2s; } .pn-h2-nav.is-scrolled { background: #ffffff; border-bottom-color: rgba(27,27,27,0.12); box-shadow: 0 8px 24px -12px rgba(0,0,0,0.25); }
.pn-h2-nav__inner { display: flex; align-items: center; gap: 32px; max-width: 1360px; margin: 0 auto; }
.pn-h2-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--pn-h2-gold-deep); flex-shrink: 0; }
.pn-h2-brand__mark { display: inline-flex; }
.pn-h2-brand__word { font-family: var(--pn-font-display, 'Cinzel', serif); font-size: 16px; letter-spacing: 0.22em; color: var(--pn-h2-ink); }
.pn-h2-brand__sep { color: var(--pn-h2-gold); margin: 0 4px; }
.pn-h2-nav__links { display: flex; align-items: center; gap: 36px; margin: 0 auto; }
.pn-h2-nav__links a { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pn-h2-ink); transition: color .15s; }
.pn-h2-nav__links a:hover { color: var(--pn-h2-gold-deep); }
.pn-h2-nav__actions { display: flex; align-items: center; gap: 20px; }
.pn-h2-nav__link { font-size: 13px; color: var(--pn-h2-ink); }
.pn-h2-nav__link:hover { color: var(--pn-h2-gold-deep); }
.pn-h2-btn--signin {
    background: var(--pn-h2-gold); color: var(--pn-h2-ink); border: 0; cursor: pointer;
    padding: 9px 18px; border-radius: 22px; font-size: 13px; font-weight: 500; font-family: inherit;
    display: inline-flex; align-items: center; gap: 6px; transition: background .15s;
}
.pn-h2-btn--signin:hover { background: var(--pn-h2-gold-deep); color: #fff; }

/* ========== HERO (cream bg + image bleeds from right, fades to transparent left) ========== */
.pn-h2-hero {
    position: relative;
    background: var(--pn-h2-cream);
    padding: 50px 40px 90px;
    min-height: 520px;
}
/* Bleed image is constrained by its own width/position; clipping only the bleed,
   not the whole hero, so popovers can spill below without being clipped. */
.pn-h2-hero__bleed { /* width:54% + right:0 already keeps it inside */ }
/* image lives in a ::before-ish div on the right, masked to fade out toward the left */
.pn-h2-hero__bleed {
    position: absolute;
    top: -88px; right: 0; bottom: 0;
    width: 72%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    /* Short, gentle fade only at the left edge of the image */
    /* Circular fade on the TEXT side only: radial centered at the right edge.
       Vertical radius is huge so top/bottom never go transparent (no white gaps);
       horizontal radius reaches the left edge, so only the side facing the text fades. */
    -webkit-mask-image: radial-gradient(ellipse 100% 170% at 100% 50%,
        #000 38%,
        rgba(0,0,0,0.92) 60%,
        rgba(0,0,0,0.55) 78%,
        rgba(0,0,0,0.18) 92%,
        transparent 100%);
            mask-image: radial-gradient(ellipse 100% 170% at 100% 50%,
        #000 38%,
        rgba(0,0,0,0.92) 60%,
        rgba(0,0,0,0.55) 78%,
        rgba(0,0,0,0.18) 92%,
        transparent 100%);
    pointer-events: none;
}
.pn-h2-hero__inner {
    position: relative; z-index: 1;
    display: flex; align-items: center;
    max-width: 1360px; margin: 0 auto;
    min-height: 380px;
}
.pn-h2-hero__text {
    max-width: 480px;
    padding-right: 24px;
}
.pn-h2-hero__h1 {
    font-family: var(--pn-font-display, 'Cinzel', serif);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.08;
    letter-spacing: 0.02em;
    color: var(--pn-h2-ink);
    margin: 0 0 24px;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;       /* keep each <br>-broken line on its own line */
    overflow: visible;
}
.pn-h2-hero__h1 br { display: block; }
.pn-h2-hero__rule { width: 40px; height: 2px; background: var(--pn-h2-gold); margin: 0 0 22px; }
.pn-h2-hero__sub {
    font-size: 14.5px; line-height: 1.65; color: var(--pn-h2-muted);
    max-width: 500px; margin: 0;
}


/* ========== SEARCH WRAP + TABS ========== */
.pn-h2-search-wrap {
    position: relative;
    max-width: 1100px;
    margin: -68px auto 0;
    z-index: 10;
}
[x-cloak] { display: none !important; }
.pn-h2-search-tabs {
    display: inline-flex;
    gap: 4px;
    background: #fff;
    border-radius: 4px 4px 0 0;
    padding: 4px 4px 0;
    margin-left: 18px;
    box-shadow: 0 -4px 12px -8px rgba(0,0,0,0.08);
}
.pn-h2-search-tab {
    display: inline-flex; align-items: center; gap: 8px;
    border: 0; background: transparent;
    padding: 12px 22px;
    font-family: inherit; font-size: 10px; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--pn-h2-muted);
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    transition: color .15s, background .15s;
    position: relative;
}
.pn-h2-search-tab:hover { color: var(--pn-h2-ink); }
.pn-h2-search-tab.is-active {
    color: var(--pn-h2-ink);
    background: var(--pn-h2-cream-soft);
}
.pn-h2-search-tab.is-active::after {
    content: ''; position: absolute; left: 18px; right: 18px; bottom: 0;
    height: 2px; background: var(--pn-h2-gold);
}

/* ========== SEARCH BAR ========== */
.pn-h2-search {
    position: relative;
    max-width: 1100px; margin: 0 auto;
    background: #fff; border-radius: 4px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr auto; gap: 0;
    padding: 6px 6px 6px 0;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.12), 0 6px 14px -8px rgba(0,0,0,0.08);
    z-index: 2;
}
.pn-h2-search__field {
    padding: 14px 24px;
    display: flex; flex-direction: column; gap: 4px;
    border-right: 1px solid var(--pn-h2-divider);
    cursor: text;
}
.pn-h2-search__field:last-of-type { border-right: 0; }
.pn-h2-search__lbl {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--pn-h2-muted); font-weight: 500;
}
.pn-h2-search__field input {
    border: 0; outline: 0; background: transparent;
    font-family: inherit; font-size: 13.5px; color: var(--pn-h2-ink);
    padding: 2px 0; width: 100%;
}
.pn-h2-search__field input::placeholder { color: rgba(27,27,27,0.4); }
.pn-h2-search__field select {
    border: 0; outline: 0; background: transparent;
    font-family: inherit; font-size: 13.5px; color: var(--pn-h2-ink);
    padding: 2px 0; width: 100%; cursor: pointer;
    appearance: none; -webkit-appearance: none;
}

.pn-h2-search__btn {
    background: var(--pn-h2-gold); color: var(--pn-h2-ink); border: 0; cursor: pointer;
    padding: 0 28px; margin: 4px; border-radius: 4px;
    font-size: 14px; font-weight: 500; font-family: inherit;
    display: inline-flex; align-items: center; gap: 8px; transition: background .15s, color .15s;
}
.pn-h2-search__btn:hover { background: var(--pn-h2-gold-deep); color: #fff; }

/* ========== 3 CARDS ========== */
.pn-h2-cards {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
    max-width: 1280px; margin: 50px auto 0; padding: 0 40px;
}
.pn-h2-card {
    background: #fff; border-radius: 4px; overflow: hidden;
    box-shadow: 0 8px 24px -10px rgba(0,0,0,0.10);
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.pn-h2-card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(0,0,0,0.15); }
.pn-h2-card__media {
    aspect-ratio: 16/9; background-size: cover; background-position: center;
    position: relative;
}
.pn-h2-card__tag {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,0.95); color: var(--pn-h2-ink);
    padding: 6px 14px; border-radius: 16px;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.pn-h2-card__body { padding: 26px 28px 30px; text-align: center; }
.pn-h2-card__title {
    font-family: var(--pn-font-display, 'Cinzel', serif);
    font-size: 18px; letter-spacing: 0.12em; text-transform: uppercase;
    margin: 0 0 14px; color: var(--pn-h2-ink); font-weight: 500;
}
.pn-h2-card__text {
    font-size: 13px; line-height: 1.55; color: var(--pn-h2-muted);
    margin: 0 0 22px; padding: 0 8px;
}
.pn-h2-card__cta {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--pn-h2-gold-deep);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    transition: gap .2s;
}
.pn-h2-card__cta:hover { gap: 14px; color: var(--pn-h2-ink); }

/* ========== PARTNER BOX ========== */
.pn-h2-partner {
    max-width: 1280px; margin: 40px auto 0; padding: 0 40px;
}
.pn-h2-partner__inner {
    background: #fff; border-radius: 4px; padding: 50px 56px;
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px;
    box-shadow: 0 8px 24px -10px rgba(0,0,0,0.08);
}
.pn-h2-partner__h2 {
    font-family: var(--pn-font-display, 'Cinzel', serif);
    font-size: 26px; line-height: 1.18; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--pn-h2-ink);
    margin: 0 0 18px; font-weight: 500;
}
.pn-h2-partner__rule { width: 34px; height: 2px; background: var(--pn-h2-gold); margin: 0 0 32px; }
.pn-h2-partner__benefits {
    display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 26px;
}
.pn-h2-partner__benefit { display: flex; flex-direction: column; gap: 10px; }
.pn-h2-partner__icon { color: var(--pn-h2-gold-deep); }
.pn-h2-partner__btitle {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    margin: 0 0 4px; font-weight: 600; color: var(--pn-h2-ink); line-height: 1.3;
}
.pn-h2-partner__bbody {
    font-size: 11.5px; line-height: 1.55; color: var(--pn-h2-muted);
    margin: 0;
}
.pn-h2-partner__right {
    display: flex; flex-direction: column; justify-content: center;
}
.pn-h2-partner__h3 {
    font-family: var(--pn-font-display, 'Cinzel', serif);
    font-size: 20px; letter-spacing: 0.14em; text-transform: uppercase;
    margin: 0 0 24px; text-align: center; color: var(--pn-h2-ink); font-weight: 500;
}
.pn-h2-partner__form { display: flex; flex-direction: column; gap: 14px; }
.pn-h2-partner__field {
    display: flex; align-items: center; gap: 12px;
    background: var(--pn-h2-cream-soft);
    padding: 14px 18px; border-radius: 4px;
    color: var(--pn-h2-muted);
}
.pn-h2-partner__field input {
    border: 0; outline: 0; background: transparent; flex: 1;
    font-family: inherit; font-size: 14px; color: var(--pn-h2-ink);
}
.pn-h2-partner__btn {
    background: var(--pn-h2-gold); color: var(--pn-h2-ink); border: 0; cursor: pointer;
    padding: 14px 28px; border-radius: 4px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    font-family: inherit; transition: background .15s;
}
.pn-h2-partner__btn:hover { background: var(--pn-h2-gold-deep); color: #fff; }

/* ========== FOOTER ========== */
.pn-h2-foot {
    background: #131313; color: rgba(245,243,238,0.85);
    margin-top: 60px; padding: 56px 40px 24px;
}
.pn-h2-foot__inner {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px;
    max-width: 1280px; margin: 0 auto;
}
.pn-h2-foot__brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.pn-h2-foot__mark { color: var(--pn-h2-gold); display: inline-flex; }
.pn-h2-foot__word { font-family: var(--pn-font-display, 'Cinzel', serif); font-size: 14px; letter-spacing: 0.18em; color: #fff; white-space: nowrap !important; display: inline-block !important; width: auto !important; }
.pn-h2-foot__sep { color: var(--pn-h2-gold); }
.pn-h2-foot__tag { font-size: 12px; color: rgba(245,243,238,0.55); margin: 6px 0 14px; }
.pn-h2-foot__social { display: flex; gap: 14px; color: rgba(245,243,238,0.5); }
.pn-h2-foot__social a { transition: color .15s; }
.pn-h2-foot__social a:hover { color: var(--pn-h2-gold); }
.pn-h2-foot__h5 {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--pn-h2-gold); margin: 0 0 16px; font-weight: 600;
}
.pn-h2-foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pn-h2-foot__col a, .pn-h2-foot__col span { font-size: 13px; color: rgba(245,243,238,0.75); transition: color .15s; }
.pn-h2-foot__col a:hover { color: #fff; }
.pn-h2-foot__bar {
    max-width: 1280px; margin: 40px auto 0;
    padding-top: 22px; border-top: 1px solid rgba(245,243,238,0.08);
    display: flex; justify-content: space-between;
    font-size: 11px; letter-spacing: 0.16em; color: rgba(245,243,238,0.45); text-transform: uppercase;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .pn-h2-hero { padding: 0 0 60px; min-height: auto; }
    .pn-h2-hero__bleed { position: relative; width: 100%; height: 240px; -webkit-mask-image: none; mask-image: none; }
    .pn-h2-hero__inner { padding: 30px 24px 0; }
    .pn-h2-hero__text { max-width: 100%; }
    .pn-h2-hero__h1 { white-space: normal; font-size: 30px; }
    .pn-h2-cards { grid-template-columns: 1fr; }
    .pn-h2-partner__inner { grid-template-columns: 1fr; padding: 40px 32px; }
    .pn-h2-partner__benefits { grid-template-columns: 1fr 1fr; }
    .pn-h2-foot__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
    .pn-h2-search { grid-template-columns: 1fr 1fr; }
    .pn-h2-search--jets { grid-template-columns: 1fr 1fr !important; }
    .pn-h2-search__field { border-right: 0; border-bottom: 1px solid var(--pn-h2-divider); }
    .pn-h2-search__btn { grid-column: span 2; margin: 6px; padding: 14px 24px; }
}
@media (max-width: 700px) {
    .pn-h2-nav__inner { flex-wrap: wrap; gap: 14px; }
    .pn-h2-nav__links { order: 3; width: 100%; justify-content: center; }
    .pn-h2-nav__actions { margin-left: auto; }
    .pn-h2-hero { padding: 20px 20px 60px; }
    .pn-h2-hero__h1 { font-size: 32px; }
    .pn-h2-search { grid-template-columns: 1fr; padding: 4px; }
    .pn-h2-search__btn { grid-column: 1; }
    .pn-h2-cards { padding: 0 20px; }
    .pn-h2-partner { padding: 0 20px; }
    .pn-h2-partner__benefits { grid-template-columns: 1fr; }
    .pn-h2-foot__inner { grid-template-columns: 1fr; }
    .pn-h2-foot__bar { flex-direction: column; gap: 8px; text-align: center; }
}

/* ========== RTL (Arabic) ========== */
[dir="rtl"] .pn-h2-search__field { border-right: 0; border-left: 1px solid var(--pn-h2-divider); }
[dir="rtl"] .pn-h2-search__field:last-of-type { border-left: 0; }
[dir="rtl"] .pn-h2-card__cta span { transform: scaleX(-1); }
[dir="rtl"] .pn-h2-btn--signin span { transform: scaleX(-1); }


/* Trip type pills (jets) */
.pn-h2-jet { width: 100%; }
.pn-h2-jet { position: relative; }
.pn-h2-trip-tabs {
    position: absolute; top: 100%; left: 18px;
    margin-top: 14px; z-index: 6;
    display: inline-flex; gap: 0;
    background: #fff; border-radius: 24px; padding: 4px;
    box-shadow: 0 6px 16px -10px rgba(0,0,0,0.18);
}
a.pn-h2-trip-tab { text-decoration: none; }
.pn-h2-trip-tab {
    border: 0; background: transparent;
    padding: 8px 18px; border-radius: 20px;
    font-family: inherit; font-size: 12px; font-weight: 500;
    color: var(--pn-h2-muted); cursor: pointer;
    transition: background .15s, color .15s;
}
.pn-h2-trip-tab:hover { color: var(--pn-h2-ink); }
.pn-h2-trip-tab.is-on {
    background: var(--pn-h2-gold);
    color: var(--pn-h2-ink);
}
.pn-h2-jet .pn-h2-search { margin-top: 0; }


/* Jets form: fixed grid so width stays constant regardless of trip type.
   1 FROM · 2 TO · 3 DEPART · 4 RETURN (visibility:hidden when one_way) · 5 PAX · 6 BTN */
.pn-h2-search--jets {
    display: grid !important;
    grid-template-columns: 1.3fr 1.3fr 1fr 1fr 1.1fr auto;
    align-items: stretch;
}
.pn-h2-search--jets .pn-h2-search__field { min-width: 0; }
.pn-h2-search__field--ghost { visibility: hidden; pointer-events: none; }
/* Multi-city CTA card */
.pn-h2-multi {
    background: var(--pn-h2-cream-soft);
    border-radius: 4px; padding: 22px 24px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.12), 0 6px 14px -8px rgba(0,0,0,0.08);
    min-height: 80px;
}
.pn-h2-multi__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.pn-h2-multi__title { font-weight: 600; font-size: 14px; color: var(--pn-h2-ink); margin-bottom: 4px; }
.pn-h2-multi__body { font-size: 13px; color: var(--pn-h2-muted); }
.pn-h2-multi__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #0E4A33; color: #fff; padding: 12px 22px; border-radius: 2px;
    font-size: 13px; font-weight: 500; text-decoration: none;
    transition: background .15s;
}
.pn-h2-multi__btn:hover { background: #0a3624; }


/* Pax/guests stepper popover */
.pn-h2-search__field--pax { position: relative; }
.pn-h2-pax-trigger {
    border: 0; background: transparent; padding: 2px 0;
    font-family: inherit; font-size: 13.5px; color: var(--pn-h2-ink);
    text-align: left; cursor: pointer; width: 100%;
}
.pn-h2-pax-pop {
    position: absolute; top: calc(100% + 8px); left: -6px;
    min-width: 280px;
    background: #fff; border-radius: 8px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.20), 0 4px 12px -6px rgba(0,0,0,0.08);
    padding: 18px;
    z-index: 60;
}
.pn-h2-pax-pop--single { min-width: 240px; }
.pn-h2-pax-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--pn-h2-divider);
}
.pn-h2-pax-row:last-of-type { border-bottom: 0; }
.pn-h2-pax-label {
    font-size: 13px; color: var(--pn-h2-ink); font-weight: 500;
}
.pn-h2-pax-step {
    display: inline-flex; align-items: center; gap: 12px;
}
.pn-h2-pax-step button {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--pn-h2-divider);
    background: #fff; color: var(--pn-h2-ink);
    font-size: 14px; line-height: 1; cursor: pointer;
    font-family: inherit; transition: border-color .15s, color .15s;
}
.pn-h2-pax-step button:hover:not(:disabled) { border-color: var(--pn-h2-ink); }
.pn-h2-pax-step button:disabled { opacity: 0.35; cursor: not-allowed; }
.pn-h2-pax-step span { min-width: 18px; text-align: center; font-size: 14px; font-weight: 500; }
.pn-h2-pax-done {
    width: 100%; margin-top: 14px;
    background: var(--pn-h2-gold); color: var(--pn-h2-ink);
    border: 0; padding: 10px; border-radius: 4px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; cursor: pointer;
    font-family: inherit; transition: background .15s, color .15s;
}
.pn-h2-pax-done:hover { background: var(--pn-h2-gold-deep); color: #fff; }


/* Used when the search bar is NOT overlapping a hero (e.g. hotels/restaurants list pages).
   Resets the negative margin so the bar lives below the global header with safe spacing. */
.pn-h2-search-wrap--flush { margin-top: 28px; }


/* Multi-city quote form wrapper on /jets */
.pn-h2-quote-wrap {
    background: var(--pn-h2-cream-soft);
    border-radius: 6px;
    padding: 8px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.12), 0 4px 12px -6px rgba(0,0,0,0.08);
}
.pn-h2-quote-wrap .pn-jet-search-wrap { background: #fff; border-radius: 4px; padding: 14px; }


/* Remove the dead space below the dark footer when cookie banner is visible.
   The banner is a small fixed overlay (max-width 460px, bottom-left) that does not
   cover essential content of the 4-column dark footer. Reserving 90-110px of body
   padding only creates a black gap below it. */
body.has-cookie-banner { padding-bottom: 0 !important; }


/* Multi-city inline editor (replaces old jet-search-form) */
.pn-h2-multi-form {
    background: #fff; border-radius: 4px;
    padding: 14px 18px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.12), 0 6px 14px -8px rgba(0,0,0,0.08);
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 8px;
}
.pn-h2-multi-row {
    display: grid; grid-template-columns: 28px 1fr 1fr 1fr 28px;
    align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--pn-h2-divider);
}
.pn-h2-multi-row:last-of-type { border-bottom: 0; }
.pn-h2-multi-row__n {
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: var(--pn-h2-muted); font-weight: 600;
}
.pn-h2-multi-field {
    padding: 10px 16px;
    display: flex; flex-direction: column; gap: 4px;
    border-left: 1px solid var(--pn-h2-divider);
    cursor: text;
}
.pn-h2-multi-lbl {
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pn-h2-muted); font-weight: 500;
}
.pn-h2-multi-field input {
    border: 0; outline: 0; background: transparent;
    font-family: inherit; font-size: 13.5px; color: var(--pn-h2-ink);
    padding: 2px 0; width: 100%;
}
.pn-h2-multi-rm {
    border: 0; background: transparent; cursor: pointer;
    color: var(--pn-h2-muted); font-size: 18px;
    transition: color .15s;
}
.pn-h2-multi-rm:hover { color: #a82a2a; }
.pn-h2-multi-actions {
    display: flex; align-items: stretch; gap: 8px;
    padding-top: 8px; border-top: 1px solid var(--pn-h2-divider);
}
.pn-h2-multi-add {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: 1px dashed var(--pn-h2-divider);
    padding: 10px 18px; border-radius: 4px; cursor: pointer;
    font-family: inherit; font-size: 12px; font-weight: 500;
    color: var(--pn-h2-ink); transition: background .15s, border-color .15s;
}
.pn-h2-multi-add:hover:not(:disabled) {
    background: var(--pn-h2-cream-soft);
    border-color: var(--pn-h2-gold);
}
.pn-h2-multi-add:disabled { opacity: 0.4; cursor: not-allowed; }
.pn-h2-multi-actions .pn-h2-search__field--pax {
    flex: 1; padding: 8px 16px; border-left: 1px solid var(--pn-h2-divider);
}
.pn-h2-multi-submit { margin: 0 !important; align-self: stretch; }

/* Multi-city form: force same width as round/one to prevent shrinking
   when the parent .pn-h2-jet flexes around the absolute trip pills. */
.pn-h2-search-wrap, .pn-h2-jet { width: 100%; }
.pn-h2-multi-form { width: 100%; max-width: 1100px; margin: 0 auto; }

/* /jets hero: the searchbar (margin-top: -68px) was covering the bullets row.
   Give the hero text a bottom safety margin so bullets sit above the bar. */
.pn-jet-hero .pn-h2-search-wrap { margin-top: 24px !important; }
.pn-jet-hero__inline-bullets { margin-bottom: 16px; }

.pn-h2-foot__logo { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; flex-wrap: nowrap; }
.pn-h2-foot__logo .pn-h2-foot__word { white-space: nowrap; }


/* Jets disclaimer moved above the searchbar (was hidden behind trip pills). */
.pn-jet-disclaimer-top {
    font-size: 11px;
    color: rgba(245,243,238,0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 8px 0 14px;
    text-align: left;
}

/* /jets hero has overflow:hidden + the trip pills are position:absolute below the search wrap.
   Reserve enough padding at the bottom so the pills do not get clipped. */
.pn-jet-hero { padding-bottom: 60px !important; }

/* Home-only: nav starts transparent over hero, solidifies on scroll */
.pn-h2-nav.pn-h2-nav--transparent { background: transparent; border-bottom-color: transparent; box-shadow: none; z-index: 60; }
.pn-h2-nav.pn-h2-nav--transparent.is-scrolled { background: #ffffff; border-bottom-color: rgba(27,27,27,0.12); box-shadow: 0 8px 24px -12px rgba(0,0,0,0.25); }
