:root {
  --navy: #0B1F33;
  --navy-2: #123047;
  --ink: #142536;
  --muted: #5B6B78;
  --line: #E4E8EC;
  --sand: #F4F6F8;
  --sand-2: #E8ECF0;
  --paper: #FFFFFF;
  --white: #FFFFFF;
  --sky: #0EA5E9;
  --sky-2: #38BDF8;
  --cta: #E85D04;
  --cta-2: #F97316;
  --cta-hover: #C2410C;
  --gold: #F5C518;
  --search: #00B4D8;
  --search-hover: #0096B7;
  --danger: #B42318;
  --ok: #067647;
  --shadow-sm: 0 1px 2px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 51, 0.08);
  --shadow-lg: 0 24px 48px rgba(11, 31, 51, 0.14);
  --radius: 12px;
  --header: 3.75rem;
  --font: "DM Sans", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --z-nav: 30;
  --z-dd: 40;
  --z-modal: 50;
  --z-cookie: 60;
  --z-chat: 70;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  font-size: 1.0625rem;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
}
img, video, iframe, svg { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; }
a:hover { color: var(--cta); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; color: var(--navy); letter-spacing: -0.02em; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.55rem, 2.4vw, 2.1rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }

.skip-link {
  position: absolute; left: 1rem; top: -80px; background: var(--cta); color: #fff;
  padding: 0.5rem 0.8rem; z-index: 100; border-radius: 6px;
}
.skip-link:focus { top: 0.5rem; }

.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.container-wide { width: min(1240px, calc(100% - 2rem)); margin-inline: auto; }
.btn, .trip-tab, .swap-btn, .menu-toggle, .pax-trigger, .nav-dd-btn, .stepper button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: 0; border-radius: 10px; padding: 0.85rem 1.25rem;
  font-weight: 600; text-decoration: none; transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { color: #fff; }
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); color: #fff; }
.btn-search { background: var(--gold); color: var(--navy); min-height: 3.15rem; padding-inline: 1.6rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 800; }
.btn-search:hover { background: #e0b40f; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--sand); color: var(--navy); }
.btn-sm { padding: 0.6rem 0.95rem; font-size: 0.95rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.65; cursor: not-allowed; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}

/* Header */
.site-header { position: sticky; top: 0; z-index: var(--z-nav); background: var(--gold); border-bottom: 0; padding-top: env(safe-area-inset-top, 0px); }
.nav-bar { position: relative; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.6rem; }
.full-grid { grid-template-columns: 1fr 1fr 1fr !important; }
.full-quote .search-submit, .full-quote .swap-btn { display: none; }
.logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--navy); font-weight: 700; }
.logo:hover { color: var(--navy); }
.logo-img { display: block; height: 44px; width: auto; max-width: min(220px, 48vw); }
.site-header .logo,
.footer-disclaimer .logo {
  background: #fff;
  border-radius: 8px;
  padding: 0.18rem 0.55rem 0.2rem;
  box-shadow: 0 1px 2px rgba(11, 31, 51, 0.08);
}
.site-header .logo-img { height: 38px; max-width: min(200px, 46vw); }
.logo-mark svg { width: 40px; height: 40px; }
.logo-type { font-family: var(--serif); font-size: 1.35rem; letter-spacing: -0.03em; }
.logo-o { color: var(--cta); }
.primary-nav { display: none; }
.primary-nav > a, .nav-dd-btn {
  display: inline-flex; align-items: center; gap: 0.2rem;
  padding: 0.55rem 0.7rem; border-radius: 8px; text-decoration: none;
  color: var(--navy); font-weight: 500; background: none; border: 0; font-size: 0.95rem;
}
.primary-nav > a:hover, .nav-dd-btn:hover, .primary-nav a[aria-current], .nav-dd-btn[aria-current] { background: var(--sand); color: var(--navy); }
.nav-dd { position: relative; }
.nav-dd-btn svg { width: 1em; height: 1em; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 0.35rem); left: 0; min-width: 12.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 0.4rem; display: none; z-index: var(--z-dd);
}
.nav-dd.is-open .nav-dd-menu { display: block; }
.nav-dd-menu a { display: block; padding: 0.55rem 0.7rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-size: 0.92rem; }
.nav-dd-menu a:hover { background: var(--sand); color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 0.85rem; margin-left: auto; }
.header-currency {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--navy); background: #fff; border: 1px solid rgba(11,31,51,0.12); border-radius: 6px; padding: 0.28rem 0.5rem;
}
.header-call { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.header-call span { font-size: 0.72rem; font-weight: 700; color: var(--navy); }
.header-call a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--navy); font-weight: 800; font-size: 1.18rem; text-decoration: none; white-space: nowrap;
}
.header-call a:hover { color: #123047; }
.header-call svg { width: 1.05em; height: 1.05em; }
.header-phone { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 600; text-decoration: none; color: var(--navy); }
.call-desk {
  display: flex; flex-direction: column; justify-content: center;
  background: var(--sand); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.35rem 0.8rem 0.4rem; min-width: 0; max-width: 18rem; line-height: 1.2;
}
.call-desk-num span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.call-desk-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.call-desk-num {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 700; color: var(--navy); text-decoration: none; font-size: 0.98rem;
}
.call-desk-num:hover { color: var(--cta); }
.call-desk-note { font-size: 0.72rem; color: var(--muted); }
.nav-call-mobile { display: none; }
.menu-toggle { display: none; background: none; border: 0; padding: 0; color: var(--navy); width: 44px; height: 44px; place-items: center; flex-shrink: 0; }
.primary-nav > a.nav-quote-mobile { display: none; }

/* Search */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.search-wrap { margin-top: 0; }
.search-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 1.25rem 1.25rem 1.35rem;
}
.search-wrap.is-compact .search-panel { padding: 1.1rem 1.15rem 1.15rem; }
.search-panel-copy h2 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.search-panel-copy p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.trip-tabs { display: inline-flex; background: var(--sand); padding: 0.2rem; border-radius: 999px; margin-bottom: 1rem; }
.trip-tab {
  border: 0; background: transparent; padding: 0.45rem 0.95rem; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem; color: var(--muted);
}
.trip-tab.is-active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.search-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1.2fr 0.9fr 0.9fr 1.1fr;
  gap: 0.65rem;
  align-items: end;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.3fr auto;
  gap: 0.65rem;
  align-items: end;
  margin-top: 0.65rem;
}
.search-honest { margin: 0.75rem 0 0; font-size: 0.82rem; color: var(--muted); }
.field { position: relative; display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.field label, .field-label, .field legend { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.field-control {
  display: flex; align-items: center; gap: 0.45rem;
  border: 1px solid var(--line); background: var(--paper); border-radius: 12px;
  padding: 0 0.85rem; min-height: 3.15rem; width: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field-control:focus-within { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.18); background: #fff; }
.field-control svg { color: var(--muted); }
.field-control input, .field-control select, .pax-trigger {
  border: 0; background: transparent; width: 100%; min-width: 0; color: var(--ink); font-size: 1rem; padding: 0.7rem 0;
}
.field-control input[type="date"] { min-width: 0; max-width: 100%; }
.pax-trigger { display: flex; align-items: center; gap: 0.45rem; text-align: left; min-height: 3.15rem; }
.pax-summary { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.swap-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--navy); display: grid; place-items: center; margin-bottom: 0.15rem; flex-shrink: 0;
}
.swap-btn:hover { background: var(--sand); }
.search-submit { min-height: 3.15rem; min-width: 44px; padding-inline: 1.3rem; }
.ac-list {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 20;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); max-height: 16rem; overflow: auto; padding: 0.3rem;
}
.ac-list li button, .ac-item {
  width: 100%; display: flex; justify-content: space-between; gap: 0.5rem;
  padding: 0.75rem 0.7rem; min-height: 44px; border: 0; background: none; text-align: left; border-radius: 8px; cursor: pointer;
}
.ac-item:hover, .ac-item.is-active { background: var(--sand); }
.ac-item b { color: var(--navy); }
.ac-item span { color: var(--muted); font-size: 0.85rem; }
.pax-pop {
  position: absolute; right: 0; top: calc(100% + 4px); z-index: 21;
  width: min(18rem, calc(100vw - 2rem)); background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 1rem;
}
.pax-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.85rem; gap: 0.75rem; }
.stepper { display: flex; align-items: center; gap: 0.35rem; }
.stepper button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 1.1rem;
}
.stepper input { width: 2.4rem; text-align: center; border: 0; background: transparent; }
.radio { display: flex; align-items: center; gap: 0.5rem; margin: 0.35rem 0; font-size: 0.95rem; cursor: pointer; }
.form-error { color: var(--danger); font-size: 0.9rem; margin-top: 0.75rem; }
.field.is-invalid .field-control { border-color: var(--danger); }

/* Hero banner */
.hero, .hero-banner { background: #0b3a5c; }
.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 0 1.25rem;
  background: linear-gradient(115deg, #f5c518 0%, #2ec4d6 42%, #0b3a5c 100%);
}
.hero-banner .hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  opacity: 0.42; mix-blend-mode: overlay;
}
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(245,197,24,0.35) 0%, rgba(14,165,233,0.2) 50%, rgba(8,22,36,0.45) 100%);
}
.hero-banner-copy {
  position: relative; z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1.1rem;
  color: #fff;
}
.hero-kicker {
  margin: 0 0 0.45rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
}
.hero-banner h1, .hero h1 {
  font-family: var(--font); font-size: clamp(1.35rem, 3.4vw, 2.15rem);
  font-weight: 800; letter-spacing: -0.02em; color: #fff;
  max-width: 24em; margin: 0; line-height: 1.2;
  text-shadow: 0 1px 12px rgba(11, 31, 51, 0.35);
}
.hero-search { position: relative; z-index: 2; }

.search-wrap.is-home {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 0.7rem 0.7rem;
}
#quote-form { scroll-margin-top: calc(var(--header) + 1.15rem); }
.home-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.home-select {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: #123047; color: #fff; border-radius: 8px;
  padding: 0.22rem 0.45rem 0.22rem 0.6rem; min-height: 2.15rem;
}
.home-select svg { width: 0.95rem; height: 0.95rem; color: #fff; }
.home-select select {
  appearance: none; -webkit-appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fff' d='M1.2 1.4 6 6.2l4.8-4.8L12 2.6 6 8.6 0 2.6z'/%3E%3C/svg%3E") no-repeat right 0.15rem center;
  color: #fff; border: 0; font-weight: 700; font-size: 0.82rem;
  padding: 0.2rem 1.2rem 0.2rem 0; cursor: pointer; min-height: 1.7rem; min-width: 0;
}
.home-select select option { color: var(--navy); background: #fff; }
.search-wrap.is-home .trip-tabs { margin: 0; }
.search-wrap.is-home .trip-tab { padding: 0.32rem 0.7rem; font-size: 0.8rem; min-height: 34px; }
.search-wrap.is-home .pax-field { min-width: 10.5rem; flex: 1; }
.search-wrap.is-home .pax-trigger { min-height: 2.35rem; border-radius: 8px; font-size: 0.85rem; }
.search-wrap.is-home .field label { font-size: 0.7rem; }
.home-fields {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 0.9fr;
  gap: 0.45rem;
  align-items: end;
}
.home-contact {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.45rem;
  align-items: end;
  margin-top: 0.45rem;
}
.search-wrap.is-home .home-contact .search-submit { width: auto; min-width: 8.5rem; }
.search-wrap.is-home .field-control { min-height: 2.5rem; border-radius: 8px; background: #fff; padding: 0 0.65rem; }
.search-wrap.is-home .field-control input { font-size: 0.92rem; padding: 0.5rem 0; }
.search-wrap.is-home .form-error { margin: 0.4rem 0 0; font-size: 0.82rem; }
.search-wrap.is-home .btn-search {
  min-height: 2.5rem; padding-inline: 1.1rem; font-size: 0.82rem;
}

.hero-stage { position: relative; overflow: hidden; }
.hero-photo {
  display: block; width: 100%; height: 58vh; min-height: 420px; max-height: 620px;
  object-fit: cover; object-position: center 42%;
}
.hero-banner .hero-photo { height: 100%; min-height: 0; max-height: none; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,51,0.18) 0%, rgba(11,31,51,0.12) 38%, rgba(11,31,51,0.55) 100%);
}
.hero-copy {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem 1.5rem 5.5rem; color: #fff;
}
.hero-tag {
  margin: 0.85rem 0 0; font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400; color: #fff; letter-spacing: 0.01em;
}

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; padding: 1.45rem 0 1.6rem;
}
.trust-row article {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  text-align: center; gap: 0.5rem; min-width: 0; padding: 0.15rem 0.4rem;
}
.trust-row svg { width: 2.4rem; height: 2.4rem; color: var(--navy); }
.trust-row h2 {
  font-family: var(--font); font-size: 0.95rem; font-weight: 600;
  margin: 0; color: var(--navy); line-height: 1.3; white-space: normal;
}

.section-cities { padding: 0.5rem 0 2.4rem; }
.section-cities h2, .airline-band h2, .section-deals h2 {
  font-family: var(--font); font-size: 1.35rem; font-weight: 700; margin: 0 0 1rem; color: var(--navy);
}
.city-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.55rem;
}
.city-strip figure {
  position: relative; display: block; overflow: hidden; border-radius: 4px;
  min-height: 170px; color: #fff; margin: 0;
}
.city-strip img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.city-strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1.6rem 0.7rem 0.7rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  font-weight: 700; font-size: 1.05rem;
}

.airline-band { padding: 0.4rem 0 2.2rem; text-align: center; }
.airline-line {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.4rem;
  color: #6b7280; font-weight: 700; letter-spacing: 0.02em;
}
.airline-line span { font-size: 0.95rem; }

.section-deals { padding: 0 0 2.8rem; }
.deal-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.fare-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.1);
  border: 1px solid var(--line);
}
.fare-photo {
  position: relative; height: 220px; color: #fff;
}
.fare-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.fare-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,51,0.05) 20%, rgba(11,31,51,0.72) 100%);
}
.fare-badge {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  background: #123047; color: #fff; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px; padding: 0.32rem 0.65rem;
}
.fare-airline {
  position: absolute; left: 0.9rem; bottom: 3.15rem; z-index: 2;
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.88rem; font-weight: 700;
}
.fare-mark {
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--navy); font-size: 0.68rem; font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.fare-mark-ek { color: #c8102e; }
.fare-mark-qr { color: #5c0632; }
.fare-mark-sq { color: #1d4f91; }
.fare-mark-ba { color: #075aaa; }
.fare-mark-jl { color: #c41230; }
.fare-photo h3 {
  position: absolute; left: 0.95rem; bottom: 0.7rem; z-index: 2;
  margin: 0; color: #fff; font-family: var(--font);
  font-size: 1.85rem; font-weight: 800; letter-spacing: -0.03em;
}
.fare-body { padding: 0.85rem 0.95rem 1rem; }
.fare-route {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 0.4rem;
  padding-bottom: 0.75rem; margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem; font-weight: 700; color: #5b6b78;
}
.fare-route span:last-child { text-align: right; color: var(--navy); }
.fare-arrow {
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  display: grid; place-items: center;
  background: #0f6f7c; color: #fff;
}
.fare-arrow svg { width: 0.85rem; height: 0.85rem; }
.fare-cta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.7rem;
}
.fare-meta { min-width: 0; }
.fare-meta small {
  display: block; font-size: 0.75rem; color: #6b7280; font-weight: 600;
}
.fare-meta strong {
  display: block; color: #0f6f7c; font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.btn-call-now {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.7rem; padding: 0.45rem 1.05rem;
  border-radius: 999px; background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  border: 2px dashed #123047;
}
.btn-call-now:hover { background: #e0b40f; color: var(--navy); }
.fare-disclaimer {
  margin: 0.9rem 0 0; font-size: 0.82rem; color: var(--muted);
}

.notice-strip { background: var(--sand); border-block: 1px solid var(--line); }
.notice-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 1.3rem 0; }
.notice-inner h2 { font-family: var(--font); font-size: 0.95rem; margin: 0 0 0.25rem; }
.notice-inner p { color: var(--muted); font-size: 0.9rem; }

/* Sections */
.section { padding: 4.2rem 0; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy); color: #d7e2ea; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 1.8rem; }
.section-head p { color: var(--muted); max-width: 42ch; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.3rem;
}
.step-num { font-family: var(--serif); font-size: 1.8rem; color: var(--cta); display: block; margin-bottom: 0.4rem; }
.step h3 { margin-bottom: 0.4rem; }

.dest-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; gap: 0.9rem; }
.dest-card {
  position: relative; border-radius: 16px; overflow: hidden; min-height: 220px; display: block; text-decoration: none; color: #fff;
}
.dest-card.featured { grid-row: 1 / 3; min-height: 460px; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(11,31,51,0.78)); }
.dest-card div { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.1rem 1.15rem; }
.dest-card h3 { color: #fff; margin: 0 0 0.15rem; font-size: 1.35rem; }
.dest-card p { color: #e4e9ee; font-size: 0.9rem; }
.quote-chip {
  display: inline-block; margin-top: 0.45rem;
  background: var(--cta); color: #fff; border-radius: 999px;
  padding: 0.28rem 0.7rem; font-size: 0.78rem; font-weight: 700;
}

.logo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.airline-chip {
  display: flex; flex-direction: column; gap: 0.2rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 1rem 1.05rem; text-decoration: none; color: #e8eef3;
}
.airline-chip:hover { background: rgba(255,255,255,0.1); color: #fff; }
.airline-chip strong { font-size: 1rem; }
.airline-chip span { color: #9db0bf; font-size: 0.85rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.6em; }
.prose ul, .prose ol { margin: 0 0 1.1em 1.15em; padding: 0; }
.prose li { margin: 0.35em 0; list-style: disc; }
.prose a { color: var(--cta); overflow-wrap: anywhere; }
.footer-brand p, .footer-bottom { overflow-wrap: anywhere; }
.callout {
  background: #fff; border-left: 3px solid var(--cta); border-radius: 0 12px 12px 0;
  padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm);
}
.muted { color: var(--muted); }

.faq-list { display: grid; gap: 0.6rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.faq-item summary {
  cursor: pointer; padding: 1rem 1.1rem; font-weight: 600; color: var(--navy); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 500; color: var(--muted); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.1rem 1.1rem; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.info-card, .page-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.25rem;
  text-decoration: none; color: inherit; display: block;
}
a.info-card:hover, a.page-card:hover { box-shadow: var(--shadow-md); color: inherit; border-color: #d3c4ad; }
.info-card h3, .page-card h3 { margin-bottom: 0.35rem; }
.info-card p, .page-card p { color: var(--muted); font-size: 0.95rem; }

.page-hero { padding: 2.6rem 0 2rem; background: linear-gradient(180deg, var(--sand) 0%, var(--paper) 100%); }
.page-hero .crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.8rem; overflow-wrap: anywhere; }
.page-hero .crumb a { color: var(--navy); text-decoration: none; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { max-width: 52ch; color: var(--muted); font-size: 1.08rem; }

.article-hero {
  position: relative; display: grid; border-radius: 0 0 24px 24px; overflow: hidden;
}
.article-hero img,
.article-hero .overlay { grid-area: 1 / 1; }
.article-hero img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.article-hero .overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,31,51,0.15), rgba(11,31,51,0.72));
  display: flex; align-items: flex-end;
}
.article-hero .overlay .container { padding-bottom: 2rem; color: #fff; }
.article-hero h1 { color: #fff; }
.article-hero .lede { color: #e4e9ee; }

.meta-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 0; }
.chip { background: var(--sand); border-radius: 999px; padding: 0.3rem 0.7rem; font-size: 0.82rem; font-weight: 600; color: var(--navy); }

.legal { padding: 2.5rem 0 4rem; }
.legal-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; }
.legal-nav { position: sticky; top: calc(var(--header) + 1rem); align-self: start; }
.legal-nav a { display: block; padding: 0.4rem 0; color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.legal-nav a:hover, .legal-nav a[aria-current] { color: var(--navy); }

.cta-band { background: var(--navy); color: #d7e2ea; padding: 2.6rem 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.28); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.cta-band h2 { color: #fff; margin: 0 0 0.35rem; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(11,31,51,0.55); backdrop-filter: blur(4px);
  z-index: var(--z-modal); display: grid; place-items: center; padding: 1rem;
}
.modal-overlay[hidden] { display: none !important; }
.cookie-bar[hidden], .pax-pop[hidden], .ac-list[hidden], .tb-chat-panel[hidden] { display: none !important; }
.route-chip:empty { display: none; }
.modal {
  background: #fff; width: min(520px, 100%); border-radius: 18px; padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-lg); position: relative; max-height: calc(100vh - 2rem); overflow: auto;
}
.modal-close { position: absolute; top: 0.8rem; right: 0.8rem; border: 0; background: var(--sand); border-radius: 8px; padding: 0.35rem; }
.modal-lead { color: var(--muted); margin-bottom: 1rem; }
.contact-form .field { margin-bottom: 0.85rem; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
  border: 1px solid var(--line); border-radius: 12px; padding: 0.8rem 0.9rem; background: var(--paper); width: 100%;
}
.contact-form input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.18); background: #fff; }
.hint { font-size: 0.82rem; color: var(--muted); }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; margin: 0.8rem 0 1rem; cursor: pointer; }
.consent input { margin-top: 0.25rem; }
.fineprint { font-size: 0.82rem; color: var(--muted); margin-top: 0.7rem; }
.route-chip { background: var(--sand); border-radius: 10px; padding: 0.7rem 0.85rem; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.form-page { padding: 2rem 0 4rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.4rem; box-shadow: var(--shadow-md); }

.thankyou { text-align: center; padding: 5rem 0; max-width: 40rem; margin: auto; }
.thankyou .mark {
  width: 64px; height: 64px; border-radius: 50%; background: #e7f8ef; color: var(--ok);
  display: grid; place-items: center; margin: 0 auto 1.2rem;
}

.site-footer { background: #2f4556; color: #c5d0d8; padding: 0 0 1.1rem; }
.footer-disclaimer {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0 1.1rem; margin-bottom: 1.4rem;
  scroll-margin-top: calc(var(--header) + 0.75rem);
}
.footer-disclaimer .logo { display: inline-flex; margin-bottom: 0.75rem; }
.footer-disclaimer .logo-img { height: 42px; max-width: min(220px, 76vw); }
.footer-disclaimer h2 {
  font-size: 1rem; margin: 0 0 0.35rem; color: #fff;
}
.footer-disclaimer p {
  margin: 0; font-size: 0.88rem; color: #b7c4ce; max-width: 70ch;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 1.5rem; }
.footer-reach p { margin: 0 0 0.45rem; font-size: 0.92rem; }
.footer-phone { color: var(--gold) !important; font-weight: 800; font-size: 1.15rem; }
.site-footer h2 { font-family: var(--font); font-size: 0.95rem; letter-spacing: 0; text-transform: none; color: #fff; margin-bottom: 0.7rem; }
.site-footer a { text-decoration: none; color: #c5d3de; }
.site-footer a:hover { color: #fff; }
.site-footer li { margin: 0.28rem 0; }
.logo-light .logo-o { color: #F97316; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.9rem; font-size: 0.8rem; }

.callback-rail {
  position: fixed; right: 0; top: 42%; z-index: 28;
  writing-mode: vertical-rl; transform: rotate(180deg);
  background: var(--gold); color: var(--navy);
  padding: 1rem 0.45rem; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border-radius: 8px 0 0 8px;
  border: 0;
  cursor: pointer;
}
.callback-rail:hover { background: #e0b40f; color: var(--navy); }
.callback-panel {
  position: fixed; right: 0; top: 0; bottom: 0; z-index: 72;
  width: min(100vw, 380px);
  background: #fff; box-shadow: -16px 0 40px rgba(11,31,51,0.18);
  overflow: auto;
}
.callback-panel-inner { padding: 1.15rem 1.15rem 1.4rem; }
.callback-head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.callback-head h2 { font-family: var(--font); font-size: 1.2rem; margin: 0; }
.callback-close {
  width: 40px; height: 40px; border: 0; background: var(--sand); border-radius: 8px;
  display: grid; place-items: center; color: var(--navy);
}
.callback-lead { color: var(--muted); font-size: 0.9rem; margin: 0 0 1rem; }
.callback-form label { display: block; margin: 0 0 0.7rem; font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.callback-form input[type="text"],
.callback-form input[type="tel"],
.callback-form input[type="email"] {
  display: block; width: 100%; margin-top: 0.28rem;
  min-height: 2.6rem; border: 1px solid var(--line); border-radius: 8px;
  padding: 0.45rem 0.7rem; font-weight: 500;
}
.callback-form .consent { display: flex; align-items: flex-start; gap: 0.5rem; font-weight: 500; }
.callback-form .consent input { margin-top: 0.2rem; }
.callback-submit { width: 100%; margin-top: 0.25rem; }
.callback-status { font-size: 0.88rem; color: var(--ok); margin: 0.6rem 0 0; }
body.callback-open { overflow: hidden; }
body.callback-open .tb-chat { visibility: hidden; }

.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-cookie);
  background: var(--gold); color: var(--navy);
  padding: 0.55rem 0 calc(0.55rem + env(safe-area-inset-bottom, 0px));
}
.cookie-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.cookie-inner p { font-size: 0.85rem; }
.cookie-inner a { color: var(--navy); font-weight: 700; }
.cookie-ok { background: var(--navy); color: #fff; min-width: 4.5rem; }
.cookie-ok:hover { background: var(--navy-2); color: #fff; }
body.has-cookie { padding-bottom: calc(3.4rem + env(safe-area-inset-bottom, 0px)); }

.tb-chat {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: var(--z-chat);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  max-width: calc(100vw - 1.5rem);
}
body.has-cookie .tb-chat {
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}
.tb-chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.05rem;
  border: 0;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-weight: 650;
  box-shadow: var(--shadow-lg);
}
.tb-chat-launcher:hover { background: var(--cta-hover); color: #fff; }
.tb-chat.is-open .tb-chat-launcher { display: none; }
.tb-chat-panel {
  width: min(380px, calc(100vw - 1.5rem));
  max-height: min(36rem, calc(100dvh - 6rem));
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 1rem 1rem 1.1rem;
}
.tb-chat-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.tb-chat-head h2 {
  font-size: 1.15rem;
  margin: 0.2rem 0 0.25rem;
}
.tb-chat-logo {
  display: block;
  height: 28px;
  width: auto;
  margin-bottom: 0.35rem;
}
.tb-chat-head p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.tb-chat-close {
  border: 0;
  background: var(--sand);
  border-radius: 8px;
  padding: 0.4rem;
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  color: var(--navy);
}
.tb-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.tb-chat-actions a {
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--sand);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.tb-chat-actions a:hover { background: var(--sand-2); color: var(--navy); }
.tb-chat-form { position: relative; display: grid; gap: 0.65rem; }
.tb-chat-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.tb-chat-form input[type="text"],
.tb-chat-form input[type="email"],
.tb-chat-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: var(--paper);
  width: 100%;
  font-weight: 400;
  color: var(--ink);
}
.tb-chat-form textarea { resize: vertical; min-height: 6rem; }
.tb-chat-form input:focus,
.tb-chat-form textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.18);
  background: #fff;
}
.tb-chat-form .consent { font-weight: 400; margin: 0.2rem 0 0; }
.tb-chat-status {
  font-size: 0.88rem;
  margin: 0;
}
.tb-chat-status.is-ok { color: var(--ok); }
.tb-chat-status.is-err { color: var(--danger); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.stat { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 0.8rem; }
.stat b { display: block; font-size: 1.35rem; color: #fff; font-family: var(--serif); }
.stat span { font-size: 0.85rem; color: #9db0bf; }

@media (max-width: 1320px) {
  .primary-nav > a, .nav-dd-btn { padding: 0.5rem 0.5rem; font-size: 0.9rem; }
  .header-cta { padding-inline: 0.75rem; }
}

@media (max-width: 1100px) {
  .search-grid:not(.full-grid) {
    grid-template-columns: 1fr 44px 1fr;
    grid-template-areas:
      "from swap to"
      "depart depart return"
      "pax pax pax";
  }
  .search-grid .field-from { grid-area: from; }
  .search-grid:not(.full-grid) .swap-btn { grid-area: swap; align-self: end; margin-bottom: 0.35rem; }
  .search-grid .field-to { grid-area: to; }
  .search-grid .field-depart { grid-area: depart; }
  .search-grid .field-return { grid-area: return; }
  .search-grid .pax-field { grid-area: pax; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid .search-submit,
  .contact-grid .field-grow { grid-column: 1 / -1; }
  .full-grid { grid-template-columns: 1fr 1fr !important; }
  .hero-grid, .split, .legal-wrap { grid-template-columns: 1fr; }
  .split { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card.featured { grid-row: auto; min-height: 280px; }
  .logo-row, .card-grid, .steps, .notice-inner { grid-template-columns: 1fr 1fr; }
  .city-strip { grid-template-columns: 1fr 1fr; }
  .deal-row { grid-template-columns: 1fr 1fr; }
  .home-fields { grid-template-columns: 1fr 1fr; }
  .home-contact { grid-template-columns: 1fr 1fr; }
  .home-contact .search-submit { grid-column: 1 / -1; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 0.45rem; }
  .legal-nav a {
    padding: 0.45rem 0.75rem;
    background: var(--sand);
    border-radius: 999px;
    min-height: 40px;
  }
  .nav-actions { margin-left: auto; gap: 0.55rem; }
  .menu-toggle { display: none; }
  .primary-nav { display: none !important; }
  .header-cta { display: none; }
}

@media (max-width: 768px) {
  :root { --header: 3.5rem; }
  .utility-bar { display: none; }
  .nav-inner { gap: 0.45rem; min-height: 3.35rem; }
  .header-call a { font-size: 0.95rem; }
  .header-call span { font-size: 0.62rem; }
  .callback-rail { top: 48%; padding: 0.8rem 0.35rem; font-size: 0.65rem; }
  .city-strip, .deal-row { grid-template-columns: 1fr 1fr; }
  .home-fields, .home-contact { grid-template-columns: 1fr 1fr; }
  .home-contact .search-submit { grid-column: 1 / -1; width: 100%; }
  .home-toolbar { gap: 0.3rem; }
  .home-select { flex: 1 1 calc(33.33% - 0.3rem); min-width: 0; padding-inline: 0.4rem 0.3rem; }
  .home-select select { font-size: 0.72rem; width: 100%; }
  .logo-img { height: 32px; max-width: min(150px, 42vw); }
  .site-header .logo-img { height: 28px; }
  .trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.05rem 0.6rem;
    padding: 1.2rem 0 1.35rem;
  }
  .trust-row svg { width: 2.1rem; height: 2.1rem; }
  .trust-row h2 { font-size: 0.86rem; }
  .search-grid:not(.full-grid) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "from"
      "swap"
      "to"
      "depart"
      "return"
      "pax";
  }
  .search-grid:not(.full-grid) .swap-btn {
    justify-self: center;
    margin: 0.1rem 0;
    transform: rotate(90deg);
  }
  .contact-grid { grid-template-columns: 1fr; }
  .full-grid { grid-template-columns: 1fr !important; }
  .footer-grid,
  .dest-grid, .logo-row, .card-grid, .steps, .notice-inner, .stats { grid-template-columns: 1fr; }
  .cta-inner, .cookie-inner { flex-direction: column; align-items: stretch; }
  body.has-cookie .tb-chat { bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
  .cta-inner .btn, .cta-actions .btn, .cookie-inner .btn { width: 100%; white-space: normal; }
  .section { padding: 2.6rem 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero-banner {
    min-height: 78dvh;
    padding: 1.1rem 0 0.85rem;
    justify-content: space-between;
  }
  .hero-banner .hero-photo {
    opacity: 0.7;
    mix-blend-mode: normal;
  }
  .hero-tint {
    background: linear-gradient(180deg, rgba(11,31,51,0.38) 0%, rgba(11,31,51,0.12) 42%, rgba(11,31,51,0.55) 100%);
  }
  .hero-banner-copy { margin: 0.35rem auto 0; }
  .hero-copy { padding: 1.25rem 1rem 4.25rem; }
  .hero h1, .hero-banner h1 { font-size: clamp(1.2rem, 5.6vw, 1.55rem); max-width: none; }
  .search-wrap.is-home { padding: 0.5rem 0.55rem 0.55rem; }
  .search-wrap.is-home .pax-field { min-width: 0; }
  .search-panel { padding: 1rem; border-radius: 16px; }
  .trip-tabs { width: 100%; display: flex; }
  .trip-tab { flex: 1; min-height: 44px; }
  .search-wrap.is-home .trip-tabs { width: auto; }
  .search-wrap.is-home .trip-tab { flex: 0 1 auto; min-height: 34px; }
  .page-hero { padding: 1.6rem 0 1.4rem; }
  .page-hero h1 { max-width: none; }
  .article-hero {
    display: flex;
    flex-direction: column;
    border-radius: 0 0 16px 16px;
  }
  .article-hero img {
    height: 210px;
    min-height: 210px;
    position: static;
  }
  .article-hero .overlay {
    position: relative;
    background: linear-gradient(180deg, #123047, #0B1F33);
    display: block;
  }
  .article-hero .overlay .container { padding: 1.15rem 1rem 1.4rem; }
  .article-hero h1 { font-size: clamp(1.55rem, 7vw, 2.1rem); }
  .form-page { padding: 1.25rem 0 3rem; }
  .form-card { padding: 1rem; border-radius: 16px; }
  .thankyou { padding: 3rem 0; }
  .legal { padding: 1.5rem 0 3rem; }
  .site-footer { padding: 0 0 1.2rem; }
  .pax-pop {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    top: auto;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    width: auto;
    z-index: 45;
  }
}

@media (max-width: 480px) {
  :root { --header: 3.35rem; }
  .container, .container-wide { width: calc(100% - 1.25rem); }
  .logo-img { height: 28px; max-width: min(128px, 40vw); }
  .site-header .logo-img { height: 24px; }
  .site-header .logo { padding: 0.12rem 0.4rem 0.14rem; }
  .header-currency { display: none; }
  .header-call a { font-size: 0.88rem; }
  .nav-inner { min-height: 3.2rem; gap: 0.35rem; }
  .hero-copy { padding: 1rem 0.75rem 3.75rem; }
  .hero-kicker { font-size: 0.7rem; letter-spacing: 0.14em; }
  .city-strip, .deal-row { grid-template-columns: 1fr; }
  .city-strip figure { min-height: 150px; }
  .home-fields, .home-contact { grid-template-columns: 1fr 1fr; }
  .home-contact .search-submit { grid-column: 1 / -1; width: 100%; }
  .search-wrap.is-home .field label { font-size: 0.65rem; }
  .search-wrap.is-home .field-control { min-height: 2.35rem; }
  .trust-row { gap: 0.95rem 0.4rem; padding: 1.05rem 0 1.2rem; }
  .trust-row svg { width: 1.9rem; height: 1.9rem; }
  .trust-row h2 { font-size: 0.8rem; }
  .btn { white-space: normal; }
  body.has-cookie { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
  .tb-chat { right: 0.75rem; left: auto; }
  .tb-chat-panel {
    width: min(100vw - 1.5rem, 380px);
    max-height: calc(100dvh - 7.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
