@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Great+Vibes&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #090b10;
  --panel: rgba(13, 16, 24, 0.82);
  --panel-2: rgba(17, 21, 31, 0.92);
  --gold: #d7b56d;
  --gold-strong: #efd59a;
  --text: #f5f6f8;
  --muted: #a8afbc;
  --border: rgba(215, 181, 109, 0.18);
  --danger: #ffc0c0;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius: 22px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(215,181,109,0.08), transparent 35%),
    linear-gradient(180deg, #090a0d 0%, #0c0f16 100%);
  color: var(--text);
  min-height: 100vh;
}
body.has-video::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.46), rgba(7, 10, 14, 0.84));
  z-index: -1;
  pointer-events: none;
}
#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  padding: 20px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215,181,109,0.35);
  background: linear-gradient(145deg, rgba(215,181,109,0.16), rgba(255,255,255,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  color: var(--gold-strong);
}
.brand-name { font-size: 1rem; }
.top-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.top-links a,
.section-link {
  color: #dfe5ee;
  text-decoration: none;
  font-size: 0.95rem;
}
.top-links a:hover,
.section-link:hover {
  color: var(--gold-strong);
}

.hero { padding: 30px 0 38px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: start;
}
.hero-copy { padding-top: 40px; }
.eyebrow {
  color: var(--gold-strong);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1, .inner-title, .section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.03em;
}
h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.98;
  font-weight: 600;
}
.section-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.02;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.74;
  margin: 18px 0 0;
  max-width: 62ch;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.badge, .tag, .pill {
  border: 1px solid rgba(215,181,109,0.18);
  background: rgba(255,255,255,0.04);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #eadcad;
  font-size: 0.9rem;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.metric {
  padding: 18px;
  background: rgba(255,255,255,0.035);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}
.metric strong {
  display: block;
  font-size: 1.02rem;
  color: var(--gold-strong);
}
.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.58;
}
.hero-links { margin-top: 22px; }

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.form-panel { padding: 22px; }
.home-form-panel { margin-top: 6px; }
.panel-title {
  margin: 0;
  font-size: 1.35rem;
}
.panel-subtitle {
  margin: 8px 0 20px;
  color: var(--muted);
  line-height: 1.6;
}
.highlight {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(215,181,109,0.15), rgba(215,181,109,0.07));
  border: 1px solid rgba(215,181,109,0.2);
  color: #f1e2bd;
  font-size: 0.98rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field, .field-wide { position: relative; }
.field-wide { grid-column: 1 / -1; }
label {
  display: block;
  margin-bottom: 8px;
  color: #d5dae4;
  font-size: 0.94rem;
}
input, select, textarea, button {
  font: inherit;
}
input, select, textarea {
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 16px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
input::placeholder, textarea::placeholder { color: #96a0af; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(215,181,109,0.6);
  box-shadow: 0 0 0 4px rgba(215,181,109,0.09);
  background: rgba(255,255,255,0.065);
}
button, .back-link, .btn-primary, .btn-secondary {
  min-height: 58px;
  border-radius: 16px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
button { border: none; }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: #121212;
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
}
.button-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.autocomplete-field { z-index: 20; }
.autocomplete-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  background: #111722;
  border: 1px solid rgba(215,181,109,0.24);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
  max-height: 320px;
  overflow-y: auto;
}
.autocomplete-item {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  display: grid;
  gap: 3px;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover,
.autocomplete-item.is-active { background: rgba(215,181,109,0.12); }
.autocomplete-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}
.autocomplete-sub { font-size: 0.88rem; color: var(--muted); }
.autocomplete-metro { color: var(--gold-strong); font-size: 0.86rem; }
.helper, .error {
  margin-top: 8px;
  font-size: 0.88rem;
}
.helper { color: var(--muted); }
.error { color: var(--danger); min-height: 1.2em; }
.contact-field input, .contact-span input { min-height: 62px; }

.section { padding: 42px 0 64px; }
.section.slim { padding-top: 12px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}
.section-heading.compact { margin-bottom: 14px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cards-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  padding: 22px;
  background: var(--panel-2);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.card-link {
  text-decoration: none;
  color: inherit;
}
.card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; }

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.destination-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.destination-card img,
.feature-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #0d1117;
}
.destination-card-body { padding: 18px; }
.destination-card-body h3 { margin: 10px 0 8px; font-size: 1.18rem; }
.destination-card-body p { margin: 0; color: var(--muted); line-height: 1.6; }

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.route-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.route-card h3 { margin: 10px 0 8px; font-size: 1.15rem; }
.route-card p { margin: 0 0 14px; color: var(--muted); }
.route-code {
  color: var(--gold-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.route-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #e2e8f0;
  font-size: 0.95rem;
  flex-wrap: wrap;
}
.inner-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}
.feature-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: center;
}
.feature-hero.small { grid-template-columns: 1fr; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.alliance-block { margin-bottom: 18px; }
.mini-destination {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #f4f7fb;
  border: 1px solid rgba(215,181,109,0.16);
  background: rgba(255,255,255,0.04);
}

.request-page { padding: 8px 0 48px; }
.request-shell {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.request-summary-panel,
.request-form-panel { min-height: 100%; }
.request-title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin-bottom: 12px;
}
.lead.compact {
  max-width: 100%;
  margin-bottom: 20px;
}
.request-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.summary-card,
.card-like {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 16px;
}
.summary-card strong {
  display: block;
  margin-top: 6px;
  font-size: 0.98rem;
}
.summary-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.request-notes { margin-top: 16px; }
.request-notes h3 { margin: 0 0 10px; }
.mini-list {
  padding-left: 18px;
  margin: 12px 0 0;
  color: #d8dde5;
}
.form-grid-request { gap: 18px; }
.request-actions { margin-top: 6px; }
.status-inline {
  display: none;
  margin-top: 16px;
  min-height: 20px;
  color: #ffd6d6;
}
.status-inline.error-state {
  display: block;
}
.thank-you-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, 0.54);
  display: grid;
  place-items: center;
  z-index: 120;
  backdrop-filter: blur(5px);
}
.thank-you-card {
  padding: 36px 48px;
  border-radius: 28px;
  background: rgba(13, 16, 24, 0.88);
  border: 1px solid rgba(215,181,109,0.26);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}
.thank-you-script {
  font-family: "Great Vibes", "Brush Script MT", cursive;
  color: #f1ddb0;
  font-size: clamp(3rem, 10vw, 5.4rem);
  line-height: 1;
  text-align: center;
}
footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-note { color: var(--gold-strong); }

@media (max-width: 980px) {
  .hero-grid, .cards, .cards-four, .route-grid, .destination-grid, .feature-hero, .request-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .form-grid, .metrics, .request-summary-grid {
    grid-template-columns: 1fr;
  }
  .container { width: min(100% - 20px, 1180px); }
  .top-links { display: none; }
  .section-heading, .footer-grid {
    flex-direction: column;
    align-items: start;
  }
  .thank-you-card { padding: 30px 26px; }
}


.brand-logo { gap: 14px; }
.brand-image { width: 48px; height: 48px; object-fit: contain; display: block; }
.top-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-links a { padding: 6px 0; font-weight: 500; }
.hero-copy { padding-top: 72px; }
.footer-inline { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-inline a { color: var(--muted); text-decoration: none; }
.footer-inline a:hover { color: var(--gold-strong); }
.request-shell-single { grid-template-columns: 1fr; max-width: 920px; }
.request-form-panel-wide { padding: 30px; }
.success-box { display:none; margin-top:16px; padding:14px 16px; border-radius:16px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); }
.success-box.error-state { border-color: rgba(255,120,120,0.35); }
[data-date-field] { letter-spacing: 0.04em; }
@media (max-width: 900px) { .top-links { gap: 12px; } }


/* Luxury homepage + request refresh */
.site-header-sticky{position:sticky;top:0;z-index:100;background:linear-gradient(180deg,rgba(6,8,12,.78),rgba(6,8,12,.36));backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.04)}
.nav-luxury{min-height:72px}
.brand-image{height:34px;width:auto;display:block}
.top-links a{opacity:.92}
.nav-cta{min-height:46px;padding:0 18px}
.hero-grid-luxury{grid-template-columns:1.08fr .92fr;align-items:center;min-height:calc(100vh - 120px)}
.hero-copy-luxury{padding-top:0;max-width:700px}
.lead-hero{font-size:1.12rem;max-width:36rem}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.hero-note{margin-top:16px;color:#eadcad;font-size:.96rem}
.home-luxury .hero{padding:18px 0 32px}
.luxury-quote-panel{padding:26px}
.section-luxury-intro{padding-top:8px;padding-bottom:24px}
.luxury-copy-block{max-width:900px}
.destination-grid-home{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.destination-card{position:relative;display:flex;align-items:flex-end;min-height:230px;padding:18px;border-radius:24px;overflow:hidden;text-decoration:none;color:#fff;background-size:cover;background-position:center;box-shadow:0 18px 36px rgba(0,0,0,.26);border:1px solid rgba(255,255,255,.08)}
.destination-card::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,10,14,.05),rgba(7,10,14,.6) 60%,rgba(7,10,14,.82));}
.destination-card span{position:relative;z-index:1;font-size:1.28rem;font-weight:700}
.destination-card-large{grid-column:span 2;grid-row:span 2;min-height:478px}
.section-dark-panel{padding-top:28px;padding-bottom:34px}
.premium-routes-panel{padding:26px}
.link-cloud{display:flex;flex-wrap:wrap;gap:12px 14px}
.link-cloud a{display:inline-flex;min-height:42px;align-items:center;padding:0 16px;border-radius:999px;text-decoration:none;color:#eceff5;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}
.link-cloud a:hover,.destination-card:hover{transform:translateY(-1px)}
.final-cta-section{padding-top:12px;padding-bottom:56px}
.final-cta{padding:28px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.final-cta-actions{display:flex;gap:12px;flex-wrap:wrap}
.footer-inline-rich{justify-content:center;gap:18px;flex-wrap:wrap}
.request-body{background:radial-gradient(circle at top, rgba(215,181,109,0.06), transparent 30%),linear-gradient(180deg,#080a0f 0%,#0b0f16 100%)}
.request-page-luxury{padding-top:28px;padding-bottom:46px}
.request-form-panel-wide{max-width:960px;margin:0 auto;padding:28px}
.request-title{margin:0;font-size:clamp(2.8rem,4.4vw,4.5rem);line-height:.95;font-family:"Cormorant Garamond", Georgia, serif;font-weight:600}
.lead.compact{margin-top:14px;max-width:54rem}
.form-grid-request{margin-top:24px}
.autocomplete-field{position:relative;z-index:5}
.autocomplete-list{position:static;margin-top:8px;right:auto;max-height:280px}
.success-box{display:none;margin-top:16px;padding:16px 18px;border-radius:18px;background:rgba(68,177,97,.12);border:1px solid rgba(68,177,97,.34);color:#e9f6eb}
.success-box.error-state{background:rgba(184,69,69,.14);border-color:rgba(184,69,69,.4);color:#ffdddd}
.flatpickr-calendar{background:#111722;border:1px solid rgba(215,181,109,.26);box-shadow:0 20px 42px rgba(0,0,0,.45)}
.flatpickr-day,.flatpickr-months .flatpickr-month,.flatpickr-current-month input.cur-year,.flatpickr-weekday,.flatpickr-monthDropdown-months,.numInputWrapper span{color:#eef2f8}
.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange{background:linear-gradient(180deg,var(--gold-strong),var(--gold));border-color:var(--gold);color:#111}
.flatpickr-day:hover{background:rgba(215,181,109,.14)}
@media (max-width: 1024px){.hero-grid-luxury{grid-template-columns:1fr;min-height:auto}.destination-grid-home{grid-template-columns:repeat(2,minmax(0,1fr))}.destination-card-large{grid-column:span 2;min-height:320px}.final-cta{flex-direction:column;align-items:flex-start}}
@media (max-width: 680px){.destination-grid-home{grid-template-columns:1fr}.destination-card-large{grid-column:auto;grid-row:auto;min-height:260px}.request-form-panel-wide,.luxury-quote-panel,.premium-routes-panel,.final-cta{padding:20px}.request-title{font-size:clamp(2.2rem,12vw,3.6rem)}.nav{align-items:flex-start}.top-links{gap:10px}}


/* v2 request usability fixes */
.container { width: min(1320px, calc(100% - 32px)); }
.request-page { padding: 18px 0 56px; }
.request-shell { display:block; }
.request-form-panel { width:min(1180px, 100%); margin:0 auto; overflow:visible; }
.request-form-panel-wide { padding: 32px 34px; }
.request-title-compact { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.02; margin-bottom: 8px; }
.request-lead-compact { max-width: 56rem; margin-top: 0; margin-bottom: 18px; font-size: 1rem; }
.form-grid-request { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; align-items:start; overflow:visible; }
.field-half { grid-column:auto; position:relative; }
.field-wide { grid-column:1 / -1; }
.autocomplete-field { position:relative; z-index:40; overflow:visible; }
.autocomplete-field.autocomplete-open { z-index:80; }
.autocomplete-list { top: calc(100% + 8px); left: 0; right: 0; z-index: 90; }
.helper-inline { margin-top:6px; margin-bottom:2px; font-size:.84rem; }
.date-field { position:relative; }
.date-field::after { content:'📅'; position:absolute; right:18px; top:49px; font-size:1rem; opacity:.9; pointer-events:none; }
[data-date-field] { padding-right:50px; cursor:pointer; }
#origin, #destination { text-transform:none; }
.request-body .panel { backdrop-filter: blur(14px); }
.request-body footer { padding-top: 20px; }
@media (max-width: 860px) {
  .container { width: min(100%, calc(100% - 20px)); }
  .request-form-panel-wide { padding: 22px 18px; }
  .form-grid-request { grid-template-columns: 1fr; gap: 14px; }
  .request-title-compact { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .top-links { display:none; }
}


/* final request + transfer fixes */
.request-form-panel{width:min(1280px,100%)}
.request-form-panel-wide{max-width:1240px;padding:36px 42px}
.request-title-compact{font-size:clamp(1.7rem,2.6vw,2.6rem);line-height:1.04;max-width:20ch}
.request-lead-compact{max-width:44rem;font-size:1rem;color:#b8c0cc}
.helper-inline{display:none}
.autocomplete-field,.field,.form-grid-request,.request-form-panel{overflow:visible}
.autocomplete-list{position:absolute !important;top:calc(100% + 8px);left:0;right:0;max-height:320px;overflow-y:auto;z-index:300;background:rgba(11,15,22,.98);border:1px solid rgba(215,181,109,.22);border-radius:18px;box-shadow:0 24px 50px rgba(0,0,0,.45)}
.autocomplete-item{padding:14px 18px;border-bottom:1px solid rgba(255,255,255,.06);cursor:pointer}
.autocomplete-item:last-child{border-bottom:none}
.autocomplete-item:hover,.autocomplete-item.is-active{background:rgba(255,255,255,.05)}
.autocomplete-top{display:flex;justify-content:space-between;gap:14px;font-weight:700;color:#f5f6f8}
.autocomplete-sub{margin-top:4px;color:#a8afbc;font-size:.94rem}
.autocomplete-metro{color:#eadcad;white-space:nowrap}
.date-field::after{content:'';position:absolute;right:18px;top:49px;width:18px;height:18px;opacity:.95;pointer-events:none;background-repeat:no-repeat;background-size:18px 18px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='2' y='3.5' width='16' height='14' rx='2.5' stroke='%23d7b56d' stroke-width='1.5'/%3E%3Cpath d='M6 2v3M14 2v3M2 7.5h16' stroke='%23d7b56d' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")}
[data-date-field]{padding-right:52px;background-image:none}
.home-form-panel .form-grid{align-items:start}
.home-form-panel .autocomplete-field{overflow:visible}
.home-form-panel .autocomplete-list{z-index:260}
@media (max-width: 860px){.request-form-panel-wide{padding:24px 20px}.request-title-compact{font-size:clamp(1.6rem,8vw,2.1rem)}}


.request-body{
  background: radial-gradient(circle at top, rgba(215,181,109,0.08), transparent 28%), linear-gradient(180deg,#162235 0%, #101827 100%);
}
.request-form-panel-wide{max-width:1320px;padding:34px 40px;background:rgba(10,16,28,0.84)}
.request-title-compact{max-width:none}
.request-lead-compact{max-width:52rem}
.trip-type-switch{display:flex;gap:12px;flex-wrap:wrap}
.trip-type-btn{min-height:52px;padding:0 20px;border-radius:999px;border:1px solid rgba(215,181,109,.28);background:rgba(255,255,255,.05);color:#e9edf5;font-weight:700}
.trip-type-btn.is-active{background:linear-gradient(180deg,var(--gold-strong),var(--gold));color:#101216;border-color:var(--gold)}
.field-disabled{opacity:.6}
.field-disabled [data-date-field]{cursor:not-allowed}
.date-field::after{filter:drop-shadow(0 0 4px rgba(215,181,109,.25))}
.flatpickr-calendar{background:#f8fbff !important;border:1px solid rgba(20,29,44,.18) !important;box-shadow:0 22px 44px rgba(0,0,0,.28) !important}
.flatpickr-months .flatpickr-month, .flatpickr-current-month input.cur-year, .flatpickr-weekday, .numInputWrapper span, .flatpickr-day{color:#122033 !important}
.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange{color:#101216 !important}
.home-form-panel .autocomplete-list, .request-form-panel .autocomplete-list{background:rgba(15,21,32,.98)}


/* Multi-city support */
.multi-city-section{margin-top:8px;padding:18px 18px 6px;border:1px solid rgba(215,181,109,.18);border-radius:22px;background:rgba(255,255,255,.03)}
.multi-city-title{font-size:.9rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:14px;font-weight:700}
.multi-city-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
@media (max-width: 920px){.multi-city-grid{grid-template-columns:1fr}}


/* Homepage city image cards */
.destination-card{position:relative;overflow:hidden;background:#07101c !important;}
.destination-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;}
.destination-card::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,10,14,.06),rgba(7,10,14,.38) 55%,rgba(7,10,14,.68));z-index:1;}
.destination-card span{position:relative;z-index:2;}

.brand-logo{display:flex;align-items:center;gap:14px;text-decoration:none}
.brand-text-home{display:flex;flex-direction:column}
.brand-title-home{font-family:Georgia,serif;font-size:2.05rem;font-weight:700;line-height:1;color:#fff6e8;text-shadow:0 3px 18px rgba(0,0,0,.25)}
.brand-tag-home{font-size:.82rem;letter-spacing:.18em;text-transform:uppercase;color:#ead7ab;margin-top:6px}
@media (max-width: 720px){.brand-title-home{font-size:1.4rem}.brand-tag-home{font-size:.68rem;letter-spacing:.12em}}


.request-page-luxury{padding-bottom:40px}.request-shell{padding-top:28px;padding-bottom:40px}.request-form-panel-wide{max-width:980px;margin:0 auto}.fare-influence-box{margin-top:2px}.fare-influence-inner{padding:16px 18px;border:1px solid rgba(215,181,109,0.18);background:rgba(255,255,255,0.04);border-radius:16px;color:#f4ead3;display:grid;gap:8px}.fare-influence-inner span{color:var(--muted)}.checkline{display:flex;gap:12px;align-items:flex-start}.checkline input{width:18px;height:18px;min-height:18px;margin-top:3px}.flexible-toggle{margin-top:-6px}.field-disabled{opacity:.65}.nav nav,.top-links{align-items:center}.hero-copy-luxury h1{max-width:10ch}.lead-hero{max-width:54ch}.section-dark-panel .panel{background:rgba(14,18,26,.9)}.section-luxury-intro .lead{max-width:62ch}.request-actions{justify-content:flex-start}.request-actions .btn-secondary{margin-left:0}@media (max-width:760px){.request-title-compact{font-size:2.35rem;line-height:1.02}.container{width:min(1180px, calc(100% - 24px))}}

/* 2026-03 luxury consistency refresh */
:root{
  --bg-soft:#f5f0e8;
  --bg-panel:rgba(11,16,28,.86);
  --ink-deep:#1b1612;
  --ink-soft:#5a4d42;
  --gold-soft:#d8b66e;
}
body,.request-body,.home-luxury{background:linear-gradient(180deg,#f6f1e9 0%,#efe7dd 100%);color:var(--ink-deep)}
body.has-video:before{background:linear-gradient(90deg, rgba(7,9,16,.76) 0%, rgba(7,9,16,.58) 38%, rgba(7,9,16,.32) 64%, rgba(7,9,16,.50) 100%)}
.hero-copy-luxury h1,.request-title,.section-title,h1,h2,h3{font-family:"Cormorant Garamond", Georgia, serif; letter-spacing:-0.02em}
.hero-copy-luxury h1{font-size:clamp(3.7rem,6.2vw,6.4rem);line-height:.92;max-width:8.8ch;text-wrap:balance}
.lead-hero,.lead,.panel-subtitle,.request-lead-compact{font-size:1.12rem;line-height:1.7;color:#eee2cf}
.hero-note{font-size:1rem;color:#f4e3b3}
.luxury-quote-panel,.request-form-panel-wide{background:linear-gradient(180deg, rgba(8,12,21,.96) 0%, rgba(11,16,29,.94) 100%);border:1px solid rgba(216,182,110,.20);box-shadow:0 24px 60px rgba(0,0,0,.28)}
.form-grid-request{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px 18px}
.form-grid-request .field-wide,.form-grid-request .trip-type-field,.form-grid-request .multi-city-section,.form-grid-request .fare-influence-box,.form-grid-request .button-row,.form-grid-request .contact-span,.form-grid-request .contact-field,.form-grid-request .flexible-toggle{grid-column:1/-1}
.field select,.field input,.field textarea{min-height:60px;border-radius:18px}
.field textarea{min-height:130px}
.fare-influence-inner{background:rgba(255,255,255,.03);border:1px solid rgba(216,182,110,.18)}
.flexible-toggle{padding:4px 0 2px}
.request-shell{padding-top:34px;padding-bottom:28px}
main.request-page{min-height:auto}
footer{margin-top:0}
.section-luxury-intro,.featured-destinations-section,.section-dark-panel,.final-cta-section{background:transparent}
.section-title{font-size:clamp(2.6rem,4.4vw,4rem);line-height:1}
.destination-card span{font-family:Inter,system-ui,sans-serif;font-weight:600}
@media (max-width: 900px){
  .hero-copy-luxury h1{font-size:clamp(3rem,13vw,4.5rem);max-width:none}
  .form-grid-request{grid-template-columns:1fr}
}


/* 2026-03-26 final visibility + request fixes */

.home-luxury, .home-luxury body {background:linear-gradient(180deg,#0b1017 0%, #111827 100%);}
body.has-video:before{background:linear-gradient(90deg, rgba(6,8,14,.78) 0%, rgba(6,8,14,.56) 34%, rgba(6,8,14,.22) 58%, rgba(6,8,14,.50) 100%) !important;}
.hero-copy-luxury h1{font-size:clamp(3.15rem,5.15vw,5.45rem) !important;line-height:.96 !important;max-width:9.6ch !important;color:#fff8ef !important;text-shadow:0 10px 32px rgba(0,0,0,.62), 0 2px 8px rgba(0,0,0,.56) !important;}
.hero-copy-luxury .eyebrow,.hero-copy-luxury .lead-hero,.hero-note{position:relative;z-index:2}
.lead-hero{max-width:48ch !important;color:#f7edde !important;text-shadow:0 2px 10px rgba(0,0,0,.42)}
.panel-title,.panel-subtitle,.luxury-quote-panel label,.luxury-quote-panel .trip-type-btn,.luxury-quote-panel .field input,.luxury-quote-panel .field select{color:#f7f1e7;}
.luxury-quote-panel .panel-title{font-size:2rem;line-height:1.05;margin-bottom:8px}
.luxury-quote-panel .trip-type-btn{background:rgba(255,255,255,.03)}
.luxury-quote-panel .trip-type-btn.is-active{color:#111}
.request-body{background:radial-gradient(circle at top, rgba(215,181,109,0.08), transparent 28%), linear-gradient(180deg,#07101b 0%, #0b1220 100%) !important;color:#f4ead8;}
.request-body footer,.request-body .site-header-sticky{background:linear-gradient(180deg,rgba(6,8,12,.82),rgba(6,8,12,.46));}
.request-form-panel-wide{background:linear-gradient(180deg, rgba(7,12,22,.98) 0%, rgba(10,16,29,.96) 100%) !important;max-width:1120px !important;border:1px solid rgba(216,182,110,.22) !important;box-shadow:0 28px 72px rgba(0,0,0,.34) !important;}
.request-title,.request-title-compact{color:#fff5ea !important;font-size:clamp(2.25rem,3.2vw,3.4rem) !important;line-height:.98 !important;}
.request-lead-compact,.request-body .lead,.request-body .helper,.request-body .field label{color:#e8dcc8 !important;}
.request-body .field input,.request-body .field select,.request-body .field textarea{background:rgba(255,255,255,.035) !important;border:1px solid rgba(216,182,110,.16) !important;color:#f7f1e7 !important;}
.request-body .field select option{color:#111}
.request-body .fare-influence-inner{background:rgba(255,255,255,.04) !important;border-color:rgba(216,182,110,.18) !important;color:#f6ead7 !important;}
.request-body .btn-secondary{background:rgba(255,255,255,.04);color:#f5ead7;border-color:rgba(216,182,110,.18)}
.flatpickr-current-month .flatpickr-monthDropdown-months,.flatpickr-current-month input.cur-year{font-size:1.1rem !important;font-weight:700 !important}
.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{padding-top:8px !important}
@media (max-width: 900px){.hero-copy-luxury h1{font-size:clamp(2.7rem,11vw,4.15rem) !important;max-width:10ch !important}}


/* 2026-03-26 vfinal4 home + request visibility fixes */
.hero-copy-luxury h1{
  font-size:clamp(2.7rem,4.3vw,4.5rem) !important;
  line-height:.96 !important;
  max-width:14.5ch !important;
  letter-spacing:-0.025em !important;
  color:#fffaf2 !important;
  text-shadow:0 12px 34px rgba(0,0,0,.74), 0 3px 10px rgba(0,0,0,.62) !important;
}
.hero-copy-luxury .hero-line{display:block; white-space:nowrap;}
.hero-copy-luxury{max-width:860px !important;}
.final-cta .section-title{
  font-size:clamp(2rem,3vw,2.85rem) !important;
  line-height:1.02 !important;
  color:#fff7ea !important;
  text-shadow:0 6px 18px rgba(0,0,0,.45);
  max-width:14ch;
}
.final-cta .eyebrow{color:#e4c98c !important;}
.final-cta{background:linear-gradient(90deg, rgba(7,12,22,.93) 0%, rgba(10,15,27,.91) 100%) !important;}
.final-cta .btn-secondary{background:rgba(255,255,255,.05) !important;color:#fff7ea !important;border-color:rgba(216,182,110,.18) !important;}
.trip-type-btn:focus,.trip-type-btn:focus-visible{outline:2px solid rgba(216,182,110,.85) !important; outline-offset:2px; box-shadow:none !important;}
.trip-type-btn.is-active{color:#111 !important;}
.route-bubble:visited,.city-bubble:visited,.airport-pill:visited{color:#2a211b !important; background:#fff7ec !important; border-color:rgba(199,160,99,.35) !important;}
#quickQuoteForm .field select,#fullRequestForm .field select{appearance:auto;}
.home-form-panel .form-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
.home-form-panel .field-wide{grid-column:1/-1;}
.home-form-panel .button-row{padding-top:2px;}
.home-form-panel #preferredFareRange,.request-form-panel-wide #preferredFareRange{font-weight:600;}
@media (max-width: 900px){
  .hero-copy-luxury h1{
    font-size:clamp(2.35rem,9.8vw,3.6rem) !important;
    max-width:12ch !important;
  }
  .hero-copy-luxury .hero-line{white-space:normal;}
}


/* 2026-03-26 vfinal5 home + page consistency */
#bg-video{opacity:.42 !important; filter:saturate(.82) brightness(.72);}
body.has-video:before{background:linear-gradient(90deg, rgba(6,8,14,.88) 0%, rgba(6,8,14,.72) 36%, rgba(6,8,14,.42) 60%, rgba(6,8,14,.66) 100%) !important;}
.hero-grid-luxury{align-items:center !important;}
.hero-copy-luxury{max-width:720px !important;}
.hero-copy-luxury h1{font-size:clamp(2.35rem,4.1vw,4.15rem) !important;line-height:.97 !important;max-width:11.8ch !important;}
.hero-copy-luxury .hero-line{display:block;white-space:nowrap;}
.lead-hero{max-width:38ch !important;}
.brand-logo{gap:12px;align-items:center}
.brand-text-home{display:flex;flex-direction:column}
.request-body .brand-title-home,.request-body .brand-tag-home{display:block !important}
.request-body .brand-title-home{font-size:1.5rem !important}
.request-body .brand-tag-home{font-size:.72rem !important;color:#e9dcc6 !important;letter-spacing:.14em !important}
.final-cta .section-title,.section-dark-panel .section-title{color:#fff7ea !important;text-shadow:0 10px 30px rgba(0,0,0,.62) !important;}
.final-cta .section-title{font-size:clamp(1.9rem,2.7vw,2.55rem) !important;max-width:12ch !important}
.link-cloud a{background:rgba(255,255,255,.05) !important;color:#fff6ea !important;border:1px solid rgba(216,182,110,.18) !important}
.link-cloud a:hover,.link-cloud a:focus,.link-cloud a:active,.link-cloud a:visited{background:linear-gradient(180deg,var(--gold-strong),var(--gold)) !important;color:#111317 !important;border-color:var(--gold) !important}
.trip-type-btn{position:relative;overflow:hidden}
.trip-type-btn,.trip-type-btn.is-active,.trip-type-btn:visited{opacity:1 !important}
.trip-type-btn.is-active{background:linear-gradient(180deg,var(--gold-strong),var(--gold)) !important;color:#111 !important;border-color:var(--gold) !important}
.home-form-panel .form-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
.home-form-panel .field:nth-last-child(2), .home-form-panel .field:last-child{grid-column:auto}
.home-form-panel input,.home-form-panel select{min-height:56px}
footer .footer-inline, .topbar-inner{white-space:nowrap; overflow-x:auto; flex-wrap:nowrap;}
footer .footer-inline::-webkit-scrollbar, .topbar-inner::-webkit-scrollbar{display:none}
.footer-inline{justify-content:center;gap:22px !important}
.home-luxury .final-cta{padding:26px 28px !important}
.request-body .trip-type-btn{background:rgba(255,255,255,.04) !important;color:#f5efe7 !important}
.request-body .trip-type-btn.is-active{background:linear-gradient(180deg,var(--gold-strong),var(--gold)) !important;color:#111 !important}
.request-body .checkline{align-items:center !important}
.request-body .checkline span{font-size:1rem;color:#f5eee2}
.request-body .checkline input{accent-color:#d7b56d}
@media (max-width:900px){
  .hero-copy-luxury h1{font-size:clamp(2.15rem,8.5vw,3.3rem) !important;max-width:11.5ch !important}
  .hero-copy-luxury .hero-line{white-space:normal;}
}



/* 2026-03-26 vfinal6 visibility, footer, calendar, and city layout fixes */
.footer-inline-rich{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:center !important;
  gap:20px !important;
  min-height:2cm !important;
  height:2cm !important;
  overflow-x:auto;
  white-space:nowrap;
}
.footer-inline-rich a{display:inline-flex;align-items:center;min-height:40px}
footer, .site-footer{padding:0 !important; margin-top:24px !important;}
.site-footer .footer-inner, .footer-inline-route{
  min-height:2cm !important;
  height:2cm !important;
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:center !important;
  gap:18px !important;
  overflow-x:auto;
  white-space:nowrap;
}
.footer-inline-route nav{display:flex !important;flex-wrap:nowrap !important;gap:18px !important}

.section-luxury-intro .section-title,
.featured-destinations-section .section-title,
.section-dark-panel .section-title,
.final-cta-section .section-title{
  color:#fff8ef !important;
  text-shadow:0 10px 34px rgba(0,0,0,.78), 0 2px 10px rgba(0,0,0,.72) !important;
}
.section-luxury-intro .lead,
.featured-destinations-section .section-link,
.section-dark-panel .section-link,
.section-dark-panel .small-muted,
.final-cta-section .lead{color:#f3e8d7 !important}
.section-luxury-intro .section-title{font-size:clamp(2.25rem,3.7vw,4rem) !important;max-width:14ch !important}
.featured-destinations-section .section-title{font-size:clamp(2.1rem,3.6vw,3.6rem) !important;max-width:16ch !important}
.section-dark-panel .section-title{font-size:clamp(2.1rem,3.6vw,3.6rem) !important;max-width:15ch !important}

.link-cloud a,
.link-cloud a:visited{
  background:rgba(255,255,255,.08) !important;
  color:#fff8ef !important;
  border:1px solid rgba(216,182,110,.24) !important;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}
.link-cloud a:hover,
.link-cloud a:focus,
.link-cloud a:active{
  background:linear-gradient(180deg,var(--gold-strong),var(--gold)) !important;
  color:#111317 !important;
  border-color:var(--gold) !important;
}

.final-cta{
  background:linear-gradient(90deg, rgba(7,12,22,.95) 0%, rgba(10,15,27,.92) 100%) !important;
}
.final-cta .section-title{max-width:10ch !important;font-size:clamp(1.85rem,2.5vw,2.35rem) !important;line-height:1.06 !important}
.final-cta .eyebrow{color:#e7cf95 !important}

#bg-video{opacity:.28 !important; filter:saturate(.72) brightness(.60) !important;}
body.has-video:before{background:linear-gradient(90deg, rgba(6,8,14,.90) 0%, rgba(6,8,14,.78) 38%, rgba(6,8,14,.52) 62%, rgba(6,8,14,.74) 100%) !important;}
.hero-copy-luxury{max-width:640px !important}
.hero-copy-luxury h1{
  font-size:clamp(2rem,3.5vw,3.35rem) !important;
  max-width:10.5ch !important;
  line-height:1.02 !important;
  color:#fffaf1 !important;
  text-shadow:0 12px 34px rgba(0,0,0,.82), 0 2px 10px rgba(0,0,0,.72) !important;
}
.hero-copy-luxury .hero-line{display:block;white-space:normal !important}
.lead-hero,.hero-note{color:#f5eada !important;text-shadow:0 2px 10px rgba(0,0,0,.58)}

.trip-type-btn,
.trip-type-btn:visited{
  color:#f5efe7 !important;
  background:rgba(255,255,255,.06) !important;
  border:1px solid rgba(216,182,110,.24) !important;
}
.trip-type-btn.is-active,
.trip-type-btn.is-active:visited,
.trip-type-btn[aria-selected="true"]{
  background:linear-gradient(180deg,var(--gold-strong),var(--gold)) !important;
  color:#151515 !important;
  border-color:var(--gold) !important;
}

.flatpickr-calendar{
  background:#f8fbff !important;
  border:1px solid rgba(20,29,44,.18) !important;
  box-shadow:0 22px 44px rgba(0,0,0,.28) !important;
  overflow:visible !important;
}
.flatpickr-months{
  min-height:58px !important;
  padding-top:8px !important;
}
.flatpickr-current-month{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  padding-top:8px !important;
  height:auto !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year{
  font-size:1.05rem !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  height:auto !important;
  padding-top:0 !important;
}
.flatpickr-weekdays{margin-top:6px !important}

.request-body .brand-title-home{font-size:2.15rem !important;line-height:1 !important;color:#fff6ea !important}
.request-body .brand-tag-home{font-size:.84rem !important;letter-spacing:.16em !important;color:#ead7b6 !important}
.request-body .brand-image{width:58px !important;height:58px !important}

.page-shell .hero-title,
.page-shell .glass .hero-title{
  color:#fff8ef !important;
  font-family:"Cormorant Garamond", Georgia, serif !important;
  font-size:clamp(2.5rem,4vw,4.35rem) !important;
  line-height:1.02 !important;
  text-shadow:0 10px 26px rgba(0,0,0,.45) !important;
}
.page-shell .glass{background:#061226 !important;border:1px solid rgba(216,191,119,.24) !important}
.page-shell .lede{color:#edf2f8 !important}
.page-shell .content-panel{
  background:#fffaf3 !important;
  border:1px solid rgba(39,28,20,.10) !important;
  box-shadow:0 16px 34px rgba(0,0,0,.04) !important;
}
.page-shell .content-panel h2{color:#241b16 !important;font-size:clamp(1.8rem,2.5vw,2.6rem) !important;line-height:1.08 !important}
.page-shell .content-panel p,
.page-shell .content-panel li,
.page-shell .muted,
.page-shell .small{color:#4b4239 !important}
.page-shell .content-panel ul{color:#4b4239 !important}
.page-shell .route-bubble,
.page-shell .route-bubble:visited,
.page-shell .airport-pill,
.page-shell .airport-pill:visited{
  background:#fff7ec !important;
  color:#2a211b !important;
  border:1px solid rgba(199,160,99,.35) !important;
}
.page-shell .hero-shot{object-fit:cover !important;background:#d7c2a1 !important}

@media (max-width:900px){
  .hero-copy-luxury h1{font-size:clamp(1.85rem,7.2vw,2.9rem) !important;max-width:11ch !important}
  .final-cta .section-title{max-width:none !important}
}


/* 2026-03-26 vfinal7 visibility + layout */
.section-luxury-intro,
.featured-destinations-section,
.section-dark-panel,
.final-cta-section{
  position:relative;
}
.section-luxury-intro .section-title,
.featured-destinations-section .section-title,
.section-dark-panel .section-title,
.final-cta-section .section-title,
.premium-routes-panel .section-title,
.final-cta .section-title{
  color:#fff8ef !important;
  opacity:1 !important;
  text-shadow:0 12px 36px rgba(0,0,0,.82),0 2px 12px rgba(0,0,0,.72) !important;
}
.eyebrow,
.section-luxury-intro .eyebrow,
.featured-destinations-section .eyebrow,
.section-dark-panel .eyebrow,
.final-cta-section .eyebrow{
  color:#e6c98f !important;
  opacity:1 !important;
}
.section-luxury-intro .lead,
.featured-destinations-section p,
.section-dark-panel p,
.final-cta-section p{
  color:#f2e7d9 !important;
  opacity:1 !important;
}
.link-cloud a,
.link-cloud a:link,
.link-cloud a:visited{
  color:#fff8ef !important;
  background:rgba(255,255,255,.08) !important;
  border:1px solid rgba(216,182,110,.32) !important;
}
.link-cloud a:hover,
.link-cloud a:focus,
.link-cloud a:active,
.link-cloud a.is-active{
  background:linear-gradient(180deg,#edd39d,#d6b16f) !important;
  color:#151515 !important;
  border-color:#d9b678 !important;
}
.final-cta{
  background:linear-gradient(90deg, rgba(6,12,24,.94) 0%, rgba(7,13,26,.93) 100%) !important;
}
.final-cta .section-title{
  font-size:clamp(2.15rem,3.3vw,3.1rem) !important;
  max-width:9ch !important;
}
.final-cta-actions .btn-primary,
.final-cta-actions .btn-secondary{
  min-height:64px !important;
}
footer,
.site-footer{
  padding:0 !important;
  min-height:2cm !important;
}
.footer-inline,
.footer-inline-rich,
.footer-inline-route,
.footer-inner{
  min-height:2cm !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:18px !important;
  flex-wrap:nowrap !important;
  white-space:nowrap !important;
  overflow-x:auto !important;
}
.footer-inline a,
.footer-inline-rich a,
.footer-inline-route a,
.footer-inner nav a{
  display:inline-flex !important;
  align-items:center !important;
}
.footer-inner nav{
  display:flex !important;
  gap:18px !important;
  flex-wrap:nowrap !important;
}
.flatpickr-calendar,
.flatpickr-months,
.flatpickr-current-month{
  overflow:visible !important;
}
.flatpickr-current-month{
  height:auto !important;
  min-height:56px !important;
  padding:10px 34px 6px !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
.flatpickr-current-month .numInputWrapper{
  color:#1b2538 !important;
  font-weight:700 !important;
  font-size:1rem !important;
  line-height:1.2 !important;
  background:transparent !important;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month{
  top:8px !important;
}
.page-shell .glass,
.page-shell .hero-title,
.page-shell .lede{
  opacity:1 !important;
}
.page-shell .glass{
  background:#07152b !important;
  border:1px solid rgba(216,191,119,.24) !important;
}
.page-shell .hero-title{
  color:#fff8ef !important;
  text-shadow:0 10px 26px rgba(0,0,0,.46) !important;
}
.page-shell .content-panel{
  background:#fffaf3 !important;
}
.page-shell .content-panel h2{
  color:#231a15 !important;
}
.page-shell .content-panel p,
.page-shell .content-panel li,
.page-shell .content-panel ul{
  color:#4a4138 !important;
}
.route-bubble,
.route-bubble:link,
.route-bubble:visited,
.airport-pill,
.airport-pill:link,
.airport-pill:visited{
  color:#2a211b !important;
  background:#fff7ec !important;
  border:1px solid rgba(199,160,99,.34) !important;
}
.route-bubble:hover,
.route-bubble:focus,
.route-bubble:active,
.airport-pill:hover,
.airport-pill:focus,
.airport-pill:active{
  background:linear-gradient(180deg,#edd39d,#d6b16f) !important;
  color:#151515 !important;
}
.route-bubbles{
  gap:12px !important;
}
.hero-shot{
  object-fit:cover !important;
}



/* 2026-03-27 home layout fix */
body.home-luxury .hero-grid-luxury{align-items:stretch !important; grid-template-columns:minmax(0,1.25fr) minmax(360px,.95fr) !important;}
body.home-luxury .hero-copy-luxury{max-width:920px !important; padding-top:0 !important;}
body.home-luxury .hero-copy-luxury h1{max-width:none !important; font-size:clamp(3.15rem,4.75vw,5.35rem) !important; line-height:.94 !important; letter-spacing:-.03em !important;}
body.home-luxury .hero-copy-luxury .hero-line{display:block !important; white-space:nowrap !important;}
body.home-luxury .lead-hero{max-width:34ch !important; font-size:clamp(1.08rem,1.4vw,1.4rem) !important; line-height:1.42 !important;}
body.home-luxury .hero-note{max-width:none !important; white-space:nowrap !important;}
body.home-luxury .section-luxury-intro .section-title{max-width:none !important; white-space:nowrap !important; font-size:clamp(2.4rem,3.6vw,4.2rem) !important; line-height:1 !important;}
body.home-luxury .featured-destinations-section .section-title{max-width:none !important; white-space:nowrap !important; font-size:clamp(2.25rem,3.35vw,3.75rem) !important; line-height:1 !important;}
body.home-luxury .section-dark-panel .section-title{max-width:none !important; white-space:nowrap !important; font-size:clamp(2.15rem,3.2vw,3.45rem) !important; line-height:1 !important;}
body.home-luxury .final-cta .section-title{max-width:none !important; white-space:nowrap !important; font-size:clamp(1.65rem,2vw,2.3rem) !important; line-height:1.05 !important;}
body.home-luxury .luxury-copy-block, body.home-luxury .premium-routes-panel, body.home-luxury .final-cta{max-width:none !important;}
body.home-luxury .final-cta{padding:22px 26px !important; min-height:2cm !important;}
body.home-luxury .footer-inline-rich{min-height:2cm !important; align-items:center !important;}
body.home-luxury .footer-inline-rich a, body.home-luxury .footer-inline-rich{line-height:1.2 !important;}
body.home-luxury #bg-video{opacity:.22 !important; filter:brightness(.42) saturate(.82) !important;}
@media (max-width: 1200px){
  body.home-luxury .hero-grid-luxury{grid-template-columns:1fr !important;}
  body.home-luxury .hero-copy-luxury .hero-line,
  body.home-luxury .section-luxury-intro .section-title,
  body.home-luxury .featured-destinations-section .section-title,
  body.home-luxury .section-dark-panel .section-title,
  body.home-luxury .final-cta .section-title,
  body.home-luxury .hero-note{white-space:normal !important;}
}


/* 2026-03-27 page card / rail layout fix */
.visual-card, .deal-card, .card, .country-card, .destination-card, .airport-card{display:flex !important; flex-direction:column !important; overflow:hidden !important;}
.visual-card img, .deal-card img, .card img, .country-card img, .destination-card img, .airport-card img{
  width:100% !important;
  height:260px !important;
  object-fit:cover !important;
  object-position:center 58% !important;
  display:block !important;
  background:#e9dfd1 !important;
}
.index-visual-grid .visual-card-body, .card-grid .card-body, .country-grid .country-card-body{min-height:170px !important;}
.index-visual-grid{align-items:stretch !important;}
body.has-sticky-request-rail .visual-card img,
body.has-sticky-request-rail .card img,
body.has-sticky-request-rail .collection-card img,
body.has-sticky-request-rail .destination-card img,
body.has-sticky-request-rail .airport-card img,
body.has-sticky-request-rail .country-card img,
body.has-sticky-request-rail .continent-card img{
  height:260px !important;
  object-fit:cover !important;
  object-position:center 58% !important;
}
.request-rail .field-budget-row, .luxaeris-fixed-rail .field-budget-row{grid-column:1 / -1 !important; display:block !important;}
.request-rail .field-budget-row select, .luxaeris-fixed-rail .field-budget-row select{width:100% !important;}
.flatpickr-calendar{width:340px !important;}
.flatpickr-months{min-height:64px !important;}
.flatpickr-current-month{padding-top:12px !important;}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year{font-size:1.18rem !important; font-weight:700 !important; min-width:92px !important;}
.flatpickr-current-month .numInputWrapper{width:7ch !important;}


/* Final home hero overlap fix */
body.home-luxury .hero-grid-luxury{grid-template-columns:minmax(0,1.42fr) minmax(330px,.88fr) !important;column-gap:28px !important;}
body.home-luxury .hero-copy-luxury{max-width:1000px !important;padding-right:14px !important;}
body.home-luxury .hero-copy-luxury h1{font-size:clamp(2.65rem,3.85vw,4.35rem) !important;line-height:.98 !important;letter-spacing:-.022em !important;max-width:11.75ch !important;}
body.home-luxury .lead-hero{max-width:56ch !important;font-size:clamp(1rem,1.2vw,1.18rem) !important;line-height:1.48 !important;}
body.home-luxury .hero-note{font-size:1rem !important;line-height:1.38 !important;}
@media (max-width: 1100px){
  body.home-luxury .hero-grid-luxury{grid-template-columns:minmax(0,1.18fr) minmax(320px,.92fr) !important;}
  body.home-luxury .hero-copy-luxury h1{font-size:clamp(2.35rem,3.5vw,3.65rem) !important;max-width:12.5ch !important;}
}




/* === LuxAeris home hero + form final balance patch === */
body.home-luxury .hero.hero-luxury{
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  padding-top:100px !important;
  padding-bottom:56px !important;
}
body.home-luxury .hero.hero-luxury::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(5,10,20,.56) 0%,
    rgba(5,10,20,.46) 34%,
    rgba(5,10,20,.28) 60%,
    rgba(5,10,20,.12) 100%
  ) !important;
  z-index:1;
}
body.home-luxury #bg-video{
  opacity:.40 !important;
  filter:brightness(.98) saturate(.96) !important;
}
body.home-luxury .hero-grid.hero-grid-luxury{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(360px,.92fr) !important;
  column-gap:28px !important;
  align-items:center !important;
}
body.home-luxury .hero-copy.hero-copy-luxury{
  max-width:860px !important;
  padding-top:38px !important;
  padding-right:8px !important;
}
body.home-luxury .hero-copy-luxury h1{
  font-size:clamp(2.45rem,3.55vw,4.2rem) !important;
  line-height:1.00 !important;
  letter-spacing:-.022em !important;
  max-width:11.8ch !important;
  margin:12px 0 22px !important;
}
body.home-luxury .hero-copy-luxury .hero-line{display:block;}
body.home-luxury .lead-hero{
  max-width:40ch !important;
  font-size:clamp(1rem,1.12vw,1.16rem) !important;
  line-height:1.48 !important;
  color:rgba(255,248,239,.97) !important;
  margin-bottom:22px !important;
}
body.home-luxury .hero-note{
  color:rgba(255,248,239,.95) !important;
  margin-top:18px !important;
  font-size:1rem !important;
  line-height:1.38 !important;
}
body.home-luxury .hero-actions,
body.home-luxury .hero-cta-row{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:16px !important;
  align-items:center !important;
}
body.home-luxury .luxury-quote-panel,
body.home-luxury .request-card,
body.home-luxury .hero-form-card{
  position:relative;
  z-index:2;
  align-self:center !important;
  width:100% !important;
  max-width:480px !important;
  margin-top:0 !important;
  padding:28px 28px 26px !important;
  border-radius:28px !important;
  background:linear-gradient(180deg, rgba(4,10,20,.90), rgba(5,12,24,.84)) !important;
  border:1px solid rgba(216,191,119,.24) !important;
  box-shadow:0 24px 54px rgba(0,0,0,.34) !important;
}
body.home-luxury .luxury-quote-panel .form-grid,
body.home-luxury .request-card .form-grid,
body.home-luxury .hero-form-card .form-grid{
  row-gap:18px !important;
  column-gap:16px !important;
}
body.home-luxury .trip-type-switch{gap:12px !important;}
body.home-luxury .trip-type-btn{min-height:58px !important;padding:0 24px !important;}
body.home-luxury .field input,
body.home-luxury .field select{min-height:62px !important;}

@media (max-width: 1180px){
  body.home-luxury .hero-grid.hero-grid-luxury{
    grid-template-columns:minmax(0,1.05fr) minmax(330px,.95fr) !important;
    column-gap:22px !important;
  }
  body.home-luxury .hero-copy-luxury h1{
    font-size:clamp(2.2rem,3.25vw,3.7rem) !important;
    max-width:12.2ch !important;
  }
}
@media (max-width: 1024px){
  body.home-luxury .hero.hero-luxury{
    min-height:auto;
    padding-top:84px !important;
    padding-bottom:42px !important;
  }
  body.home-luxury .hero-grid.hero-grid-luxury{
    grid-template-columns:1fr !important;
    row-gap:28px !important;
    align-items:start !important;
  }
  body.home-luxury .hero-copy.hero-copy-luxury{
    max-width:100% !important;
    padding-top:12px !important;
    padding-right:0 !important;
  }
  body.home-luxury .hero-copy-luxury h1{
    font-size:clamp(2rem,6.1vw,3.35rem) !important;
    max-width:100% !important;
  }
  body.home-luxury .lead-hero{max-width:100% !important;}
  body.home-luxury .luxury-quote-panel,
  body.home-luxury .request-card,
  body.home-luxury .hero-form-card{
    max-width:100% !important;
  }
}
/* === end patch === */



/* === 2026-03-29 premium visual refinement patch === */
/* Home hero: keep dark, but let the video breathe more */
body.home-luxury .hero.hero-luxury::before{
  background:linear-gradient(
    90deg,
    rgba(5,10,20,.46) 0%,
    rgba(5,10,20,.34) 34%,
    rgba(5,10,20,.20) 62%,
    rgba(5,10,20,.08) 100%
  ) !important;
}
body.home-luxury #bg-video{
  opacity:.52 !important;
  filter:brightness(1.08) saturate(1.02) !important;
}

/* Home featured cards: remove blank lower area and restore full-bleed imagery */
body.home-luxury .destination-grid-home .destination-card{
  position:relative !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:flex-end !important;
  min-height:230px !important;
  padding:18px !important;
  overflow:hidden !important;
  background:#07101c !important;
}
body.home-luxury .destination-grid-home .destination-card.destination-card-large{
  min-height:478px !important;
}
body.home-luxury .destination-grid-home .destination-card img{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  z-index:0 !important;
}
body.home-luxury .destination-grid-home .destination-card::before{
  content:'' !important;
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(180deg,rgba(7,10,14,.04),rgba(7,10,14,.28) 56%,rgba(7,10,14,.62)) !important;
  z-index:1 !important;
}
body.home-luxury .destination-grid-home .destination-card span{
  position:relative !important;
  z-index:2 !important;
}

/* City pages: lighter editorial glass, not heavy boxes */
body.city-page-with-bg::before{
  background-image:
    linear-gradient(180deg, rgba(4,14,32,0.74) 0%, rgba(4,14,32,0.68) 30%, rgba(4,14,32,0.62) 58%, rgba(4,14,32,0.72) 100%),
    var(--city-page-bg) !important;
}
body.city-page-with-bg::after{
  background:linear-gradient(90deg, rgba(4,14,32,0.26) 0%, rgba(4,14,32,0.10) 35%, rgba(4,14,32,0.16) 70%, rgba(4,14,32,0.28) 100%) !important;
}
body.city-page-with-bg .page-shell > .container{
  align-items:start !important;
  gap:22px !important;
}
body.city-page-with-bg .hero-grid.city-guide-grid{
  grid-template-columns:minmax(0,1fr) !important;
  gap:0 !important;
  padding:26px 30px !important;
  min-height:auto !important;
  background:rgba(5,18,44,0.16) !important;
  border:1px solid rgba(255,255,255,0.10) !important;
  box-shadow:0 20px 50px rgba(0,0,0,0.18) !important;
  backdrop-filter:blur(10px) !important;
}
body.city-page-with-bg .hero-grid.city-guide-grid .glass{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
  min-height:auto !important;
}
body.city-page-with-bg .hero-grid.city-guide-grid img.hero-shot{
  display:none !important;
}
body.city-page-with-bg .related-grid{
  margin-top:18px !important;
  gap:18px !important;
}
body.city-page-with-bg .related-box,
body.city-page-with-bg .content-panel,
body.city-page-with-bg .luxaeris-inline-faq,
body.city-page-with-bg .faq,
body.city-page-with-bg .faq-panel,
body.city-page-with-bg .faq-card{
  background:rgba(5,18,44,0.14) !important;
  border:1px solid rgba(255,255,255,0.10) !important;
  box-shadow:0 18px 46px rgba(0,0,0,0.16) !important;
  backdrop-filter:blur(10px) !important;
}
body.city-page-with-bg .related-box,
body.city-page-with-bg .content-panel,
body.city-page-with-bg .luxaeris-inline-faq{
  padding:24px 28px !important;
}
body.city-page-with-bg .related-box h2,
body.city-page-with-bg .content-panel h2,
body.city-page-with-bg .luxaeris-inline-faq h2,
body.city-page-with-bg .faq-card h2,
body.city-page-with-bg .faq h2{
  color:#fff8ef !important;
}
body.city-page-with-bg .related-box p,
body.city-page-with-bg .content-panel p,
body.city-page-with-bg .luxaeris-inline-faq p,
body.city-page-with-bg .faq-card p,
body.city-page-with-bg .faq p,
body.city-page-with-bg .related-box li,
body.city-page-with-bg .content-panel li,
body.city-page-with-bg .luxaeris-inline-faq li{
  color:rgba(255,248,239,0.92) !important;
}
body.city-page-with-bg .luxaeris-inline-faq details,
body.city-page-with-bg .faq details,
body.city-page-with-bg .faq-card details,
body.city-page-with-bg .accordion details{
  background:rgba(255,255,255,0.04) !important;
  border:1px solid rgba(255,255,255,0.08) !important;
  color:#fff8ef !important;
}
body.city-page-with-bg .luxaeris-inline-faq summary,
body.city-page-with-bg .faq summary,
body.city-page-with-bg .faq-card summary,
body.city-page-with-bg .accordion summary{
  color:#fff8ef !important;
}

/* Keep only the request rail in its original premium cream style */
body.city-page-with-bg .luxaeris-fixed-rail .request-card,
body.city-page-with-bg .request-rail .request-card{
  background:linear-gradient(180deg,#fffaf4,#f6efe3) !important;
  border:1px solid rgba(39,28,20,.10) !important;
  box-shadow:0 18px 38px rgba(39,28,20,.14) !important;
  backdrop-filter:none !important;
}
body.city-page-with-bg .luxaeris-fixed-rail .request-card h2,
body.city-page-with-bg .luxaeris-fixed-rail .request-card h3,
body.city-page-with-bg .luxaeris-fixed-rail .request-card p,
body.city-page-with-bg .luxaeris-fixed-rail .request-card label,
body.city-page-with-bg .luxaeris-fixed-rail .request-card strong,
body.city-page-with-bg .request-rail .request-card h2,
body.city-page-with-bg .request-rail .request-card h3,
body.city-page-with-bg .request-rail .request-card p,
body.city-page-with-bg .request-rail .request-card label{
  color:inherit !important;
}

/* Tighter page rhythm to avoid oversized empty bands */
body.city-page-with-bg .page-shell{
  padding-bottom:28px !important;
}
body.city-page-with-bg .page-shell section + section{
  margin-top:18px !important;
}
body.city-page-with-bg .content-panel[style*="margin-top"]{
  margin-top:18px !important;
}
body.city-page-with-bg .route-bubbles,
body.city-page-with-bg .airport-links{
  gap:10px !important;
}

@media (max-width: 1180px){
  body.city-page-with-bg .hero-grid.city-guide-grid,
  body.city-page-with-bg .related-box,
  body.city-page-with-bg .content-panel{
    padding:22px 22px !important;
  }
}
