/* ═══════════════════════════════════════════════════════════════════════
   Micron Tours & Travels — landing page
   Palette drawn from the brand logo: navy ink, brand blue, sunset gold.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── tokens ─────────────────────────────────────────────────────────── */
:root {
  --ink:        #06182F;
  --ink-800:    #0B2445;
  --ink-700:    #123566;
  --blue:       #1B4C8C;
  --blue-500:   #2E6DB4;
  --blue-300:   #7FB0E0;
  --sky-100:    #E7F1FB;
  --sky-50:     #F4F9FE;
  --gold:       #E0A22C;
  --gold-400:   #F2C061;
  --gold-700:   #A97110;
  --teal:       #17A0A0;
  --paper:      #FFFFFF;
  --sand:       #FBF8F2;
  --muted:      #56698A;
  --line:       #DCE7F3;
  --line-soft:  #EDF3FA;

  --shadow-sm:  0 1px 2px rgba(6,24,47,.06), 0 2px 6px rgba(6,24,47,.05);
  --shadow-md:  0 4px 10px rgba(6,24,47,.06), 0 14px 30px rgba(6,24,47,.08);
  --shadow-lg:  0 10px 24px rgba(6,24,47,.08), 0 34px 70px rgba(6,24,47,.14);
  --shadow-gold:0 8px 22px rgba(224,162,44,.34);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shell: 1200px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --header-h: 96px;

  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-script: "Instrument Serif", Georgia, serif;

  --ease: cubic-bezier(.22,.68,.32,1);
  --dur: 260ms;
}

/* ── reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.025em; margin: 0; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 600;
}
.skip-link:focus { top: 0; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }

/* ── shared type helpers ────────────────────────────────────────────── */
.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: .85rem;
}
.sec-lede { color: var(--muted); font-size: 1.05rem; max-width: 52ch; }
.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ── buttons ────────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 46px; padding: .72rem 1.35rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd); border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: -.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { min-height: 54px; padding: .9rem 1.7rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-ink { --btn-bg: var(--ink); box-shadow: 0 6px 18px rgba(6,24,47,.22); }
.btn-ink:hover { --btn-bg: var(--ink-700); }

.btn-gold { --btn-bg: var(--gold); --btn-fg: var(--ink); box-shadow: var(--shadow-gold); }
.btn-gold:hover { --btn-bg: var(--gold-400); }

.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn-outline:hover { --btn-bd: var(--blue-500); --btn-fg: var(--blue); }

.btn-whatsapp { --btn-bg: #1FA855; --btn-fg: #fff; box-shadow: 0 8px 22px rgba(31,168,85,.3); }
.btn-whatsapp:hover { --btn-bg: #17924a; }

.btn-glass {
  --btn-bg: rgba(255,255,255,.14); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.5);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { --btn-bg: rgba(255,255,255,.26); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--blue);
  border-bottom: 1.5px solid transparent; padding-bottom: 1px;
  transition: border-color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.link-arrow::after { content: "→"; transition: transform var(--dur) var(--ease); }
.link-arrow:hover { border-bottom-color: var(--gold); }
.link-arrow:hover::after { transform: translateX(3px); }

/* ═══════════════════════ HEADER ═══════════════════════ */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
}
.site-header.is-stuck {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px rgba(6,24,47,.07);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: var(--header-h);
}
.brand { flex: none; }
.brand img { width: auto; height: 72px; transition: height var(--dur) var(--ease); }
.site-header.is-stuck .brand img { height: 58px; }

.primary-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav-link {
  position: relative; font-family: var(--font-display); font-weight: 500; font-size: .96rem;
  color: var(--ink-800); padding: .35rem 0;
  transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: right var(--dur) var(--ease);
}
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after, .nav-link.is-current::after { right: 0; }
.nav-cta { display: none; }

.header-cta { flex: none; }

.nav-toggle {
  display: none; flex: none;
  width: 46px; height: 46px; border: 1.5px solid var(--line); border-radius: 14px;
  background: rgba(255,255,255,.9); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle-bars { display: grid; gap: 4px; }
.nav-toggle-bars i {
  display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(1.5rem, 5vw, 3.5rem)); padding-bottom: 4rem; }
.hero-sky {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 78% at 50% -18%, #CBE3FA 0%, rgba(231,241,251,.85) 42%, rgba(255,255,255,0) 74%),
    radial-gradient(58% 42% at 88% 6%, rgba(224,162,44,.16) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(180deg, var(--sky-50) 0%, #fff 62%);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }

.hero-chip {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .48rem 1.05rem .48rem .7rem;
  background: rgba(255,255,255,.78); border: 1px solid rgba(127,176,224,.42);
  border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: .84rem; font-weight: 500; color: var(--ink-700);
}
.chip-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 4px rgba(23,160,160,.16);
}

.hero-title {
  margin-top: 1.35rem;
  font-size: clamp(2.6rem, 7.2vw, 5.1rem);
  font-weight: 700; letter-spacing: -.04em;
}
.hero-title .tint { color: var(--blue); }
.hero-title .script {
  display: block; margin-top: .1em;
  font-family: var(--font-script); font-style: italic; font-weight: 400;
  font-size: .52em; letter-spacing: -.01em; color: var(--gold-700);
}

.hero-sub {
  margin-top: 1.35rem; max-width: 56ch;
  font-size: clamp(1rem, 1.6vw, 1.13rem); color: var(--muted);
}

/* photo stage — the planner overlaps its lower edge */
.hero-stage {
  position: relative; width: 100%; margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero-photo-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,24,47,.16) 0%, rgba(6,24,47,0) 40%, rgba(6,24,47,.28) 100%);
}

/* ── free travel quote form ── */
.planner {
  position: relative; z-index: 2; width: 100%;
  margin-top: clamp(-4.5rem, -6vw, -2.5rem);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  text-align: left;
  overflow: hidden;
}
.planner-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1rem;
  padding: 1.15rem clamp(1.1rem, 2.4vw, 1.6rem);
  background: var(--ink); color: #fff;
}
.planner-title { font-size: 1.3rem; color: #fff; }
.planner-note { font-size: .87rem; color: rgba(255,255,255,.72); }

.planner-body { padding: clamp(1.1rem, 2.4vw, 1.6rem); }

/* honeypot — off-screen, never focusable */
.honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* fields */
.field { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.field .req { color: var(--gold-700); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: .6rem .9rem;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  font-size: .97rem; font-family: var(--font-body);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 78px; padding-top: .7rem; resize: vertical; line-height: 1.55; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2356698A'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .6rem center; background-size: 20px;
  padding-right: 2.1rem;
}
.field input::placeholder, .field textarea::placeholder { color: #9BAAC1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--blue-300); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46,109,180,.16);
}
.field .hint { font-size: .8rem; color: var(--muted); }
.field .err { font-size: .8rem; font-weight: 600; color: #C62828; min-height: 0; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C62828; }
.field.has-error .err { min-height: 1.2em; }

/* field groups */
.qset { border: 0; padding: 0; margin: 0; display: grid; gap: .75rem; }
.qset + .qset { margin-top: 1.15rem; }
.qset legend {
  padding: 0; margin-bottom: .35rem; grid-column: 1 / -1;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700);
}
.qset-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.qset-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.planner-go {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px dashed var(--line);
}
.planner-or {
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-inline: .3rem;
}
.form-status { margin-top: .9rem; font-size: .92rem; font-weight: 600; }
.form-status:empty { margin-top: 0; }
.form-status.is-ok { color: #1B7A46; }
.form-status.is-bad { color: #C62828; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* hero trust row */
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.2rem, 4vw, 3.2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.hero-trust li {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  column-gap: .75rem;
  font-family: var(--font-display); font-size: .95rem; line-height: 1.25;
}
.hero-trust b { font-weight: 700; color: var(--ink); }
.hero-trust span:last-child { color: var(--muted); font-weight: 500; }
.trust-ico {
  grid-row: 1 / 3;
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(150deg, var(--blue-500), var(--blue));
  box-shadow: 0 6px 16px rgba(27,76,140,.28);
}
.trust-ico svg { width: 23px; height: 23px; fill: #fff; }

/* ═══════════════════════ MARQUEE ═══════════════════════ */
.marquee {
  padding: 1.15rem 0; overflow: hidden;
  background: var(--ink); color: rgba(255,255,255,.9);
  --mask: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: var(--mask); mask-image: var(--mask);
}
.marquee-track { display: flex; width: max-content; animation: run 38s linear infinite; }
.marquee-run { display: flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem; }
.marquee-run li {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  letter-spacing: .01em; white-space: nowrap;
}
.marquee-run li[aria-hidden], .marquee-run li:nth-child(even) { color: var(--gold); }
@keyframes run { to { transform: translateX(-50%); } }

/* ═══════════════════════ SECTION FRAME ═══════════════════════ */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.sec-head { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); max-width: 62ch; }
.sec-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.sec-head .sec-lede { margin-top: 1rem; }
.sec-head-center { margin-inline: auto; text-align: center; }
.sec-head-center .sec-lede { margin-inline: auto; }

/* signature: dashed flight path with a plane that flies in on reveal */
.flightpath { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.fp-line { flex: 1; height: 0; border-top: 2px dashed rgba(27,76,140,.35); }
.fp-plane {
  width: 30px; height: 30px; fill: var(--gold); flex: none;
  transform: translateX(-40px); opacity: 0;
  transition: transform 900ms var(--ease) 180ms, opacity 500ms ease 180ms;
}
.is-in .fp-plane { transform: translateX(0); opacity: 1; }
.on-dark .fp-line { border-top-color: rgba(255,255,255,.3); }
.on-dark .eyebrow { color: var(--gold-400); }
.on-dark h2 { color: #fff; }
.on-dark .sec-lede { color: rgba(255,255,255,.72); }

/* ═══════════════════════ SERVICES ═══════════════════════ */
.services { background: linear-gradient(180deg, #fff 0%, var(--sky-50) 100%); }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.1rem, 2.2vw, 1.8rem); }
.svc {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sky-100); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.svc:hover .svc-media img { transform: scale(1.05); }
.svc-body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.3rem, 2.4vw, 1.9rem); }
.svc-body h3 { font-size: 1.45rem; }
.svc-body > p { margin-top: .55rem; color: var(--muted); font-size: .96rem; }
.ticks { display: grid; gap: .6rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px dashed var(--line); }
.ticks li { position: relative; padding-left: 1.9rem; font-size: .94rem; font-weight: 500; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .18em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9.6 16.2 5.4 12l-1.4 1.4 5.6 5.6L20.4 7.8 19 6.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}
.svc .link-arrow { margin-top: 1.5rem; align-self: flex-start; }

/* ═══════════════════════ DESTINATIONS ═══════════════════════ */
/* services and destinations share a tone — tighten the seam between them */
.destinations { background: var(--sky-50); padding-top: clamp(2rem, 4vw, 3.5rem); }
.dest-grid {
  display: grid; gap: clamp(.9rem, 1.8vw, 1.3rem);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}
.dest {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  grid-column: span 2; grid-row: span 1;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.dest-tall { grid-column: span 2; grid-row: span 2; }
.dest-wide { grid-column: span 4; }
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.dest::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,24,47,0) 34%, rgba(6,24,47,.82) 100%);
}
.dest:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest:hover img { transform: scale(1.07); }
.dest-meta {
  position: absolute; left: 1.35rem; bottom: 1.2rem; right: 4rem; z-index: 1; color: #fff;
}
.dest-meta b { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; }
.dest-meta i { font-style: normal; font-size: .88rem; color: rgba(255,255,255,.78); }
.dest-go {
  position: absolute; right: 1.2rem; bottom: 1.2rem; z-index: 1;
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.45); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.dest-go svg { width: 18px; height: 18px; }
.dest:hover .dest-go { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translate(2px,-2px); }

.dest-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem;
  margin-top: clamp(1.8rem, 3vw, 2.6rem); text-align: center; color: var(--muted);
}

/* ═══════════════════════ WHY ═══════════════════════ */
.why { position: relative; background: var(--ink); overflow: hidden; }
.why::before {
  content: ""; position: absolute; inset: -30% -10% auto; height: 90%;
  background: radial-gradient(60% 60% at 30% 20%, rgba(46,109,180,.4), transparent 70%),
              radial-gradient(50% 50% at 82% 30%, rgba(224,162,44,.18), transparent 70%);
  pointer-events: none;
}
.why > .shell { position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; }
.why-grid li {
  padding: 1.7rem 1.4rem;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); color: rgba(255,255,255,.72);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.why-grid li:hover { background: rgba(255,255,255,.1); border-color: rgba(224,162,44,.5); transform: translateY(-5px); }
.why-ico {
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px;
  background: linear-gradient(150deg, rgba(224,162,44,.95), rgba(169,113,16,.9));
  box-shadow: 0 8px 20px rgba(224,162,44,.25);
}
.why-ico svg { width: 25px; height: 25px; fill: var(--ink); }
.why-grid b {
  display: block; margin-top: 1.15rem;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: #fff; letter-spacing: -.015em;
}
.why-grid p { margin-top: .5rem; font-size: .9rem; line-height: 1.6; }

/* ═══════════════════════ FAQ ═══════════════════════ */
.faq { background: var(--sand); }
.faq-inner { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq-aside h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.faq-aside .sec-lede { margin-top: 1rem; }
.faq-aside .btn { margin-top: 1.6rem; }

.faq-list { display: grid; gap: .7rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.faq-item[open] { border-color: rgba(224,162,44,.55); box-shadow: var(--shadow-md); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: -.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue); }
.faq-mark { position: relative; width: 20px; height: 20px; flex: none; }
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute; inset: 50% 0 auto; height: 2px; background: var(--gold-700);
  border-radius: 2px; transform: translateY(-50%);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-mark::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-mark::after { transform: translateY(-50%) rotate(0); opacity: 0; }
.faq-answer { padding: 0 1.4rem 1.35rem; }
.faq-answer p { color: var(--muted); font-size: .96rem; max-width: 62ch; }

/* ═══════════════════════ CTA ═══════════════════════ */
.cta { position: relative; isolation: isolate; padding-block: clamp(4.5rem, 9vw, 7rem); overflow: hidden; }
.cta-photo { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.cta-veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(6,24,47,.9) 0%, rgba(6,24,47,.72) 45%, rgba(11,36,69,.5) 100%);
}
.cta-inner { text-align: center; color: #fff; }
.cta-inner h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.cta-inner h2 .gold { color: var(--gold-400); }
.cta-inner > p { margin-top: 1rem; font-size: 1.08rem; color: rgba(255,255,255,.82); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2.2rem; }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.68); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: 3rem;
}
.foot-brand img { height: 84px; width: auto; background: #fff; border-radius: var(--r-md); padding: .5rem .8rem; }
.foot-brand p { margin-top: 1.1rem; font-size: .92rem; max-width: 34ch; }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.socials svg { width: 20px; height: 20px; fill: #fff; }
.socials a:hover { background: var(--gold); transform: translateY(-3px); }
.socials a:hover svg { fill: var(--ink); }

.foot-col h3 {
  font-size: 1.05rem; color: #fff; margin-bottom: 1.1rem;
  font-family: var(--font-display); font-weight: 700;
}
.foot-col ul { display: grid; gap: .6rem; }
.foot-col a { font-size: .94rem; transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
.foot-col a:hover { color: var(--gold-400); }
.foot-contact li { display: flex; gap: .75rem; align-items: flex-start; font-size: .94rem; }
.foot-contact .ico { width: 19px; height: 19px; fill: var(--gold); margin-top: .28em; }
.foot-contact span { display: grid; gap: .3rem; }
.foot-contact li + li { margin-top: 1.1rem; }

.footer-base {
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between; align-items: center;
  padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem;
}
.foot-base-links { display: flex; gap: 1.4rem; }
.foot-base-links a:hover { color: var(--gold-400); }

/* ═══════════════════════ BACK TO TOP ═══════════════════════ */
.to-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); border: 0; color: #fff; cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.to-top svg { width: 22px; height: 22px; fill: currentColor; }
.to-top.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--blue); }

/* ═══════════════════════ REVEAL ═══════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }
.reveal[data-delay="4"] { transition-delay: 360ms; }
.reveal[data-delay="5"] { transition-delay: 450ms; }
.reveal.is-in { opacity: 1; transform: none; }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 940px) {
  .faq-inner { grid-template-columns: 1fr; }
  .dest-grid { grid-auto-rows: 190px; }
  .dest-tall { grid-column: span 4; grid-row: span 1; }
  .dest, .dest-wide { grid-column: span 2; }
}

@media (max-width: 860px) {
  :root { --header-h: 78px; }

  .header-cta { display: none; }
  /* the nav is taken out of flow below, so the toggle carries the auto margin */
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    margin: 0; padding: 1rem var(--gut) 1.6rem;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { padding: .95rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav-link::after { display: none; }
  .nav-cta { display: inline-flex; margin-top: 1.1rem; }

  .hero-stage { aspect-ratio: 16 / 9; }
  .planner { margin-top: clamp(-2.5rem, -5vw, -1.5rem); }
  .qset-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-stage { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }
  .planner { border-radius: var(--r-lg); }
  .planner-head { padding-inline: 1.15rem; }
  .planner-go .btn, .planner-go .planner-or { width: 100%; }
  .planner-or { text-align: center; margin-inline: 0; }
  .hero-trust { gap: 1rem 1.6rem; }
  .hero-trust li { font-size: .88rem; }
  .trust-ico { width: 40px; height: 40px; }
  .planner-go .btn { width: 100%; }
  .planner-note { text-align: center; width: 100%; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .dest, .dest-tall, .dest-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { justify-content: center; text-align: center; }
}

@media (max-width: 460px) {
  .qset-2, .qset-4 { grid-template-columns: 1fr; }
  .cta-actions .btn { width: 100%; }
}

/* ═══════════════════════ MOTION / PRINT ═══════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .fp-plane { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

@media print {
  .site-header, .to-top, .marquee, .cta, .planner { display: none; }
  body { color: #000; }
}

/* ═══════════════════════ LEGAL PAGES ═══════════════════════ */
.legal-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(110% 80% at 50% -20%, #CBE3FA 0%, rgba(231,241,251,.8) 45%, rgba(255,255,255,0) 78%),
    linear-gradient(180deg, var(--sky-50) 0%, #fff 70%);
}
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 20ch; }
.legal-meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.3rem;
  font-size: .88rem; color: var(--muted);
}
.legal-meta b { color: var(--ink); font-weight: 600; }

.legal-layout {
  display: grid; grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.legal-toc { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.legal-toc h2 {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: 1rem;
}
.legal-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; display: grid; gap: .1rem; }
.legal-toc a {
  display: block; padding: .42rem .7rem; border-radius: var(--r-sm);
  font-size: .89rem; color: var(--muted); counter-increment: toc;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.legal-toc a::before { content: counter(toc) ". "; color: var(--blue-300); }
.legal-toc a:hover { background: var(--sky-100); color: var(--ink); }

.legal-body { max-width: 68ch; }
.legal-body > p:first-of-type { font-size: 1.1rem; color: var(--ink-700); }
.legal-body section { scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.legal-body section + section { margin-top: clamp(2.2rem, 4vw, 3.2rem); }
.legal-body h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-bottom: .9rem;
  padding-bottom: .7rem; border-bottom: 1px dashed var(--line);
}
.legal-body h3 { font-size: 1.05rem; margin-top: 1.5rem; margin-bottom: .5rem; }
.legal-body p, .legal-body li { color: var(--muted); }
.legal-body p + p { margin-top: .9rem; }
.legal-body ul { display: grid; gap: .55rem; margin-top: .9rem; padding-left: 1.3rem; list-style: disc; }
.legal-body li::marker { color: var(--blue-300); }
.legal-body a:not(.btn) { color: var(--blue); border-bottom: 1.5px solid rgba(27,76,140,.28); }
.legal-body a:not(.btn):hover { border-bottom-color: var(--gold); }
.legal-body strong { color: var(--ink); font-weight: 600; }

.legal-callout {
  margin-top: 1.2rem; padding: 1.2rem 1.4rem;
  background: var(--sky-50); border: 1px solid var(--line-soft);
  border-left: 4px solid var(--gold); border-radius: var(--r-md);
}
.legal-callout p { color: var(--ink-700); }

.legal-contact {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--ink); color: rgba(255,255,255,.72); border-radius: var(--r-lg);
}
.legal-contact h2 { color: #fff; border: 0; padding: 0; margin-bottom: .6rem; }
.legal-contact p { color: rgba(255,255,255,.72); }
.legal-contact a:not(.btn) { color: var(--gold-400); border-bottom-color: rgba(242,192,97,.4); }
.legal-contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 2rem; }
  .legal-toc { position: static; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
  .legal-toc ol { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
}
.legal-toc a[aria-current] {
  background: var(--sky-100); color: var(--ink); font-weight: 600;
  box-shadow: inset 3px 0 0 var(--gold);
}
.legal-body ul + p { margin-top: .9rem; }

/* ═══════════════════════ BLOG ═══════════════════════ */
.blog-hero h1 { max-width: 16ch; }
.blog-hero .sec-lede { margin-top: 1.2rem; }
.blog-wrap { padding-bottom: clamp(4rem, 8vw, 6.5rem); }

.blog-empty {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem); text-align: center;
  background: var(--sky-50); border: 1px dashed var(--line); border-radius: var(--r-xl);
}
.blog-empty h2 { font-size: 1.6rem; }
.blog-empty p { max-width: 48ch; margin: 1rem auto 1.8rem; color: var(--muted); }

/* lead post */
.blog-lead {
  display: grid; grid-template-columns: 1.25fr 1fr; align-items: stretch;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-xl);
  box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-lead:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-lead-media { overflow: hidden; background: var(--sky-100); min-height: 300px; }
.blog-lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.blog-lead:hover .blog-lead-media img { transform: scale(1.04); }
.blog-lead-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
}
.blog-lead-body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: .7rem; }
.blog-lead-excerpt { margin-top: 1rem; color: var(--muted); }
.blog-lead .link-arrow { margin-top: 1.5rem; align-self: flex-start; }

/* post meta line */
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem;
  font-size: .82rem; color: var(--muted);
}
.post-tag {
  padding: .2rem .7rem; border-radius: var(--r-pill);
  background: var(--sky-100); color: var(--blue);
  font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
}

/* card grid */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.8rem); margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.post-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card-link { display: flex; flex-direction: column; height: 100%; }
.post-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sky-100); display: grid; place-items: center; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card-placeholder svg { width: 46px; height: 46px; fill: var(--blue-300); }
.post-card-body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.2rem, 2.4vw, 1.6rem); }
.post-card-body h3 { font-size: 1.24rem; margin-top: .6rem; }
.post-card-excerpt { margin-top: .6rem; color: var(--muted); font-size: .93rem; flex: 1; }
.post-card .link-arrow { margin-top: 1.2rem; align-self: flex-start; }

/* pagination */
.pager {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.pager-count { font-size: .9rem; color: var(--muted); font-weight: 500; }

/* ── article ── */
.article-hero { padding-bottom: clamp(1.5rem, 3vw, 2.2rem); }
.article-head { max-width: 74ch; }
.article-head h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin-top: 1.1rem; }
.article-standfirst { margin-top: 1.2rem; font-size: 1.13rem; color: var(--ink-700); max-width: 60ch; }
.post-back { font-weight: 600; color: var(--blue); }
.post-back:hover { color: var(--gold-700); }

.article-cover { margin: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.article-cover img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.article-layout { padding-block: clamp(2.5rem, 5vw, 4rem); }
.article-body { max-width: 68ch; margin-inline: auto; font-size: 1.08rem; line-height: 1.8; color: var(--muted); }
.article-body > * { margin: 0 0 1.3rem; }
.article-body > *:last-child { margin-bottom: 0; }
.article-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem); color: var(--ink);
  margin-top: 2.6rem; margin-bottom: .9rem;
}
.article-body h3 { font-size: 1.22rem; color: var(--ink); margin-top: 2rem; margin-bottom: .6rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; display: grid; gap: .6rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li::marker { color: var(--blue-300); }
.article-body a { color: var(--blue); border-bottom: 1.5px solid rgba(27,76,140,.28); }
.article-body a:hover { border-bottom-color: var(--gold); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body blockquote {
  margin-inline: 0; padding: .3rem 0 .3rem 1.4rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-script); font-style: italic;
  font-size: 1.32rem; line-height: 1.5; color: var(--ink);
}
.article-body figure { margin-block: 2rem; }
.article-body img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.article-body figcaption { margin-top: .7rem; font-size: .86rem; color: var(--muted); text-align: center; }
.article-body hr { border: 0; border-top: 1px dashed var(--line); margin-block: 2.4rem; }

.related { background: var(--sky-50); }
.related .sec-head { margin-bottom: 0; }

@media (max-width: 820px) {
  .blog-lead { grid-template-columns: 1fr; }
  .blog-lead-media { min-height: 0; aspect-ratio: 16 / 9; }
}
