/* =========================================================================
   Voyageur Travel Lounge — design system
   Editorial, cinematic, restrained. Photography carries the colour.
   ========================================================================= */

:root {
  /* palette */
  --paper: #f4f1ea;
  --paper-2: #ece7dc;
  --card: #fbf9f4;
  --ink: #17150f;
  --ink-2: #35322a;
  --ink-soft: #5c584e;
  --muted: #6b665b;   /* darkened to meet WCAG AA (~4.6:1) on paper */
  --line: rgba(23, 21, 15, 0.14);
  --line-soft: rgba(23, 21, 15, 0.08);
  --accent: #1f7fa8;      /* deepened brand blue */
  --accent-ink: #0f5d7e;
  --lime: #8ea310;
  --orange: #d9741a;
  --gold: #b08a3e;

  /* type */
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* rhythm */
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --maxw: 1360px;
  --readw: 720px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---- accessibility: visible keyboard focus + skip link -------------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.hero :focus-visible, .dark :focus-visible, .t-hero :focus-visible,
.a-hero :focus-visible, .page-hero.on-image :focus-visible, .nav.over-hero :focus-visible,
.mobile-menu :focus-visible, body.menu-open .burger:focus-visible {
  outline-color: #8fd0ea;
}
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 0.7rem 1.1rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; border-radius: 0 0 4px 4px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }
:target { scroll-margin-top: calc(var(--nav-h) + var(--ann-h, 0px) + 12px); }

/* On touch devices, extend the tap area of small text links to ~44px without
   affecting layout, spacing, typography or appearance. The overlay is a
   transparent, absolutely-positioned pseudo-element (no box-model impact) and
   sits behind the link text; taps anywhere on it still activate the link. */
@media (pointer: coarse), (max-width: 560px) {
  .footer .f-col a, .footer-bottom .socials a, .link-arrow { position: relative; }
  .footer .f-col a::before,
  .footer-bottom .socials a::before,
  .link-arrow::before {
    content: ""; position: absolute; left: 0; right: 0;
    top: 50%; transform: translateY(-50%);
    height: 44px; pointer-events: auto;
  }
}

/* ---- typography ------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.display {
  font-size: clamp(2.9rem, 8.5vw, 8.2rem);
  line-height: 0.95;
  font-weight: 340;
  letter-spacing: -0.03em;
}
.h-xl { font-size: clamp(2.2rem, 5.2vw, 4.4rem); }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: none;   /* section kicker labels removed site-wide */
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: 0.6;
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
/* keep the tour hero country label — it reads as part of the title */
.eyebrow.country { display: inline-flex; }

.lede { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; color: var(--ink-2); }
.muted { color: var(--muted); }
.serif-italic { font-family: var(--serif); font-style: italic; }

/* ---- layout ----------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 9rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.bleed { width: 100%; }
.stack > * + * { margin-top: 1.2rem; }
.center { text-align: center; }
.dark { background: var(--ink); color: var(--paper); }
.dark h1, .dark h2, .dark h3 { color: var(--paper); }
.dark .eyebrow { color: #8fd0ea; }
.dark .muted { color: rgba(244, 241, 234, 0.6); }

.section-head { max-width: 760px; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head p { margin-top: 1.1rem; }

/* ---- buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: var(--ink); color: var(--paper);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn:hover { background: transparent; color: var(--ink); }
.dark .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.dark .btn:hover { background: transparent; color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.dark .btn-ghost { color: var(--paper); border-color: rgba(244,241,234,0.35); background: transparent; }
.dark .btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn .arw { transition: transform .4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink);
  padding-bottom: 3px; position: relative;
}
.link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow .arw { transition: transform .4s var(--ease); }
.link-arrow:hover .arw { transform: translateX(5px); }

/* ---- header stack (announcement + nav are one fixed unit) ------------- */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }

/* ---- announcement bar ------------------------------------------------- */
.announce {
  background: var(--ink); color: var(--paper);
  font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; position: relative; overflow: hidden;
  max-height: 90px; transition: max-height .45s var(--ease), opacity .35s var(--ease);
}
.announce-inner {
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  min-height: 40px; padding: 0.5rem 3rem; flex-wrap: wrap;
}
.announce a { color: #8fd0ea; font-weight: 600; }
.announce .x {
  position: absolute; right: 0.9rem; top: 0.5rem;
  background: none; border: none; color: rgba(244,241,234,0.6);
  font-size: 1.1rem; line-height: 1; padding: 4px;
}
.announce .x:hover { color: var(--paper); }
.announce[hidden] { display: none; }
.announce.collapsed { max-height: 0; opacity: 0; }

/* ---- navigation ------------------------------------------------------- */
.nav {
  position: relative; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .5s var(--ease), height .4s var(--ease),
              box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.over-hero { color: var(--paper); }
.nav.over-hero .nav-link, .nav.over-hero .brand-name { color: var(--paper); }
.nav.solid {
  background: rgba(244, 241, 234, 0.9);
  backdrop-filter: saturate(1.4) blur(14px);
  height: 62px;
  border-bottom-color: var(--line-soft);
  color: var(--ink);
}
.nav.solid .nav-link, .nav.solid .brand-name { color: var(--ink); }
.nav.solid.over-hero .nav-link, .nav.solid.over-hero .brand-name { color: var(--ink); }

.nav-inner {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand svg, .brand img { width: 34px; height: 34px; transition: width .4s var(--ease), height .4s var(--ease); }
.nav.solid .brand svg, .nav.solid .brand img { width: 30px; height: 30px; }
.brand-name {
  font-family: var(--serif); font-size: 1.02rem; letter-spacing: 0.02em;
  line-height: 1; font-weight: 500;
}
.brand-name small { display: block; font-family: var(--sans); font-size: 0.56rem;
  letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.6; margin-top: 3px; font-weight: 600; }

.nav-links { display: flex; gap: 2rem; justify-content: center; grid-column: 2; }
.nav-link {
  font-size: 0.82rem; letter-spacing: 0.06em; position: relative; padding: 6px 0;
  font-weight: 450;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta { display: flex; justify-content: flex-end; grid-column: 3; align-items: center; gap: 1rem; }
.nav-cta .btn { padding: 0.7rem 1.25rem; font-size: 0.72rem; }
.nav.over-hero:not(.solid) .nav-cta .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.nav.over-hero:not(.solid) .nav-cta .btn:hover { background: transparent; color: var(--paper); }

.burger { display: none; background: none; border: none; width: 40px; height: 40px; position: relative; }
.burger span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: currentColor;
  transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink); color: var(--paper);
  transform: translateY(-100%); transition: transform .6s var(--ease);
  display: flex; flex-direction: column; justify-content: center;
  /* Clear the fixed header bar so the first link isn't hidden under the logo,
     and scroll if the links + footer are taller than the screen. `safe center`
     keeps the menu centred when it fits but falls back to top-aligned (never
     clipping the first link) when it doesn't. */
  justify-content: safe center;
  padding: calc(var(--nav-h) + 1.75rem) var(--gutter) calc(var(--gutter) + 1.5rem);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a.m-link {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.2rem); color: var(--paper);
  padding: 0.35rem 0; line-height: 1.1; opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
body.menu-open .mobile-menu a.m-link { opacity: 1; transform: none; }
body.menu-open .mobile-menu a.m-link:nth-child(1) { transition-delay: .12s; }
body.menu-open .mobile-menu a.m-link:nth-child(2) { transition-delay: .18s; }
body.menu-open .mobile-menu a.m-link:nth-child(3) { transition-delay: .24s; }
body.menu-open .mobile-menu a.m-link:nth-child(4) { transition-delay: .30s; }
body.menu-open .mobile-menu a.m-link:nth-child(5) { transition-delay: .36s; }
body.menu-open .mobile-menu a.m-link:nth-child(6) { transition-delay: .42s; }
.mobile-menu .m-foot { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu .m-foot .btn { align-self: flex-start; }
.mobile-menu .m-contact { font-size: 0.85rem; color: rgba(244,241,234,0.65); letter-spacing: 0.04em; }

/* ---- hero ------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--paper); overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 22s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,9,6,0.42) 0%, rgba(10,9,6,0.08) 32%, rgba(10,9,6,0.34) 66%, rgba(10,9,6,0.8) 100%);
}
.hero h1, .page-hero.on-image h1, .t-hero h1, .a-hero h1 { text-shadow: 0 1px 40px rgba(10,9,6,0.35); }
.hero .hero-sub, .hero .eyebrow, .page-hero.on-image .eyebrow, .page-hero.on-image .lede { text-shadow: 0 1px 24px rgba(10,9,6,0.3); }
.hero-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 0 var(--gutter) clamp(3.5rem, 8vh, 7rem); }
.hero .eyebrow { color: rgba(244,241,234,0.85); margin-bottom: 1.6rem; }
.hero .eyebrow::before { background: rgba(244,241,234,0.85); }
.hero h1 { color: var(--paper); max-width: 15ch; }
.hero-sub { max-width: 46ch; margin-top: 1.6rem; font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(244,241,234,0.9); line-height: 1.5; }
.hero-actions { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero-actions .btn:hover { background: transparent; color: var(--paper); }
.hero-actions .btn-ghost { background: transparent; color: var(--paper); border-color: rgba(244,241,234,0.5); }
.hero-actions .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero-scroll {
  position: absolute; bottom: 1.8rem; right: var(--gutter); z-index: 1;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,241,234,0.7); writing-mode: vertical-rl; display: flex; align-items: center; gap: 0.8rem;
}
.hero-scroll::after { content: ""; width: 1px; height: 46px; background: rgba(244,241,234,0.5); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* text reveal (hero + headings) */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(105%); transition: transform 1s var(--ease); }
.ready .reveal-line > span, .in .reveal-line > span { transform: none; }
.hero .reveal-line > span { transition-duration: 1.1s; }

/* generic scroll reveals */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-img { overflow: hidden; }
.reveal-img > img, .reveal-img > * { opacity: 0; transform: scale(1.06); transition: opacity 1s var(--ease), transform 1.5s var(--ease); }
.reveal-img.in > img, .reveal-img.in > * { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1) { transition-delay: .05s; }
[data-stagger].in > *:nth-child(2) { transition-delay: .13s; }
[data-stagger].in > *:nth-child(3) { transition-delay: .21s; }
[data-stagger].in > *:nth-child(4) { transition-delay: .29s; }
[data-stagger].in > *:nth-child(5) { transition-delay: .37s; }
[data-stagger].in > *:nth-child(6) { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img, .reveal-img > *, [data-stagger] > *, .reveal-line > span { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  .hero-media img, .hero-media video { animation: none; }
  .hero-scroll::after { animation: none; }
}

/* ---- featured / editorial tours -------------------------------------- */
.feature-row { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.feature-row.flip { grid-template-columns: 0.85fr 1.15fr; }
.feature-row.flip .feature-media { order: 2; }
.feature-media { position: relative; overflow: hidden; aspect-ratio: 4/3.1; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.feature-row:hover .feature-media img { transform: scale(1.05); }
.feature-index { font-family: var(--serif); font-size: 0.9rem; color: var(--muted); letter-spacing: 0.1em; }
.feature-body .meta { display: flex; gap: 1rem; align-items: center; font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin: 1.2rem 0 0.8rem; }
.feature-body .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.feature-body h3 { font-size: clamp(1.9rem, 3.4vw, 3rem); margin-bottom: 0.9rem; }
.feature-body .price { font-family: var(--serif); font-size: 1.35rem; margin: 1.4rem 0; display: flex; align-items: baseline; gap: 0.7rem; }
.feature-body .price .from { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.feature-body .price s { color: var(--muted); font-size: 1rem; }

/* ---- tour grid (editorial cards, not e-commerce) --------------------- */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem) clamp(1.2rem, 2.4vw, 2rem); align-items: stretch; }
.tour-card { display: flex; flex-direction: column; height: 100%; }
.tour-card .tc-media { position: relative; overflow: hidden; aspect-ratio: 3/3.4; }
.tour-card .tc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.tour-card:hover .tc-media img { transform: scale(1.06); }
.tour-card .tc-tag {
  position: absolute; top: 1rem; left: 1rem; background: var(--paper); color: var(--ink);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 0.4rem 0.7rem;
}
.tour-card .tc-tag.promo { background: var(--orange); color: #fff; }
.tour-card .tc-meta { display: flex; gap: 0.8rem; align-items: center; font-size: 0.72rem;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); margin: 1.1rem 0 0.5rem; }
.tour-card .tc-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.tour-card h3 { font-size: clamp(1.4rem, 2.1vw, 1.85rem); line-height: 1.1; }
.tour-card .tc-desc { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.6rem; max-width: 42ch; }
.tour-card .tc-desc { flex: 1 1 auto; }
.tour-card .tc-foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: 1.2rem;
  padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.tour-card .tc-region { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.tour-card .tc-price { font-family: var(--serif); font-size: 1.2rem; display: flex; gap: 0.5rem; align-items: baseline; }
.tour-card .tc-price s { color: var(--muted); font-size: 0.9rem; }
.tour-card .tc-price .from { font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-right: 0.2rem; }
.tour-card .tc-view { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; display: inline-flex; gap: 0.4rem; }
.tour-card:hover .tc-view .arw { transform: translateX(4px); }
.tour-card .tc-view .arw { transition: transform .4s var(--ease); }

/* ---- destinations (photographic) ------------------------------------- */
.dest-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.dest-tile { position: relative; isolation: isolate; overflow: hidden; min-height: 260px; display: flex; align-items: flex-end; color: var(--paper); }
.dest-tile:nth-child(1) { grid-column: span 3; min-height: 420px; }
.dest-tile:nth-child(2) { grid-column: span 3; min-height: 420px; }
.dest-tile:nth-child(3) { grid-column: span 2; }
.dest-tile:nth-child(4) { grid-column: span 2; }
.dest-tile:nth-child(5) { grid-column: span 2; }
.dest-tile:nth-child(6) { grid-column: span 3; }
.dest-tile:nth-child(7) { grid-column: span 3; }
.dest-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.5s var(--ease); }
.dest-tile::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.62) 100%); }
.dest-tile:hover img { transform: scale(1.07); }
.dest-tile .dt-body { padding: 1.4rem 1.5rem; width: 100%; }
.dest-tile .dt-region { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,241,234,0.75); }
.dest-tile h3 { color: var(--paper); font-size: clamp(1.5rem, 2.3vw, 2.1rem); margin-top: 0.3rem; }
.dest-tile .dt-tagline { color: rgba(244,241,234,0.8); font-size: 0.9rem; margin-top: 0.3rem; max-width: 34ch;
  max-height: 0; overflow: hidden; opacity: 0; transition: max-height .5s var(--ease), opacity .5s var(--ease), margin .5s var(--ease); }
.dest-tile:hover .dt-tagline { max-height: 60px; opacity: 1; }

/* Sections that layer a background image behind content need their own
   stacking context, or a negative-z image paints behind the section's bg. */
#final-cta, .page-hero.on-image { isolation: isolate; }

/* ---- experiences (styles) -------------------------------------------- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.exp-tile { position: relative; isolation: isolate; overflow: hidden; aspect-ratio: 4/4.6; display: flex; align-items: flex-end; color: var(--paper); }
.exp-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.6s var(--ease); filter: saturate(1.02); }
.exp-tile::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.6) 100%); }
.exp-tile:hover img { transform: scale(1.06); }
.exp-tile .ex-body { padding: 1.6rem; width: 100%; display: flex; justify-content: space-between; align-items: flex-end; }
.exp-tile h3 { color: var(--paper); font-size: clamp(1.4rem, 2.1vw, 1.9rem); }
.exp-tile .ex-arrow { font-size: 1.4rem; opacity: 0; transform: translateX(-8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.exp-tile:hover .ex-arrow { opacity: 1; transform: none; }

/* ---- promotions ------------------------------------------------------- */
.promo-band { display: grid; grid-template-columns: 1fr 1fr; }
.promo-band .promo-media { position: relative; overflow: hidden; min-height: 420px; }
.promo-band .promo-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-band .promo-body { padding: clamp(2.5rem, 6vw, 5.5rem); display: flex; flex-direction: column; justify-content: center; }
.promo-band .promo-body .disc { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem); color: var(--orange); line-height: 1; }
.promo-band.alt { direction: rtl; }
.promo-band.alt > * { direction: ltr; }
.promo-price { display: flex; align-items: baseline; gap: 0.8rem; margin: 1.4rem 0; font-family: var(--serif); }
.promo-price .new { font-size: 1.8rem; }
.promo-price s { color: var(--muted); font-size: 1.15rem; }
.promo-price .cur { font-size: 0.72rem; font-family: var(--sans); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---- testimonials ----------------------------------------------------- */
.quote-wrap { max-width: 1000px; margin: 0 auto; }
.quote {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.7rem); line-height: 1.25;
  letter-spacing: -0.01em; font-weight: 340;
}
.quote .mark { color: var(--gold); }
.quote-meta { margin-top: 1.8rem; display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.quote-meta .dot { color: var(--gold); }
/* Optional customer name leads the credit line, a step brighter than location / journey. */
.quote-meta .qm-name { font-weight: 600; color: var(--ink); }
.dark .quote-meta .qm-name { color: var(--paper); }
.quote-nav { display: flex; gap: 0.6rem; margin-top: 2.5rem; }
.quote-nav button { width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background .3s, color .3s, border-color .3s; }
.quote-nav button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.dark .quote-nav button { border-color: rgba(244,241,234,0.3); color: var(--paper); }
.dark .quote-nav button:hover { background: var(--paper); color: var(--ink); }
/* Testimonials read too large and cramped on phones — soften the quote and
   tighten the surrounding rhythm. */
@media (max-width: 640px) {
  .quote { font-size: clamp(1.3rem, 5.8vw, 1.7rem); line-height: 1.34; }
  .quote-meta { margin-top: 1.3rem; }
  .quote-nav { margin-top: 1.8rem; }
  .quote-nav button { width: 42px; height: 42px; }
}

/* ---- journal ---------------------------------------------------------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
.article-card .ac-media { position: relative; overflow: hidden; aspect-ratio: 3/2.1; }
.article-card .ac-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.article-card:hover .ac-media img { transform: scale(1.05); }
.article-card .ac-meta { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin: 1.1rem 0 0.5rem; display: flex; gap: 0.7rem; }
.article-card h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.12; }
.article-card p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.6rem; }

/* ---- forms ------------------------------------------------------------ */
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.55rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.9rem 1rem; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: 0; transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.field.hp { position: absolute; left: -9999px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-msg { padding: 1rem 1.2rem; font-size: 0.9rem; margin-bottom: 1.2rem; }
.form-msg.ok { background: #e7efe4; color: #2e5b2a; border: 1px solid #b9d3b1; }
.form-msg.err { background: #f4e2df; color: #8a3324; border: 1px solid #e0b7b0; }

/* ---- footer ----------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(244,241,234,0.75); padding-top: clamp(4rem, 8vw, 7rem); }
.footer h4 { color: var(--paper); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 4rem; border-bottom: 1px solid rgba(244,241,234,0.12); }
.footer .f-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.4rem; }
.footer .f-brand svg { width: 38px; height: 38px; }
.footer .f-brand span { font-family: var(--serif); font-size: 1.2rem; color: var(--paper); }
.footer .f-blurb { max-width: 34ch; font-size: 0.95rem; line-height: 1.6; }
.footer .f-col h4 { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.2rem; font-family: var(--sans); font-weight: 600; }
.footer .f-col a { display: block; padding: 0.35rem 0; font-size: 0.92rem; transition: color .3s; }
.footer .f-col a:hover { color: var(--paper); }
.footer .f-contact div { margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer .f-contact a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-block: 2rem; font-size: 0.78rem; letter-spacing: 0.04em; }
.footer-bottom .socials { display: flex; gap: 1.2rem; }
.footer-bottom .socials a { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; }

/* ---- page hero (interior pages) -------------------------------------- */
.page-hero { position: relative; padding-top: calc(var(--nav-h) + var(--ann-h, 0px) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero .eyebrow { margin-bottom: 1.3rem; }
.page-hero h1 { max-width: 16ch; }
.page-hero .lede { margin-top: 1.3rem; max-width: 54ch; }
.page-hero.on-image { min-height: 74vh; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; }
.page-hero.on-image .ph-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero.on-image .ph-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 22s var(--ease) forwards; }
.page-hero.on-image::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,9,6,0.4), rgba(10,9,6,0.18) 40%, rgba(10,9,6,0.45) 70%, rgba(10,9,6,0.85)); }
.page-hero.on-image h1, .page-hero.on-image .eyebrow { color: var(--paper); }
.page-hero.on-image .eyebrow::before { background: var(--paper); }
.page-hero.on-image .lede { color: rgba(244,241,234,0.9); }

/* ---- filter bar ------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.filters button {
  border: 1px solid var(--line); background: transparent; color: var(--ink-soft);
  padding: 0.55rem 1.1rem; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all .3s; font-weight: 500;
}
.filters button:hover { border-color: var(--ink); color: var(--ink); }
.filters button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
/* On phones the pills wrap into a ragged block; make each group a tidy
   single row that scrolls sideways instead, with the scrollbar hidden. */
@media (max-width: 640px) {
  .filters {
    flex-wrap: nowrap; overflow-x: auto; margin-top: 1.4rem; gap: 0.45rem;
    padding-bottom: 0.5rem; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filters button { flex: 0 0 auto; padding: 0.5rem 0.85rem; font-size: 0.7rem; scroll-snap-align: start; }
}

/* ---- filters behind a button (opens a panel) ------------------------- */
.filter-bar { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.filter-toggle {
  display: inline-flex; align-items: center; gap: 0.55rem; cursor: pointer;
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  padding: 0.6rem 1.15rem; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; transition: background .3s, color .3s;
}
.filter-toggle:hover, .filter-toggle.open { background: var(--ink); color: var(--paper); }
.filter-toggle .ft-ic { display: inline-flex; }
.filter-toggle .ft-count {
  display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px;
  padding: 0 5px; border-radius: 999px; background: var(--gold); color: #1a1712;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0;
}
.filter-summary { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }
.filter-panel {
  margin-top: 1rem; max-width: 620px; border: 1px solid var(--line); background: var(--paper);
  border-radius: 4px; padding: clamp(1.2rem, 3vw, 1.8rem); box-shadow: 0 24px 50px -30px rgba(0,0,0,0.25);
}
.fp-group + .fp-group { margin-top: 1.3rem; }
.fp-label { display: block; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.7rem; }
.filter-panel .filters { flex-wrap: wrap; overflow: visible; margin-top: 0; padding-bottom: 0; }
.fp-actions { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.fp-clear { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 0.78rem; text-decoration: underline; text-underline-offset: 3px; }
.fp-clear:hover { color: var(--ink); }
.fp-apply {
  background: var(--ink); color: var(--paper); border: 1px solid var(--ink); cursor: pointer;
  padding: 0.6rem 1.4rem; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: opacity .3s;
}
.fp-apply:hover { opacity: 0.88; }
@media (max-width: 640px) {
  .filter-panel { max-width: none; }
  .filter-panel .filters { flex-wrap: wrap; gap: 0.5rem; }
}

/* ---- utilities -------------------------------------------------------- */
.divider { height: 1px; background: var(--line-soft); }
.tag-line { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); }
.grid-2.align-c { align-items: center; }
.spinner { width: 26px; height: 26px; border: 2px solid var(--line); border-top-color: var(--ink);
  border-radius: 50%; animation: spin .8s linear infinite; margin: 3rem auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-note { color: var(--muted); font-style: italic; padding: 2rem 0; }
[hidden] { display: none !important; }

/* ---- responsive ------------------------------------------------------- */
@media (max-width: 1024px) {
  .tour-grid, .journal-grid, .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-tile, .dest-tile:nth-child(n) { grid-column: span 1 !important; min-height: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: block; }
  .nav-inner { grid-template-columns: auto 1fr; }
  .nav-cta { grid-column: 2; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; }
  .feature-row.flip .feature-media { order: 0; }
  .promo-band { grid-template-columns: 1fr; }
  .promo-band.alt { direction: ltr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .tour-grid, .journal-grid, .exp-grid, .dest-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-scroll { display: none; }
}

/* ---- map embed -------------------------------------------------------- */
.map-frame { position: relative; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3 / 2.2; background: var(--paper-2); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.02); }

.footer-map { display: block; position: relative; margin-top: 1.8rem; overflow: hidden; height: 168px; max-width: 340px;
  border: 1px solid rgba(244,241,234,0.16); transition: border-color .3s; }
.footer-map:hover { border-color: rgba(244,241,234,0.4); }
.footer-map iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }
.footer-map-cta { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.55rem 0.7rem; color: #fff;
  background: linear-gradient(transparent, rgba(10,9,6,0.8)); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; }

/* ---- floating WhatsApp button ---------------------------------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25d366; color: #fff;
  height: 56px; padding: 0 18px 0 16px; border-radius: 40px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.35);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(0,0,0,0.45); background: #1fbd5a; }
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float .wa-label { white-space: nowrap; }
@media (max-width: 560px) {
  .wa-float { padding: 0; width: 54px; height: 54px; justify-content: center; right: 16px; bottom: 16px; }
  .wa-float .wa-label { display: none; }
}
/* lift above the tour detail's sticky mobile bar */
@media (max-width: 900px) { body:has(.t-sticky) .wa-float { bottom: 78px; } }

/* ---- print / PDF (used by the tour "Download PDF" button) ------------ */
.print-only { display: none; }
@media print {
  #site-header, #site-footer, .wa-float, .hero-scroll { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 0.4rem !important; }
  .dark { background: #fff !important; color: #000 !important; }
  .dark h1, .dark h2, .dark h3 { color: #000 !important; }
  a { color: #000 !important; text-decoration: none; }
  .print-only { display: block; }
}
