/* Island Wings — public site. Colour tokens come from the admin panel and are
   injected as :root overrides in the page head. */
:root {
  --primary: #0B54B8;
  --primary-dark: #083E88;
  --accent: #1FAF54;
  --accent-dark: #188F44;
  --ink: #10233F;
  --muted: #44546A;
  --faint: #8494AA;
  --line: #E4ECF5;
  --tint: #E3EEFB;
  --soft: #F4F8FC;
  --navy: #0A1A33;
  --wrap: 1200px;
}

* { box-sizing: border-box; }
body {
  margin: 0; background: #fff; color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
h1, h2, h3 { letter-spacing: -.02em; text-wrap: pretty; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: clamp(18px, 4vw, 32px); }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); }
.section-head h2 { font-size: clamp(26px, 4.4vw, 36px); font-weight: 800; margin: 12px 0 0; line-height: 1.15; }

/* ---------------------------------------------------------------- buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; padding: 15px 24px; border-radius: 12px; border: 1.5px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 26px rgba(11, 84, 184, .28); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--primary); border-color: #C4D7EE; }
.btn-ghost:hover { background: #F0F6FD; }
.btn-wa { background: var(--accent); color: #fff; }
.btn-wa:hover { background: var(--accent-dark); color: #fff; }
.btn-wa svg { flex: none; }

/* ----------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 20px; padding-block: 8px; }
.logo { display: flex; align-items: center; font-size: 21px; font-weight: 800; color: var(--ink); }
.logo:hover { color: var(--ink); }
/* tall enough that a stacked lockup (mark over wordmark) still reads; a wide
   horizontal logo is capped by max-width instead, and contain keeps its ratio */
.logo img { height: 74px; width: auto; max-width: 260px; object-fit: contain; object-position: left center; }
.logo .accent { color: var(--primary); }
.site-nav { display: flex; gap: 26px; margin-left: auto; font-size: 14.5px; font-weight: 600; }
.site-nav a { color: var(--ink); }
.site-nav a:hover { color: var(--primary); }
.header-cta { font-size: 14px; padding: 11px 18px; border-radius: 10px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 8px;
  color: var(--ink); cursor: pointer; }

/* ------------------------------------------------------------------- hero */
.hero { background: linear-gradient(180deg, #fff 0%, #EDF4FB 100%); }
.hero .wrap { padding-block: clamp(44px, 7vw, 72px) clamp(52px, 8vw, 84px);
  display: grid; grid-template-columns: minmax(420px, 1.05fr) .95fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--tint); color: var(--primary);
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 99px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(31px, 5.2vw, 52px); line-height: 1.08; font-weight: 800; margin: 0; }
.hero p.lede { font-size: clamp(16px, 2.2vw, 18px); line-height: 1.65; color: var(--muted); margin: 22px 0 0; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 22px; margin-top: 34px; font-size: 13.5px; font-weight: 600;
  color: var(--muted); flex-wrap: wrap; }
.hero-points span { display: flex; align-items: center; gap: 7px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex: none; }
.hero-media { position: relative; min-width: 0; }
.hero-media img { height: clamp(300px, 46vw, 460px); width: 100%; object-fit: cover; border-radius: 22px; }
.stat-card { position: absolute; left: -18px; bottom: 26px; background: #fff; border-radius: 14px;
  box-shadow: 0 18px 44px rgba(11, 58, 130, .18); padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
.stat-card .icon { width: 42px; height: 42px; border-radius: 12px; background: var(--tint);
  display: flex; align-items: center; justify-content: center; color: var(--primary); flex: none; }
.stat-card .label { font-size: 12px; color: var(--faint); font-weight: 600; }
.stat-card .value { font-size: 19px; font-weight: 800; }

/* ------------------------------------------------------------- flight map */
.route-intro { background: var(--navy); padding: clamp(48px, 8vw, 76px) 0 40px; text-align: center; }
.route-intro .eyebrow { color: #7FB2F2; }
.route-intro h2 { font-size: clamp(26px, 4.6vw, 38px); font-weight: 800; margin: 14px auto 0; max-width: 640px; line-height: 1.15; color: #fff; }
.route-intro p { font-size: 16.5px; color: #B8C6DA; max-width: 560px; margin: 16px auto 0; line-height: 1.6; }
#flightmap { position: relative; height: 440vh; background: var(--navy); }
#flightmap .sticky { position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: radial-gradient(120% 120% at 70% 30%, #123363 0%, #0A1A33 55%, #060F20 100%); }
#flightmap .globe-holder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
#flightmap .globe { height: min(125vh, 125vw); width: min(125vh, 125vw); flex: none; transform: translateX(12%); }
#flightmap .stars { position: absolute; inset: 0; opacity: .5; }
#flightmap .scroll-hint { position: absolute; top: clamp(16px, 4vh, 40px); left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .75);
  background: rgba(10, 26, 51, .55); padding: 10px 16px; border-radius: 99px; backdrop-filter: blur(4px); white-space: nowrap; }
.stop-card { position: absolute; left: clamp(16px, 5vw, 72px); bottom: clamp(16px, 6vh, 64px);
  width: min(400px, calc(100vw - 32px)); background: #fff; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4); padding: clamp(18px, 3vw, 26px) clamp(20px, 3vw, 28px); }
.stop-card .kicker { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.stop-card h3 { font-size: clamp(22px, 4vw, 30px); font-weight: 800; margin: 0; line-height: 1.1; }
.stop-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 10px 0 0; }
.stop-meta { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.stop-meta .nights { font-size: 11.5px; color: var(--faint); }
.stop-meta .price { font-size: 20px; font-weight: 800; }
.stop-meta a { margin-left: auto; font-size: 13.5px; font-weight: 700; color: #fff; background: var(--primary);
  padding: 12px 18px; border-radius: 10px; white-space: nowrap; }
.stop-meta a:hover { background: var(--primary-dark); color: #fff; }
.stop-progress { display: flex; gap: 6px; margin-top: 18px; }
.stop-progress i { height: 4px; flex: 1; border-radius: 2px; background: #DCE6F2; transition: background .3s; }
.stop-progress i.on { background: var(--primary); }
@keyframes iw-pulse { 0% { r: 9; opacity: .6 } 100% { r: 24; opacity: 0 } }
#flightmap .pulse { animation: iw-pulse 1.6s ease-out infinite; }

/* --------------------------------------------------------------- packages */
.packages { padding-block: clamp(52px, 8vw, 88px); }
.packages .head { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.packages .head p { margin-left: auto; font-size: 14.5px; color: var(--muted); max-width: 340px; line-height: 1.55; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.pkg-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; color: inherit; box-shadow: 0 2px 8px rgba(11, 58, 130, .05);
  transition: box-shadow .2s, transform .2s; }
.pkg-card:hover { box-shadow: 0 16px 40px rgba(11, 58, 130, .14); color: inherit; transform: translateY(-2px); }
.pkg-card img { height: 190px; width: 100%; object-fit: cover; }
.pkg-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.pkg-card .title { display: flex; align-items: center; gap: 8px; }
.pkg-card .title span:first-child { font-size: 18px; font-weight: 800; }
.badge { margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--primary);
  background: var(--tint); padding: 4px 9px; border-radius: 99px; white-space: nowrap; }
.pkg-card p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.pkg-card .price { font-size: 17px; font-weight: 800; margin-top: 4px; }
.pkg-card .price small { font-size: 12px; font-weight: 600; color: var(--faint); white-space: nowrap; }
.pkg-card .more { font-size: 13.5px; font-weight: 700; color: var(--primary); margin-top: 2px; }

/* ------------------------------------------------------------------ why us */
.why { background: var(--soft); padding-block: clamp(52px, 8vw, 84px); }
.why h2 { max-width: 560px; }
.feature { background: #fff; border-radius: 16px; padding: 26px 24px; border: 1px solid var(--line); }
.feature .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--tint);
  display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 16px; }
.feature h3 { font-size: 16.5px; font-weight: 800; margin: 0; }
.feature p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ------------------------------------------------------------ testimonial */
.testimonial { padding-block: clamp(52px, 8vw, 84px); text-align: center; }
.testimonial .inner { max-width: 840px; margin: 0 auto; }
.testimonial .stars { color: #F1A83B; font-size: 20px; letter-spacing: 4px; }
.testimonial blockquote { font-size: clamp(19px, 3.2vw, 26px); line-height: 1.45; font-weight: 600;
  margin: 20px 0 0; letter-spacing: -.01em; }
.testimonial .who { margin-top: 16px; font-size: 14px; color: var(--faint); font-weight: 600; }

/* --------------------------------------------------------------- cta band */
.cta-band { background: var(--primary); padding-block: clamp(48px, 7vw, 72px); }
.cta-band .wrap { max-width: 1000px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4.4vw, 34px); font-weight: 800; margin: 0;
  line-height: 1.2; white-space: pre-line; }
.cta-band p { color: #BFD6F5; font-size: 16px; line-height: 1.6; margin: 14px 0 0; max-width: 440px; }
.cta-band .text { flex: 1; min-width: 280px; }
.cta-band .btn-wa { font-size: 18px; padding: 20px 32px; border-radius: 14px; box-shadow: 0 14px 34px rgba(0, 0, 0, .25); }

/* ----------------------------------------------------------------- footer */
.site-footer { background: var(--ink); padding-block: 48px; }
.site-footer .top { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.site-footer .brand { color: #fff; font-size: 19px; font-weight: 800; }
.site-footer .brand span.accent { color: #6FA8EE; }
.site-footer .brand span.legal { font-weight: 400; color: #7C8DA6; }
.site-footer .tagline { color: #7C8DA6; font-size: 12.5px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; margin-top: 6px; }
.site-footer nav { margin-left: auto; display: flex; gap: 26px; font-size: 13.5px; font-weight: 600; flex-wrap: wrap; }
.site-footer nav a { color: #B8C6DA; }
.site-footer nav a:hover { color: #fff; }
.site-footer .legal-line { margin-top: 28px; border-top: 1px solid #23375A; padding-top: 20px; color: #5F718C; font-size: 12.5px; }

/* --------------------------------------------------------- package page */
.pkg-hero { position: relative; height: clamp(340px, 52vw, 520px); }
.pkg-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pkg-hero .shade { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 22, 44, .15) 0%, rgba(9, 22, 44, .7) 100%); }
.pkg-hero .caption { position: absolute; left: 0; right: 0; bottom: 0; padding-bottom: clamp(28px, 5vw, 48px); }
.pkg-hero .back { font-size: 13px; font-weight: 700; color: #BFD6F5; }
.pkg-hero .back:hover { color: #fff; }
.pkg-hero h1 { color: #fff; font-size: clamp(32px, 6vw, 54px); font-weight: 800; margin: 12px 0 0; }
.pkg-hero p { color: #D9E6F8; font-size: clamp(15px, 2.4vw, 18px); margin: 10px 0 0; max-width: 560px; line-height: 1.55; }
.facts { border-bottom: 1px solid var(--line); }
.facts .wrap { padding-block: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.facts .fact { padding: 6px 28px; border-right: 1px solid var(--line); }
.facts .fact:first-child { padding-left: 0; }
.facts .fact:last-child { border-right: 0; }
.facts .k { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.facts .v { font-size: clamp(15px, 2.4vw, 18px); font-weight: 800; margin-top: 4px; }
.facts .v small { font-size: 12.5px; font-weight: 600; color: var(--faint); white-space: nowrap; }
.itinerary-wrap { background: var(--soft); padding-block: clamp(44px, 7vw, 72px); }
.itinerary-wrap .cols { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.itinerary-wrap h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 800; margin: 12px 0 30px; }
.day { display: flex; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; }
.day + .day { margin-top: 14px; }
.day .n { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.day h3 { font-size: 16.5px; font-weight: 800; margin: 0; }
.day p { margin: 6px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.book { position: sticky; top: 96px; background: #fff; border-radius: 18px; border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(11, 58, 130, .1); padding: 28px; }
.book .meta { font-size: 13px; font-weight: 600; color: var(--faint); }
.book .amount { font-size: clamp(26px, 4vw, 32px); font-weight: 800; margin-top: 6px; }
.book ul { list-style: none; margin: 20px 0; padding: 20px 0 0; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: var(--muted); }
.book li { display: flex; gap: 10px; align-items: flex-start; }
.book li b { color: var(--accent); }
.book li.extra b { color: var(--faint); }
.book .btn-wa { width: 100%; font-size: 16px; padding: 16px; }
.book .note { margin: 14px 0 0; font-size: 12.5px; line-height: 1.55; color: var(--faint); text-align: center; }
.gallery { padding-block: clamp(44px, 7vw, 76px); }
.gallery .tiles { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; margin-top: 34px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.gallery .big { grid-column: span 2; grid-row: span 2; }

/* ------------------------------------------------ under construction page */
.maint { position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--navy); overflow: hidden; }
.maint-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.maint::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 90% at 50% 40%, rgba(10, 26, 51, .35) 0%, rgba(6, 15, 32, .85) 100%); }
.maint-inner { position: relative; z-index: 1; text-align: center; padding: 48px clamp(20px, 5vw, 40px);
  max-width: 620px; }
.maint-brand { margin-bottom: 34px; }
/* logos are usually dark ink on transparent, which vanishes on this dark page —
   sit it on a white chip so any logo stays readable */
.maint-brand img { height: 96px; width: auto; margin: 0 auto; background: #fff;
  padding: 10px 16px; border-radius: 14px; box-shadow: 0 12px 30px rgba(0, 0, 0, .3); }
.maint-brand .wordmark { color: #fff; font-size: clamp(26px, 6vw, 34px); font-weight: 800; letter-spacing: -.02em; }
.maint-brand .wordmark span { color: #6FA8EE; }
.maint-brand .tagline { color: #7FB2F2; font-size: 12.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-top: 8px; }
.maint .pill { background: rgba(127, 178, 242, .16); color: #BFD6F5; }
.maint h1 { color: #fff; font-size: clamp(28px, 6vw, 44px); font-weight: 800; line-height: 1.12; margin: 0; }
.maint p { color: #B8C6DA; font-size: clamp(15px, 2.6vw, 17.5px); line-height: 1.65; margin: 18px 0 32px; }
.maint .btn-wa { box-shadow: 0 14px 34px rgba(0, 0, 0, .35); font-size: 17px; padding: 17px 30px; }
.maint-foot { margin-top: 40px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  color: #A3B4CB; font-size: 12.5px; }
.maint-foot a { color: #C6D6EA; font-weight: 600; }
.maint-foot a:hover { color: #fff; }

.notfound { padding: 14vh 0; text-align: center; }
.notfound h1 { font-size: 44px; margin: 0 0 12px; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .stat-card { left: auto; right: 12px; bottom: 12px; }
  .itinerary-wrap .cols { grid-template-columns: 1fr; }
  .book { position: static; }
  .facts .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .facts .fact:nth-child(2n) { border-right: 0; padding-right: 0; }
  .facts .fact:nth-child(2n+1) { padding-left: 0; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 0;
    box-shadow: 0 18px 30px rgba(11, 58, 130, .1); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px clamp(18px, 4vw, 32px); font-size: 16px; }
  .site-header .wrap { position: relative; }
  .logo img { height: 54px; max-width: 150px; }
  /* keep the WhatsApp button — it is the conversion — but shrink it to its icon */
  .header-cta { margin-left: auto; padding: 10px 12px; }
  .header-cta .cta-label { display: none; }
  .nav-toggle { order: 3; margin-left: 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .packages .head p { margin-left: 0; }
  .gallery .tiles { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .hero-actions .btn { flex: 1; min-width: 200px; }
  #flightmap { height: 380vh; }
  #flightmap .globe { transform: none; height: min(90vh, 130vw); width: min(90vh, 130vw); }
  .stop-card { padding: 18px 20px; }
  .stop-meta { flex-wrap: wrap; }
  .stop-meta a { margin-left: 0; width: 100%; text-align: center; }
}
@media (max-width: 420px) {
  .gallery .tiles { grid-template-columns: 1fr; }
  .gallery .big { grid-column: span 1; grid-row: span 1; }
}
@media (prefers-reduced-motion: reduce) {
  /* no scroll-driven flight: one static screen showing the departure city */
  #flightmap { height: 100vh; }
  #flightmap .pulse { animation: none; }
}
