/* ==========================================================================
   ILOVEMYHOLIDAYS — design system
   Local prototype. No external CSS/JS/fonts: everything ships in-repo.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --ink: #08131f;
  --ink-2: #122336;
  --body: #3f4b5b;
  --muted: #6d7a8a;
  --paper: #fffdf9;
  --cream: #faf6ee;
  --sand: #f0e8d9;
  --line: #e3dac7;

  --coral: #ff6a45;
  --amber: #f7a428;
  --teal: #0e9f8e;
  --violet: #7b5cf0;

  --wa: #25d366;
  --wa-deep: #128c4a;

  --r: 18px;
  --r-sm: 12px;
  --r-lg: 26px;

  --sh-1: 0 1px 2px rgba(8, 19, 31, .06), 0 10px 26px -14px rgba(8, 19, 31, .22);
  --sh-2: 0 2px 6px rgba(8, 19, 31, .08), 0 30px 64px -26px rgba(8, 19, 31, .40);
  --sh-inset: inset 0 1px 0 rgba(255, 255, 255, .7);

  --f-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --f-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1180px;
  --ease: cubic-bezier(.22, .68, 0, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font: 400 17px/1.65 var(--f-sans);
  /* `clip`, not `hidden`: overflow-x:hidden on body silently creates a scroll
     container, which breaks window.pageYOffset and scroll-linked effects. */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.015em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- type ---------- */
.eyebrow {
  font: 700 11.5px/1 var(--f-sans);
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--coral); margin: 0 0 14px;
}
.eyebrow.on-dark { color: #ffcf9e; }
.h-xl { font-size: clamp(2.4rem, 6.4vw, 4.4rem); }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.h-md { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.lede { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--body); max-width: 62ch; }
.on-dark .lede, .lede.on-dark { color: rgba(255, 255, 255, .84); }
.serif { font-family: var(--f-display); }
.tick { color: var(--teal); font-weight: 700; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid var(--bd);
  background: var(--bg); color: var(--fg);
  font-weight: 650; font-size: 15.5px; line-height: 1; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; fill: currentColor; flex: none; }
.btn-wa { --bg: var(--wa); --fg: #06331b; }
.btn-wa:hover { --bg: #1fbe5c; }
.btn-coral { --bg: var(--coral); --fg: #2b0d04; }
.btn-ghost { --bg: rgba(255, 255, 255, .14); --fg: #fff; --bd: rgba(255, 255, 255, .42); backdrop-filter: blur(6px); }
.btn-ghost:hover { --bg: rgba(255, 255, 255, .24); }
.btn-outline { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn-outline:hover { --bg: var(--ink); --fg: #fff; }
.btn-lg { padding: 18px 32px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink); color: rgba(255, 255, 255, .74);
  font-size: 13px; letter-spacing: .01em;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; justify-content: space-between; padding-block: 9px; }
.topbar a:hover { color: #fff; }
.topbar .tb-l { display: flex; flex-wrap: wrap; gap: 6px 20px; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 253, 249, .86);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.hdr.stuck { border-bottom-color: var(--line); box-shadow: 0 10px 30px -22px rgba(8, 19, 31, .5); }
.hdr-row { display: flex; align-items: center; gap: 20px; padding-block: 12px; }
.brand { display: flex; align-items: center; flex: none; }
/* The supplied artwork is a stacked lockup (plane / wordmark / tagline); a slim
   sticky header needs the horizontal one, built from the same artwork (8.8:1).
   Sized so it still clears the burger at 360px. */
.brand-logo { height: clamp(24px, 3.4vw, 32px); width: auto; display: block; }

.nav { display: none; margin-left: auto; gap: 4px; }
@media (min-width: 1000px) { .nav { display: flex; align-items: center; } }
.nav a {
  padding: 9px 13px; border-radius: 999px; font-size: 15px; font-weight: 550; color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav a:hover { background: var(--sand); }
.hdr .cta { margin-left: auto; display: none; }
@media (min-width: 1000px) { .hdr .cta { display: inline-flex; margin-left: 0; } }
.burger {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  background: var(--sand); border: 0; border-radius: 999px; padding: 11px 16px;
  font-weight: 650; font-size: 14px; cursor: pointer;
}
@media (min-width: 1000px) { .burger { display: none; } }
/* drop the word on very narrow screens so the logo has room */
@media (max-width: 420px) { .burger span { display: none; } .burger { padding: 11px 14px; } }
.burger i { display: block; width: 18px; height: 2px; background: var(--ink); box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink); }
.msheet {
  display: grid; gap: 0; overflow: hidden;
  max-height: 0; transition: max-height .38s var(--ease);
  border-top: 0 solid var(--line);
}
.msheet.open { max-height: 520px; border-top-width: 1px; padding-bottom: 18px; }
.msheet a { padding: 14px 4px; font-size: 16.5px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.msheet .btn { margin-top: 14px; }

/* ---------- scroll progress plane ---------- */
.prog { position: fixed; inset: 0 0 auto; height: 3px; z-index: 80; pointer-events: none; }
.prog-track { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(8, 19, 31, .07)); }
/* driven by a direct transform write, never by a custom property on :root —
   changing a var on the root element invalidates styles for the whole document */
.prog-dash { position: absolute; inset: 0; height: 100%; background: repeating-linear-gradient(90deg, var(--coral) 0 12px, transparent 12px 20px); transform-origin: 0 50%; transform: scaleX(0); }
.prog-jet {
  position: absolute; top: -5px; left: 0; margin-left: -15px;
  width: 30px; height: 11.5px;
  background-color: var(--coral);
  -webkit-mask: url("../images/plane.png") center / contain no-repeat;
          mask: url("../images/plane.png") center / contain no-repeat;
  transform: rotate(-90deg);
  filter: drop-shadow(0 2px 4px rgba(8, 19, 31, .3));
}

/* ==========================================================================
   HERO — the sky
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  min-height: min(92svh, 900px);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-a) 0%, var(--sky-b) 55%, var(--sky-c) 100%);
  transition: background 1.1s var(--ease);
  color: #fff;
}
[data-sky="dawn"]  { --sky-a: #101f3e; --sky-b: #6b3f6e; --sky-c: #ffb27a; --orb: #ffe0b8; --cloud: #fff; --cloud-a: .92; --star: 0; }
[data-sky="day"]   { --sky-a: #0a63a8; --sky-b: #4aa8dd; --sky-c: #cbeafb; --orb: #fff8de; --cloud: #fff; --cloud-a: .96; --star: 0; }
[data-sky="dusk"]  { --sky-a: #20123f; --sky-b: #a33459; --sky-c: #ff9b57; --orb: #ffcf9a; --cloud: #ffe6d5; --cloud-a: .82; --star: .35; }
[data-sky="night"] { --sky-a: #030713; --sky-b: #0a1730; --sky-c: #16325c; --orb: #e9eeff; --cloud: #9fb4d8; --cloud-a: .30; --star: 1; }

/* soft scrim so white text always reads, whatever the hour */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(120% 80% at 20% 12%, rgba(3, 8, 18, .46), rgba(3, 8, 18, 0) 62%),
    linear-gradient(180deg, rgba(3, 8, 18, .34) 0%, rgba(3, 8, 18, .12) 38%, rgba(3, 8, 18, .40) 100%);
}

.sky { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.sky-layer { position: absolute; inset: 0; will-change: transform; }

/* orb — sun / moon. Shadow spread kept modest: a huge animated blur repaints
   the whole shadow region every frame for very little visual gain. */
.orb {
  position: absolute; right: 11%; top: 16%;
  width: clamp(70px, 10vw, 132px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, var(--orb), color-mix(in srgb, var(--orb) 62%, transparent) 62%, transparent 72%);
  box-shadow: 0 0 56px 18px color-mix(in srgb, var(--orb) 30%, transparent), 0 0 120px 44px color-mix(in srgb, var(--orb) 13%, transparent);
  animation: orbPulse 11s ease-in-out infinite;
  transition: background 1.1s var(--ease), box-shadow 1.1s var(--ease);
}
[data-sky="night"] .orb { background: radial-gradient(circle at 62% 40%, #eef2ff, #cdd8f2 58%, #aab8dd 70%); box-shadow: 0 0 48px 16px rgba(190, 208, 255, .26), 0 0 110px 40px rgba(150, 175, 255, .11); }
@keyframes orbPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* stars */
.stars { position: absolute; inset: 0; opacity: var(--star); transition: opacity 1.1s var(--ease); }
.stars i {
  position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle { 0%, 100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.25); } }

/* clouds — blur is expensive on animated layers, so only the two big soft
   background banks carry a filter; the near clouds stay crisp */
.cloud { position: absolute; color: var(--cloud); opacity: var(--cloud-a); transition: color 1.1s var(--ease), opacity 1.1s var(--ease); }
.cloud svg { width: 100%; height: auto; }
.c1 { top: 9%;  left: 0; width: clamp(180px, 26vw, 380px); animation: drift 118s linear infinite; }
.c2 { top: 27%; left: 0; width: clamp(130px, 19vw, 280px); animation: drift 86s  linear infinite; animation-delay: -32s; }
.c3 { top: 46%; left: 0; width: clamp(230px, 34vw, 520px); opacity: calc(var(--cloud-a) * .62); filter: blur(4px); animation: drift 152s linear infinite; animation-delay: -70s; }
.c4 { top: 62%; left: 0; width: clamp(110px, 15vw, 220px); animation: drift 70s  linear infinite; animation-delay: -18s; }
.c5 { top: 76%; left: 0; width: clamp(280px, 44vw, 640px); opacity: calc(var(--cloud-a) * .48); filter: blur(6px); animation: drift 190s linear infinite; animation-delay: -120s; }
.c6 { top: 3%;  left: 0; width: clamp(90px, 12vw, 170px);  opacity: calc(var(--cloud-a) * .55); animation: drift 104s linear infinite; animation-delay: -60s; }

@keyframes drift { from { transform: translate3d(-40vw, 0, 0); } to { transform: translate3d(140vw, 0, 0); } }

/* jets */
.jet { position: absolute; left: 0; }
.jet img { display: block; width: 100%; height: auto; }
.jet-a { top: 22%; width: clamp(116px, 13.5vw, 208px); animation: flyA 34s linear infinite; }
.jet-b { top: 58%; width: clamp(58px, 6.6vw, 100px); opacity: .72; animation: flyA 52s linear infinite; animation-delay: -21s; }
@keyframes flyA {
  0%   { transform: translate3d(-24vw, 2vh, 0) rotate(-1.2deg); opacity: 0; }
  6%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translate3d(126vw, -4vh, 0) rotate(-1.2deg); opacity: 0; }
}
/* contrail trails behind (to the left of) each jet.
   No CSS filter here on purpose: a blurred element that also animates has to be
   re-rasterised every frame. Layered gradients give the same softness for free. */
.jet::before {
  content: ""; position: absolute; right: 92%; bottom: 50%;
  width: 46vw; height: 5px; border-radius: 3px;
  background: linear-gradient(to left,
    rgba(255, 255, 255, .60) 0%,
    rgba(255, 255, 255, .34) 22%,
    rgba(255, 255, 255, .14) 55%,
    rgba(255, 255, 255, .05) 78%,
    transparent 100%);
  animation: trail 34s linear infinite;
}
@keyframes trail {
  0% { opacity: 0; transform: scaleX(.15); transform-origin: 100% 50%; }
  18% { opacity: 1; transform: scaleX(1); transform-origin: 100% 50%; }
  100% { opacity: 0; transform: scaleX(1); transform-origin: 100% 50%; }
}
.jet-b::before { animation-duration: 52s; animation-delay: -21s; height: 3px; opacity: .55; }

/* birds */
.flock { position: absolute; top: 38%; left: 0; width: clamp(70px, 8vw, 120px); color: rgba(255, 255, 255, .8); animation: drift 130s linear infinite; animation-delay: -44s; }
.flock svg { width: 100%; }
.flock path { animation: flap 1.5s ease-in-out infinite; transform-origin: center; }
@keyframes flap { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.45); } }

/* pointer light */
.lamp {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0;
  background: radial-gradient(360px 360px at var(--mx, 50%) var(--my, 40%), rgba(255, 226, 168, .20), transparent 68%);
  transition: opacity .5s;
}
.hero:hover .lamp { opacity: 1; }

/* hero content */
.hero-in { position: relative; z-index: 3; padding-block: 74px 104px; width: 100%; }
.hero-grid { display: grid; gap: 42px; align-items: end; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); gap: 54px; } }
.hero h1 { color: #fff; text-shadow: 0 2px 26px rgba(4, 10, 22, .45); }
.hero h1 em { font-style: italic; color: #ffd9a8; }
.hero .lede { color: rgba(255, 255, 255, .9); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .24);
  color: #fff; backdrop-filter: blur(7px);
}
.chip svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.1; }

/* ---------- the departure board ---------- */
.board {
  background: linear-gradient(180deg, #05101c, #0a1a2c);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r);
  padding: 20px 22px; box-shadow: var(--sh-2), inset 0 1px 0 rgba(255, 255, 255, .08);
  position: relative; overflow: hidden;
}
.board::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 38px);
}
.board-hd { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.board-hd b { font: 700 11px/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: #7fd6ff; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255, 106, 69, .7); animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(255, 106, 69, .6); } 70%, 100% { box-shadow: 0 0 0 9px rgba(255, 106, 69, 0); } }
.board-line { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 9px 0; border-top: 1px solid rgba(255, 255, 255, .09); }
.board-line:first-of-type { border-top: 0; }
.board-line span { font: 600 13.5px/1 var(--f-sans); color: rgba(255, 255, 255, .58); }
.flaps { display: flex; gap: 3px; font: 700 clamp(22px, 3.4vw, 34px)/1 var(--f-mono); letter-spacing: .04em; }
.flap { display: inline-block; min-width: .62em; text-align: center; color: #ffd9a8; text-shadow: 0 0 22px rgba(255, 196, 120, .45); transform-origin: 50% 100%; }
.flap.on { animation: flip .4s var(--ease); }
@keyframes flip {
  0% { transform: rotateX(0deg); }
  45% { transform: rotateX(-86deg); color: #ffb86a; }
  55% { transform: rotateX(86deg); color: #ffb86a; }
  100% { transform: rotateX(0deg); }
}
.flaps.sm { font-size: clamp(15px, 2vw, 19px); color: #8fe3ff; }
.flaps.sm .flap { color: #8fe3ff; text-shadow: 0 0 18px rgba(120, 214, 255, .4); }

/* hour switcher */
.hours { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.hours span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .6); font-weight: 650; }
.hours button {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22); color: #fff;
  padding: 7px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 620; cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.hours button:hover { background: rgba(255, 255, 255, .2); transform: translateY(-1px); }
.hours button[aria-pressed="true"] { background: #fff; color: var(--ink); border-color: #fff; }

.scrollcue { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 3; display: grid; justify-items: center; gap: 6px; color: rgba(255, 255, 255, .78); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; }
.scrollcue i { display: block; width: 1px; height: 24px; background: linear-gradient(180deg, rgba(255, 255, 255, .8), transparent); animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0%, 100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- generic sections ---------- */
.sec { padding-block: clamp(64px, 9vw, 116px); position: relative; }
.sec-cream { background: var(--cream); }
.sec-sand { background: var(--sand); }
.sec-ink { background: var(--ink); color: rgba(255, 255, 255, .8); }
.sec-ink h2, .sec-ink h3 { color: #fff; }
.sec-hd { max-width: 720px; margin-bottom: 48px; }
.sec-hd.center { margin-inline: auto; text-align: center; }
.rule { height: 1px; border: 0; background: var(--line); margin: 0; }

/* cloud divider band */
.band {
  position: relative; overflow: hidden; isolation: isolate;
  padding-block: clamp(70px, 10vw, 130px); color: #fff; text-align: center;
  background: linear-gradient(180deg, var(--sky-a) 0%, var(--sky-b) 58%, var(--sky-c) 100%);
  transition: background 1.1s var(--ease);
}
.band .sky { opacity: .9; }
.band-in { position: relative; z-index: 3; }
.band h2 { color: #fff; }

/* ---------- accreditation strip ---------- */
.accred { background: var(--sand); border-block: 1px solid var(--line); }
.accred-in { display: flex; align-items: center; justify-content: center; gap: 22px; padding-block: 18px; flex-wrap: wrap; }
/* The IATA mark keeps its own official colour, so it sits on a white plate
   rather than being recoloured for a dark background. */
.accred-plate { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 8px 11px; }
.accred-plate img { height: 32px; width: auto; display: block; }
.accred-div { width: 1px; height: 32px; background: var(--line); }
.accred p { margin: 0; font-size: 14.5px; }
.accred b { color: var(--ink); }
@media (max-width: 660px) { .accred-div { display: none; } .accred p { text-align: center; } }

/* ---------- destination cards ---------- */
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(292px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.dest {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
  box-shadow: var(--sh-1); background: var(--ink-2);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.dest:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dest:hover img { transform: scale(1.075); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 14, 26, .08) 30%, rgba(6, 14, 26, .84)); }
.dest-in { position: relative; z-index: 2; padding: 24px; color: #fff; width: 100%; }
.dest-in h3 { color: #fff; margin: 0 0 4px; font-size: 1.5rem; }
.dest-in .meta { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255, 255, 255, .82); }
.dest .stamp {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  border: 2px solid rgba(255, 255, 255, .8); border-radius: 50%;
  width: 64px; height: 64px; display: grid; place-items: center; text-align: center;
  font: 700 8.5px/1.25 var(--f-sans); letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255, 255, 255, .92); transform: rotate(-12deg) scale(0);
  opacity: 0; transition: transform .55s var(--ease), opacity .3s;
}
.dest.seen .stamp, .stamp.seen { transform: rotate(-12deg) scale(1); opacity: .92; }

/* ---------- boarding-pass package cards ---------- */
.tix {
  position: relative; background: var(--paper); border-radius: var(--r-lg);
  box-shadow: var(--sh-1); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  --notch: 15px;
}
.tix:hover { transform: translateY(-7px); box-shadow: var(--sh-2); }
.tix-top { position: relative; overflow: hidden; }
.tix-top img { width: 100%; height: 210px; object-fit: cover; }
.tix-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255, 253, 249, .93); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 7px 14px; font: 700 12.5px/1 var(--f-sans); color: var(--ink);
}
.tix-code { position: absolute; top: 14px; right: 14px; font: 700 12px/1 var(--f-mono); color: #fff; background: rgba(8, 19, 31, .55); padding: 7px 11px; border-radius: 8px; letter-spacing: .08em; }
.tix-body { padding: 24px 24px 20px; flex: 1; }
.tix-body h3 { margin-bottom: .35em; }
.tix-bold { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 4px; }
.tix-price { font: 600 clamp(1.7rem, 2.8vw, 2.1rem)/1 var(--f-display); color: var(--ink); }
.tix-from { font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 650; }
.tix-note { font-size: 12.5px; color: var(--muted); margin: 0; }

/* the tear-off stub */
.tix-stub {
  position: relative; padding: 18px 24px 22px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: linear-gradient(180deg, rgba(240, 232, 217, .55), rgba(240, 232, 217, .18));
  border-top: 2px dashed var(--line);
}
.tix-stub::before, .tix-stub::after {
  content: ""; position: absolute; top: -13px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream); box-shadow: var(--sh-inset);
}
.sec-cream .tix-stub::before, .sec-cream .tix-stub::after { background: var(--paper); }
.tix-stub::before { left: calc(var(--notch) * -1); }
.tix-stub::after { right: calc(var(--notch) * -1); }
.tix-stub .btn { flex: 1; }
.barcode {
  display: block; margin-left: auto; opacity: .45; width: 92px; height: 36px;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, transparent 2px 4px,
    var(--ink) 4px 5px, transparent 5px 9px,
    var(--ink) 9px 12px, transparent 12px 14px,
    var(--ink) 14px 15px, transparent 15px 19px);
}
.legs { display: flex; gap: 18px; font-size: 12.5px; color: var(--muted); margin-bottom: 14px; flex-wrap: wrap; }
.legs b { display: block; font: 700 13.5px/1.5 var(--f-sans); color: var(--ink); }

/* ---------- visa / stamps ---------- */
.visa-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) { .visa-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); } }
.passport {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 14px;
}
.stampbtn {
  --rot: -6deg;
  border: 2px dashed var(--teal); border-radius: 14px; padding: 15px 14px;
  color: var(--teal); text-align: center; background: rgba(14, 159, 142, .05);
  transform: rotate(var(--rot)) scale(.86); opacity: 0;
  transition: transform .6s var(--ease), opacity .4s, background .25s, color .25s;
}
.stampbtn.seen { transform: rotate(var(--rot)) scale(1); opacity: 1; }
.stampbtn:hover { background: var(--teal); color: #fff; }
.stampbtn b { display: block; font: 700 14.5px/1.2 var(--f-sans); }
.stampbtn span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }

.steps { display: grid; gap: 4px; position: relative; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 16px 0; }
.step-n {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: #fff; font: 650 15px/1 var(--f-sans); flex: none;
}
.step h4 { margin: 2px 0 4px; font-size: 1.12rem; }
.step p { margin: 0; font-size: 15px; }
/* animated flight path behind the steps */
.flightpath { position: absolute; left: 22px; top: 30px; bottom: 40px; width: 2px; overflow: visible; pointer-events: none; }
.flightpath line { stroke: var(--line); stroke-width: 2; stroke-dasharray: 5 7; }
.flightpath .ink-line { stroke: var(--coral); stroke-width: 2.4; stroke-dasharray: var(--len, 500); stroke-dashoffset: var(--len, 500); transition: stroke-dashoffset 2.4s var(--ease); }
.flightpath.go .ink-line { stroke-dashoffset: 0; }

/* visa photo: the source is almost square (933x937), so at full column width it
   would render ~940px tall. Contain it and crop instead. */
.visa-img {
  width: 100%; height: clamp(280px, 44vh, 440px); object-fit: cover;
  border-radius: var(--r); margin-top: 24px; box-shadow: var(--sh-1);
}

/* ---------- reviews ---------- */
.rev {
  background: var(--paper); border-radius: var(--r); padding: 26px;
  box-shadow: var(--sh-1); display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--line);
}
.rev q { font-family: var(--f-display); font-size: 1.06rem; color: var(--ink-2); quotes: """ """ "‘" "’"; }
.stars5 { display: flex; gap: 3px; color: var(--amber); }
.stars5 svg { width: 16px; height: 16px; fill: currentColor; }
.who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.mono-av {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: var(--sand); color: var(--ink); font: 650 15px/1 var(--f-sans); border: 1px solid var(--line);
}
.who b { display: block; font-size: 14.5px; color: var(--ink); }
.who span { font-size: 12.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 21px 44px 21px 0; position: relative;
  font: 600 1.1rem/1.4 var(--f-display); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 26px; width: 12px; height: 12px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq p { padding-bottom: 20px; max-width: 70ch; }

/* ---------- form ---------- */
.formcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 38px); box-shadow: var(--sh-1);
}
.fields { display: grid; gap: 16px; }
@media (min-width: 640px) { .fields.two { grid-template-columns: 1fr 1fr; } }
.f label { display: block; font: 650 13px/1 var(--f-sans); letter-spacing: .04em; color: var(--ink-2); margin-bottom: 7px; }
.f input, .f select, .f textarea {
  width: 100%; padding: 14px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; font-size: 16px; transition: border-color .2s, box-shadow .2s;
}
.f input:focus, .f select:focus, .f textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 106, 69, .14); outline: none; }
.f textarea { min-height: 118px; resize: vertical; }
.formmsg { margin-top: 16px; font-size: 15px; font-weight: 600; }
.formmsg[data-state="ok"] { color: var(--wa-deep); }
.formmsg[data-state="err"] { color: #c0392b; }
.fineprint { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* contact tiles */
.ctiles { display: grid; gap: 18px; }
.ctile { display: flex; gap: 15px; align-items: flex-start; }
.ctile i { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--sand); flex: none; color: var(--ink); }
.ctile i svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.ctile b { display: block; font-size: 14.5px; color: var(--ink); }
.ctile span, .ctile a { font-size: 14.5px; color: var(--body); }

/* ---------- footer ---------- */
.ft { background: var(--ink); color: rgba(255, 255, 255, .66); padding-block: 66px 30px; }
.ft h4 { color: #fff; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-family: var(--f-sans); font-weight: 700; margin-bottom: 16px; }
.ft a:hover { color: #fff; }
.ft-grid { display: grid; gap: 38px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.ft li { margin-bottom: 10px; font-size: 14.5px; }
/* the footer is dark, so the logo uses the knockout treatment: cream lettering,
   green mark preserved */
.ft-logo { height: 27px; width: auto; display: block; margin-bottom: 12px; }
.ft-tag { font-family: var(--f-display); font-style: italic; font-size: 15.5px; color: #ffd9a8; margin: 0 0 14px; }
.ft-accred { display: inline-flex; background: var(--paper); border-radius: 12px; padding: 10px 12px; margin-top: 20px; }
.ft-accred img { height: 26px; width: auto; display: block; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .1); transition: background .2s, transform .2s; }
.socials a:hover { background: rgba(255, 255, 255, .22); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.ft-bot { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 46px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: 13px; }

/* ---------- sticky mobile CTA ---------- */
.sticky {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
  display: flex; gap: 10px; padding: 10px; border-radius: 999px;
  background: rgba(8, 19, 31, .92); backdrop-filter: blur(12px);
  box-shadow: var(--sh-2); transform: translateY(140%); transition: transform .4s var(--ease);
}
.sticky.up { transform: translateY(0); }
.sticky .btn { flex: 1; padding: 13px 16px; font-size: 14.5px; }
@media (min-width: 1000px) { .sticky { display: none; } }

/* ---------- offer teaser + modal (replaces the raw-image popup) ---------- */
.ribbon {
  position: fixed; left: 20px; bottom: 20px; z-index: 75; width: min(348px, calc(100vw - 40px));
  background: var(--paper); border-radius: var(--r); box-shadow: var(--sh-2); border: 1px solid var(--line);
  padding: 14px 34px 14px 14px; display: flex; gap: 13px; align-items: center;
  transform: translateY(170%); transition: transform .5s var(--ease);
}
.ribbon.up { transform: translateY(0); }
@media (max-width: 999px) { .ribbon { bottom: 86px; } }
/* a stamp badge reads as part of the brand; the raw flyer thumbnail did not */
.ribbon-badge {
  flex: none; width: 58px; height: 58px; border-radius: 12px;
  display: grid; place-content: center; text-align: center; gap: 1px;
  background: linear-gradient(150deg, var(--sky-b), var(--sky-a));
  color: #fff; border: 1px dashed rgba(255, 255, 255, .6);
  font: 700 13.5px/1 var(--f-display);
}
.ribbon-badge i { font: 700 8px/1 var(--f-sans); font-style: normal; letter-spacing: .12em; opacity: .8; }
.ribbon-b { display: block; font: 700 11px/1 var(--f-sans); letter-spacing: .13em; text-transform: uppercase; color: var(--coral); margin-bottom: 5px; }
.ribbon b { display: block; font-size: 14.5px; color: var(--ink); line-height: 1.3; }
.ribbon span.ribbon-sub { font-size: 12.5px; color: var(--muted); }
.ribbon button.x { position: absolute; top: 6px; right: 8px; background: none; border: 0; font-size: 19px; line-height: 1; cursor: pointer; color: var(--muted); }
.ribbon a.go { font-weight: 700; color: var(--coral); font-size: 13.5px; }

/* --- the offer dialog: a visa "boarding pass" in the site's own language --- */
.offer-backdrop {
  position: fixed; inset: 0; z-index: 95; padding: 20px;
  background: rgba(4, 10, 20, .74); backdrop-filter: blur(4px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.offer-backdrop.open { opacity: 1; visibility: visible; }
.offer {
  position: relative; width: min(542px, 100%); max-height: 90svh; overflow: auto;
  background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--sh-2);
  transform: translateY(16px) scale(.985); transition: transform .38s var(--ease);
}
.offer-backdrop.open .offer { transform: none; }
.offer-x {
  position: absolute; top: 12px; right: 12px; z-index: 6; width: 38px; height: 38px;
  border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center;
  background: rgba(4, 10, 20, .42); color: #fff; font-size: 22px; line-height: 1;
  transition: background .2s;
}
.offer-x:hover { background: rgba(4, 10, 20, .68); }

/* header inherits the current hour's sky, so the popup always matches the page */
.offer-top {
  position: relative; overflow: hidden; padding: 26px 26px 30px;
  color: #fff; background: linear-gradient(158deg, var(--sky-a) 0%, var(--sky-b) 68%, var(--sky-c) 100%);
}
.offer-top::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(125% 95% at 12% 0%, rgba(3, 8, 18, .5), transparent 66%);
}
.offer-top > * { position: relative; z-index: 2; }
.offer-top .eyebrow { color: #ffcf9e; margin-bottom: 10px; }
.offer-top h2 { color: #fff; font-size: clamp(1.32rem, 3.6vw, 1.68rem); margin: 0 0 .34em; max-width: 15ch; }
.offer-sub { color: rgba(255, 255, 255, .88); font-size: 14.8px; margin: 0; max-width: 34ch; }
.offer-flags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.offer-flags li {
  font: 600 11.5px/1 var(--f-sans); padding: 7px 11px; border-radius: 999px;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .26);
}

/* the stamp straddles the header edge, like a passport stamp on a ticket */
.offer-stamp {
  position: absolute; right: 22px; z-index: 4;
  width: 78px; height: 78px; border-radius: 50%;
  border: 2px dashed var(--teal); color: var(--teal);
  display: grid; place-items: center; text-align: center;
  font: 700 9px/1.25 var(--f-sans); letter-spacing: .1em; text-transform: uppercase;
  background: var(--paper); transform: rotate(-11deg);
}

.offer-lines { padding: 46px 26px 4px; }
.offer-line {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 0; border-top: 1px dashed var(--line);
}
.offer-line:first-child { border-top: 0; padding-top: 2px; }
.offer-line b { display: block; font-size: 15.8px; color: var(--ink); line-height: 1.35; }
.offer-line span { font-size: 12.8px; color: var(--muted); }
.offer-price { text-align: right; white-space: nowrap; font: 600 1.5rem/1 var(--f-display); color: var(--ink); }
.offer-price em { display: block; font: 700 10.5px/1 var(--f-sans); font-style: normal; letter-spacing: .12em; color: var(--muted); margin-bottom: 4px; }

.offer-actions { padding: 18px 26px 0; display: grid; gap: 10px; }
.offer-secondary { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.offer-link {
  background: none; border: 0; padding: 6px 0; cursor: pointer; font-size: 13.4px; font-weight: 600;
  color: var(--muted); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.offer-link:hover { color: var(--ink); }

.offer-flyer { display: none; padding: 18px 26px 0; }
.offer.show-flyer .offer-flyer { display: block; }
.offer-flyer img { width: 100%; height: auto; border-radius: var(--r); border: 1px solid var(--line); }

.offer-foot {
  position: relative; margin-top: 18px; padding: 16px 26px 22px;
  border-top: 2px dashed var(--line);
  display: flex; align-items: flex-end; gap: 16px; justify-content: space-between;
}
.offer-foot::before, .offer-foot::after {
  content: ""; position: absolute; top: -13px; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(4, 10, 20, .9);
}
.offer-foot::before { left: -12px; }
.offer-foot::after { right: -12px; }
.offer-fine { font-size: 11.4px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 40ch; }

/* phones: slide up as a sheet, which is how people expect a promo to arrive */
@media (max-width: 620px) {
  .offer-backdrop { place-items: end center; padding: 0; }
  .offer { width: 100%; max-height: 92svh; border-radius: var(--r-lg) var(--r-lg) 0 0; transform: translateY(100%); }
  .offer-backdrop.open .offer { transform: none; }
  .offer-stamp { width: 66px; height: 66px; right: 16px; }
  .offer-lines { padding-top: 42px; }
}

/* ---------- reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.seen { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .09s; }
.rv-d2 { transition-delay: .18s; }
.rv-d3 { transition-delay: .27s; }

/* ---------- reduced motion: kill the show, keep the content ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .rv, .stampbtn, .dest .stamp { opacity: 1 !important; transform: none !important; }
  /* With drift switched off every cloud would revert to left:0 and pile up in
     the corner, so place them deliberately instead. */
  .c1 { left: 5%; } .c2 { left: 64%; } .c3 { left: 16%; }
  .c4 { left: 80%; } .c5 { left: 2%; } .c6 { left: 46%; }
  .jet, .flock { display: none; }
  .flightpath .ink-line { stroke-dashoffset: 0; --len: 0; }
}
