/* ============================================================
   Navigator Vietnam — Voynara-style design system
   Shared styles for all pages
============================================================ */

/* ---------- Tokens ----------
   Olive identity. --olive #818D5D is the single source of truth; every surface,
   accent and neutral below is a color-mix of it, so the whole site re-tints from
   one value. Token names are roles, not colours, so a future palette swap is a
   value change only.
     --paper / -2 / -3   light surfaces (olive-tinted off-white)
     --deep / -2         dark surfaces
     --accent            accent on LIGHT surfaces  (dark enough for text)
     --accent-soft       accent on DARK surfaces   (light enough for text)
   Two accent tokens because no single mid-olive reads on both. */
:root {
  /* Original Voynara palette: cream paper, deep forest, gold accent.
     --olive is the third colour, carrying the natural/confirmation notes
     (check icons, difficulty badges, the header CTA hover). */
  --cream:        #F1EDE3;
  --forest:       #14311F;
  --gold:         #C6A24E;
  --olive:        #818D5D;

  --paper:        var(--cream);
  /* The alternating band carries the olive: a soft sage-cream rather than the
     plain warm cream-2, so olive reads across every page without fighting the
     forest/gold identity. Tinted into a lightened cream so the band keeps roughly
     the original cream-2 lightness — going darker costs the gold eyebrow contrast,
     which is already thin. */
  --paper-2:      color-mix(in srgb, var(--olive) 15%, color-mix(in srgb, var(--cream) 62%, #fff));
  --paper-3:      color-mix(in srgb, var(--olive) 24%, color-mix(in srgb, var(--cream) 62%, #fff));

  --deep:         var(--forest);
  --deep-2:       #0E2416;

  --accent:       #B58F3C;
  --accent-2:     color-mix(in srgb, #B58F3C 78%, #000);
  --accent-soft:  var(--gold);
  --accent-mute:  #E9DBB6;

  --olive-2:      color-mix(in srgb, var(--olive) 78%, #000);

  /* Logo sun orange — reserved for the highlight badge only, not buttons. */
  --orange:       #FC7C0C;

  /* One button language across the whole site: dark olive at rest, a lighter
     olive on hover (mixed from the same two tokens, so it's always in-family).
     Cream label throughout — contrast holds at both ends (9.7:1 / 5.6:1). */
  --btn:          #373E02;
  --btn-hover:    var(--accent-soft);
  --btn-ink:      var(--paper);
  --btn-ink-hover: var(--deep-2);

  --ink:          #14271B;
  --ink-deep:     color-mix(in srgb, #14271B 55%, #000);
  --body:         #55645A;
  --body-dark:    rgba(255, 255, 255, 0.72);

  --card:       #FFFFFF;
  --line:       color-mix(in srgb, var(--deep) 14%, transparent);
  --line-dark:  rgba(255, 255, 255, 0.16);

  --font-display: 'Onest', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --container: 1360px;
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 24px 60px -30px color-mix(in srgb, var(--deep) 42%, transparent);
  --shadow-sm: 0 12px 30px -18px color-mix(in srgb, var(--deep) 36%, transparent);

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

::selection { background: var(--deep); color: var(--paper); }

/* Rust reads on the light surfaces that hold most focusable content; dark
   surfaces flip the ring to sand so it stays visible there too. */
.page-hero :focus-visible,
.footer-cta :focus-visible,
.site-footer :focus-visible,
.feature-section :focus-visible,
.mobile-menu :focus-visible,
.site-header:not(.scrolled) :focus-visible { outline-color: var(--accent-soft); }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--deep);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section {
  padding-block: clamp(56px, 7vw, 108px);
  position: relative;
}

.section-head {
  max-width: 820px;
  margin: 0 auto clamp(44px, 5vw, 72px);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2.3rem, 4.8vw, 3.9rem);
}
.section-head p {
  margin-top: 18px;
  font-size: 1.075rem;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
/* A small mountain glyph leads every label (echoes the logo). Mask + currentColor
   so it adapts to the eyebrow colour on light and dark sections alike. */
.eyebrow::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 20l6.5-12 4 7 2.7-4.5L22 20z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 20l6.5-12 4 7 2.7-4.5L22 20z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
}
.eyebrow.on-dark { color: var(--accent-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-arrow { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Every button is identical: dark olive-green fill at rest, lightening to
   the same family on hover. */
.btn-primary,
.btn-accent { background: var(--btn); color: var(--btn-ink); }
.btn-primary:hover,
.btn-accent:hover { background: var(--btn-hover); color: var(--btn-ink-hover); box-shadow: 0 14px 30px -14px color-mix(in srgb, var(--btn-hover) 60%, transparent); }

/* Outline stays a secondary affordance but speaks the same two colours:
   olive outline at rest, filling with the lighter olive on hover. */
.btn-outline { background: transparent; border-color: var(--btn); color: var(--btn); }
.btn-outline:hover { border-color: var(--btn-hover); background: var(--btn-hover); color: var(--btn-ink-hover); }
.btn-outline.on-dark { border-color: var(--line-dark); color: var(--paper); }
.btn-outline.on-dark:hover { background: var(--btn-hover); color: var(--btn-ink-hover); border-color: var(--btn-hover); }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  padding-block: 14px;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--deep) 8%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 56px; width: auto; transition: filter 0.4s var(--ease); }
.site-header:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }

.nav-links {
  display: none;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--paper);
  transition: color 0.3s var(--ease);
  position: relative;
}
.site-header.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--accent-soft); }
.nav-links a.active { color: var(--accent-soft); }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active { color: var(--accent); }

.nav-cta { display: none; }
/* Same button language as the rest of the site: dark olive at rest in both
   header states (over the hero and scrolled), logo-orange on hover. */
.site-header .nav-cta,
.site-header:not(.scrolled) .nav-cta {
  background: var(--btn);
  border: 1.5px solid var(--btn);
  color: var(--btn-ink);
  backdrop-filter: none;
}
.site-header .nav-cta:hover,
.site-header:not(.scrolled) .nav-cta:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--btn-ink-hover);
}

.nav-toggle {
  display: inline-flex;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--paper);
}
.site-header.scrolled .nav-toggle { color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (min-width: 940px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--deep);
  color: var(--paper);
  padding: 26px 22px 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu-top { display: flex; justify-content: flex-end; }
.mobile-menu-close { background: transparent; border: 0; color: var(--paper); padding: 6px; }
.mobile-menu-close svg { width: 30px; height: 30px; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; flex: 1; }
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu-links a:hover { color: var(--accent-soft); transform: translateX(8px); }
.mobile-menu .btn { justify-content: center; margin-top: 20px; }

/* ============================================================
   HERO (home) - shares the photo hero pattern with tour/destination pages
============================================================ */
.home-hero .hero-actions { justify-content: center; }
/* The homepage headline is the site's biggest statement, so it runs larger than
   the interior page heroes. */
/* .page-hero h1 is declared later with equal specificity, so this needs the
   extra class to win. */
.page-hero.home-hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.4rem);
  max-width: 1040px;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 30px color-mix(in srgb, var(--deep-2) 45%, transparent);
}
.home-hero .dest-hero-lead { max-width: 720px; font-size: clamp(1.05rem, 1.9vw, 1.25rem); }
/* The shared overlay is lightest at 45% — exactly where the copy sits. Pool the
   darkening behind the text instead, so the headline reads without flattening
   the whole photo. */
.home-hero .dest-hero-overlay {
  background:
    radial-gradient(76% 62% at 50% 46%, color-mix(in srgb, var(--deep-2) 66%, transparent), transparent 72%),
    linear-gradient(180deg, color-mix(in srgb, var(--deep-2) 52%, transparent) 0%, color-mix(in srgb, var(--deep-2) 40%, transparent) 45%, color-mix(in srgb, var(--deep-2) 85%, transparent) 100%);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ============================================================
   PAGE HERO (interior pages)
============================================================ */
.page-hero {
  position: relative;
  background: var(--deep);
  color: var(--paper);
  padding-top: clamp(140px, 20vw, 190px);
  padding-bottom: clamp(60px, 8vw, 96px);
  overflow: hidden;
}
.page-hero.has-photo {
  background: var(--deep-2);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(100px, 14vw, 150px);
}
.dest-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dest-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, color-mix(in srgb, var(--deep-2) 45%, transparent) 0%, color-mix(in srgb, var(--deep-2) 35%, transparent) 45%, color-mix(in srgb, var(--deep-2) 82%, transparent) 100%);
}
.page-hero.has-photo .container { position: relative; z-index: 2; }
/* Compact photo hero for interior pages: a photo band, not a full screen. Keeps
   the left-aligned breadcrumb layout; only swaps the solid colour for a photo. */
.page-hero.has-photo.hero-band {
  min-height: 0;
  display: block;
  padding-top: clamp(140px, 20vw, 190px);
  padding-bottom: clamp(60px, 8vw, 96px);
}
/* Left-weighted darkening so the left-aligned breadcrumb/heading/lead stay
   legible over bright photos; the shared overlay only darkens top-to-bottom. */
.page-hero.hero-band .dest-hero-overlay {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--deep-2) 82%, transparent) 0%, color-mix(in srgb, var(--deep-2) 58%, transparent) 46%, color-mix(in srgb, var(--deep-2) 22%, transparent) 100%),
    linear-gradient(180deg, color-mix(in srgb, var(--deep-2) 28%, transparent), color-mix(in srgb, var(--deep-2) 52%, transparent));
}
.page-hero:not(.has-photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(72% 90% at 82% -10%, color-mix(in srgb, var(--accent-soft) 18%, transparent), transparent 58%);
}
.page-hero:not(.has-photo) > .container { position: relative; z-index: 1; }
.breadcrumb { display: inline-block; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--accent-soft); }
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  max-width: 900px;
}
.page-hero-lead {
  margin-top: 22px;
  max-width: 680px;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
}
.page-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.page-hero-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
}

/* ============================================================
   REVEAL animation
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.35s; }

/* No-JS / stalled-script safety: never leave content permanently hidden */
html:not(.js) .reveal,
html:not(.js) .reveal-stagger > * { opacity: 1 !important; transform: none !important; }

/* ============================================================
   FUN FACT / STATS  (cream card over image)
============================================================ */
.funfact {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88vh;
  min-height: 88svh;
  padding-block: clamp(52px, 7vh, 104px);
  color: var(--ink);
  overflow: hidden;
}
.funfact-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.funfact .container { display: flex; }
.funfact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  max-width: 540px;
  box-shadow: var(--shadow);
}
.funfact-card h2 { font-size: clamp(1.6rem, 2.7vw, 2.4rem); margin-top: 12px; }
.funfact-card > p { margin-top: 18px; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--body); margin-top: 8px; }
.funfact-card .btn { margin-top: 34px; }

/* ============================================================
   REGION slider  (contained track, exactly N cards per view)
============================================================ */
.slider-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.slider-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.slider-nav { display: flex; gap: 12px; }
.slider-arrow {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.slider-arrow:hover { background: var(--deep); color: var(--paper); border-color: var(--deep); transform: translateY(-2px); }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow:disabled { opacity: 0.3; cursor: default; }
.slider-arrow:disabled:hover { background: transparent; color: var(--ink); border-color: var(--line); transform: none; }

/* Full-bleed track: sits outside .container, but its padding recreates the
   container gutter so cards line up with the heading while neighbours bleed
   off both viewport edges. */
.region-viewport {
  --per-view: 2;
  --arrow-size: 46px;
  --gutter: calc(max(0px, (100% - var(--container)) / 2) + 22px);
  position: relative;
}
.region-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--per-view) - 1) * 20px) / var(--per-view));
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: var(--gutter);
  padding-inline: var(--gutter);
  scrollbar-width: none;
  padding-bottom: 4px;
}
.region-track::-webkit-scrollbar { display: none; }

.region-arrow {
  position: absolute;
  /* --media-h is measured in JS so the arrows centre on the image, not the card */
  top: calc(var(--media-h, 240px) / 2);
  transform: translateY(-50%);
  z-index: 3;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--deep) 18%, transparent);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.region-arrow svg { width: 22px; height: 22px; }
/* Centre on the gutter line where there's room, else keep clear of the edge
   so the button never pushes the page into horizontal overflow. */
.region-arrow.prev { left: max(10px, calc(var(--gutter) - var(--arrow-size) / 2)); }
.region-arrow.next { right: max(10px, calc(var(--gutter) - var(--arrow-size) / 2)); }
.region-arrow.prev,
.region-arrow.next { background: var(--btn); color: var(--btn-ink); }
.region-arrow.prev:hover,
.region-arrow.next:hover { background: var(--btn-hover); color: var(--btn-ink-hover); transform: translateY(-50%) scale(1.06); }
.region-slide {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.region-slide-media {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
}
.region-slide-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.region-slide:hover .region-slide-media img { transform: scale(1.06); }
.region-slide-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.region-slide-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.region-slide-title strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: color 0.3s var(--ease);
}
.region-slide-arrow {
  flex: none;
  width: 21px;
  height: 21px;
  color: var(--ink);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.region-slide:hover .region-slide-title strong { color: var(--accent); }
.region-slide:hover .region-slide-arrow { transform: translateX(4px); color: var(--accent); }
.region-slide-body small {
  color: var(--body);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (min-width: 620px) { .region-viewport { --per-view: 2; --arrow-size: 56px; } }
@media (min-width: 1024px) {
  .region-viewport { --per-view: 3; }
  /* Wider 3-up cards would be very tall at 4/5; square keeps the whole card in view. */
  .region-slide-media { aspect-ratio: 1 / 1; }
}

/* ============================================================
   PACKAGE cards
============================================================ */
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.package-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.package-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.package-card:hover .package-media img { transform: scale(1.05); }
/* Status highlight (Guide Favorite / Bestseller / Adventure): logo orange. */
.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--deep-2);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 999px;
}
/* Region/category tag: the site's dark olive-green, the badge's counterpart. */
.package-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--btn);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}
.package-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.package-body h3 { font-size: 1.4rem; }
.package-body > p { margin-top: 10px; font-size: 0.98rem; }
.package-meta-row { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.package-meta-row span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.86rem; color: var(--body); }
.package-meta-row svg { width: 16px; height: 16px; color: var(--accent); }
.package-foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.package-foot .btn { width: 100%; justify-content: center; }

@media (min-width: 680px) { .package-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .package-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   SIGNATURE journey  (quote + highlights + image)
============================================================ */
/* Tighter than a default .section so the whole journey fits the eye at once. */
.signature-section { padding-block: clamp(44px, 5.5vw, 82px); }
.signature-section .section-head { margin-bottom: clamp(26px, 3.5vw, 44px); }
.signature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.signature-quote { font-family: var(--font-display); font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-weight: 600; font-style: italic; color: var(--ink); line-height: 1.3; }
.signature-author { display: block; margin-top: 14px; font-size: 0.92rem; color: var(--accent); font-weight: 600; letter-spacing: 0.02em; }
.signature-copy > p { margin-top: 18px; }
.signature-highlights {
  margin-top: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
}
.signature-highlights h3 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.signature-highlights li { display: flex; gap: 12px; padding: 7px 0; font-size: 0.98rem; color: var(--ink); }
/* Darker olive: these sit on the --paper-2 band, where mid olive is only 2.6:1. */
.signature-highlights li svg { width: 18px; height: 18px; color: var(--olive-2); flex-shrink: 0; margin-top: 3px; }
.signature-media { position: relative; }
.signature-media .adv-card { max-width: 520px; margin-inline: auto; }

/* ---- Advertising card (signature side) ---- */
.adv-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.adv-card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.adv-card-media img { width: 100%; height: 100%; object-fit: cover; }
.adv-card-body { padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px) 26px; }
.adv-card-location {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 8px;
}
.adv-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.adv-card-head h3 { font-size: 1.5rem; }
.adv-card-rating { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--ink); font-family: var(--font-display); flex-shrink: 0; padding-top: 4px; }
.adv-card-rating svg { width: 18px; height: 18px; color: var(--accent); }
.adv-card-meta { display: flex; align-items: center; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.adv-card-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--body); }
.adv-card-meta svg { width: 17px; height: 17px; color: var(--accent); }
.adv-card-diff {
  margin-left: auto;
  background: var(--btn);
  color: var(--paper);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 5px 13px;
  border-radius: 999px;
}
.adv-card-foot {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.adv-card-foot .btn { width: 100%; justify-content: center; }

@media (min-width: 900px) {
  .signature-grid { grid-template-columns: 1.05fr 0.95fr; }
  .signature-media .adv-card-media { aspect-ratio: 5 / 4; }
}

/* ============================================================
   FEATURE section (dark) — "Why travel with us"
============================================================ */
.feature-section { background: var(--deep); color: var(--paper); }
.feature-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.feature-head h2 { color: var(--paper); font-size: clamp(2rem, 4.2vw, 3.3rem); max-width: 640px; }
.feature-nav { display: flex; gap: 12px; }
.feature-arrow {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1.5px solid var(--line-dark);
  background: transparent;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.feature-arrow:hover { background: var(--paper); color: var(--deep); border-color: var(--paper); }
.feature-arrow svg { width: 22px; height: 22px; }
.feature-arrow:disabled { opacity: 0.35; cursor: default; }
.feature-arrow:disabled:hover { background: transparent; color: var(--paper); border-color: var(--line-dark); }

.feature-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
  margin-inline: -22px;
  padding-inline: 22px;
}
.feature-track::-webkit-scrollbar { display: none; }
.feature-card {
  scroll-snap-align: start;
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 36px 32px 38px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.35); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: var(--deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--paper); }
.feature-card h3 { margin-top: 24px; font-size: 1.5rem; }
.feature-card p { margin-top: 12px; }

@media (min-width: 720px) { .feature-track { grid-auto-columns: 46%; } }
/* Stays a 3-per-view horizontal scroller on desktop (was a static grid) so the
   five cards scroll and loop. */
@media (min-width: 1024px) {
  .feature-track { grid-auto-columns: calc((100% - 2 * 22px) / 3); margin-inline: 0; padding-inline: 0; }
}

/* ============================================================
   GALLERY (bento)
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, color-mix(in srgb, var(--deep-2) 55%, transparent) 68%, color-mix(in srgb, var(--deep-2) 90%, transparent) 100%);
  transition: opacity 0.4s var(--ease);
}
.gallery-card:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease);
}
.gallery-card:hover .gallery-caption,
.gallery-card:focus-visible .gallery-caption { transform: translateY(-4px); }
.gallery-caption small { font-family: var(--font-body); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-soft); }
.gallery-card--lg { grid-column: span 2; grid-row: span 2; }
@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; }
  .gallery-card--lg { grid-column: span 2; grid-row: span 2; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-auto-rows: 300px; gap: 22px; }
  .gallery-caption { left: 24px; bottom: 22px; font-size: 1.4rem; }
  .gallery-caption small { font-size: 0.85rem; }
}

/* ============================================================
   STORY split (about teaser)
============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.split.reverse .split-media { order: -1; }
.split-copy h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.split-copy > p { margin-top: 20px; }
.split-points { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.split-points li { display: flex; gap: 14px; align-items: flex-start; }
.split-points svg { width: 26px; height: 26px; color: var(--olive); flex-shrink: 0; }
.split-points strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; }
.split-points span { font-size: 0.94rem; }
.split-copy .btn { margin-top: 30px; }
.split-media { position: relative; }
.split-media img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   VALUE / DIFF cards
============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.info-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--paper-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
/* Darker olive: the icon sits on the --paper-2 tile, where mid olive is 2.8:1. */
.info-icon svg { width: 26px; height: 26px; color: var(--olive-2); }
.info-card h3 { font-size: 1.3rem; }
.info-card p { margin-top: 10px; font-size: 0.98rem; }
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---- The Navigator Difference: editorial split list ---- */
.diff-layout { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 60px); align-items: start; }
.diff-intro h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 4px; }
.diff-intro p { margin-top: 18px; }
.diff-intro .btn { margin-top: 28px; }
.diff-list { display: flex; flex-direction: column; }
.diff-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.diff-item:first-child { padding-top: 0; }
.diff-item:last-child { border-bottom: none; padding-bottom: 0; }
.diff-item-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--paper-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.diff-item-icon svg { width: 24px; height: 24px; color: var(--deep); }
.diff-item:hover .diff-item-icon { background: var(--accent-mute); transform: translateY(-3px); }
.diff-item h3 { font-size: 1.25rem; }
.diff-item p { margin-top: 6px; font-size: 0.97rem; }
@media (min-width: 900px) {
  .diff-layout { grid-template-columns: 0.92fr 1.08fr; }
  .diff-intro { position: sticky; top: 108px; }
}

/* ============================================================
   TEAM
============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.team-card { text-align: left; }
.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease);
}
.team-card:hover img { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card figcaption { margin-top: 16px; }
.team-card strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); transition: color 0.3s var(--ease); }
.team-card:hover strong { color: var(--accent); }
.team-card span { font-size: 0.88rem; color: var(--accent); }
@media (min-width: 620px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   TESTIMONIALS (Google reviews slider)
============================================================ */
.stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; }

.testi-google-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 0.96rem;
  color: var(--body);
}
.testi-google-rating strong { color: var(--ink); font-family: var(--font-display); }

/* Dark testimonials: white review cards pop against forest, alternating with the
   light activities accordion above and the cream How It Works below. */
.testi-section { background: var(--deep); color: var(--paper); }
.testi-section .slider-head h2 { color: var(--paper); }
.testi-section .eyebrow { color: var(--accent-soft); }
.testi-section .testi-google-rating { color: rgba(255, 255, 255, 0.82); }
.testi-section .testi-google-rating strong { color: var(--paper); }
.testi-section .slider-arrow { border-color: var(--line-dark); color: var(--paper); }
.testi-section .slider-arrow:hover { background: var(--accent-soft); color: var(--deep); border-color: var(--accent-soft); }
.testi-section .slider-arrow:disabled:hover { background: transparent; color: var(--paper); border-color: var(--line-dark); }

.testi-track {
  --per-view: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--per-view) - 1) * 22px) / var(--per-view));
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.testi-card-top { display: flex; align-items: center; justify-content: space-between; }
.testi-google-icon { flex-shrink: 0; }
.testi-clamp {
  margin-top: 16px;
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-card-foot strong { display: block; font-family: var(--font-display); font-size: 0.98rem; color: var(--ink); }
.testi-card-foot small { font-size: 0.82rem; color: var(--body); }

@media (min-width: 640px) { .testi-track { --per-view: 2; } }
@media (min-width: 1024px) { .testi-track { --per-view: 3; } }

/* ============================================================
   STEPS (how it works)
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
.step-card { position: relative; }
.step-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 6 / 5; box-shadow: var(--shadow-sm); }
.step-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.step-card:hover .step-media img { transform: scale(1.05); }
.step-num {
  position: absolute;
  z-index: 2;
  top: 16px; left: 16px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--deep-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--deep) 50%, transparent);
}
.step-card h3 { margin-top: 24px; font-size: 1.55rem; }
.step-card p { margin-top: 12px; font-size: 1rem; }
@media (min-width: 780px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   DESTINATIONS list (packages page adventure list)
============================================================ */
.adv-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.adv-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}
.adv-item:hover { transform: translateX(10px); }
.adv-item h3 { font-size: clamp(1.2rem, 2.4vw, 1.7rem); }
.adv-item span { font-size: 0.9rem; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; white-space: nowrap; }
@media (min-width: 760px) { .adv-list { grid-template-columns: repeat(2, 1fr); column-gap: 50px; } }

/* ============================================================
   CONTACT
============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
a.contact-card:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }
.contact-card svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.contact-card span { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.6); }
.contact-card strong { display: block; font-family: var(--font-display); color: var(--paper); font-size: 1rem; margin-top: 3px; word-break: break-word; }
@media (min-width: 720px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 60px);
  align-items: start;
}
.contact-intro h2 { font-size: clamp(2rem, 4vw, 3rem); }
.contact-intro > p { margin-top: 18px; }
.contact-side { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-side-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-side-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-side-item strong { display: block; font-family: var(--font-display); color: var(--ink); }
.contact-side-item span, .contact-side-item a { font-size: 0.95rem; color: var(--body); }

.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form-hint { font-size: 0.9rem; color: var(--body); margin-bottom: 22px; }
.form-hint .req { color: var(--accent); font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label { font-size: 0.9rem; font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.form-field label .req { color: var(--accent); }
.form-field label .opt { color: var(--body); font-weight: 400; font-family: var(--font-body); }
.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; }
/* Honeypot: off-screen for people, tempting for bots. Real users never fill it. */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-field input, .form-field textarea, .form-field select {
  font: inherit;
  font-size: 0.98rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--deep); background: #fff; box-shadow: 0 0 0 3px color-mix(in srgb, var(--deep) 14%, transparent); }
.form-field input[aria-invalid="true"], .form-field textarea[aria-invalid="true"], .form-field select[aria-invalid="true"] { border-color: #b23b3b; }
.form-field textarea { resize: vertical; }
/* Native select: custom chevron, consistent height with inputs. */
.form-field select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314271b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}
.form-field select:invalid { color: var(--body); }
.field-error { color: #b23b3b; font-size: 0.82rem; min-height: 1em; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-status { margin-top: 16px; font-size: 0.94rem; text-align: center; }
.form-status.success { color: var(--deep); font-weight: 600; }
.form-status.error { color: #b23b3b; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }

/* ---------- Animated success confirmation ---------- */
.form-success {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 62px) clamp(26px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
  text-align: center;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.form-success.is-shown { opacity: 1; transform: none; }
.form-success h3 { font-size: clamp(1.5rem, 3vw, 1.9rem); }
.form-success h3:focus-visible { outline: none; }
.form-success p { margin-top: 14px; color: var(--body); max-width: 46ch; margin-inline: auto; }
.form-success .btn { margin-top: 30px; }
.success-check { display: inline-flex; margin-bottom: 6px; }
.success-check svg { width: 84px; height: 84px; }
.success-circle {
  fill: color-mix(in srgb, var(--deep) 6%, transparent);
  stroke: var(--deep);
  stroke-width: 2.5;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}
.success-tick {
  fill: none;
  stroke: var(--olive);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}
.form-success.is-shown .success-circle { animation: successCircle 0.6s var(--ease) forwards; }
.form-success.is-shown .success-tick { animation: successTick 0.45s var(--ease) 0.4s forwards; }
@keyframes successCircle { to { stroke-dashoffset: 0; } }
@keyframes successTick { to { stroke-dashoffset: 0; } }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(0.15); }

/* ============================================================
   FAQ
============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
  transition: box-shadow 0.3s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 22px; color: var(--body); }

/* ============================================================
   FOOTER CTA
============================================================ */
/* Closing CTA: the deepest sage band, so it separates from BOTH neighbours —
   the --paper-2 section above it and (on the homepage) the --paper "How It Works"
   below it. Light, no photo, dark text. */
.footer-cta {
  position: relative;
  text-align: center;
  color: var(--body);
  padding-block: clamp(70px, 10vw, 120px);
  background: var(--paper-3);
  overflow: hidden;
}
.footer-cta .container { position: relative; max-width: 720px; }
.footer-cta h2 { color: var(--ink); font-size: clamp(2.2rem, 5vw, 3.6rem); }
.footer-cta p { margin-top: 18px; color: var(--body); }

.footer-cta .btn { margin-top: 34px; }
.footer-cta-alt { margin-top: 22px; font-size: 0.92rem; color: var(--body); }
.footer-cta-alt a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.footer-cta-alt a:hover { color: var(--accent-2); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--deep-2); color: rgba(255, 255, 255, 0.75); padding-block: clamp(50px, 7vw, 84px) 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand p { margin-top: 20px; max-width: 340px; font-size: 0.95rem; }
.footer-logo img { height: 56px; width: auto; filter: brightness(0) invert(1); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-social a:hover { background: var(--accent-soft); color: var(--deep-2); border-color: var(--accent-soft); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h3 { color: var(--paper); font-size: 1rem; margin-bottom: 18px; font-family: var(--font-display); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--accent-soft); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.94rem; }
.footer-contact svg { width: 20px; height: 20px; color: var(--accent-soft); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 26px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: var(--paper); font-weight: 600; text-decoration: none; transition: color 0.3s var(--ease); }
.footer-bottom a:hover { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 30px; } }

/* ============================================================
   WHATSAPP floating button
============================================================ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px -12px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.5); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ============================================================
   DESTINATION detail page (Sapa, etc.)
============================================================ */
.dest-hero { text-align: center; }
.dest-hero .breadcrumb { display: block; }
.dest-hero h1 { margin-inline: auto; }
.dest-hero-divider { width: 64px; height: 2px; background: var(--accent-soft); margin: 22px auto 0; }
.dest-hero-lead { margin-inline: auto; }

.dest-banner { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.dest-banner img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; display: block; }
/* Banners break up the flat sand sections, so they need breathing room from
   whatever they sit next to. */
.dest-banner + .card-grid,
.dest-banner + .adv-list,
.faq-list + .dest-banner { margin-top: clamp(30px, 4vw, 48px); }
@media (max-width: 640px) { .dest-banner img { aspect-ratio: 4 / 3; } }

.dest-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.dest-content h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 44px; }
.dest-content h2:first-child { margin-top: 0; }
.dest-content > p { margin-top: 16px; }
.dest-content ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.dest-content ul li { display: flex; gap: 12px; font-size: 0.98rem; color: var(--body); }
.dest-content ul li svg { width: 19px; height: 19px; color: var(--olive); flex-shrink: 0; margin-top: 2px; }
.dest-content-cta { margin-top: 34px; }

.dest-sidebar { position: sticky; top: 108px; }
.dest-sidebar .adv-card-body p { margin-top: 12px; color: var(--body); font-size: 0.95rem; }

@media (min-width: 960px) {
  .dest-layout { grid-template-columns: 1.55fr 1fr; }
}

/* Destination gallery: equal-size photo grid (2 across) */
.dest-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.dest-gallery-grid .gallery-card { aspect-ratio: 4 / 3; }
@media (min-width: 640px) {
  .dest-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dest-gallery-grid .gallery-card { aspect-ratio: 1 / 1; }
}
@media (min-width: 1024px) {
  .dest-gallery-grid .gallery-card { aspect-ratio: 6 / 5; }
}

/* ============================================================
   TOUR detail page
============================================================ */
.tour-route-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--body-dark);
}
.tour-route-line span { white-space: nowrap; }
.tour-route-line span::after { content: "\2022"; margin-left: 10px; color: var(--accent-soft); }
.tour-route-line span:last-child::after { content: ""; margin-left: 0; }

.tour-quickfacts { padding: clamp(22px, 3vw, 28px); }
.tour-quickfacts h3 { font-size: 1.15rem; }
.tour-fact-list { margin-top: 18px; display: flex; flex-direction: column; gap: 16px; }
.tour-fact-row { display: flex; gap: 14px; align-items: flex-start; }
.tour-fact-row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.tour-fact-row div small {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 2px;
}
.tour-fact-row div strong { font-family: var(--font-display); font-size: 0.98rem; color: var(--ink); }
.tour-quickfacts .adv-card-foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.tour-quickfacts .adv-card-foot .btn { width: 100%; justify-content: center; }

.tour-route-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tour-route-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--card);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.tour-route-chip:hover { background: var(--deep); color: var(--paper); border-color: var(--deep); transform: translateY(-2px); }
.tour-route-chip svg { width: 15px; height: 15px; flex-shrink: 0; }

.itinerary-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.itinerary-day {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.itinerary-day summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-display);
}
.itinerary-day summary::-webkit-details-marker { display: none; }
.itinerary-day-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.itinerary-day summary h3 { font-size: 1.02rem; font-weight: 600; color: var(--ink); flex: 1; }
.itinerary-day summary svg {
  width: 20px; height: 20px; color: var(--accent); flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.itinerary-day[open] summary svg { transform: rotate(180deg); }
.itinerary-day-body { padding: 0 22px 22px 22px; padding-left: calc(76px + 22px + 16px); }
@media (max-width: 560px) { .itinerary-day-body { padding-left: 22px; } }
.itinerary-day-body p { color: var(--body); font-size: 0.96rem; }

.incl-excl-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 20px; }
@media (min-width: 700px) { .incl-excl-grid { grid-template-columns: 1fr 1fr; } }
.incl-excl-col h3 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.incl-excl-col ul { display: flex; flex-direction: column; gap: 10px; }
.incl-excl-col li { display: flex; gap: 12px; font-size: 0.94rem; color: var(--body); }
.incl-excl-col li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.incl-list li svg { color: var(--olive); }
.excl-list li svg { color: var(--body); opacity: 0.6; }

.accommodation-list { margin-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.accommodation-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.accommodation-row:last-child { border-bottom: none; }
.accommodation-row span:first-child { color: var(--body); }
.accommodation-row strong { color: var(--ink); font-family: var(--font-display); font-weight: 600; text-align: right; }

.tour-flex-note {
  margin-top: 44px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.tour-flex-note h3 { font-size: 1.15rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.tour-flex-note h3::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-mute);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B58F3C' stroke-width='2.4'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.tour-flex-note p { color: var(--body); font-size: 0.96rem; }

/* ---- Create Your Own: step list ---- */
.cyo-steps { margin-top: 20px; display: flex; flex-direction: column; gap: 18px; }
.cyo-step { display: flex; gap: 20px; }
.cyo-step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.cyo-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cyo-step p { color: var(--body); font-size: 0.95rem; }

.cyo-tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cyo-tag {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 0.85rem;
}

/* ============================================================
   LEGAL pages
============================================================ */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.5rem; margin-top: 40px; }
.legal h3 { font-size: 1.15rem; margin-top: 26px; }
.legal p, .legal li { margin-top: 14px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--accent); text-decoration: underline; }

/* ============================================================
   Reduced motion
============================================================ */
/* ============================================================
   TRAVEL ACTIVITIES (accordion)
============================================================ */
/* White so the accordion reads crisp between the two dark sliders around it. */
.activities-section { background: var(--card); }
.activities {
  max-width: 940px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.activity { border-bottom: 1px solid var(--line); }
.activity-head {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  padding: clamp(20px, 3vw, 30px) 4px;
  cursor: pointer;
  list-style: none;
  transition: padding-left 0.35s var(--ease);
}
.activity-head::-webkit-details-marker { display: none; }
.activity-head:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 6px; }
.activity-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--body);
  opacity: 0.7;
  flex: none;
}
.activity-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--olive) 16%, #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--ease);
}
.activity-icon svg { width: 24px; height: 24px; color: var(--olive-2); }
.activity-title {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.35s var(--ease);
}
.activity-chevron {
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--body);
  transition: transform 0.4s var(--ease), color 0.35s var(--ease);
}
/* Only the icon "button" changes when active. Title and chevron colours stay put. */
.activity[open] .activity-chevron { transform: rotate(180deg); }
.activity[open] .activity-icon { background: var(--deep); }
.activity[open] .activity-icon svg { color: var(--paper); }
.activity-head:hover { padding-left: 10px; }

.activity-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 32px);
  padding: 0 4px clamp(28px, 4vw, 40px) calc(52px + clamp(16px, 3vw, 30px));
}
.activity-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.activity-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: block;
}
.activity-copy {
  align-self: center;
  /* Darker than --body: this sits on the deeper --paper-3 band where plain
     --body is 4.47:1, just under AA. */
  color: color-mix(in srgb, var(--body) 82%, #000);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 62ch;
}
.activity[open] .activity-panel { animation: activityReveal 0.45s var(--ease) both; }
@keyframes activityReveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (min-width: 860px) {
  .activity-panel { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: center; }
  .activity-media img { aspect-ratio: 5 / 4; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .form-success { opacity: 1 !important; transform: none !important; }
  .success-circle, .success-tick { stroke-dashoffset: 0 !important; }
  .activity[open] .activity-panel { animation: none !important; }
}
