@charset "utf-8";
/* ==========================================================================
   Victoria Falls Tours & Safaris — design system
   Palette derived from the VFTS logo: black line-art (#060606), brand red
   (#FF0000, refined to #D41F26 for AA contrast), warm grey (#4D4D4D), white.
   Type: Open Sans (as used on namibia-tours-safaris.com) + Cormorant Garamond
   for the display voice.
   ========================================================================== */

/* ---------- tokens ------------------------------------------------------ */
:root {
  /* brand */
  --ink:        #101012;
  --ink-2:      #2A2A2E;
  --ink-3:      #4D4D4D;
  --ink-4:      #6E6E73;
  --ink-5:      #96968F;

  --red:        #D41F26;   /* logo red, deepened for contrast */
  --red-ink:    #A81219;   /* red as text on light surfaces (AA) */
  --red-deep:   #8E0F16;
  --red-wash:   #FBEDED;

  --gold:       #C6A15B;   /* hairlines + display accents only, never body */
  --gold-soft:  #E4D3AE;

  --bone:       #F7F4EF;
  --sand:       #EDE7DD;
  --paper:      #FFFFFF;

  --line:       #E2DCD1;
  --line-soft:  #EFEAE1;
  --line-dark:  rgba(255,255,255,.14);

  /* surfaces */
  --bg:         var(--paper);
  --surface:    var(--bone);
  --surface-2:  var(--sand);
  --on-dark:    #F3EFE8;
  --on-dark-2:  #C7C1B5;

  /* footer sits a shade above pure ink so it reads as a surface, not a void */
  --ftr-bg:     #2E2C29;
  --ftr-bar:    #26241F;

  /* social brand colours */
  --c-facebook:    #1877F2;
  --c-instagram:   #E4405F;
  --c-tripadvisor: #34E0A1;
  --c-youtube:     #FF0000;
  --g-instagram:   linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);

  /* type */
  --sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;

  /* rhythm — 4px base */
  --s1: .25rem; --s2: .5rem;  --s3: .75rem; --s4: 1rem;
  --s5: 1.5rem; --s6: 2rem;   --s7: 3rem;   --s8: 4rem;
  --s9: 6rem;   --s10: 8rem;

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 1360px;
  --measure: 68ch;

  --r-sm: 6px;
  --r:    14px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* elevation — offset + soft blur, never a zero-offset halo */
  --lift-1: 0 2px 6px rgba(16,16,18,.05), 0 8px 24px rgba(16,16,18,.06);
  --lift-2: 0 6px 14px rgba(16,16,18,.07), 0 22px 48px rgba(16,16,18,.10);
  --lift-3: 0 10px 24px rgba(16,16,18,.10), 0 34px 70px rgba(16,16,18,.14);

  /* motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io:  cubic-bezier(.45, 0, .25, 1);
  --t-fast: 140ms;
  --t-mid:  260ms;
  --t-slow: 480ms;

  /* tall enough for the stacked lion + wordmark lockup to stay legible */
  --header-h: 122px;
}

/* ---------- reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* `clip` not `hidden`: hidden makes body a scroll container, which silently
     breaks every position:sticky descendant (.filters, .bookpanel, .hdr). */
  overflow-x: clip;
}
html { overflow-x: clip; }
img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ---------- browser surfaces (themed, not left to defaults) ------------- */
::selection { background: var(--red); color: #fff; }
:root { accent-color: var(--red); caret-color: var(--red); }
html { scrollbar-color: var(--ink-5) var(--sand); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: #C2BBAE; border: 3px solid var(--sand); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-5); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }
:where(a, button, input, select, textarea):focus:not(:focus-visible) { outline: none; }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- typography -------------------------------------------------- */
.display,
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h4, h5, h6 { font-family: var(--sans); font-weight: 700; color: var(--ink); line-height: 1.3; }

.t-hero    { font-size: clamp(2.1rem, 6.6vw, 5.6rem); font-weight: 500; letter-spacing: -.022em; line-height: 1.04; }
.t-page    { font-size: clamp(2rem, 5.4vw, 4.1rem); letter-spacing: -.02em; }
.t-section { font-size: clamp(1.95rem, 3.6vw, 3.05rem); letter-spacing: -.018em; }
.t-card    { font-family: var(--sans); font-size: 1.075rem; font-weight: 700; line-height: 1.34; letter-spacing: -.011em; color: var(--ink); }
.t-sub     { font-size: clamp(1.05rem, 1.55vw, 1.2rem); color: var(--ink-3); font-weight: 300; line-height: 1.62; max-width: var(--measure); }

.lede { font-size: 1.16rem; font-weight: 300; line-height: 1.68; color: var(--ink-2); max-width: var(--measure); }
.prose p { max-width: var(--measure); margin-bottom: 1.15em; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose a { color: var(--red-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(168,18,25,.35); transition: text-decoration-color var(--t-fast); }
.prose a:hover { text-decoration-color: var(--red-ink); }

.meta { font-size: .8rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-4); }

/* answer-first block (AEO) */
.answer {
  border-left: 1px solid var(--gold);
  padding-left: var(--s5);
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.66;
  color: var(--ink-2);
  max-width: var(--measure);
}
.answer strong { font-weight: 600; color: var(--ink); }

/* ---------- layout ------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 900px; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--bone { background: var(--bone); }
.section--sand { background: var(--surface-2); }
.section--ink  { background: var(--ink); color: var(--on-dark); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s6); flex-wrap: wrap; margin-bottom: var(--s7); }
.head__text { flex: 1 1 30rem; }
.head .t-sub { margin-top: var(--s4); }

.grid { display: grid; gap: clamp(1rem, 1.8vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- buttons ----------------------------------------------------- */
.btn {
  --btn-bg: var(--red); --btn-fg: #fff; --btn-bd: var(--red);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .95em 1.9em;
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1px solid var(--btn-bd); border-radius: var(--r-pill);
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color var(--t-mid) var(--ease-out), border-color var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform var(--t-mid) var(--ease-out);
}
.btn:hover { color: #fff; border-color: var(--ink); transform: translateY(-1px); }
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { color: #fff; }
.btn--ink { --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink); }
.btn--ink::before { background: var(--red); }
.btn--ink:hover { border-color: var(--red); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--light::before { background: var(--red); }
.btn--light:hover { border-color: var(--red); }
.btn--sm { padding: .72em 1.35em; font-size: .74rem; }

/* text link with an animated rule */
.tlink {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); padding-bottom: .35em;
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size var(--t-mid) var(--ease-out), color var(--t-mid);
}
.tlink:hover { color: var(--red-ink); background-size: 100% 1px; }
.tlink svg { width: 1.1em; height: 1.1em; transition: transform var(--t-mid) var(--ease-out); }
.tlink:hover svg { transform: translateX(4px); }

/* ---------- header ------------------------------------------------------ */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-mid) var(--ease-io), border-color var(--t-mid), box-shadow var(--t-mid), height var(--t-mid) var(--ease-io);
}
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: var(--s5); width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.hdr__logo { flex: none; display: block; }
.hdr__logo img { height: 94px; width: auto; transition: height var(--t-mid) var(--ease-io); }
.hdr__logo .lg-light { display: block; }
.hdr__logo .lg-dark  { display: none; }

.hdr__nav { display: flex; align-items: center; gap: clamp(.4rem, 1.4vw, 1.5rem); }
.hdr__end { display: flex; align-items: center; gap: var(--s3); flex: none; }

.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .6rem .3rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: .3rem; right: .3rem; bottom: .28rem; height: 1px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}
.nav__item:hover > .nav__link::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__caret { width: .7em; height: .7em; opacity: .65; transition: transform var(--t-mid) var(--ease-out); }
.nav__item:hover .nav__caret { transform: rotate(180deg); }

/* dropdown */
.nav__panel {
  position: absolute; top: calc(100% + .55rem); left: 50%; translate: -50% 0;
  min-width: 268px; padding: var(--s3);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--lift-2);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out), visibility var(--t-mid);
}
.nav__item:hover > .nav__panel,
.nav__item:focus-within > .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__panel a {
  display: block; padding: .62rem .8rem; border-radius: var(--r-sm);
  font-size: .9rem; color: var(--ink-2);
  transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
}
.nav__panel a:hover { background: var(--bone); color: var(--ink); padding-left: 1.05rem; }
.nav__sep { display: block; height: 1px; margin: .4rem .8rem; background: var(--line-soft); }

.icon-btn {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--r-pill);
  background: transparent; color: #fff; cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.icon-btn:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }
.icon-btn svg { width: 17px; height: 17px; }

/* scrolled / solid state */
.hdr.is-solid,
body.nav-solid .hdr {
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 2px rgba(16,16,18,.03), 0 10px 30px rgba(16,16,18,.05);
  height: 82px;
}
.hdr.is-solid .hdr__logo img,
body.nav-solid .hdr__logo img { height: 72px; }
.hdr.is-solid .hdr__logo .lg-light,
body.nav-solid .hdr__logo .lg-light { display: none; }
.hdr.is-solid .hdr__logo .lg-dark,
body.nav-solid .hdr__logo .lg-dark { display: block; }
.hdr.is-solid .nav__link,
body.nav-solid .nav__link { color: var(--ink-2); }
.hdr.is-solid .nav__link:hover,
body.nav-solid .nav__link:hover { color: var(--ink); }
.hdr.is-solid .icon-btn,
body.nav-solid .icon-btn { color: var(--ink); border-color: var(--line); }
.hdr.is-solid .icon-btn:hover,
body.nav-solid .icon-btn:hover { background: var(--bone); border-color: var(--ink-5); }

/* burger */
.burger { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: var(--r-pill); background: transparent; cursor: pointer; position: relative; }
.hdr.is-solid .burger, body.nav-solid .burger { border-color: var(--line); }
.burger span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: #fff; transition: transform var(--t-mid) var(--ease-out), opacity var(--t-fast); }
.hdr.is-solid .burger span, body.nav-solid .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 89;
  background: var(--paper);
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 3rem;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out), visibility var(--t-mid);
}
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer details { border-bottom: 1px solid var(--line-soft); }
.drawer summary { display: flex; align-items: center; justify-content: space-between; padding: 1.05rem 0; font-size: 1.05rem; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; }
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary svg { width: 15px; height: 15px; color: var(--ink-4); transition: transform var(--t-mid) var(--ease-out); }
.drawer details[open] summary svg { transform: rotate(180deg); }
.drawer details ul { padding: 0 0 .9rem .2rem; }
.drawer details a { display: block; padding: .5rem 0; font-size: .95rem; color: var(--ink-3); }
.drawer details a:hover { color: var(--red-ink); }
.drawer > a.drawer__top { display: block; padding: 1.05rem 0; font-size: 1.05rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.drawer__cta { margin-top: var(--s6); display: grid; gap: var(--s3); }
body.drawer-open { overflow: hidden; }

/* ---------- hero -------------------------------------------------------- */
.hero { position: relative; min-height: min(92vh, 880px); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero--page { min-height: min(66vh, 620px); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,12,.86) 0%, rgba(10,10,12,.46) 34%, rgba(10,10,12,.20) 62%, rgba(10,10,12,.44) 100%),
    linear-gradient(to right, rgba(10,10,12,.5) 0%, rgba(10,10,12,0) 60%);
}
/* Top padding clears the fixed header. The hero is min-height + flex-end, so on
   tall viewports the content still sits at the bottom; on short ones the hero
   grows instead of sliding the headline up under the logo and nav. */
.hero__in { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: calc(var(--header-h) + 2rem) var(--gutter) clamp(3rem, 7vw, 6rem); color: #fff; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero--page h1 { max-width: 20ch; }
.hero__sub { margin-top: var(--s5); max-width: 52ch; font-size: clamp(1.02rem, 1.5vw, 1.18rem); font-weight: 300; line-height: 1.62; color: rgba(255,255,255,.86); }
.hero__cta { margin-top: var(--s6); display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero__scroll { position: absolute; right: var(--gutter); bottom: clamp(3rem,7vw,6rem); z-index: 2; display: flex; align-items: center; gap: .7rem; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); writing-mode: vertical-rl; }
.hero__scroll i { display: block; width: 1px; height: 54px; background: linear-gradient(rgba(255,255,255,.5), transparent); }

/* breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .8rem; color: var(--ink-4); padding-block: var(--s5); }
.crumbs a { transition: color var(--t-fast); }
.crumbs a:hover { color: var(--red-ink); }
.crumbs svg { width: 12px; height: 12px; opacity: .5; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- search bar -------------------------------------------------- */
.searchbar {
  position: relative; z-index: 5;
  margin-top: -2.75rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--lift-2);
  overflow: hidden;
}
.searchbar__f { padding: 1.05rem 1.35rem; border-right: 1px solid var(--line-soft); min-width: 0; }
.searchbar__f:last-of-type { border-right: 0; }
.searchbar__f label { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); margin-bottom: .28rem; }
.searchbar__f input, .searchbar__f select {
  width: 100%; border: 0; background: transparent; padding: 0;
  font-size: .95rem; color: var(--ink); font-weight: 600;
  appearance: none;
}
.searchbar__f input::placeholder { color: var(--ink-5); font-weight: 400; }
.searchbar__go { display: grid; place-items: center; padding: .55rem; }
.searchbar__go .btn { height: 100%; border-radius: var(--r); padding-inline: 1.7rem; }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .55em 1.1em; border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--paper); font-size: .82rem; font-weight: 600; color: var(--ink-2);
  cursor: pointer; white-space: nowrap;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.chip:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.chip[aria-pressed="true"], .chip[aria-current] { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- cards ------------------------------------------------------- */
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease-out), border-color var(--t-mid), box-shadow var(--t-mid) var(--ease-out);
}
.card:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--lift-3); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(to top, rgba(10,10,12,.5), transparent);
  opacity: 0; transition: opacity var(--t-mid) var(--ease-out);
}
.card:hover .card__media::after { opacity: 1; }
.card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body > .t-card { margin-bottom: .1rem; }
.card__note { font-size: .86rem; color: var(--ink-4); line-height: 1.55; }
.card__foot { margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line-soft); display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; }
.card__price { font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.card__price span { font-size: .78rem; font-weight: 400; color: var(--ink-4); }
.card__go { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red-ink); display: inline-flex; align-items: center; gap: .4em; }
.card__go svg { width: 1em; height: 1em; transition: transform var(--t-mid) var(--ease-out); }
.card:hover .card__go svg { transform: translateX(4px); }

/* full-card link overlay */
.card__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }

/* red hairline that draws in on hover */
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; z-index: 2;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.card:hover::before { transform: scaleX(1); }

/* badges */
.badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  padding: .34em .8em; border-radius: var(--r-pill);
  background: rgba(255,255,255,.94);
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.badge--red { background: var(--red); color: #fff; }
.badge--ink { background: rgba(16,16,18,.82); color: #fff; }
.rating { display: inline-flex; align-items: center; gap: .3em; font-size: .82rem; font-weight: 700; color: var(--ink); }
.rating svg { width: .95em; height: .95em; color: var(--gold); }
.rating span { font-weight: 400; color: var(--ink-4); }

/* editorial "tall" card used for packages */
.pcard { position: relative; border-radius: var(--r); overflow: hidden; min-height: 430px; display: flex; align-items: flex-end; background: var(--ink); }
.pcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1000ms var(--ease-out); }
.pcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,10,.88) 0%, rgba(8,8,10,.34) 52%, rgba(8,8,10,0) 78%); transition: opacity var(--t-slow); }
.pcard:hover img { transform: scale(1.05); }
.pcard__body { position: relative; z-index: 2; padding: 1.6rem 1.5rem; color: #fff; width: 100%; }
.pcard__body h2, .pcard__body h3 { color: #fff; font-size: 1.6rem; letter-spacing: -.015em; }
.pcard__nights { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: .55rem; }
.pcard__desc { margin-top: .55rem; font-size: .9rem; line-height: 1.55; color: rgba(255,255,255,.78); max-width: 40ch; }
.pcard__foot { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.18); display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.pcard__price { font-size: 1.05rem; font-weight: 700; color: #fff; }
.pcard__price span { font-size: .76rem; font-weight: 400; color: rgba(255,255,255,.6); }
.pcard__link::after { content: ""; position: absolute; inset: 0; z-index: 3; }
/* grade pill sits over the image, aligned to the body padding below it */
.pcard > .badge { top: 1.25rem; left: 1.5rem; }

/* "What this place offers" amenity list on accommodation cards */
.offers { margin-top: .35rem; padding-top: .8rem; border-top: 1px solid var(--line-soft); }
.offers__h { font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .6rem; }
.offers__list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .5rem .8rem; }
.offers__list li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-2); line-height: 1.3; }
.offers__list svg { width: 18px; height: 18px; flex: none; color: var(--ink-3); }

/* ---------- feature split ---------------------------------------------- */
.feature__media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3.2; box-shadow: var(--lift-2); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body h2 { margin-bottom: var(--s5); }
.feature__list { margin-top: var(--s6); display: grid; gap: .9rem; }
.feature__list li { display: flex; gap: .85rem; align-items: flex-start; font-size: .97rem; color: var(--ink-2); }
.feature__list svg { width: 19px; height: 19px; flex: none; margin-top: .22rem; color: var(--red); }

/* ---------- routes / transfers ------------------------------------------ */
.routes { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; border-top: 1px solid var(--line); }
.route { padding: var(--s6) var(--s5) var(--s6) 0; border-right: 1px solid var(--line); padding-right: var(--s5); position: relative; }
.route:last-child { border-right: 0; }
.route:not(:first-child) { padding-left: var(--s5); }
.route::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--red); transition: width var(--t-slow) var(--ease-out); }
.route:hover::before { width: 100%; }
.route h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .5rem; }
.route p { font-size: .9rem; color: var(--ink-4); line-height: 1.6; }
.route__code { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--gold); display: block; margin-bottom: .7rem; letter-spacing: .04em; }

/* ---------- reviews ----------------------------------------------------- */
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out); }
.review:hover { transform: translateY(-4px); box-shadow: var(--lift-2); }
.review__stars { display: flex; gap: .18rem; color: var(--gold); }
.review__stars svg { width: 15px; height: 15px; }
.review blockquote { font-family: var(--display); font-size: 1.22rem; line-height: 1.42; color: var(--ink); letter-spacing: -.01em; }
.review__by { margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line-soft); display: flex; align-items: center; gap: .75rem; }
.review__av { width: 38px; height: 38px; border-radius: var(--r-pill); background: var(--sand); color: var(--ink-3); display: grid; place-items: center; font-size: .82rem; font-weight: 700; flex: none; }
.review__meta { font-size: .82rem; line-height: 1.35; }
.review__meta b { display: block; color: var(--ink); font-weight: 700; }
.review__meta span { color: var(--ink-4); }

/* ---------- blog -------------------------------------------------------- */
.post { display: flex; flex-direction: column; }
.post__media { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/10; background: var(--sand); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
.post:hover .post__media img { transform: scale(1.05); }
.post__body { padding-top: 1.1rem; }
.post h3 { font-family: var(--sans); font-size: 1.1rem; font-weight: 700; line-height: 1.36; letter-spacing: -.012em; margin: .5rem 0 .5rem; transition: color var(--t-fast); }
.post:hover h3 { color: var(--red-ink); }
.post p { font-size: .89rem; color: var(--ink-4); line-height: 1.6; }
.post__tag { font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--red-ink); }

/* ---------- accordion / FAQ -------------------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-size: 1.05rem; font-weight: 600; color: var(--ink); line-height: 1.45;
  transition: color var(--t-fast);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--red-ink); }
.acc summary i { flex: none; position: relative; width: 18px; height: 18px; margin-top: .3rem; }
.acc summary i::before, .acc summary i::after { content: ""; position: absolute; background: var(--ink-3); transition: transform var(--t-mid) var(--ease-out), background var(--t-fast); }
.acc summary i::before { left: 0; right: 0; top: 8px; height: 1.5px; }
.acc summary i::after  { top: 0; bottom: 0; left: 8px; width: 1.5px; }
.acc details[open] summary i::after { transform: scaleY(0); }
.acc details[open] summary { color: var(--red-ink); }
.acc__body { padding: 0 3rem 1.5rem 0; font-size: .98rem; line-height: 1.7; color: var(--ink-3); max-width: var(--measure); }
.acc__body p + p { margin-top: .8rem; }

/* ---------- tables ------------------------------------------------------ */
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r); }
.tbl { min-width: 640px; font-size: .92rem; }
.tbl th, .tbl td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.tbl thead th { background: var(--bone); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); border-bottom-color: var(--line); }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr { transition: background var(--t-fast); }
.tbl tbody tr:hover { background: var(--bone); }
.tbl td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* ---------- itinerary --------------------------------------------------- */
.itin { border-top: 1px solid var(--line); }
.itin__day { display: grid; grid-template-columns: 92px 1fr; gap: var(--s5); padding: 1.5rem 0; border-bottom: 1px solid var(--line-soft); }
.itin__n { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red-ink); padding-top: .28rem; }
.itin__c h3 { font-family: var(--sans); font-size: 1.06rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .45rem; }
.itin__c p { font-size: .94rem; color: var(--ink-3); line-height: 1.65; max-width: 62ch; }
.itin__stay { margin-top: .7rem; font-size: .84rem; color: var(--ink-4); display: flex; align-items: center; gap: .5rem; }
.itin__stay svg { width: 15px; height: 15px; color: var(--ink-5); }

/* ---------- sticky booking panel --------------------------------------- */
.bookpanel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--lift-2); position: sticky; top: calc(var(--header-h) + 1.25rem); }
.bookpanel h1, .bookpanel h2 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); margin-bottom: .8rem; }
.bookpanel__price { font-family: var(--display); font-size: 2.5rem; font-weight: 600; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.bookpanel__price small { font-family: var(--sans); font-size: .82rem; font-weight: 400; color: var(--ink-4); letter-spacing: 0; }
.field { border: 1px solid var(--line); border-radius: var(--r-sm); padding: .7rem .9rem; margin-bottom: .6rem; transition: border-color var(--t-fast); }
.field:focus-within { border-color: var(--ink); }
.field label { display: block; font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); margin-bottom: .2rem; }
.field input, .field select, .field textarea { width: 100%; border: 0; background: transparent; padding: 0; font-size: .95rem; font-weight: 600; color: var(--ink); appearance: none; resize: vertical; }
.field textarea { font-weight: 400; line-height: 1.6; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-5); font-weight: 400; }

/* ---------- tabs -------------------------------------------------------- */
.tabs { display: flex; gap: var(--s6); border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs a { position: relative; padding: 1rem 0; font-size: .88rem; font-weight: 600; color: var(--ink-4); white-space: nowrap; transition: color var(--t-fast); }
.tabs a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform var(--t-mid) var(--ease-out); }
.tabs a:hover { color: var(--ink); }
.tabs a.is-active { color: var(--ink); }
.tabs a.is-active::after, .tabs a:hover::after { transform: scaleX(1); }

/* ---------- sidebar filters -------------------------------------------- */
.filters h3 { font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink); margin-bottom: .9rem; }
.filters section { padding-block: 1.4rem; border-bottom: 1px solid var(--line-soft); }
.filters section:first-child { padding-top: 0; }
.filters label { display: flex; align-items: center; gap: .6rem; padding: .3rem 0; font-size: .92rem; color: var(--ink-3); cursor: pointer; transition: color var(--t-fast); }
.filters label:hover { color: var(--ink); }
.filters input[type="checkbox"] { width: 16px; height: 16px; flex: none; }

/* ---------- footer ------------------------------------------------------ */
.ftr { background: var(--ftr-bg); color: var(--on-dark-2); padding-block: clamp(3.5rem, 7vw, 5.5rem) 0; }
.ftr__top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: var(--s8); }
.ftr__brand img { height: 96px; width: auto; margin-bottom: var(--s5); }
.ftr__brand p { font-size: .9rem; line-height: 1.7; color: var(--on-dark-2); max-width: 34ch; }
.ftr h4 { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.ftr ul li { margin-bottom: .6rem; }
.ftr ul a { font-size: .92rem; color: var(--on-dark-2); transition: color var(--t-fast), padding-left var(--t-fast); display: inline-block; }
.ftr ul a:hover { color: #fff; padding-left: 4px; }
.ftr__contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; margin-bottom: .85rem; color: var(--on-dark-2); }
.ftr__contact svg { width: 16px; height: 16px; flex: none; margin-top: .25rem; color: var(--red); }
.ftr__social { display: flex; gap: .6rem; margin-top: var(--s5); }
/* .ftr ul a above is (0,1,2); these must outrank it or the brand colour is lost */
.ftr .ftr__social a { display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line-dark); border-radius: var(--r-pill); color: var(--brand, var(--on-dark-2)); transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast); }
.ftr .ftr__social a:hover { padding-left: 0; }
.ftr .ftr__social svg { width: 18px; height: 18px; }

/* each network in its own colour, filling on hover */
.ftr .ftr__social .s-fb { --brand: var(--c-facebook); }
.ftr .ftr__social .s-ig { --brand: var(--c-instagram); }
.ftr .ftr__social .s-ta { --brand: var(--c-tripadvisor); }
.ftr .ftr__social .s-yt { --brand: var(--c-youtube); }
.ftr .ftr__social .s-tt { --brand: #25F4EE; }
.ftr .ftr__social .s-tt:hover,
.ftr .ftr__social .s-tt:focus-visible { background: #000; border-color: #000; }
.ftr .ftr__social a:hover,
.ftr .ftr__social a:focus-visible { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }
.ftr .ftr__social .s-ig:hover,
.ftr .ftr__social .s-ig:focus-visible { background: var(--g-instagram); border-color: transparent; }
.ftr .ftr__social .s-ta:hover,
.ftr .ftr__social .s-ta:focus-visible { color: #0B3B2E; }
.ftr__bar { background: var(--ftr-bar); border-top: 1px solid var(--line-dark); }
.ftr__bar-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s4); padding-block: var(--s5); font-size: .82rem; color: #9A948A; }
.ftr__bar a:hover { color: #fff; }

/* ---------- reveal animation ------------------------------------------- */
/* content is visible by default; JS opts elements in so a failed script never hides the page */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); transition-delay: var(--d, 0ms); }

/* hero: one authored entrance — the falls are unmasked, then the line rises */
.js .hero__media { clip-path: inset(0 0 100% 0); }
.js .hero__media img { transform: scale(1.12); }
.js .hero.is-ready .hero__media { clip-path: inset(0 0 0 0); transition: clip-path 1250ms var(--ease-out); }
.js .hero.is-ready .hero__media img { transform: scale(1); transition: transform 2200ms var(--ease-out); }
.js .hero__in > * { opacity: 0; transform: translateY(26px); }
.js .hero.is-ready .hero__in > * { opacity: 1; transform: none; transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out); }
.js .hero.is-ready .hero__in > *:nth-child(1) { transition-delay: 480ms; }
.js .hero.is-ready .hero__in > *:nth-child(2) { transition-delay: 620ms; }
.js .hero.is-ready .hero__in > *:nth-child(3) { transition-delay: 740ms; }
.js .hero.is-ready .hero__in > *:nth-child(4) { transition-delay: 840ms; }
.js .hero__scroll { opacity: 0; }
.js .hero.is-ready .hero__scroll { opacity: 1; transition: opacity 700ms var(--ease-out) 1100ms; }

/* subtle parallax drift on hero image while scrolling */
.hero__media img { will-change: auto; }
.hero.is-ready .hero__media img { will-change: transform; }

/* ---------- utilities --------------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; top: -100px; left: var(--gutter); z-index: 200; background: var(--ink); color: #fff; padding: .8rem 1.3rem; border-radius: 0 0 var(--r-sm) var(--r-sm); font-size: .85rem; font-weight: 600; transition: top var(--t-mid) var(--ease-out); }
.skip:focus { top: 0; }
.mt-0 { margin-top: 0; } .mt-4 { margin-top: var(--s4); } .mt-5 { margin-top: var(--s5); }
.mt-6 { margin-top: var(--s6); } .mt-7 { margin-top: var(--s7); } .mt-8 { margin-top: var(--s8); }
.center { text-align: center; margin-inline: auto; }

/* ==========================================================================
   Responsive — tablet ≤1024, mobile ≤767
   ========================================================================== */
@media (max-width: 1100px) {
  .hdr__nav { gap: .35rem; }
  .nav__link { font-size: .78rem; }
}

@media (max-width: 1024px) {
  :root { --header-h: 102px; }
  .hdr__logo img { height: 78px; }
  .hdr.is-solid .hdr__logo img, body.nav-solid .hdr__logo img { height: 64px; }
  .hdr__nav { display: none; }
  .burger { display: block; }
  .hdr__end .btn { display: none; }

  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-5 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split  { grid-template-columns: 1fr; gap: var(--s6); }
  .split--flip > *:first-child { order: 2; }

  .searchbar { grid-template-columns: 1fr 1fr; }
  .searchbar__f { border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
  .searchbar__f:nth-of-type(2n) { border-right: 0; }
  .searchbar__go { grid-column: 1 / -1; padding: .8rem; }
  .searchbar__go .btn { width: 100%; }

  .routes { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .route:nth-child(2n) { border-right: 0; }
  .route:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .route:nth-child(odd) { padding-left: 0; }

  .ftr__top { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ftr__brand { grid-column: 1 / -1; }

  .bookpanel { position: static; }
  .feature__media { aspect-ratio: 16/10; }
  .pcard { min-height: 380px; }
  .acc__body { padding-right: 1.5rem; }
}

@media (max-width: 767px) {
  :root { --header-h: 84px; --measure: 100%; }
  .hdr__logo img { height: 64px; }
  .hdr.is-solid .hdr__logo img, body.nav-solid .hdr__logo img { height: 54px; }
  .icon-btn { display: none; }

  .hero { min-height: 82vh; }
  .hero--page { min-height: 56vh; }
  .hero h1 { max-width: 100%; }
  /* headings must wrap freely at 375px - no forced line breaks, no overflow */
  .t-hero { font-size: clamp(1.85rem, 8vw, 2.7rem); }
  .t-page { font-size: clamp(1.75rem, 7.4vw, 2.4rem); }
  .t-section { font-size: clamp(1.55rem, 6.4vw, 2rem); }
  .nb-mobile { display: none; }
  h1, h2, h3, p { overflow-wrap: break-word; }
  .hero__scroll { display: none; }
  .hero__cta .btn { width: 100%; }

  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .routes { grid-template-columns: 1fr; }
  .route { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0 !important; padding-right: 0; }
  .route:last-child { border-bottom: 0; }

  .searchbar { grid-template-columns: 1fr; margin-top: -1.5rem; }
  .searchbar__f { border-right: 0; }

  .head { margin-bottom: var(--s6); }
  .head .btn, .head .tlink { display: none; }

  .itin__day { grid-template-columns: 1fr; gap: .5rem; }
  .ftr__top { grid-template-columns: 1fr; }
  .pcard { min-height: 340px; }
  .acc summary { font-size: .98rem; gap: 1rem; }
  .acc__body { padding-right: 0; }
  .bookpanel { padding: 1.25rem; }
  .review blockquote { font-size: 1.12rem; }
  .section { padding-block: 3rem; }
}

/* ---------- reduced motion --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  /* keep meaning, drop movement: reveals resolve to a plain fade, hero unmasks instantly */
  .js .reveal { opacity: 0; transform: none; }
  .js .reveal.is-in { opacity: 1; transition: opacity 200ms linear !important; }
  .js .hero__media { clip-path: none; }
  .js .hero__media img { transform: none; }
  .js .hero__in > * { opacity: 1; transform: none; }
  .js .hero__scroll { opacity: 1; }
  .card:hover { transform: none; }
  .card:hover .card__media img,
  .pcard:hover img,
  .post:hover .post__media img { transform: none; }
  .review:hover { transform: none; }
  /* state feedback that must stay legible */
  .btn:hover::before { transform: translateY(0); transition: none; }
  .card:hover::before { transform: scaleX(1); }
}

/* ==========================================================================
   Listing, tour-detail and contact components
   ========================================================================== */

/* sidebar + results */
.listing { display: grid; grid-template-columns: 244px minmax(0,1fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 1.5rem); }

/* section header inside a results column */
.sortbar { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s5); flex-wrap: wrap; padding-bottom: .9rem; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.sortbar h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.sortbar__note { font-size: .82rem; color: var(--ink-4); }

/* tour detail: gallery + sticky booking panel */
.tourhead { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.gallery figure { margin: 0; border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 4/3; background: var(--sand); }
.gallery figure:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; border-radius: var(--r); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-out), filter var(--t-mid); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figure:not(:first-child) img { filter: saturate(.92); }
.gallery figure:not(:first-child):hover img { filter: none; }

/* small info cards used for tour features / meals */
.infocards { display: grid; gap: .6rem; }
.infocards li { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--paper); transition: border-color var(--t-fast), transform var(--t-fast); }
.infocards li:hover { border-color: var(--ink-5); transform: translateX(2px); }
.infocards svg { width: 21px; height: 21px; flex: none; margin-top: .15rem; color: var(--ink-3); }
.infocards b { display: block; font-size: .92rem; font-weight: 700; color: var(--ink); margin-bottom: .18rem; }
.infocards span { display: block; font-size: .85rem; color: var(--ink-4); line-height: 1.5; }

/* route line */
.routeline { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; }
.routeline__stop { display: inline-flex; flex-direction: column; padding: .8rem 1.3rem; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--paper); font-size: .88rem; font-weight: 600; color: var(--ink); }
.routeline__stop b { font-size: .72rem; font-weight: 400; color: var(--ink-4); letter-spacing: .02em; }
.routeline > svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* minus list (exclusions) */
.feature__list--minus svg { color: var(--ink-5); }

/* contact details list */
.contactlist { display: grid; gap: .7rem; }
.contactlist li { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r-sm); }
.contactlist svg { width: 19px; height: 19px; flex: none; margin-top: .2rem; color: var(--red); }
.contactlist b { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: .25rem; }
.contactlist a, .contactlist span { font-size: .95rem; color: var(--ink); font-weight: 600; }
.contactlist a { transition: color var(--t-fast); }
.contactlist a:hover { color: var(--red-ink); }

/* anchor offsets for in-page nav targets */
[id] { scroll-margin-top: calc(var(--header-h) + 1.25rem); }

@media (max-width: 1024px) {
  .listing { grid-template-columns: 1fr; }
  .filters { display: none; }
  .tourhead { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: .4rem; }
  .gallery figure:nth-child(5) { display: none; }
  .routeline { gap: .5rem; }
  .routeline > svg { width: 16px; height: 16px; }
  .routeline__stop { padding: .6rem 1rem; font-size: .82rem; }
  .sortbar { flex-direction: column; align-items: flex-start; gap: .3rem; }
}

@media print {
  .hdr, .drawer, .hero__scroll, .searchbar, .ftr__social, .filters, .chips { display: none; }
  body { color: #000; }
  .hero { min-height: auto; }
}

/* ---- accommodation category filter ---------------------------------- */
[data-stay-filter] { margin-bottom: var(--s6); }
.stay-group + .stay-group { margin-top: var(--s8, 4rem); }
[data-stay-cat][hidden] { display: none !important; }


/* --- WordPress: restore img rules Elementor's frontend.css overrides --- */
.vfts-page .elementor img { max-width: 100% }
.vfts-page .elementor img { height: auto }
.vfts-page .elementor .hdr__logo img { height: 94px }
.vfts-page .elementor .hdr.is-solid .hdr__logo img, .vfts-page .elementor body.nav-solid .hdr__logo img { height: 72px }
.vfts-page .elementor .hero__media img { height: 100% }
.vfts-page .elementor .card__media img { height: 100% }
.vfts-page .elementor .pcard img { height: 100% }
.vfts-page .elementor .feature__media img { height: 100% }
.vfts-page .elementor .post__media img { height: 100% }
.vfts-page .elementor .ftr__brand img { height: 96px }
@media (max-width: 1024px) { .vfts-page .elementor .hdr__logo img { height: 78px } }
@media (max-width: 1024px) { .vfts-page .elementor .hdr.is-solid .hdr__logo img, .vfts-page .elementor body.nav-solid .hdr__logo img { height: 64px } }
@media (max-width: 767px) { .vfts-page .elementor .hdr__logo img { height: 64px } }
@media (max-width: 767px) { .vfts-page .elementor .hdr.is-solid .hdr__logo img, .vfts-page .elementor body.nav-solid .hdr__logo img { height: 54px } }
.vfts-page .elementor .gallery img { height: 100% }

/* --- WordPress: child selectors that must see through widget wrappers --- */
.nav__item:hover > .elementor-widget > .nav__link::after {transform: scaleX(1);}
.nav__item:hover > .elementor-widget > .nav__panel, .nav__item:focus-within > .elementor-widget > .nav__panel {opacity: 1; visibility: visible; transform: translateY(0);}
.drawer > .elementor-widget > a.drawer__top {display: block; padding: 1.05rem 0; font-size: 1.05rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-soft);}
.card__body > .elementor-widget > .t-card {margin-bottom: .1rem;}
.pcard > .elementor-widget > .badge {top: 1.25rem; left: 1.5rem;}
.js .hero__in > .elementor-widget > * {opacity: 0; transform: translateY(26px);}
.js .hero.is-ready .hero__in > .elementor-widget > * {opacity: 1; transform: none; transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);}
.js .hero.is-ready .hero__in > .elementor-widget:nth-child(1) > * {transition-delay: 480ms;}
.js .hero.is-ready .hero__in > .elementor-widget:nth-child(2) > * {transition-delay: 620ms;}
.js .hero.is-ready .hero__in > .elementor-widget:nth-child(3) > * {transition-delay: 740ms;}
.js .hero.is-ready .hero__in > .elementor-widget:nth-child(4) > * {transition-delay: 840ms;}
@media (max-width: 1024px) { .split--flip > .elementor-widget:first-child > * {order: 2;} }
@media (prefers-reduced-motion: reduce) { .js .hero__in > .elementor-widget > * {opacity: 1; transform: none;} }
.routeline > .elementor-widget > svg {width: 22px; height: 22px; color: var(--gold); flex: none;}
@media (max-width: 767px) { .routeline > .elementor-widget > svg {width: 16px; height: 16px;} }
