/* =========================================================
   FLYDECK — Design System & Site Styles
   Brand: Navy (#0B2545) + Gold (#D9A441) + Sky (#3E7CB1)
   Edit brand colors below in :root to re-theme the whole site.
   ========================================================= */

:root {
  --navy-950: #081a30;
  --navy-900: #0b2545;
  --navy-800: #123561;
  --navy-700: #1a4a82;
  --sky-600: #3e7cb1;
  --sky-500: #5a9bd4;
  --sky-100: #eaf3fb;
  --gold-600: #c98f2b;
  --gold-500: #d9a441;
  --gold-400: #e8bf6c;
  --gold-100: #fbf1de;
  --ink-900: #12181f;
  --ink-700: #3b4652;
  --ink-500: #64707c;
  --ink-300: #a6b0ba;
  --line-200: #e4e9ee;
  --line-100: #eef1f4;
  --bg-page: #ffffff;
  --bg-soft: #f6f8fa;
  --success: #1e8a5b;
  --danger: #c23b3b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.06), 0 1px 1px rgba(11, 37, 69, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 37, 69, 0.16);
  --container: 1180px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Poppins', var(--font-body);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg-page);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 600;
}
p { margin: 0 0 1em; color: var(--ink-700); }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); color: #fff; }
.section-navy h2, .section-navy h3, .section-navy p { color: #fff; }
.section-navy .muted { color: rgba(255,255,255,.72); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); }
.section-head p { font-size: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold-500); color: var(--navy-950); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy-900); color: #fff; }
.btn-navy:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-ghost { background: transparent; border-color: var(--line-200); color: var(--navy-900); }
.btn-ghost:hover { border-color: var(--navy-700); background: var(--sky-100); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--gold-400); }
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 6px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line-200);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); }
.logo .logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo .logo-fly { color: var(--navy-900); }
.logo .logo-deck { color: var(--gold-600); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
}
.main-nav a:hover { background: var(--sky-100); color: var(--navy-900); }
.main-nav a.active { color: var(--navy-900); font-weight: 700; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; font-size: 13px; color: var(--ink-500); }
.header-phone strong { color: var(--navy-900); font-size: 15px; }

.nav-toggle { display: none; }

/* ---------- Hero + Search Widget ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 500px at 15% -10%, rgba(217,164,65,.25), transparent 60%),
              linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-700) 100%);
  color: #fff;
  padding: 64px 0 120px;
  overflow: hidden;
}
.hero-flex { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.hero .hero-sub { color: rgba(255,255,255,.78); font-size: 17px; max-width: 520px; }
.hero-badges { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,.85); }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold-400); }
.hero-art { position: relative; }

.search-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 22px 20px;
  margin-top: -74px;
  z-index: 5;
}
.trip-tabs { display: flex; gap: 6px; margin-bottom: 16px; }
.trip-tab {
  border: 1px solid var(--line-200);
  background: var(--bg-soft);
  color: var(--ink-700);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}
.trip-tab.active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.search-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-500); }
.field input, .field select {
  border: 1.5px solid var(--line-200);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 15px;
  color: var(--navy-900);
  background: #fff;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--sky-500); box-shadow: 0 0 0 3px rgba(90,155,212,.18); }
.field-swap {
  position: absolute;
  right: -18px;
  top: 34px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #fff;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.search-submit { height: 47px; padding: 0 22px; }
.search-extra { display: flex; gap: 22px; margin-top: 16px; flex-wrap: wrap; align-items: center; }
.chip-check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-700); }
.chip-check input { width: 16px; height: 16px; accent-color: var(--gold-600); }

/* ---------- Trust strip ---------- */
.trust-strip { border-bottom: 1px solid var(--line-200); background: #fff; }
.trust-strip .container { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; flex-wrap: wrap; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-700); font-weight: 600; }
.trust-item svg { width: 22px; height: 22px; color: var(--sky-600); }

/* ---------- Deal / Flight cards ---------- */
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.deal-card {
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.deal-head {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.deal-route { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.deal-route .code { color: var(--gold-400); }
.deal-badge {
  background: var(--gold-500); color: var(--navy-950);
  font-size: 11px; font-weight: 800; letter-spacing: .03em;
  padding: 4px 9px; border-radius: 999px; text-transform: uppercase;
}
.deal-body { padding: 18px 20px 20px; }
.deal-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-500); margin-bottom: 14px; flex-wrap: wrap; }
.deal-meta span { display: flex; align-items: center; gap: 5px; }
.deal-price-row { display: flex; align-items: flex-end; justify-content: space-between; }
.deal-price .was { font-size: 13px; color: var(--ink-300); text-decoration: line-through; }
.deal-price .now { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy-900); }
.deal-price .cad { font-size: 13px; color: var(--ink-500); font-weight: 500; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card { text-align: center; padding: 8px 12px; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  border: 2px solid var(--gold-400);
}
.step-card h4 { font-size: 16px; }
.step-card p { font-size: 14px; }

/* ---------- Feature / why-us grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: 26px;
}
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--sky-100); color: var(--sky-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h4 { font-size: 17px; }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Reviews (sample/placeholder) ---------- */
.review-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-500);
  margin-bottom: 28px;
  background: var(--gold-100);
  border: 1px dashed var(--gold-400);
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
}
.review-note-wrap { text-align: center; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 22px; }
.review-stars { color: var(--gold-500); font-size: 15px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 14.5px; font-style: italic; }
.review-who { font-size: 13px; font-weight: 700; color: var(--navy-900); }
.review-tag { font-size: 11px; color: var(--ink-500); }

/* ---------- Route strip ---------- */
.route-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.route-pill {
  border: 1px solid var(--line-200);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
  background: #fff;
}
.route-pill:hover { border-color: var(--sky-500); background: var(--sky-100); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold-600), var(--gold-500));
  color: var(--navy-950);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-band h3 { color: var(--navy-950); margin-bottom: 6px; font-size: 24px; }
.cta-band p { color: rgba(11,37,69,.78); margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.72); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col h5 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.68); }
.footer-col a:hover { color: var(--gold-400); }
.footer-about p { font-size: 14px; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.payment-icons { display: flex; gap: 8px; align-items: center; margin-top: 14px; flex-wrap: wrap; }
.payment-icons span {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.2); border-radius: 5px; padding: 3px 7px;
}

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 52px 0;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; font-size: clamp(26px, 3.4vw, 36px); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- Generic content / prose pages ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 22px; margin-top: 36px; }
.prose h3 { font-size: 17px; margin-top: 24px; }
.prose p, .prose li { color: var(--ink-700); font-size: 15.5px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 1em; }
.prose ul li, .prose ol li { margin-bottom: 8px; list-style: disc; }
.prose ol li { list-style: decimal; }
.updated-note { font-size: 13px; color: var(--ink-500); background: var(--bg-soft); padding: 10px 16px; border-radius: 8px; display: inline-block; margin-bottom: 8px; }

/* ---------- Two column layout (About / Contact) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.stat-card { text-align: center; background: var(--bg-soft); border-radius: var(--radius-md); padding: 22px 10px; }
.stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--navy-900); }
.stat-label { font-size: 12.5px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .04em; }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.value-card { display: flex; gap: 14px; }
.value-card .feature-icon { flex-shrink: 0; margin-bottom: 0; }
.value-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.value-card p { font-size: 14px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }
.contact-card { background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); }
.contact-info-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-100); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .feature-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item h4 { font-size: 14.5px; margin-bottom: 2px; }
.contact-info-item p { font-size: 14px; margin-bottom: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--line-200);
  border-radius: 10px;
  padding: 12px 13px;
  font-size: 15px;
  color: var(--navy-900);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--sky-500); box-shadow: 0 0 0 3px rgba(90,155,212,.18);
}
.form-note { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }
.form-status { font-size: 14px; padding: 12px 14px; border-radius: 10px; margin-top: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e9f7f0; color: var(--success); }
.form-status.err { background: #fbebeb; color: var(--danger); }

/* ---------- Results page ---------- */
.results-toolbar {
  background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-md);
  padding: 18px 22px; margin-top: -56px; position: relative; z-index: 5; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.results-summary { font-size: 15px; color: var(--ink-700); }
.results-summary strong { color: var(--navy-900); }
.results-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; margin-top: 36px; align-items: start; }
.filter-panel { background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 20px; position: sticky; top: 90px; }
.filter-panel h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.filter-group { margin-bottom: 22px; }
.filter-group h5 { font-size: 13px; color: var(--ink-700); margin-bottom: 10px; }
.filter-option { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-700); margin-bottom: 9px; }
.filter-option input { accent-color: var(--gold-600); width: 15px; height: 15px; }
.range-value { font-size: 12.5px; color: var(--ink-500); margin-top: 6px; }

.flight-list { display: flex; flex-direction: column; gap: 16px; }
.flight-card {
  background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-md);
  padding: 20px 22px; display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center;
  box-shadow: var(--shadow-sm);
}
.flight-airline { display: flex; align-items: center; gap: 12px; }
.airline-badge {
  width: 42px; height: 42px; border-radius: 10px; background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; font-family: var(--font-display);
}
.airline-name { font-size: 13.5px; font-weight: 600; color: var(--navy-900); }
.airline-sub { font-size: 12px; color: var(--ink-500); }
.flight-route-row { display: flex; align-items: center; gap: 18px; margin-top: 10px; }
.flight-time { text-align: center; }
.flight-time .t { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy-900); }
.flight-time .a { font-size: 12px; color: var(--ink-500); }
.flight-path { flex: 1; min-width: 100px; text-align: center; position: relative; }
.flight-path .line { height: 2px; background: var(--line-200); position: relative; margin: 6px 0; }
.flight-path .line::after {
  content: "✈"; position: absolute; top: -9px; left: 50%; transform: translateX(-50%) rotate(90deg);
  color: var(--sky-600); font-size: 13px;
}
.flight-path .dur { font-size: 11.5px; color: var(--ink-500); }
.flight-path .stops { font-size: 11px; color: var(--gold-600); font-weight: 700; }
.flight-price { text-align: right; }
.flight-price .now { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy-900); }
.flight-price .was { font-size: 12.5px; color: var(--ink-300); text-decoration: line-through; }
.flight-price .cad { font-size: 12px; color: var(--ink-500); }
.flight-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }

.disclaimer-box {
  background: var(--bg-soft); border: 1px solid var(--line-200); border-radius: var(--radius-md);
  padding: 16px 20px; font-size: 12.5px; color: var(--ink-500); margin-top: 30px;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.muted { color: var(--ink-500); }
.small { font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .deal-grid, .feature-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .results-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
}
@media (max-width: 860px) {
  .hero-flex { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--line-200); background: #fff; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .search-grid { grid-template-columns: 1fr; }
  .field-swap { display: none; }
  .search-card { margin-top: -40px; }
  .deal-grid, .feature-grid, .review-grid { grid-template-columns: 1fr; }
  .steps, .stat-grid { grid-template-columns: 1fr; }
  .flight-card { grid-template-columns: 1fr; text-align: left; }
  .flight-price { text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-left { gap: 12px; }
  .results-toolbar { margin-top: 20px; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; background: rgba(8,26,48,.6); z-index: 100;
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  background: #fff; width: 82%; max-width: 320px; height: 100%; padding: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav-panel a { padding: 14px 6px; border-bottom: 1px solid var(--line-100); font-weight: 600; color: var(--navy-900); }
.mobile-nav-close { align-self: flex-end; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink-500); margin-bottom: 10px; }
