/* ============================================================
   pages.css — modern shells for inner public pages + blog hubs
   ============================================================ */

.page-hero {
  position: relative;
  background:
    radial-gradient(900px 320px at 10% -10%, rgba(228, 190, 106, 0.22), transparent 60%),
    linear-gradient(160deg, #14263F 0%, #1a3354 48%, #203c63 100%);
  color: #FBFAF7;
  padding: 2.75rem 0 2.5rem;
  overflow: hidden;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  font-size: .82rem;
  color: rgba(251, 250, 247, .65);
  margin-bottom: 1rem;
}

.page-crumbs a { color: #E4BE6A; text-decoration: none; }
.page-crumbs a:hover { text-decoration: underline; }

.page-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #E4BE6A;
  margin: 0 0 .6rem;
  font-weight: 600;
}

.page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 .75rem;
  max-width: 18ch;
}

.page-lead {
  margin: 0;
  max-width: 42rem;
  color: rgba(251, 250, 247, .8);
  font-size: 1.05rem;
  line-height: 1.55;
}

.section-pad { padding: 2.75rem 0 3.5rem; }

/* ---- Blog hub ---- */
.blog-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: start;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.hub-card {
  background: #fff;
  border: 1px solid #E7E2D6;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 21, 43, .1);
}

.hub-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #F4F2EC;
  overflow: hidden;
}

.hub-card-media img,
.hub-card-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-card-ph {
  background: linear-gradient(135deg, #E7E2D6, #F7F0E1);
}

.hub-card-body { padding: 1.15rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }

.hub-chip {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9C7724;
  background: #F7F0E1;
  border-radius: 999px;
  padding: .28rem .7rem;
  text-decoration: none;
}

.hub-card-body h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.hub-card-body h2 a { color: #14263F; text-decoration: none; }
.hub-card-body h2 a:hover { color: #9C7724; }
.hub-card-body p { margin: 0; color: #6C7B8E; font-size: .92rem; line-height: 1.5; flex: 1; }

.hub-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  border-top: 1px solid #E7E2D6;
  padding-top: .85rem;
  margin-top: .35rem;
  font-size: .82rem;
  color: #6C7B8E;
}

.hub-read { color: #9C7724; font-weight: 700; text-decoration: none; }

.hub-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1.5rem;
  background: #F4F2EC;
  border-radius: 18px;
}

.hub-pager { margin-top: 2rem; display: flex; justify-content: center; }

.hub-panel {
  background: #fff;
  border: 1px solid #E7E2D6;
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.hub-panel h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 .9rem;
  color: #14263F;
}

.hub-search { display: flex; gap: .4rem; }
.hub-search input {
  flex: 1;
  border: 1.5px solid #E7E2D6;
  border-radius: 100px;
  padding: .55rem .9rem;
  font: inherit;
}
.hub-search button {
  border: none;
  border-radius: 100px;
  padding: .55rem 1rem;
  background: linear-gradient(135deg, #E4BE6A, #C79A3F);
  color: #14263F;
  font-weight: 700;
  cursor: pointer;
}

.hub-cats { list-style: none; margin: 0; padding: 0; }
.hub-cats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid #F0EBE1;
  color: #14263F;
  text-decoration: none;
  font-size: .92rem;
}
.hub-cats a:last-child { border-bottom: 0; }
.hub-cats a.on,
.hub-cats a:hover { color: #9C7724; font-weight: 600; }
.hub-cats em {
  font-style: normal;
  font-size: .75rem;
  background: #F4F2EC;
  color: #6C7B8E;
  border-radius: 999px;
  padding: .15rem .5rem;
}

.hub-featured { list-style: none; margin: 0; padding: 0; }
.hub-featured li + li { margin-top: .85rem; padding-top: .85rem; border-top: 1px solid #F0EBE1; }
.hub-featured a { display: flex; gap: .75rem; text-decoration: none; color: inherit; }
.hub-featured img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.hub-featured strong { display: block; font-size: .9rem; color: #14263F; line-height: 1.3; }
.hub-featured small { color: #6C7B8E; }

/* ---- Inner content pages (about, contact, legal, etc.) ---- */
.search-top-section > img.img-fluid {
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.section-padding .container > h1,
.section-padding h1.mb-4,
.about-content h1,
.contact-content h1 {
  font-family: "Fraunces", Georgia, serif !important;
  font-weight: 500 !important;
  color: #14263F !important;
}

.section-padding p,
.about-content p,
.contact-content p {
  color: #3d4c5f;
  line-height: 1.65;
}

/* Soften legacy content cards */
.section-padding .card,
.section-padding .bg-light {
  border-radius: 16px !important;
  border-color: #E7E2D6 !important;
}

@media (max-width: 991px) {
  .blog-hub-grid { grid-template-columns: 1fr; }
  .blog-card-grid { grid-template-columns: 1fr; }
}

@media (min-width: 700px) and (max-width: 991px) {
  .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   Money pages — hero enquiry + rich content
   ============================================================ */
.money-hero {
  position: relative;
  isolation: isolate;
  color: #FBFAF7;
  padding: 1.75rem 0 2rem;
  overflow: hidden;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
}
.money-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.money-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.money-hero-shade {
  position: absolute;
  inset: 0;
  /* Left scrim only — keep destination photo clear (no heavy colour wash) */
  background:
    linear-gradient(
      100deg,
      rgba(15, 23, 32, .72) 0%,
      rgba(15, 23, 32, .42) 38%,
      rgba(15, 23, 32, .12) 62%,
      rgba(15, 23, 32, 0) 100%
    );
}
.money-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 2rem 2.5rem;
  align-items: center;
  width: 100%;
}
.money-hero-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #E4BE6A;
  font-weight: 600;
  margin: 0 0 .7rem;
}
.money-hero-copy {
  max-width: 34rem;
  padding-bottom: .25rem;
}
.money-hero-copy h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.12;
  margin: 0 0 .85rem;
  max-width: 16ch;
  text-wrap: balance;
}
.money-hero-lead {
  margin: 0;
  color: rgba(251, 250, 247, .88);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 32rem;
}
.money-hero-lead a { color: #E4BE6A; font-weight: 600; }

.money-hero-form { width: 100%; }
.money-enq {
  background: rgba(251, 250, 247, .98);
  color: #14263F;
  border: 1px solid rgba(228, 190, 106, .45);
  border-radius: 16px;
  padding: 1rem 1.05rem 1.1rem;
  box-shadow: 0 20px 44px rgba(8, 21, 43, .28);
}
.money-enq-form { display: flex; flex-direction: column; gap: .5rem; }
.money-enq-field label,
.money-enq-trip legend {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: .2rem;
  color: #14263F;
}
.money-enq-field label span,
.money-enq-trip legend span { color: #C79A3F; }
.money-enq-field input,
.money-enq-field select,
.money-enq-field textarea {
  width: 100%;
  border: 1.5px solid #E7E2D6;
  border-radius: 9px;
  padding: .5rem .65rem;
  font: inherit;
  font-size: .92rem;
  background: #fff;
  color: #14263F;
  line-height: 1.3;
}
.money-enq-field input:focus,
.money-enq-field select:focus,
.money-enq-field textarea:focus {
  outline: none;
  border-color: #C79A3F;
  box-shadow: 0 0 0 3px rgba(199, 154, 63, .15);
}
.money-enq-trip {
  border: 0;
  margin: 0;
  padding: .1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  align-items: center;
}
.money-enq-trip legend {
  width: auto;
  float: none;
  padding: 0;
  margin: 0 .75rem 0 0;
}
.money-radio {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  cursor: pointer;
}
.money-enq-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
}
.money-enq-route,
.money-enq-dates {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.money-enq-contact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.money-enq-sep {
  border: 0;
  border-top: 1px solid #E7E2D6;
  margin: .05rem 0;
}
.money-enq-submit {
  width: 100%;
  border: 0;
  border-radius: 100px;
  padding: .72rem 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #E4BE6A, #C79A3F);
  color: #14263F;
  cursor: pointer;
  font-size: .9rem;
}
.money-enq-submit:hover { filter: brightness(1.03); }
.money-enq-note {
  margin: 0;
  text-align: center;
  font-size: .74rem;
  color: #6C7B8E;
}

.money-crumbs { padding-top: 1rem; }
.money-rich-content {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #3d4c5f;
}
.money-rich-content h1,
.money-rich-content h2,
.money-rich-content h3,
.money-rich-content h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  color: #14263F;
  margin: 1.4rem 0 .7rem;
  line-height: 1.25;
}
.money-rich-content h2 { font-size: 1.55rem; }
.money-rich-content h3 { font-size: 1.25rem; }
.money-rich-content p { margin: 0 0 1rem; }
.money-rich-content ul,
.money-rich-content ol { margin: 0 0 1rem 1.2rem; }
.money-rich-content a { color: #9C7724; }
.money-rich-content img { max-width: 100%; height: auto; border-radius: 12px; }
.money-side-sticky { position: sticky; top: 6.5rem; }
.money-side-quote { justify-content: center; width: 100%; }

/* Skip link (SXO / a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: .75rem 1.1rem;
  background: #14263F;
  color: #FBFAF7;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid #E4BE6A;
}

/* Destination FAQ — distinct band from description */
.money-faq {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  margin-top: 0;
  background: var(--haze, #F4F2EC);
  border-top: 1px solid var(--line, #E7E2D6);
  border-bottom: 1px solid var(--line, #E7E2D6);
}
.money-faq-kicker {
  font-family: var(--data, "Space Grotesk", sans-serif);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep, #9C7724);
  margin: 0 0 .65rem;
}
.money-faq-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.money-faq-head h2 {
  font-family: var(--display, "Fraunces", Georgia, serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  color: var(--ink, #14263F);
  margin: 0 0 .55rem;
}
.money-faq-head p {
  margin: 0;
  color: var(--muted, #6C7B8E);
  line-height: 1.55;
}
.money-faq-head a { color: var(--gold-deep, #9C7724); font-weight: 600; }
.money-faq-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  max-width: 48rem;
}
.money-faq-item {
  border: 1px solid var(--line, #E7E2D6);
  border-radius: 14px;
  background: var(--white, #fff);
  padding: .15rem 1.15rem;
  box-shadow: 0 2px 10px -4px rgba(20, 38, 63, .08);
}
.money-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink, #14263F);
  padding: .95rem 0;
  list-style: none;
}
.money-faq-item summary::-webkit-details-marker { display: none; }
.money-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold, #C79A3F);
  font-weight: 700;
}
.money-faq-item[open] summary::after { content: "–"; }
.money-faq-item p,
.money-faq-a p {
  margin: 0 0 1rem;
  color: var(--ink-2, #3D4E66);
  line-height: 1.65;
  font-size: .98rem;
}

/* Sample airline routes */
.money-sample-routes {
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.money-routes-title {
  font-family: var(--display, "Fraunces", Georgia, serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink, #14263F);
  margin: 0 0 .35rem;
}
.money-route-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: .85rem 1rem;
  background: var(--white, #fff);
  border: 1px solid var(--line, #E7E2D6);
  border-radius: 14px;
}
.money-route-logo {
  width: 88px;
  height: 56px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line, #E7E2D6);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.money-route-logo img {
  max-width: 72px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.money-route-logo-ph {
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6C7B8E;
}
.money-route-path {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}
.money-route-end {
  min-width: 0;
}
.money-route-end small {
  display: block;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted, #6C7B8E);
}
.money-route-end strong {
  display: block;
  color: var(--ink, #14263F);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.money-route-arrow {
  color: var(--gold-deep, #9C7724);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.money-route-fare {
  text-align: right;
  white-space: nowrap;
}
.money-route-fare small {
  display: block;
  font-size: .68rem;
  color: var(--muted, #6C7B8E);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.money-route-fare strong {
  font-family: var(--data, "Space Grotesk", sans-serif);
  font-size: 1.15rem;
  color: var(--gold-deep, #9C7724);
}
.money-side-title {
  font-family: var(--display, "Fraunces", Georgia, serif) !important;
  font-style: italic;
  font-weight: 500 !important;
  color: var(--gold-deep, #9C7724) !important;
}
@media (max-width: 640px) {
  .money-route-row {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }
  .money-route-fare {
    grid-column: 2;
    text-align: left;
  }
}

.blog-faq {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(20, 38, 63, 0.12);
  background: transparent;
  border-bottom: none;
}
.blog-faq .money-faq-head h2 {
  font-size: 1.35rem;
}

/* ---- Trust strip (light luxury) ---- */
.tbf-trust {
  background: #fff;
  color: #3D4E66;
  padding: .7rem 0;
  border-bottom: 1px solid #E7E2D6;
  border-top: 1px solid #E7E2D6;
}
.tbf-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  letter-spacing: .04em;
}
.tbf-trust-k {
  color: #9C7724;
  font-weight: 600;
  text-decoration: none;
}
.tbf-trust-k em {
  font-style: normal;
  color: #6C7B8E;
  font-weight: 500;
  margin-left: .35rem;
}
.tbf-trust a:hover { color: #14263F; }

/* ---- Quick answer (LLM / AEO) — clean card ---- */
.tbf-qa {
  padding: 1.75rem 0 0;
  background: var(--paper, #FBFAF7);
}
.tbf-qa-card {
  background: #fff;
  border: 1px solid #E7E2D6;
  border-radius: 18px;
  padding: 1.35rem 1.5rem 1.4rem;
  box-shadow: 0 10px 28px rgba(8, 21, 43, .04);
  max-width: 920px;
}
.tbf-qa-label {
  margin: 0 0 .55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9C7724;
}
.tbf-qa-answer {
  margin: 0;
  color: #14263F;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 62ch;
}
.tbf-qa-facts {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .55rem .9rem;
}
.tbf-qa-facts li {
  position: relative;
  padding: .55rem .75rem .55rem 1.7rem;
  background: #F7F0E1;
  border-radius: 10px;
  color: #14263F;
  font-size: .9rem;
  line-height: 1.4;
}
.tbf-qa-facts li::before {
  content: "";
  position: absolute;
  left: .7rem;
  top: .95rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #C79A3F;
}
.tbf-qa-note {
  margin: 1rem 0 0;
  padding-top: .85rem;
  border-top: 1px solid #E7E2D6;
  color: #6C7B8E;
  font-size: .88rem;
  line-height: 1.5;
}

/* ---- Related links ---- */
.tbf-related {
  padding: 1.5rem 0 2rem;
  background: var(--paper, #FBFAF7);
}
.tbf-related-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #14263F;
  margin: 0 0 1rem;
}
.tbf-related-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .65rem;
}
.tbf-related-grid a {
  display: block;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid #E7E2D6;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.tbf-related-grid a:hover {
  border-color: rgba(199, 154, 63, .55);
  box-shadow: 0 8px 20px rgba(8, 21, 43, .06);
}
.tbf-related-name {
  display: block;
  color: #14263F;
  font-weight: 600;
  font-size: .95rem;
}
.tbf-related-reason {
  display: block;
  margin-top: .2rem;
  color: #6C7B8E;
  font-size: .8rem;
}

.money-price-disclaimer {
  font-size: .88rem;
  color: #3D4E66;
  background: #fff;
  border: 1px solid #E7E2D6;
  border-radius: 12px;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
}
.money-price-disclaimer a { color: #9C7724; font-weight: 600; }

.tbf-content-author {
  color: #6C7B8E !important;
}
.tbf-content-author time { white-space: nowrap; }

/* Photographic imagery — keep natural resampling (avoid contrast “sharpen” that softens photos) */
.money-hero-bg img,
.promo-media img,
.pd-media img,
.bm-card img,
.deal-media img,
.cabin-media img,
.ts-card img,
.mc-media {
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.money-related {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid #E7E2D6;
}
.money-related h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.45rem;
  color: #14263F;
  margin: 0 0 .35rem;
}
.money-related-lead {
  margin: 0 0 1rem;
  color: #5a6a7d;
}
.money-related-lead a,
.money-related-more a { color: #9C7724; font-weight: 600; }
.money-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem .9rem;
}
.money-related-list a {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid #EDE8DD;
  text-decoration: none;
  color: #14263F;
  font-size: .95rem;
}
.money-related-list a span:last-child {
  font-family: "Space Grotesk", sans-serif;
  color: #9C7724;
  font-weight: 600;
  white-space: nowrap;
}
.money-related-more {
  margin: 1rem 0 0;
  font-size: .92rem;
  color: #5a6a7d;
}
@media (max-width: 767px) {
  .money-related-list { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .money-hero {
    min-height: 0;
    align-items: stretch;
    padding: 1.35rem 0 1.5rem;
  }
  .money-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    align-items: start;
  }
  .money-hero-copy h1 { max-width: none; }
  .money-enq-row,
  .money-enq-route,
  .money-enq-dates,
  .money-enq-contact { grid-template-columns: 1fr; }
  .money-side-sticky { position: static; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .money-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 1.5rem;
  }
  .money-enq-contact { grid-template-columns: 1fr 1fr; }
  .money-enq-contact .money-enq-field:last-child { grid-column: 1 / -1; }
}
.money-enq-form.is-oneway .money-enq-dates {
  grid-template-columns: 1fr;
}

/* ============================================================
   /flight hub — cabin fares under themed hero
   ============================================================ */
.flight-hub-intro {
  margin-bottom: 1.75rem;
}
.flight-hub-intro h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  color: #14263F;
  margin: 0 0 .45rem;
}
.flight-hub-intro p {
  margin: 0;
  color: #5a6a7d;
  max-width: 38rem;
  line-height: 1.55;
}
.flight-hub-cabin {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid #E7E2D6;
}
.flight-hub-cabin:first-of-type { border-top: 0; padding-top: 0; }
.flight-hub-cabin-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.flight-hub-cabin-body h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: #14263F;
  margin: 0 0 .4rem;
}
.flight-hub-cabin-body > p {
  margin: 0 0 1rem;
  color: #5a6a7d;
  line-height: 1.5;
  font-size: .98rem;
}
.flight-hub-fares {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem .75rem;
}
.flight-hub-fares a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  padding: .45rem 0;
  border-bottom: 1px solid #EDE8DD;
  text-decoration: none;
  color: #14263F;
  font-size: .92rem;
}
.flight-hub-fares a:hover .flight-hub-fare-city { color: #9C7724; }
.flight-hub-fare-city { font-weight: 600; }
.flight-hub-fare-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: .86rem;
  font-weight: 600;
  color: #9C7724;
  white-space: nowrap;
}
.flight-hub-benefits {
  list-style: none;
  margin: 0;
  padding: .25rem 0 0;
}
.flight-hub-benefits li {
  position: relative;
  padding: .45rem 0 .45rem 1.15rem;
  color: #3d4c5f;
  font-size: .95rem;
  border-bottom: 1px solid #EDE8DD;
}
.flight-hub-benefits li:last-child { border-bottom: 0; }
.flight-hub-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #C79A3F;
}
.flight-hub-empty { color: #6C7B8E; font-size: .95rem; }

@media (max-width: 767px) {
  .flight-hub-cabin {
    grid-template-columns: 1fr;
    gap: .9rem;
  }
  .flight-hub-cabin-media img {
    aspect-ratio: 16 / 9;
    max-height: 200px;
  }
  .flight-hub-fares { grid-template-columns: 1fr; }
}

/* ── Airline / hotel landing polish ── */
.airline-landing-hero,
.hotel-landing-hero {
  min-height: min(78vh, 700px);
  padding-block: 2.25rem 2.5rem;
}
.airline-hero-points {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .9rem;
}
.airline-hero-points li {
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(251, 250, 247, .92);
  padding: .35rem .7rem;
  border: 1px solid rgba(228, 190, 106, .4);
  border-radius: 999px;
  background: rgba(15, 23, 32, .28);
}
.airline-hero-call {
  margin: 1rem 0 0;
  font-size: .98rem;
  color: rgba(251, 250, 247, .86);
}
.airline-hero-call a {
  color: #E4BE6A;
  font-weight: 600;
  text-decoration: none;
}
.airline-hero-call a:hover { text-decoration: underline; }

.money-enq--compact {
  padding: .95rem 1rem 1.05rem;
}
.money-enq--compact .money-enq-form { gap: .42rem; }
.money-enq-title {
  margin: 0 0 .15rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #14263F;
  line-height: 1.25;
}
.money-enq--compact .money-enq-field input,
.money-enq--compact .money-enq-field select {
  padding: .45rem .6rem;
  font-size: .88rem;
}
.money-enq--compact .money-enq-submit {
  margin-top: .2rem;
  padding: .7rem 1rem;
}

.airline-body { padding-block: clamp(2.25rem, 4vw, 3.5rem); }
.airline-prose {
  max-width: 46rem;
}
.airline-prose h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.25;
  margin: 0 0 1rem;
  color: #14263F;
}
.airline-prose h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.15rem;
  margin: 1.6rem 0 .65rem;
  color: #14263F;
}
.airline-prose p {
  margin: 0 0 1rem;
  color: #3d4c5f;
  font-size: 1.02rem;
  line-height: 1.7;
}
.airline-prose .flight-description,
.airline-prose .info-text {
  margin: 0;
}
.airline-prose .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin: 1.5rem 0 0;
}
.airline-prose .row > [class*="col-"] {
  width: auto;
  max-width: none;
  flex: none;
  padding: 0;
  margin: 0;
}
.airline-prose .row > [class*="col-lg-12"] {
  grid-column: 1 / -1;
}
.airline-prose img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(20, 38, 63, .08);
}

.airline-side__card {
  background: #FBFAF7;
  border: 1px solid #E7E2D6;
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 12px 32px rgba(20, 38, 63, .06);
}
.airline-side__eyebrow {
  margin: 0 0 .4rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9C7724;
}
.airline-side__title {
  margin: 0 0 .55rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #14263F;
  line-height: 1.2;
}
.airline-side__copy {
  margin: 0 0 1.1rem;
  color: #4a5a6d;
  font-size: .95rem;
  line-height: 1.55;
}
.airline-side__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}
.airline-side__phone {
  display: block;
  margin: .85rem 0 0;
  text-align: center;
  font-weight: 600;
  color: #14263F;
  text-decoration: none;
  font-size: 1.05rem;
}
.airline-side__phone:hover { color: #9C7724; }
.airline-side__trust {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: .9rem 0 0;
  border-top: 1px solid #EDE8DD;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .75rem;
}
.airline-side__trust li {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #6C7B8E;
}

.airline-partners { padding-block: clamp(2rem, 3.5vw, 3rem); background: #F7F4EE; }
.airline-partners__head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.airline-partners__head h2 {
  margin: 0 0 .35rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.45rem;
  color: #14263F;
}
.airline-partners__head p {
  margin: 0;
  color: #6C7B8E;
  font-size: .95rem;
}

@media (max-width: 991px) {
  .airline-landing-hero .money-hero-grid,
  .hotel-landing-hero .money-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .airline-prose .row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .airline-prose .row { grid-template-columns: 1fr; }
  .airline-hero-points { gap: .4rem; }
}

