:root {
  --ink: #102033;
  --muted: #607085;
  --bg: #f7f8fb;
  --panel: rgba(255,255,255,.88);
  --line: rgba(16,32,51,.12);
  --blue: #2f80ed;
  --orange: #f2994a;
  --red: #eb5757;
  --yellow: #f2c94c;
  --purple: #9b51e0;
  --green: #27ae60;
  --gold: #f5a623;
  --teal: #2d9cdb;
  --shadow: 0 24px 70px rgba(16, 32, 51, .18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.site-header { position: fixed; z-index: 50; top: 18px; left: 50%; transform: translateX(-50%); width: min(1120px, calc(100% - 32px)); display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border: 1px solid rgba(255,255,255,.44); background: rgba(255,255,255,.72); backdrop-filter: blur(22px); border-radius: 999px; box-shadow: 0 10px 40px rgba(0,0,0,.08); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: white; background: linear-gradient(135deg, #2f80ed, #9b51e0); font-size: 13px; }
.nav { display: flex; gap: 22px; font-size: 14px; color: #34465b; }
.nav-cta { padding: 10px 16px; border-radius: 999px; color: #fff; background: var(--ink); font-weight: 700; font-size: 14px; }
.hero { position: relative; min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); align-items: center; gap: 44px; padding: 130px max(24px, calc((100vw - 1120px)/2)) 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=2200&q=90'); background-size: cover; background-position: center; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,19,33,.84) 0%, rgba(9,19,33,.54) 45%, rgba(9,19,33,.20) 100%); }
.hero-content, .trip-preview { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 14px; color: #2f80ed; text-transform: uppercase; font-size: 12px; letter-spacing: .18em; font-weight: 900; }
.hero .eyebrow { color: #a7d3ff; }
h1 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(54px, 8vw, 96px); line-height: .91; letter-spacing: -.075em; }
.hero-copy { max-width: 610px; margin: 26px 0 0; color: rgba(255,255,255,.84); font-size: clamp(18px, 2.3vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 800; }
.button.primary { background: #fff; color: var(--ink); }
.button.secondary { color: #fff; border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.trip-preview { padding: 18px; border-radius: 32px; background: rgba(255,255,255,.82); backdrop-filter: blur(22px); box-shadow: var(--shadow); }
.preview-top { display: flex; justify-content: space-between; padding: 8px 8px 18px; font-size: 14px; color: #4d5d70; font-weight: 800; }
.calendar-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.day { min-height: 175px; padding: 14px; border: 1px solid var(--line); background: white; border-radius: 22px; }
.day b { display: block; margin-bottom: 12px; color: #223349; }
.card { display: block; margin: 8px 0; padding: 10px 10px; border-radius: 14px; color: #fff; font-size: 13px; font-weight: 800; box-shadow: 0 8px 18px rgba(0,0,0,.08); }
.air { background: var(--blue); } .transport { background: var(--orange); } .meal { background: var(--red); } .activity { color: #443000; background: var(--yellow); } .hotel { background: var(--purple); } .photo { background: var(--gold); }
.logo-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; padding: 22px 20px; background: #fff; border-bottom: 1px solid var(--line); }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; font-weight: 800; color: #32445b; background: #fff; }
.pill::before { content: ''; display: inline-block; width: 10px; height: 10px; margin-right: 8px; border-radius: 999px; vertical-align: -1px; }
.air-dot::before { background: var(--blue); }.transport-dot::before { background: var(--orange); }.hotel-dot::before { background: var(--purple); }.meal-dot::before { background: var(--red); }.activity-dot::before { background: var(--yellow); }.photo-dot::before { background: var(--gold); }
.section { padding: 100px max(24px, calc((100vw - 1120px)/2)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.reverse { grid-template-columns: 1.05fr .95fr; }
h2 { margin: 0; font-size: clamp(36px, 5vw, 62px); line-height: 1; letter-spacing: -.055em; }
.section p { color: var(--muted); font-size: 18px; line-height: 1.75; }
.feature-list { margin-top: 28px; display: grid; gap: 16px; }
.feature-list div { padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 10px 30px rgba(16,32,51,.06); }
.feature-list strong { display: block; margin-bottom: 6px; }
.feature-list span { color: var(--muted); line-height: 1.55; }
.image-stack { position: relative; min-height: 560px; }
.image-stack img { position: absolute; border-radius: 34px; box-shadow: var(--shadow); }
.image-stack img:first-child { inset: 0 80px 110px 0; }
.image-stack img:last-child { inset: 220px 0 0 170px; border: 10px solid #fff; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.cards-section { background: #fff; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.info-card { padding: 28px; border-radius: 28px; background: var(--bg); border: 1px solid var(--line); }
.icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 24px; border-radius: 18px; font-size: 26px; }
.air-bg { background: rgba(47,128,237,.12); }.hotel-bg { background: rgba(155,81,224,.12); }.meal-bg { background: rgba(235,87,87,.12); }.activity-bg { background: rgba(242,201,76,.23); }.transport-bg { background: rgba(242,153,74,.15); }.photo-bg { background: rgba(245,166,35,.16); }
.info-card h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.03em; }
.info-card p { margin: 0; font-size: 16px; }
.photo-panel { position: relative; overflow: hidden; color: #fff; background-image: url('https://images.unsplash.com/photo-1530789253388-582c481c54b0?auto=format&fit=crop&w=2200&q=90'); background-size: cover; background-position: center; }
.panel-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,15,29,.82), rgba(5,15,29,.48)); }
.panel-content { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; }
.photo-panel h2, .photo-panel p, .photo-panel .eyebrow { color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.steps-grid div { min-height: 260px; padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 26px; background: rgba(255,255,255,.12); backdrop-filter: blur(16px); }
.steps-grid span { color: #a7d3ff; font-weight: 900; letter-spacing: .12em; }
.steps-grid h3 { font-size: 24px; margin: 26px 0 12px; }
.steps-grid p { margin: 0; font-size: 15px; color: rgba(255,255,255,.76); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallery-grid img { aspect-ratio: 1 / .88; border-radius: 26px; box-shadow: 0 12px 32px rgba(16,32,51,.12); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; color: var(--muted); font-size: 18px; }
.check-list li::before { content: '✓'; display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 10px; border-radius: 999px; color: #fff; background: var(--green); font-weight: 900; }
.pricing { background: #101f33; color: #fff; }
.pricing .eyebrow, .pricing p { color: rgba(255,255,255,.72); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 22px; margin-top: 44px; }
.price-card { padding: 34px; border-radius: 32px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.price-card.featured { background: #fff; color: var(--ink); }
.price-card h3 { margin: 0 0 12px; font-size: 28px; }
.price { font-size: 44px !important; line-height: 1; margin: 0 0 14px !important; font-weight: 900; letter-spacing: -.04em; }
.price-card ul { margin: 22px 0 0; padding-left: 20px; line-height: 2; color: inherit; }
.cta-section { background-image: linear-gradient(rgba(247,248,251,.72), rgba(247,248,251,.72)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=2200&q=90'); background-size: cover; background-position: center; }
.cta-card { max-width: 780px; margin: 0 auto; padding: 54px; text-align: center; border-radius: 38px; background: rgba(255,255,255,.86); backdrop-filter: blur(20px); box-shadow: var(--shadow); }
.waitlist-form { display: flex; gap: 10px; margin-top: 28px; }
.waitlist-form input { flex: 1; min-height: 56px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; font: inherit; }
.waitlist-form button { min-height: 56px; padding: 0 24px; border: 0; border-radius: 999px; color: #fff; background: var(--ink); font: inherit; font-weight: 900; cursor: pointer; }
.form-message { margin: 14px 0 0 !important; font-weight: 800; color: var(--green) !important; }
.footer { display: flex; justify-content: space-between; gap: 18px; padding: 28px max(24px, calc((100vw - 1120px)/2)); color: #607085; background: #fff; border-top: 1px solid var(--line); }
.footer div { display: grid; gap: 3px; }
.footer strong { color: var(--ink); }
.footer p { margin: 0; }
@media (max-width: 900px) {
  .nav { display: none; }
  .hero, .split, .reverse, .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .trip-preview { max-width: 620px; }
  .cards, .steps-grid { grid-template-columns: 1fr 1fr; }
  .image-stack { min-height: 440px; }
  .image-stack img:first-child { inset: 0 40px 90px 0; }
  .image-stack img:last-child { inset: 180px 0 0 120px; }
}
@media (max-width: 620px) {
  .site-header { top: 10px; width: calc(100% - 20px); }
  .brand span:last-child { display: none; }
  .nav-cta { font-size: 13px; padding: 10px 12px; }
  h1 { font-size: 54px; }
  .hero { gap: 28px; }
  .calendar-grid, .cards, .steps-grid, .gallery-grid { grid-template-columns: 1fr; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .image-stack { min-height: auto; display: grid; gap: 14px; }
  .image-stack img { position: static; height: 280px; border: 0 !important; }
  .waitlist-form, .footer { flex-direction: column; }
  .cta-card { padding: 34px 22px; }
}
