:root {
  --bg: #0a0c10;
  --surface: #12151c;
  --border: #232834;
  --ink: #eef1f6;
  --ink-soft: #8b93a5;
  --accent: #4fc3d9;
  --accent-bright: #7fe0f2;
  --on-accent: #04262c;
  --good: #6be08a;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

/* ---- Hero ---- */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,8,12,0.55) 0%, rgba(6,8,12,0.75) 55%, var(--bg) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 3rem 1.5rem; width: 100%; }

.wordmark { font-weight: 800; letter-spacing: 0.12em; color: var(--accent-bright); font-size: 0.85rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin: 0.6rem 0 0.4rem; text-wrap: balance; }
.hero-sub { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 2rem; max-width: 40rem; }

.search-bar { display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: flex-end; background: rgba(18,21,28,0.85); backdrop-filter: blur(6px); border: 1px solid var(--border); border-radius: 14px; padding: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; position: relative; }
.field label { font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.field-auto { flex: 1; min-width: 180px; }
.search-bar select, .search-bar input { font-family: inherit; font-size: 0.95rem; padding: 0.65rem 0.8rem; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--ink); width: 100%; }

.suggestions { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; z-index: 10; display: none; }
.suggestions.open { display: block; }
.suggestions div { padding: 0.55rem 0.8rem; cursor: pointer; font-size: 0.88rem; }
.suggestions div:hover, .suggestions div.active { background: var(--accent); color: var(--on-accent); }

.btn { background: var(--accent); color: var(--on-accent); border: none; padding: 0.7rem 1.6rem; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 0.95rem; height: fit-content; }
.btn:hover { background: var(--accent-bright); }
.btn:disabled { opacity: 0.6; cursor: default; }

.hero-note { font-size: 0.76rem; color: var(--ink-soft); margin-top: 0.8rem; max-width: 34rem; }

/* ---- Main content ---- */
main { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.section-header { margin-bottom: 1.2rem; }
.section-header h2 { font-size: 1.3rem; margin: 0 0 0.3rem; }
.jets-header { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hint { color: var(--ink-soft); font-size: 0.85rem; margin: 0; }

.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }

.deal-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.deal-card .route { font-size: 0.78rem; color: var(--ink-soft); }
.deal-card .destination { font-size: 1.15rem; font-weight: 800; }
.deal-card .dates { font-size: 0.78rem; color: var(--ink-soft); }
.deal-card .price-row { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.deal-card .price-label { font-size: 0.8rem; color: var(--ink-soft); }
.deal-card .price-value { font-size: 1.3rem; font-weight: 800; color: var(--accent-bright); }
.deal-card .book-link { text-align: center; margin-top: 0.3rem; background: var(--accent); color: var(--on-accent); text-decoration: none; padding: 0.6rem; border-radius: 8px; font-weight: 700; font-size: 0.88rem; }
.deal-card .book-link:hover { background: var(--accent-bright); }

.coming-soon-card { grid-column: 1 / -1; background: var(--surface); border: 1px dashed var(--border); border-radius: 12px; padding: 2rem; text-align: center; color: var(--ink-soft); }

.jet-card { border-color: #4a3a1a; }
.jet-card .price-value { color: #e8c568; }
.jet-link { background: #e8c568; color: #241a04; }
.jet-link:hover { background: #f4d888; }
