/* ==========================================================================
   Tanzania Untold — homepage stylesheet
   Design tokens: wiki/concepts/design-language.md + wiki/decisions/0007
   ========================================================================== */

:root {
  /* Brand — sampled from assets/brand/Tanzania Untold Logo Transparent.png */
  --forest-900: #1c241c;
  --forest-800: #253025;
  --forest-700: #2f3b2f;
  --forest-600: #3c4a3a;
  --forest-500: #4a5b48;
  --forest-300: #8c9a88;
  --bronze-400: #d6a173;
  --bronze-500: #c68b52;
  --bronze-600: #a6703c;
  --sand-200: #f5daae;
  --sand-100: #f1e7d6;
  --sand-050: #faf7f1;
  --clay-500: #b5543a;
  --ink-900: #1a1a19;
  --ink-600: #4a4a48;
  --ink-400: #7c7c78;
  --ink-200: #dedbd4;
  --line: #e4e0d8;
  --white: #ffffff;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --wrap: 1200px;
  --read: 720px;
  --gutter: 24px;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(28, 36, 28, .06), 0 2px 8px rgba(28, 36, 28, .05);
  --shadow-md: 0 4px 12px rgba(28, 36, 28, .08), 0 12px 32px rgba(28, 36, 28, .08);
  --shadow-lg: 0 12px 24px rgba(28, 36, 28, .1), 0 32px 64px rgba(28, 36, 28, .12);

  --ease: cubic-bezier(.2, .8, .2, 1);
  --t: 200ms;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-600);
  background: var(--white);
  font-weight: 400;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-800);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.125rem, 5.2vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.375rem); }
h3 { font-size: clamp(1.125rem, 1.8vw, 1.35rem); }
p { margin: 0; }

/* ---------- primitives ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.read { max-width: var(--read); }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--sand { background: var(--sand-050); }
.section--forest { background: var(--forest-700); color: rgba(255,255,255,.82); }
.section--forest h2, .section--forest h3 { color: var(--white); }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze-600);
  margin-bottom: 14px;
  display: block;
}

/* sticky header must not cover anchored section headings */
[id] { scroll-margin-top: 96px; }
.section--forest .eyebrow { color: var(--bronze-400); }

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head p { margin-top: 14px; color: var(--ink-600); }
.section--forest .section-head p { color: rgba(255,255,255,.72); }
.section-head--split {
  max-width: none; display: flex; gap: 32px;
  align-items: flex-end; justify-content: space-between; flex-wrap: wrap;
}
.section-head--split > div:first-child { max-width: 640px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius-btn);
  font-size: 15px; font-weight: 500; letter-spacing: .01em;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--bronze-500); color: var(--forest-900); font-weight: 600; }
.btn--primary:hover { background: var(--bronze-400); }
.btn--forest { background: var(--forest-700); color: var(--white); }
.btn--forest:hover { background: var(--forest-600); }
.btn--ghost { border: 1px solid var(--line); color: var(--forest-700); background: var(--white); }
.btn--ghost:hover { border-color: var(--forest-500); }
.btn--on-dark { border: 1px solid rgba(255,255,255,.34); color: var(--white); }
.btn--on-dark:hover { background: rgba(255,255,255,.1); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; color: var(--forest-700);
  border-bottom: 1px solid var(--bronze-500); padding-bottom: 3px;
}
.link-arrow:hover { color: var(--bronze-600); }
.link-arrow svg { transition: transform var(--t) var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; letter-spacing: .02em;
}
.pill--live { background: #e8f2e2; color: #33632a; }
.pill--request { background: var(--sand-100); color: #8a6524; }
.pill--closed { background: #eeeeec; color: var(--ink-400); }
.pill--badge { background: var(--forest-700); color: var(--white); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.card:hover .card__media img { transform: scale(1.03); }
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }

.meta {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 13.5px; color: var(--ink-400);
}
.meta span { display: inline-flex; align-items: center; gap: 6px; }
.meta svg { flex: none; opacity: .75; }

.price { display: flex; align-items: baseline; gap: 7px; }
.price__from { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.price__val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--forest-800); }
.price__unit { font-size: 13px; color: var(--ink-400); }

.stars { display: inline-flex; gap: 2px; color: var(--bronze-500); }

/* ---------- utility bar (Altezza-style light strip) ---------- */
.utility {
  background: #f6f5f2; color: var(--ink-600);
  border-bottom: 1px solid var(--line);
  font-size: 13.5px; position: relative; z-index: 60;
}
.utility .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 48px; padding: 6px var(--gutter);
}
.utility__proof { display: flex; align-items: center; gap: 8px; color: var(--ink-600); }
.utility__proof:hover { color: var(--forest-700); }
.utility__proof strong { color: var(--forest-800); font-weight: 600; }
.utility .stars { color: #f0a52c; }
.utility__right { display: flex; align-items: center; gap: 10px; }
.utility__phone {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--forest-800); font-weight: 500;
}
.utility__phone:hover { color: var(--bronze-600); }
.utility__phone svg { color: var(--ink-400); }

/* currency / country pills */
.picker { position: relative; display: flex; align-items: center; }
.picker select {
  appearance: none; cursor: pointer;
  background: #eceae5; border: 1px solid transparent; border-radius: var(--radius-btn);
  color: var(--forest-800); font-size: 13.5px; font-weight: 500;
  padding: 8px 30px 8px 12px;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.picker select:hover { background: #e3e0d9; }
.picker select:focus-visible { outline: 2px solid var(--bronze-500); outline-offset: 1px; }
.picker > svg { position: absolute; right: 9px; color: var(--ink-400); pointer-events: none; }

/* round flag chip — emoji scaled up and cropped to a circle */
.flag {
  width: 22px; height: 22px; flex: none; border-radius: 50%;
  overflow: hidden; display: grid; place-items: center;
  background: var(--sand-100); font-size: 17px; line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.flag em { font-style: normal; transform: scale(1.95); }

/* country / language picker (Altezza pattern) */
.lpicker { position: relative; }
.lpicker__btn {
  display: flex; align-items: center; gap: 9px;
  background: #eceae5; border-radius: var(--radius-btn);
  padding: 7px 11px; font-size: 13.5px; font-weight: 500; color: var(--forest-800);
  transition: background var(--t) var(--ease);
}
.lpicker__btn:hover { background: #e3e0d9; }
.lpicker__chev { color: var(--ink-400); transition: transform var(--t) var(--ease); }
.lpicker.is-open .lpicker__chev { transform: rotate(180deg); }

.lpicker__panel {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 10;
  width: min(360px, calc(100vw - 28px));
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  animation: chatIn 180ms var(--ease) both;
}
.lpicker__panel[hidden] { display: none !important; }
.lpicker__searchWrap {
  position: relative; padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.lpicker__searchWrap svg {
  position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
  color: var(--ink-400); pointer-events: none;
}
.lpicker__search {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 11px 42px 11px 16px; font-size: 14.5px; color: var(--ink-900);
}
.lpicker__search::placeholder { color: var(--ink-400); }
.lpicker__search:focus { outline: 2px solid var(--bronze-500); outline-offset: 1px; border-color: transparent; }

.lpicker__body { max-height: 60vh; overflow-y: auto; padding: 6px 0 8px; }
.lpicker__ttl {
  font-size: 13px; font-weight: 600; color: var(--forest-800);
  padding: 10px 16px 6px; font-family: var(--font-sans);
}
.lpicker__opt {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 9px 16px; font-size: 14.5px; color: var(--ink-900); text-align: left;
}
.lpicker__opt:hover { background: var(--sand-050); }
.lpicker__opt .lpicker__name { flex: 1; min-width: 0; }
.lpicker__opt.is-sel .lpicker__name { font-weight: 500; color: var(--forest-800); }
.lpicker__opt .lpicker__tick { color: var(--forest-700); opacity: 0; flex: none; }
.lpicker__opt.is-sel .lpicker__tick { opacity: 1; }

.lpicker__group { border-top: 1px solid var(--line); }
.lpicker__group:first-of-type { border-top: 0; }
.lpicker__head {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 16px; font-size: 14.5px; font-weight: 600;
  color: var(--forest-800);
}
.lpicker__head svg { color: var(--ink-400); transition: transform var(--t) var(--ease); }
.lpicker__group.is-open .lpicker__head svg { transform: rotate(180deg); }
.lpicker__list { display: none; padding-bottom: 6px; }
.lpicker__group.is-open .lpicker__list { display: block; }
.lpicker__empty { padding: 18px 16px; font-size: 13.5px; color: var(--ink-400); }

/* expanding search */
.usearch { display: flex; align-items: center; }
.usearch input {
  width: 0; padding: 0; border: 0; opacity: 0;
  background: var(--white); border-radius: var(--radius-btn);
  font-size: 13.5px; color: var(--ink-900); min-width: 0;
  transition: width 240ms var(--ease), opacity 180ms var(--ease), padding 240ms var(--ease);
}
.usearch.is-open input {
  width: 232px; padding: 8px 12px; opacity: 1;
  border: 1px solid var(--line); margin-right: 6px;
}
.usearch input:focus { outline: 2px solid var(--bronze-500); outline-offset: 1px; }
.usearch__btn {
  width: 34px; height: 34px; border-radius: var(--radius-btn); flex: none;
  display: grid; place-items: center; color: var(--forest-700);
  transition: background var(--t) var(--ease);
}
.usearch__btn:hover, .usearch.is-open .usearch__btn { background: #eceae5; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t) var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.header .wrap { display: flex; align-items: center; gap: 28px; min-height: 76px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-self: stretch; align-items: stretch; gap: 2px; margin-left: auto; }
.nav__item { display: flex; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 0 11px; font-size: 15px; font-weight: 500; color: var(--forest-800);
}
.nav__link::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 0;
  height: 2px; background: var(--bronze-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav__item:hover .nav__link, .nav__item:focus-within .nav__link { color: var(--bronze-600); }
.nav__item:hover .nav__link::after, .nav__item:focus-within .nav__link::after { transform: scaleX(1); }
.nav__link svg { opacity: .5; transition: transform var(--t) var(--ease); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }
.header__cta { display: flex; align-items: center; gap: 10px; flex: none; }
.icon-btn {
  width: 44px; height: 44px; border-radius: var(--radius-btn);
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--forest-700);
}
.icon-btn:hover { border-color: var(--forest-500); }

/* ---------- mega menu (Altezza pattern: list left, live preview right) ---------- */
.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  padding: 0 var(--gutter) 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
}
.nav__item:hover .mega, .nav__item:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
}
.mega__sheet {
  max-width: var(--wrap); margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line); border-top: 0;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 340px 1fr;
  overflow: hidden;
}

/* left: the section list */
.mega__nav {
  padding: 18px 16px; display: grid; align-content: start; gap: 2px;
  border-right: 1px solid var(--line); background: var(--white);
}
.mega__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-radius: 8px;
  font-size: 15px; color: var(--forest-800); line-height: 1.35;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.mega__row > span { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mega__row > svg { color: var(--ink-400); flex: none; transform: rotate(-90deg); }
.mega__row.is-on {
  background: #eef2e8; color: var(--forest-700); font-weight: 500;
}
.mega__row.is-on > svg { color: var(--forest-500); }
.mega__tag {
  font-style: normal; font-size: 11.5px; font-weight: 500;
  padding: 3px 9px; border-radius: var(--radius-pill);
  background: #e4ecd9; color: #4c6b33; white-space: nowrap;
}
.mega__tag--hot { background: #f6e2d6; color: var(--clay-500); }

/* right: the preview that swaps with the hovered row */
.mega__views { position: relative; padding: 28px 32px; min-height: 356px; }
.mega__view { display: grid; grid-template-columns: 1fr 300px; gap: 34px; align-items: start; }
.mega__view[hidden] { display: none; }
.mega__copy h3 { font-size: 1.65rem; margin-bottom: 14px; }
.mega__copy p { font-size: 14.5px; margin-bottom: 12px; max-width: 44ch; }
.mega__copy .btn { margin-top: 6px; }
.mega__view > img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 10px;
}
.burger { display: none; }

/* ---------- campaign bar (below the menu) ---------- */
.promo {
  background: linear-gradient(90deg, var(--forest-800) 0%, var(--forest-700) 55%, #3f5238 100%);
  color: rgba(255,255,255,.86); position: relative; z-index: 45;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.promo[hidden] { display: none; }
.promo .wrap {
  display: flex; align-items: center; gap: 18px;
  min-height: 58px; padding: 10px var(--gutter);
}
.promo__ico {
  width: 34px; height: 34px; flex: none; border-radius: 8px;
  background: rgba(198,139,82,.2); color: var(--bronze-400);
  display: grid; place-items: center;
}
.promo__text { flex: 1; min-width: 0; font-size: 14px; line-height: 1.45; }
.promo__text > b { color: var(--white); font-weight: 600; margin-right: 6px; }
.promo__code {
  color: var(--sand-200); font-weight: 600; letter-spacing: .04em;
  background: rgba(255,255,255,.1); padding: 1px 7px; border-radius: 4px;
}

.promo__timer { display: flex; align-items: center; gap: 3px; flex: none; }
.promo__unit {
  display: grid; justify-items: center; gap: 1px;
  background: rgba(0,0,0,.28); border-radius: 7px;
  padding: 5px 8px; min-width: 44px;
}
.promo__unit b {
  font-family: var(--font-display); font-variant-numeric: tabular-nums;
  font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1;
}
.promo__unit i {
  font-style: normal; font-size: 9.5px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.promo__sep { color: rgba(255,255,255,.3); font-weight: 600; margin-top: -8px; }
.promo__deadline { font-size: 12.5px; color: rgba(255,255,255,.55); flex: none; }
.promo__close {
  width: 30px; height: 30px; flex: none; border-radius: 6px;
  color: rgba(255,255,255,.6); display: grid; place-items: center;
}
.promo__close:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* ---------- hero ---------- */
.hero { position: relative; color: var(--white); isolation: isolate; min-height: min(80vh, 820px); display: grid; align-items: center; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--forest-900); }
.hero__bg video, .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__inner {
  padding: 104px var(--gutter) 116px;
  display: grid; grid-template-columns: minmax(0, 1fr) 540px;
  gap: 56px; align-items: center;
}
/* No full-frame dim — the footage keeps its colour. Legibility comes from
   text shadows plus a gradient that only reaches across the left third at
   full height, so it has no visible box edges. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg,
    rgba(14,20,14,.6) 0%, rgba(14,20,14,.42) 26%,
    rgba(14,20,14,.16) 44%, rgba(14,20,14,0) 58%);
}
.hero__copy { text-shadow: 0 1px 2px rgba(12,18,12,.5), 0 2px 18px rgba(12,18,12,.45); }
.hero h1 { color: var(--white); max-width: 15ch; }
.hero__lead { margin-top: 18px; max-width: 46ch; font-size: 18px; color: rgba(255,255,255,.95); }
.hero .eyebrow { color: var(--sand-200); }
.hero__proof {
  margin-top: 26px; display: grid; gap: 10px;
  font-size: 14.5px; color: rgba(255,255,255,.94);
}
.hero__proof span { display: inline-flex; align-items: center; gap: 10px; }
.hero__proof svg { color: var(--sand-200); flex: none; }

/* ---------- hero: watch button + cinema mode ---------- */
.hero__watch {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 20px 11px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.4); background: rgba(20,26,20,.34);
  backdrop-filter: blur(4px);
  color: var(--white); font-size: 14.5px; font-weight: 500;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.hero__watch:hover { background: rgba(20,26,20,.55); border-color: var(--white); }
.hero__watch:focus-visible { outline: 2px solid var(--sand-200); outline-offset: 2px; }
.hero__watchIco {
  width: 28px; height: 28px; flex: none; border-radius: 50%;
  background: var(--bronze-500); color: var(--forest-900);
  display: grid; place-items: center; padding-left: 2px;
}

/* cinema mode: everything laid over the film fades out, the film stays */
.hero__copy, .hero .planner, .ta-badge {
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
.hero::after { transition: opacity 400ms var(--ease); }
.hero.is-cinema::after { opacity: 0; }
.hero.is-cinema .hero__copy { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.hero.is-cinema .planner { opacity: 0; transform: translateY(14px); pointer-events: none; }
.hero.is-cinema .ta-badge { opacity: 0; pointer-events: none; }

.hero__cinema {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 4; display: flex; align-items: center; gap: 16px;
  padding: 12px 14px 12px 20px; border-radius: var(--radius-pill);
  background: rgba(14,20,14,.62); backdrop-filter: blur(8px);
  animation: fadeIn 500ms var(--ease) both;
}
.hero__cinema[hidden] { display: none !important; }
.hero__cinemaNote { font-size: 13px; color: rgba(255,255,255,.8); white-space: nowrap; }
.hero__cinemaNote kbd {
  font-family: var(--font-sans); font-size: 11.5px; padding: 2px 6px;
  border: 1px solid rgba(255,255,255,.35); border-radius: 4px; color: var(--white);
}

/* square planner card, right of the headline */
.planner {
  background: rgba(255,255,255,.97); color: var(--ink-600);
  border-radius: var(--radius-card); box-shadow: var(--shadow-lg);
  padding: 24px; display: grid; gap: 14px; align-content: center;
  /* square in practice (the hero grid column is the same 540px) but min-height
     lets the card GROW instead of pushing content out over the video */
  min-height: 540px;
}
.planner__head {
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.planner__head strong {
  display: block; font-family: var(--font-display);
  font-size: 1.42rem; font-weight: 700; color: var(--forest-800);
  letter-spacing: -.015em;
}
.planner__head span { font-size: 12.5px; color: var(--ink-400); }
.planner .btn { height: 48px; }

.pl-block { display: grid; gap: 7px; }
.pl-label {
  font-size: 11px; font-weight: 500; letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-400);
}

/* trip type — segmented chips */
.pl-seg { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.pl-chip {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 11px; border-radius: var(--radius-btn);
  border: 1px solid var(--line); background: var(--white);
  font-size: 13.5px; color: var(--forest-700); text-align: left;
  transition: all var(--t) var(--ease);
}
.pl-chip svg { color: var(--ink-400); flex: none; transition: color var(--t) var(--ease); }
.pl-chip:hover { border-color: var(--forest-500); }
.pl-chip.is-on {
  background: var(--forest-700); border-color: var(--forest-700);
  color: var(--white); font-weight: 500;
}
.pl-chip.is-on svg { color: var(--bronze-400); }

/* travellers — steppers */
.pl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pl-step {
  border: 1px solid var(--line); border-radius: var(--radius-btn);
  padding: 7px 9px 8px; display: grid; gap: 2px; background: var(--white);
}
.pl-step > span { font-size: 11.5px; color: var(--ink-400); }
.pl-step__ctl { display: flex; align-items: center; justify-content: space-between; }
.pl-step__ctl button {
  width: 26px; height: 26px; border-radius: 6px; flex: none;
  border: 1px solid var(--line); color: var(--forest-700);
  font-size: 15px; line-height: 1; display: grid; place-items: center;
  transition: all var(--t) var(--ease);
}
.pl-step__ctl button:hover:not(:disabled) { background: var(--forest-700); border-color: var(--forest-700); color: var(--white); }
.pl-step__ctl button:disabled { opacity: .35; cursor: not-allowed; }
.pl-step__ctl output {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; color: var(--forest-800); min-width: 20px; text-align: center;
}

/* month select */
.pl-select { position: relative; display: flex; align-items: center; }
.pl-select > svg:first-child { position: absolute; left: 12px; color: var(--ink-400); pointer-events: none; }
.pl-select__chev { position: absolute; right: 11px; color: var(--ink-400); pointer-events: none; }
.pl-select select {
  appearance: none; width: 100%;
  border: 1px solid var(--line); border-radius: var(--radius-btn);
  padding: 11px 36px 11px 38px; font-size: 14.5px;
  background: var(--white); color: var(--ink-900); cursor: pointer;
}
.pl-chip:focus-visible, .pl-select select:focus-visible, .pl-step__ctl button:focus-visible {
  outline: 2px solid var(--bronze-500); outline-offset: 1px;
}

.pl-feedback {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 12.5px; color: var(--ink-400); min-height: 18px; text-align: center;
}
.pl-feedback b { color: var(--forest-700); font-weight: 500; }
.pl-feedback i {
  width: 7px; height: 7px; border-radius: 50%; background: #4a9e3a; flex: none;
}
.pl-feedback.is-request i { background: var(--bronze-500); }

/* generic field (newsletter) */
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field input {
  border: 1px solid var(--line); border-radius: var(--radius-btn);
  padding: 13px 14px; font-size: 15px; background: var(--white); color: var(--ink-900); width: 100%;
}
.field input:focus { outline: 2px solid var(--bronze-500); outline-offset: 1px; border-color: transparent; }

/* Tripadvisor badge — centred, straddling the bottom edge of the hero */
.ta-badge {
  position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%);
  z-index: 3; display: flex; align-items: center; gap: 16px;
  background: var(--white); color: var(--ink-600);
  border-radius: var(--radius-pill); box-shadow: var(--shadow-lg);
  padding: 12px 22px 12px 16px; white-space: nowrap;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.ta-badge:hover { box-shadow: var(--shadow-md), 0 0 0 1px var(--line); }
.ta-badge__owl { width: 40px; height: 40px; flex: none; }
.ta-badge__text b {
  display: block; font-family: var(--font-sans); font-size: 15px;
  font-weight: 600; color: var(--ink-900); letter-spacing: -.01em;
}
.ta-badge__meta { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-400); }
.ta-dots { display: inline-flex; gap: 3px; }
.ta-dots i { width: 11px; height: 11px; border-radius: 50%; background: #34E0A1; display: block; }
.ta-badge__cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding-left: 18px; margin-left: 2px; border-left: 1px solid var(--line);
  font-size: 13.5px; font-weight: 500; color: var(--forest-700);
}
.ta-badge:hover .ta-badge__cta { color: var(--bronze-600); }

/* slim horizontal nudge (under the gateway cards) */
.callstrip {
  margin-top: 24px; display: flex; align-items: center; gap: 18px;
  background: var(--sand-050); border: 1px solid var(--line);
  border-left: 3px solid var(--bronze-500);
  border-radius: var(--radius-card); padding: 14px 20px;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.callstrip:hover { background: var(--white); border-color: var(--bronze-400); border-left-color: var(--bronze-600); }
.callstrip__faces { display: flex; flex: none; }
.callstrip__faces img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--white); margin-left: -12px;
}
.callstrip__faces img:first-child { margin-left: 0; }
.callstrip__text { display: grid; gap: 2px; min-width: 0; flex: 1; }
.callstrip__text b {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; color: var(--forest-800);
}
.callstrip__text span { font-size: 14px; color: var(--ink-400); }
.callstrip__cta {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  font-size: 14.5px; font-weight: 500; color: var(--bronze-600);
}
.callstrip:hover .callstrip__cta svg { transform: translateX(3px); }
.callstrip__cta svg { transition: transform var(--t) var(--ease); }

/* ---------- free expert call band ---------- */
.callband-wrap { padding: 72px 0; }
.callband {
  display: grid; grid-template-columns: auto 1fr 260px; gap: 36px; align-items: center;
  background: var(--sand-050); border: 1px solid var(--line);
  border-left: 4px solid var(--bronze-500);
  border-radius: var(--radius-card); padding: 36px 40px;
}
.callband__faces { display: flex; flex: none; }
.callband__faces img {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--white); box-shadow: var(--shadow-sm); margin-left: -22px;
}
.callband__faces img:first-child { margin-left: 0; }
.callband__body h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.callband__body p { margin-top: 10px; font-size: 15px; max-width: 62ch; }
.callband__list { display: grid; gap: 7px; margin-top: 16px; font-size: 14px; color: var(--ink-400); }
.callband__list li { display: flex; align-items: center; gap: 9px; }
.callband__list svg { color: var(--forest-500); flex: none; }
.callband__cta { display: grid; gap: 10px; }
.callband__note { font-size: 12.5px; color: var(--ink-400); text-align: center; margin-top: 2px; }
.callband__note b { color: var(--forest-600); font-weight: 500; }

/* ---------- trust strip ---------- */
.trust { border-bottom: 1px solid var(--line); }
.trust .wrap {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; padding: 58px var(--gutter) 26px;
}
.trust__item { display: flex; flex-direction: column; gap: 2px; }
.trust__num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--forest-700); }
.trust__lbl { font-size: 13px; color: var(--ink-400); line-height: 1.35; }

/* ---------- gateway ---------- */
.gateway { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.gate {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  min-height: 470px; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white); isolation: isolate;
}
.gate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 500ms var(--ease); }
/* motion layer on a gateway card: sits over the still, fades in once it plays */
.gate__vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2; opacity: 0;
  transition: opacity 600ms var(--ease);
}
.gate.is-live .gate__vid { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .gate__vid { display: none; } }
.gate::after {
  /* the cards carry live copy over bright water and snow, so the scrim starts
     earlier and finishes darker than a decorative overlay would need */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,36,28,0) 18%, rgba(28,36,28,.55) 52%, rgba(20,26,20,.93) 100%);
}
.gate.is-live::after {
  /* moving footage is brighter and busier than the still it replaces */
  background: linear-gradient(180deg, rgba(28,36,28,.22) 0%, rgba(28,36,28,.62) 45%, rgba(18,24,18,.95) 100%);
}
.gate:hover img { transform: scale(1.04); }
.gate__body { padding: 26px; }
.gate__body h3 { color: var(--white); font-size: 1.6rem; }
.gate__body p { margin-top: 8px; font-size: 14.5px; color: rgba(255,255,255,.84); }
.gate__body .link-arrow { color: var(--white); border-color: var(--sand-200); margin-top: 16px; }
.gate__count {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  background: rgba(28,36,28,.6); backdrop-filter: blur(4px);
  color: var(--white); font-size: 12px; padding: 6px 11px; border-radius: var(--radius-pill);
}
/* live availability strip — values come from the availability engine in
   production, never from a hard-coded string; see wiki/concepts/booking-flow.md */
.gate__when {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin: 0 26px 22px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.22);
  font-size: 13px; color: rgba(255,255,255,.86);
}
.gate__when svg { color: var(--sand-200); flex: none; }
.gate__when b { color: var(--white); font-weight: 600; }
.gate__when + .gate__when { margin-top: -8px; border-top: 0; padding-top: 0; }
.seats { color: var(--sand-200); }
.seats--low { color: #f3c98b; font-weight: 600; }
/* time-boxed offer — a corner badge, not a row in the bottom stack. Sitting
   over the top-left of the photo keeps the Zanzibar card's copy on the same
   baseline as its two neighbours and covers ~40px of image instead of ~90px. */
.gate__offer {
  position: absolute; top: 16px; left: 16px; right: auto; z-index: 1;
  /* two short single-line rows: the badge must stay clear of the count pill
     in the opposite corner, so the copy is kept shorter than it wraps */
  display: flex; flex-direction: column; gap: 2px;
  padding: 7px 11px 8px; border-radius: 10px;
  background: rgba(28, 36, 28, .62); backdrop-filter: blur(4px);
  border: 1px solid rgba(243, 201, 139, .45);
  font-size: 12px; line-height: 1.35; color: rgba(255,255,255,.9);
}
.gate__offer[hidden] { display: none; }
.gate__offer-line { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.gate__offer-line svg { color: #f3c98b; flex: none; }
.gate__offer-line b { color: var(--white); font-weight: 700; }
.gate__offer-line--fine { font-size: 11.5px; color: rgba(255,255,255,.8); padding-left: 19px; }
.gate__offer-line--fine b { color: #f3c98b; }
.gate__clock { font-variant-numeric: tabular-nums; font-weight: 600; color: #f3c98b; }


/* ---------- filter chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  padding: 9px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); font-size: 14px; color: var(--forest-700);
  background: var(--white); transition: all var(--t) var(--ease);
}
.chip:hover { border-color: var(--forest-500); }
.chip.is-active { background: var(--forest-700); border-color: var(--forest-700); color: var(--white); }
.chips__sep {
  width: 1px; align-self: stretch; margin: 4px 6px;
  background: var(--line); flex: none;
}
.chips__empty {
  margin-top: 22px; padding: 18px 20px; text-align: center;
  background: var(--white); border: 1px dashed var(--line);
  border-radius: var(--radius-card); font-size: 14.5px; color: var(--ink-400);
}
.chips__empty[hidden] { display: none; }
.chips__empty a { color: var(--bronze-600); font-weight: 500; border-bottom: 1px solid currentColor; }

/* ---------- tour card extras ---------- */
.tour__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.tour__rating { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--ink-400); flex: none; }
.tour__foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.tour__parks { font-size: 13.5px; color: var(--ink-400); }
.tour__parks b { color: var(--forest-600); font-weight: 500; }

/* ---------- USP band ---------- */
.usp { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.usp__list { display: grid; gap: 24px; margin-top: 28px; }
.usp__row { display: flex; gap: 16px; }
.usp__ico {
  flex: none; width: 44px; height: 44px; border-radius: 10px;
  background: rgba(198,139,82,.16); color: var(--bronze-400);
  display: grid; place-items: center;
}
.usp__row h3 { font-size: 1.1rem; margin-bottom: 4px; }
.usp__row p { font-size: 14.5px; color: rgba(255,255,255,.7); }

.availability {
  background: var(--white); border-radius: var(--radius-card);
  padding: 22px; box-shadow: var(--shadow-lg); color: var(--ink-600);
}
.availability__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.availability__head strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-800); }
.availability__sub { font-size: 13px; color: var(--ink-400); margin-bottom: 16px; }
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal__dow { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-400); text-align: center; padding-bottom: 4px; }
.cal__day {
  aspect-ratio: 1; border-radius: 7px; display: grid; place-items: center;
  font-size: 13.5px; background: var(--sand-050); color: var(--ink-400); position: relative;
}
.cal__day--live { background: #e8f2e2; color: #2f5c27; font-weight: 500; }
.cal__day--req { background: var(--sand-100); color: #8a6524; }
.cal__day--sel { background: var(--forest-700); color: var(--white); font-weight: 600; }
.cal__legend { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 16px; font-size: 12.5px; color: var(--ink-400); }
.cal__legend span { display: inline-flex; align-items: center; gap: 7px; }
.cal__key { width: 11px; height: 11px; border-radius: 3px; }
.availability__foot {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

/* ---------- day trips ---------- */
.daytrips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dtrip {
  display: flex; gap: 16px; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 12px;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.dtrip:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dtrip__media {
  width: 104px; flex: none; aspect-ratio: 1; border-radius: 8px;
  overflow: hidden; background: var(--sand-100);
}
.dtrip__media img { width: 100%; height: 100%; object-fit: cover; }
.dtrip__body { display: grid; gap: 7px; min-width: 0; flex: 1; }
.dtrip__body h3 { font-size: 1.05rem; }
.dtrip__body .meta { font-size: 12.5px; gap: 4px 12px; }
.dtrip__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.dtrip__foot .price b {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; color: var(--forest-800);
}
.dtrip__foot .link-arrow { font-size: 13.5px; border-bottom: 0; padding: 0; }

/* ---------- reels ----------
   Vertical clips. The <video> carries no src until the card is hovered or
   opened, so the rail costs five posters (~250 KB) and nothing else.   */
.reels-wrap { background: var(--white); }
.reels { position: relative; }
.reels__rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 232px; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: none;
}
.reels__rail::-webkit-scrollbar { display: none; }
.reel { scroll-snap-align: start; }
.reel__btn {
  position: relative; display: block; width: 100%; aspect-ratio: 9 / 16;
  border-radius: 14px; overflow: hidden; background: var(--forest-900);
  text-align: left; isolation: isolate;
}
.reel__poster, .reel__vid {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.reel__vid { opacity: 0; transition: opacity var(--t) var(--ease); }
.reel__btn.is-playing .reel__vid { opacity: 1; }
.reel__btn::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,26,20,0) 45%, rgba(20,26,20,.72) 100%);
}
.reel__dur, .reel__play {
  position: absolute; z-index: 2; border-radius: var(--radius-pill);
  background: rgba(20, 26, 20, .55); color: var(--white);
  backdrop-filter: blur(4px);
}
.reel__dur { top: 10px; right: 10px; padding: 3px 9px; font-size: 11.5px; font-weight: 500; }
.reel__play {
  top: 10px; left: 10px; width: 32px; height: 32px;
  display: grid; place-items: center;
}
.reel__cap {
  position: absolute; z-index: 2; left: 14px; right: 14px; bottom: 13px;
  display: grid; gap: 3px; color: var(--white);
}
.reel__cap b { font-size: 14.5px; line-height: 1.25; }
.reel__cap span {
  font-size: 12px; color: rgba(255,255,255,.78);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.reel__btn:hover { transform: translateY(-3px); }
.reel__btn { transition: transform var(--t) var(--ease); }
.reel__btn:focus-visible { outline: 2px solid var(--bronze-500); outline-offset: 3px; }

.reels__nav {
  position: absolute; top: 50%; z-index: 3; width: 42px; height: 42px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(28,36,28,.14); transform: translateY(-50%);
  color: var(--forest-800);
}
.reels__nav--prev { left: -18px; }
.reels__nav--prev svg { transform: rotate(180deg); }
.reels__nav--next { right: -18px; }
.reels__nav[hidden] { display: none; }
.reels__foot { margin-top: 16px; font-size: 13px; color: var(--ink-400); }
.reels__foot a { color: var(--bronze-600); border-bottom: 1px solid currentColor; }

/* full-size player */
.rplay { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 24px; }
.rplay[hidden] { display: none; }
.rplay__backdrop { position: absolute; inset: 0; background: rgba(12, 16, 12, .82); }
.rplay__stage {
  position: relative; display: grid; gap: 12px;
  width: min(420px, 100%);
}
.rplay__vid {
  width: 100%; aspect-ratio: 9 / 16; max-height: 78vh;
  background: #000; border-radius: 16px; object-fit: cover;
}
.rplay__bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.rplay__cap { font-size: 13.5px; color: rgba(255,255,255,.9); }
.rplay__acts { display: flex; gap: 6px; }
.rplay__acts .icon-btn { border-color: rgba(255,255,255,.35); color: var(--white); background: transparent; }
.rplay__acts .icon-btn:hover { background: rgba(255,255,255,.12); }

/* ---------- northern circuit map ----------
   Geometry is real: park outlines are OpenStreetMap boundaries projected into
   the viewBox, so the scale bar tells the truth. Colours are ours.       */
.tzmap-wrap { background: var(--sand-050); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tzmap { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 34px; align-items: start; }
.tzmap__stage { position: relative; }
.tzmap__svg { width: 100%; height: auto; display: block; }

.m-kenya { fill: #ece3d2; }
.m-border { fill: none; stroke: var(--ink-400); stroke-width: 2; stroke-dasharray: 11 8; opacity: .5; }
.m-country {
  font-family: var(--font-sans); font-size: 21px; font-weight: 500;
  letter-spacing: .3em; fill: var(--ink-400); opacity: .75;
}
.m-park { cursor: pointer; }
.m-park__fill {
  /* light enough that the dark park labels stay legible on top of it */
  fill: #8ba077; stroke: var(--forest-600); stroke-width: 1.5;
  transition: fill var(--t) var(--ease), opacity var(--t) var(--ease);
}
.m-park--nca .m-park__fill { fill: #bdb489; }
.m-park--crater .m-park__fill { fill: #a39a6b; stroke-dasharray: 4 3; }
.m-park--maswa .m-park__fill { fill: #a9b795; opacity: .7; }
.m-park:hover .m-park__fill,
.m-park.is-on .m-park__fill { fill: var(--bronze-400); stroke: var(--bronze-600); }
.m-park:focus-visible { outline: none; }
.m-park:focus-visible .m-park__fill { fill: var(--bronze-500); stroke: var(--forest-900); stroke-width: 3.5; }
/* invisible, finger-sized target for the crater, which is only 41 px wide */
.m-hit { fill: transparent; }
.tzmap.is-picking .m-park:not(.is-on) .m-park__fill { opacity: .45; }

.m-lake { fill: #9cc9df; stroke: #79aec9; stroke-width: 1; }
.m-road {
  fill: none; stroke: var(--bronze-500); stroke-width: 4.5;
  stroke-linecap: round; stroke-dasharray: 15 10;
}
.m-road--spur { stroke-width: 3; opacity: .6; stroke-dasharray: 7 8; }
.m-dot { fill: var(--forest-900); }
.m-town { font-family: var(--font-sans); font-size: 15px; font-weight: 500; fill: var(--forest-900); }
.m-peak { fill: #7a6647; }
.m-peaklbl { font-family: var(--font-sans); font-size: 13px; font-weight: 500; fill: var(--forest-900); }
.m-alt { fill: var(--ink-400); font-weight: 400; }
.m-air path { stroke: #7a6647; stroke-width: 2.2; }
.m-lbl {
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  letter-spacing: .12em; fill: var(--forest-800); pointer-events: none;
}
.m-lbl--small { font-size: 12px; opacity: .85; }
.m-lbl--water { font-size: 13px; font-weight: 400; font-style: italic; letter-spacing: 0; fill: #3f7f9c; }
.m-lbl--hint { font-size: 12px; font-weight: 400; font-style: italic; letter-spacing: 0; fill: var(--ink-400); }
.m-scale line { stroke: var(--forest-900); stroke-width: 2; }
.m-scale text, .m-north text { font-family: var(--font-sans); font-size: 12px; font-weight: 500; fill: var(--forest-900); }
.m-north path { fill: var(--forest-900); }
.m-inset__bg { fill: var(--white); stroke: var(--line); opacity: .95; }
.m-inset__land { fill: #c7d1b5; stroke: #8ca173; stroke-width: 1; }
.m-inset__frame { fill: rgba(198, 143, 85, .18); stroke: var(--bronze-500); stroke-width: 2; }
.m-inset__lbl { font-family: var(--font-sans); font-size: 11px; font-style: italic; fill: var(--ink-600); }
.m-inset__cap { font-family: var(--font-sans); font-size: 11px; font-weight: 500; fill: var(--ink-400); }

.tzmap__legend {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 10px;
  font-size: 12.5px; color: var(--ink-400);
}
.tzmap__legend li { display: inline-flex; align-items: center; gap: 8px; }
.lg { width: 16px; height: 10px; border-radius: 2px; flex: none; }
.lg--park { background: #8ba077; border: 1px solid var(--forest-600); }
.lg--nca { background: #bdb489; }
.lg--road { height: 0; border-top: 3px dashed var(--bronze-500); border-radius: 0; }
.lg--air {
  height: 12px; border-radius: 0;
  background: linear-gradient(var(--ink-600), var(--ink-600)) center/12px 2px no-repeat,
              linear-gradient(var(--ink-600), var(--ink-600)) center/2px 12px no-repeat;
}

.tzmap__panel { position: sticky; top: 96px; display: grid; gap: 14px; }
.mapcard {
  padding: 24px; background: var(--white); min-height: 430px;
  border: 1px solid var(--line); border-radius: var(--radius-card);
}
.mapcard__kicker {
  font-size: 11.5px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--bronze-600);
}
.mapcard__title { margin: 8px 0 10px; font-size: 1.32rem; line-height: 1.2; }
.mapcard__body { font-size: 14.5px; color: var(--ink-600); }
.mapcard__facts {
  display: grid; gap: 1px; margin-top: 16px; background: var(--line);
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.mapcard__facts li { display: flex; justify-content: space-between; gap: 14px; padding: 10px 14px; background: var(--sand-050); }
.mapcard__facts span { font-size: 12.5px; color: var(--ink-400); }
.mapcard__facts b { font-size: 13.5px; color: var(--forest-800); text-align: right; }
.mapcard__hint { margin-top: 14px; font-size: 12.5px; color: var(--ink-400); }
.tzmap__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.tzmap__foot { margin-top: 22px; font-size: 12.5px; color: var(--ink-400); max-width: 80ch; }
.tzmap__foot a { color: var(--bronze-600); border-bottom: 1px solid currentColor; }

/* ---------- destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  aspect-ratio: 3 / 4; display: flex; align-items: flex-end; color: var(--white); isolation: isolate;
}
.dest--wide { grid-column: span 2; aspect-ratio: 3 / 2; }
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 500ms var(--ease); }
.dest::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,36,28,0) 35%, rgba(28,36,28,.82) 100%);
}
.dest:hover img { transform: scale(1.05); }
.dest__body { padding: 20px; }
.dest__body h3 { color: var(--white); font-size: 1.25rem; }
.dest__body p { font-size: 13.5px; color: rgba(255,255,255,.8); margin-top: 5px; }
.dest__tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.92); color: var(--forest-800);
  padding: 5px 10px; border-radius: var(--radius-pill); font-weight: 500;
}

/* ---------- stays ---------- */
.stay__rooms { display: grid; gap: 8px; font-size: 13.5px; }
.stay__room { display: flex; justify-content: space-between; gap: 12px; padding: 9px 12px; background: var(--sand-050); border-radius: 8px; }
.stay__room b { color: var(--forest-700); font-weight: 500; }
.stay__room span { color: var(--ink-400); }
.amen { display: flex; flex-wrap: wrap; gap: 6px; }
.amen span { font-size: 12px; padding: 4px 9px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--ink-400); }

/* ---------- season explorer ---------- */
.months { display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px; }
.month {
  padding: 14px 4px; border-radius: 8px; text-align: center;
  border: 1px solid var(--line); background: var(--white);
  font-size: 13px; transition: all var(--t) var(--ease);
}
.month b { display: block; font-weight: 500; color: var(--forest-800); }
.month i { display: block; font-style: normal; font-size: 11px; color: var(--ink-400); margin-top: 3px; }
.month:hover { border-color: var(--forest-500); }
.month.is-active { background: var(--forest-700); border-color: var(--forest-700); }
.month.is-active b, .month.is-active i { color: var(--white); }
.season-panel {
  margin-top: 22px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 26px;
  display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 28px;
}
.season-panel h3 { margin-bottom: 8px; }
.season-panel dl { display: grid; gap: 12px; margin: 0; }
.season-panel dt { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.season-panel dd { margin: 3px 0 0; font-size: 14.5px; color: var(--forest-700); }
.bar { height: 6px; border-radius: 3px; background: var(--sand-100); overflow: hidden; margin-top: 7px; }
.bar i { display: block; height: 100%; background: var(--bronze-500); border-radius: 3px; }

/* ---------- itinerary ---------- */
.itin { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
.tiers { display: flex; gap: 6px; padding: 5px; background: var(--sand-050); border-radius: var(--radius-pill); margin-bottom: 22px; width: fit-content; }
.tier { padding: 9px 20px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 500; color: var(--ink-400); }
.tier.is-active { background: var(--white); color: var(--forest-800); box-shadow: var(--shadow-sm); }
.days { border-left: 2px solid var(--line); margin-left: 8px; }
.day { position: relative; padding: 0 0 4px 28px; }
.day::before {
  content: ""; position: absolute; left: -7px; top: 22px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--bronze-500);
}
.day__head {
  width: 100%; text-align: left; display: flex; align-items: center; gap: 14px;
  padding: 18px 0;
}
.day__n {
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bronze-600); flex: none; width: 74px; font-weight: 500; white-space: nowrap;
}
.day__t { font-family: var(--font-display); font-size: 1.08rem; color: var(--forest-800); font-weight: 600; flex: 1; }
.day__chev { transition: transform var(--t) var(--ease); color: var(--ink-400); flex: none; }
.day.is-open .day__chev { transform: rotate(180deg); }
.day__panel { display: none; padding: 0 0 22px; }
.day.is-open .day__panel { display: block; }
.day__panel p { font-size: 14.5px; }
.lodge {
  margin-top: 14px; display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; background: var(--sand-050); border-radius: 8px;
}
.lodge img { width: 56px; height: 56px; border-radius: 6px; object-fit: cover; flex: none; }
.lodge__meta { flex: 1; min-width: 0; }
.lodge__meta b { display: block; font-size: 14.5px; color: var(--forest-800); font-weight: 500; }
.lodge__meta span { font-size: 12.5px; color: var(--ink-400); }
.lodge__price { font-size: 13px; color: var(--ink-400); text-align: right; flex: none; }

.quote-card {
  position: sticky; top: 100px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 24px; box-shadow: var(--shadow-md);
}
.quote-card__price { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 2px; }
.quote-card__price b { font-family: var(--font-display); font-size: 2.1rem; color: var(--forest-800); font-weight: 600; }
.breakdown { display: grid; gap: 9px; margin: 18px 0; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 14px; }
.breakdown div { display: flex; justify-content: space-between; gap: 12px; }
.breakdown div span:last-child { color: var(--forest-700); font-weight: 500; }
.breakdown .is-total { padding-top: 9px; border-top: 1px dashed var(--line); }
.breakdown .is-total span { color: var(--forest-800); font-weight: 600; }
.quote-card__note { font-size: 12.5px; color: var(--ink-400); margin-top: 12px; text-align: center; }

/* ---------- why us ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 40px; }
.why__item { display: flex; gap: 16px; }
.why__ico {
  flex: none; width: 42px; height: 42px; border-radius: 10px;
  background: var(--sand-100); color: var(--bronze-600); display: grid; place-items: center;
}
.why__item h3 { font-size: 1.08rem; margin-bottom: 5px; }
.why__item p { font-size: 14.5px; }

/* ---------- reviews ---------- */
.reviews-head { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
.score { display: flex; align-items: center; gap: 14px; }
.score__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--forest-800); line-height: 1; }
.score__meta { font-size: 13.5px; color: var(--ink-400); }
.slider { position: relative; }
.slider__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.slider__track::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 clamp(280px, 32%, 380px); scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review__body { font-size: 15px; }
.review__ttl { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-800); font-weight: 600; }
.review__foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-400); display: flex; justify-content: space-between; gap: 10px; }
.slider__nav { display: flex; gap: 8px; margin-top: 24px; }

/* ---------- migration band ---------- */
.migration { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-card); overflow: hidden; }
.migration__media { position: relative; min-height: 420px; }
.migration__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.migration__body { background: var(--forest-800); color: rgba(255,255,255,.78); padding: 48px; }
.migration__body h2 { color: var(--white); }
.timeline { margin-top: 26px; display: grid; gap: 2px; }
.timeline__row { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14.5px; }
.timeline__row b { color: var(--sand-200); font-weight: 500; font-size: 13px; letter-spacing: .04em; }
.timeline__row.is-now { background: rgba(198,139,82,.14); border-radius: 6px; padding: 11px 12px; margin: 0 -12px; }

/* ---------- guides ---------- */
.guide__author { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-400); }
.guide__author img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.guide__cat { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--bronze-600); font-weight: 500; }

/* ---------- expert ---------- */
.expert {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: var(--sand-050); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 44px;
}
.expert__faces { display: flex; }
.expert__faces img {
  width: 92px; height: 92px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--white); margin-left: -18px; box-shadow: var(--shadow-sm);
}
.expert__faces img:first-child { margin-left: 0; }
.expert__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.expert__hours { font-size: 13px; color: var(--ink-400); margin-top: 16px; display: flex; align-items: center; gap: 8px; }

/* ---------- quiz band ---------- */
.quiz { background: var(--forest-700); border-radius: var(--radius-card); padding: 52px; color: rgba(255,255,255,.8); }
.quiz h2 { color: var(--white); }
.quiz__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 32px 0; }
.quiz__step { padding: 18px 16px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.quiz__step b { display: block; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--bronze-400); margin-bottom: 7px; }
.quiz__step span { font-size: 14.5px; color: var(--white); }

/* ---------- newsletter ---------- */
.news { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.news__form { display: flex; gap: 10px; margin-top: 22px; }
.news__form input { flex: 1; }
.news__note { font-size: 12.5px; color: var(--ink-400); margin-top: 12px; }
.magnet { display: flex; gap: 18px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 22px; }
.magnet__ico { flex: none; width: 54px; height: 54px; border-radius: 10px; background: var(--sand-100); color: var(--bronze-600); display: grid; place-items: center; }
.magnet h3 { font-size: 1.05rem; margin-bottom: 4px; }
.magnet p { font-size: 14px; }

/* ---------- footer ---------- */
.footer { background: var(--forest-900); color: rgba(255,255,255,.62); padding: 72px 0 0; font-size: 14.5px; }
.footer h4 {
  color: var(--white); font-family: var(--font-sans); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px;
}
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer ul { display: grid; gap: 10px; }
.footer a:hover { color: var(--white); }
.footer__brand img { height: 104px; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand p { margin-top: 16px; max-width: 34ch; }
.footer__contact { display: grid; gap: 8px; margin-top: 20px; }
.footer__contact a { display: flex; align-items: center; gap: 9px; color: var(--white); }
.footer__badges {
  display: flex; flex-wrap: wrap; gap: 10px; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.badge {
  font-size: 12px; padding: 7px 13px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.7);
}
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
  padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px;
}
.footer__legal ul { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- mobile sticky bar ---------- */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  background: rgba(255,255,255,.98); border-top: 1px solid var(--line);
  padding: 10px 14px; gap: 10px; box-shadow: 0 -4px 20px rgba(28,36,28,.08);
}
.mobile-bar .btn { flex: 1; }

/* ---------- mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 70; background: var(--white);
  display: none; flex-direction: column; overflow-y: auto;
}
.drawer.is-open { display: flex; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 16px var(--gutter); border-bottom: 1px solid var(--line); }
.drawer__head img { height: 38px; }
.drawer nav { padding: 12px var(--gutter) 32px; }
.drawer nav a {
  display: block; padding: 16px 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-size: 1.2rem; color: var(--forest-800); font-weight: 600;
}
.drawer__sep {
  display: block; margin-top: 22px; padding-bottom: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-400);
}
.drawer nav a.drawer__sub {
  font-family: var(--font-sans); font-size: 1rem; font-weight: 500;
  color: var(--ink-600); padding: 13px 0;
}
.drawer__foot { padding: 0 var(--gutter) 40px; display: grid; gap: 10px; }

/* ---------- searchable select (combobox) ---------- */
.combo { position: relative; width: 100%; }
.combo__native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.combo__btn {
  width: 100%; text-align: left; display: flex; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-btn);
  padding: 11px 34px 11px 13px; font-size: 14.5px;
  background: var(--white); color: var(--ink-900); cursor: pointer;
}
.pl-select .combo__btn { padding-left: 38px; }
.combo__btn:hover { border-color: var(--forest-500); }
.combo__btn[data-empty="true"] { color: var(--ink-400); }
.combo__btn:focus-visible { outline: 2px solid var(--bronze-500); outline-offset: 1px; }
.combo__chev {
  position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  color: var(--ink-400); pointer-events: none;
}
.combo.is-open .combo__chev { transform: translateY(-50%) rotate(180deg); }
.combo__panel {
  position: absolute; z-index: 6; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; box-shadow: var(--shadow-lg); padding: 8px; display: none;
}
.combo.is-open .combo__panel { display: block; }
.combo__searchWrap { position: relative; margin-bottom: 6px; }
.combo__searchWrap svg {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--ink-400); pointer-events: none;
}
.combo__search {
  width: 100%; border: 1px solid var(--line); border-radius: 7px;
  padding: 9px 11px 9px 32px; font-size: 14px; background: var(--sand-050);
}
.combo__search:focus { outline: 2px solid var(--bronze-500); outline-offset: 1px; background: var(--white); }
.combo__list { max-height: 212px; overflow-y: auto; display: grid; gap: 1px; }
.combo__opt {
  padding: 9px 11px; border-radius: 6px; font-size: 14px;
  color: var(--forest-800); text-align: left; width: 100%;
}
.combo__opt.is-active { background: var(--sand-050); }
.combo__opt.is-sel { background: var(--forest-700); color: var(--white); font-weight: 500; }
.combo__opt mark { background: rgba(198,139,82,.28); color: inherit; border-radius: 2px; }
.combo__empty { padding: 10px 11px; font-size: 13.5px; color: var(--ink-400); }

/* ---------- gate zoom button + full-screen service explorer ---------- */
.gate { position: relative; }
.gate__zoom {
  position: absolute; top: 0; left: 50%; z-index: 3;
  transform: translate(-50%, -100%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 0 0 10px 10px;
  background: var(--bronze-500); color: var(--forest-900);
  font-size: 13px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(28,36,28,.28);
  opacity: 0; pointer-events: none;
  transition: transform 260ms var(--ease), opacity 200ms var(--ease), background var(--t) var(--ease);
}
.gate:hover .gate__zoom,
.gate:focus-within .gate__zoom {
  transform: translate(-50%, 0); opacity: 1; pointer-events: auto;
}
.gate__zoom:hover { background: var(--bronze-400); }
.gate__zoom:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
/* the body link still covers the whole card, but below the zoom button */
.gate__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }

.xplore { position: fixed; inset: 0; z-index: 70; }
.xplore [hidden], .xplore[hidden] { display: none !important; }
.xplore__backdrop {
  position: absolute; inset: 0; background: rgba(20,26,20,.6);
  backdrop-filter: blur(3px); animation: fadeIn 200ms var(--ease) both;
}
.xplore__panel {
  position: absolute; inset: 24px; margin: 0 auto; max-width: 1240px;
  background: var(--white); border-radius: 16px; overflow: hidden;
  display: grid; grid-template-rows: auto auto 1fr auto;
  box-shadow: 0 30px 80px rgba(20,26,20,.4);
  animation: xploreIn 340ms var(--ease) both;
}
@keyframes xploreIn {
  from { opacity: 0; transform: scale(.965) translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.xplore__head {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 26px 30px 20px; border-bottom: 1px solid var(--line);
}
.xplore__headText h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.xplore__headText p { margin-top: 8px; font-size: 15px; max-width: 70ch; }
.xplore__close {
  margin-left: auto; flex: none; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line); color: var(--forest-700);
  display: grid; place-items: center;
}
.xplore__close:hover { background: var(--sand-050); border-color: var(--forest-500); }

.xplore__jump {
  display: flex; gap: 8px; padding: 14px 30px; overflow-x: auto;
  border-bottom: 1px solid var(--line); background: var(--sand-050);
}
.xplore__jump button {
  flex: none; padding: 8px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--white);
  font-size: 13.5px; color: var(--forest-700); white-space: nowrap;
}
.xplore__jump button:hover { border-color: var(--forest-500); }
.xplore__jump button.is-on { background: var(--forest-700); border-color: var(--forest-700); color: var(--white); }

.xplore__body { overflow-y: auto; padding: 8px 30px 30px; }
.xgroup { padding-top: 26px; }
.xgroup__head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.xgroup__head h3 { font-size: 1.2rem; }
.xgroup__head span { font-size: 13px; color: var(--ink-400); }
.xgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.xitem {
  display: flex; gap: 13px; align-items: center; text-align: left;
  border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 11px; background: var(--white);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.xitem:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--bronze-400); }
.xitem img {
  width: 74px; height: 62px; flex: none; border-radius: 8px;
  object-fit: cover; background: var(--sand-100);
}
.xitem__txt { display: grid; gap: 3px; min-width: 0; flex: 1; }
.xitem__txt b { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--forest-800); }
.xitem__txt span { font-size: 12.5px; color: var(--ink-400); }
.xitem__when { font-size: 12px; color: var(--forest-600); }
.xitem__when b { display: inline; font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: var(--forest-700); }
.xitem__when i { font-style: normal; color: var(--bronze-600); }
.xitem__when i.seats--low { color: #a8480f; font-weight: 600; }
.xitem__price { font-size: 13px; color: var(--ink-400); text-align: right; flex: none; white-space: nowrap; }
.xitem__price b { display: block; font-family: var(--font-display); font-size: 15px; color: var(--forest-800); }
.xitem--plain { padding: 13px 15px; }

.xplore__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 30px; border-top: 1px solid var(--line); background: var(--sand-050);
}
.xplore__count { font-size: 13.5px; color: var(--ink-400); }
.xplore__footCta { display: flex; gap: 10px; }

/* ---------- right-edge tab that (re)opens the request panel ---------- */
.reopen {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 56; display: flex; align-items: center; gap: 10px;
  /* vertical-rl alone reads top-to-bottom, which is the convention for a
     right-edge tab. Adding rotate(180deg) flipped both the text and the icon. */
  writing-mode: vertical-rl;
  padding: 18px 11px; border-radius: 10px 0 0 10px;
  background: var(--bronze-500); color: var(--forest-900);
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  box-shadow: -3px 0 14px rgba(28,36,28,.22);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.reopen:hover { background: var(--bronze-400); box-shadow: -6px 0 22px rgba(28,36,28,.3); }
.reopen:focus-visible { outline: 2px solid var(--forest-700); outline-offset: 2px; }
.reopen[hidden] { display: none !important; }

/* ---------- slide-in trip request ---------- */
.lead { position: fixed; inset: 0; z-index: 65; }
/* author display rules beat the UA [hidden] rule — restore it explicitly */
.lead [hidden] { display: none !important; }
.lead[hidden] { display: none !important; }
.lead__backdrop {
  position: absolute; inset: 0; background: rgba(28,36,28,.45);
  animation: fadeIn 220ms var(--ease) both;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.lead__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(430px, 100%); background: var(--white);
  display: grid; grid-template-rows: auto auto 1fr auto;
  box-shadow: -12px 0 40px rgba(28,36,28,.22);
  animation: slideIn 320ms var(--ease) both;
}
@keyframes slideIn { from { transform: translateX(100%) } to { transform: none } }

.lead__head {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 24px 16px;
}
.lead__head h2 { font-size: 1.45rem; }
.lead__head .eyebrow { margin-bottom: 6px; }
.lead__close {
  margin-left: auto; flex: none; width: 32px; height: 32px;
  border-radius: 8px; color: var(--ink-400); display: grid; place-items: center;
}
.lead__close:hover { background: var(--sand-050); color: var(--forest-700); }

.lead__progress { display: flex; gap: 5px; padding: 0 24px 18px; }
.lead__progress i { height: 3px; flex: 1; border-radius: 2px; background: var(--line); transition: background var(--t) var(--ease); }
.lead__progress i.is-on { background: var(--bronze-500); }

.lead__body { padding: 0 24px 20px; overflow-y: auto; }
.lead__step { border: 0; margin: 0; padding: 0; display: none; }
.lead__step.is-on { display: grid; gap: 12px; }
.lead__step legend {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
  color: var(--forest-800); padding: 0; margin-bottom: 4px;
}
.lead__label {
  font-size: 11px; font-weight: 500; letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-400); margin-top: 6px;
}
.lead__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lead__grid--3 { grid-template-columns: repeat(3, 1fr); }
.lead__opt {
  display: flex; align-items: center; gap: 8px; text-align: left;
  padding: 12px 13px; border: 1px solid var(--line); border-radius: var(--radius-btn);
  background: var(--white); color: var(--forest-700); font-size: 14px;
  transition: all var(--t) var(--ease);
}
.lead__grid--3 .lead__opt { justify-content: center; text-align: center; }
.lead__opt svg { color: var(--ink-400); flex: none; }
.lead__opt:hover { border-color: var(--forest-500); }
.lead__opt.is-on {
  background: var(--forest-700); border-color: var(--forest-700);
  color: var(--white); font-weight: 500;
}
.lead__opt.is-on svg { color: var(--bronze-400); }

.lead__field { display: grid; gap: 6px; }
.lead__field label { font-size: 13px; color: var(--ink-600); font-weight: 500; }
.lead__field label span { color: var(--ink-400); font-weight: 400; }
.lead__field input {
  border: 1px solid var(--line); border-radius: var(--radius-btn);
  padding: 11px 13px; font-size: 15px; width: 100%;
}
.lead__field input:focus { outline: 2px solid var(--bronze-500); outline-offset: 1px; border-color: transparent; }
.lead__field input[aria-invalid="true"] { border-color: var(--clay-500); }
.lead__consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; color: var(--ink-400); margin-top: 4px;
}
.lead__consent input { margin-top: 2px; accent-color: var(--forest-700); }
.lead__note { font-size: 12.5px; color: var(--ink-400); }
.lead__err { font-size: 13px; color: var(--clay-500); font-weight: 500; }
.lead__err[hidden] { display: none; }

.lead__done { display: grid; gap: 10px; justify-items: center; text-align: center; padding: 18px 0; }
.lead__done[hidden] { display: none; }
.lead__doneIco {
  width: 56px; height: 56px; border-radius: 50%;
  background: #e8f2e2; color: #33632a; display: grid; place-items: center;
}
.lead__done h3 { font-size: 1.3rem; }
.lead__done p { font-size: 14.5px; }
.lead__done .btn { margin-top: 8px; }

.lead__foot {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-top: 1px solid var(--line); background: var(--sand-050);
}
.lead__count { font-size: 12.5px; color: var(--ink-400); margin-left: auto; }
.lead__foot .btn--primary { margin-left: 0; }

/* ---------- chat widget ---------- */
/* author display rules beat the UA [hidden] rule — restore it explicitly */
.chat [hidden] { display: none !important; }
.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;
}
.chat { position: fixed; right: 24px; bottom: 24px; z-index: 58; }

.chat__launcher {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 8px 20px 8px 8px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.chat__launcher:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), 0 0 0 1px var(--bronze-400); }
.chat__launcherText { text-align: left; display: grid; gap: 1px; }
.chat__launcherText b { font-size: 14.5px; font-weight: 500; color: var(--forest-800); display: block; }
.chat__launcherText span { font-size: 12px; color: var(--ink-400); }
.chat__launcherClose { display: none; color: var(--ink-400); }
.chat.is-open .chat__launcherText { display: none; }
.chat.is-open .chat__launcher { padding: 8px; }
.chat.is-open .chat__launcherClose { display: block; margin-right: 6px; }

.chat__avatar { position: relative; flex: none; width: 46px; height: 46px; }
.chat__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.chat__avatar--sm { width: 40px; height: 40px; }
.chat__online {
  position: absolute; right: 1px; bottom: 1px;
  width: 11px; height: 11px; border-radius: 50%;
  background: #34c759; border: 2px solid var(--white);
}

.chat__teaser {
  position: absolute; right: 0; bottom: calc(100% + 12px);
  width: 288px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg); padding: 16px 18px;
  font-size: 14px; color: var(--ink-600);
  animation: chatIn 260ms var(--ease) both;
}
.chat__teaser::after {
  content: ""; position: absolute; right: 26px; bottom: -7px;
  width: 12px; height: 12px; background: var(--white);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}
.chat__teaser b { color: var(--forest-800); font-weight: 500; }
.chat__teaserX {
  position: absolute; top: 8px; right: 8px; color: var(--ink-400);
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
}
.chat__teaserX:hover { background: var(--sand-050); color: var(--forest-700); }

.chat__panel {
  position: absolute; right: 0; bottom: calc(100% + 12px);
  width: 372px; max-height: min(560px, calc(100vh - 140px));
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow-lg);
  display: grid; grid-template-rows: auto 1fr auto auto auto;
  overflow: hidden; animation: chatIn 220ms var(--ease) both;
}
@keyframes chatIn { from { opacity: 0; transform: translateY(10px) } to { opacity: 1; transform: none } }

.chat__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--forest-700); color: var(--white);
}
.chat__who { flex: 1; min-width: 0; }
.chat__who b { display: block; font-size: 14.5px; font-weight: 500; }
.chat__who span { font-size: 12px; color: rgba(255,255,255,.72); }
.chat__close { color: rgba(255,255,255,.8); width: 30px; height: 30px; border-radius: 6px; display: grid; place-items: center; }
.chat__close:hover { background: rgba(255,255,255,.12); color: var(--white); }

.chat__log {
  padding: 16px; display: grid; gap: 8px; align-content: start;
  overflow-y: auto; background: var(--sand-050); min-height: 180px;
}
.chat__msg {
  max-width: 84%; padding: 10px 13px; font-size: 14px; line-height: 1.5;
  border-radius: 12px; animation: chatIn 200ms var(--ease) both;
}
.chat__msg--them { background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.chat__msg--me {
  background: var(--forest-700); color: var(--white);
  justify-self: end; border-bottom-right-radius: 4px;
}
.chat__typing { display: flex; gap: 4px; align-items: center; }
.chat__typing i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink-400);
  animation: chatDot 1s infinite ease-in-out;
}
.chat__typing i:nth-child(2) { animation-delay: .15s }
.chat__typing i:nth-child(3) { animation-delay: .3s }
@keyframes chatDot { 0%,60%,100% { opacity:.3; transform: translateY(0) } 30% { opacity:1; transform: translateY(-3px) } }

.chat__quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 14px 0; }
.chat__quick button {
  font-size: 12.5px; padding: 7px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); color: var(--forest-700); background: var(--white);
  transition: all var(--t) var(--ease);
}
.chat__quick button:hover { background: var(--forest-700); border-color: var(--forest-700); color: var(--white); }

.chat__form { display: flex; gap: 8px; padding: 12px 14px; align-items: center; }
.chat__form input {
  flex: 1; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 11px 16px; font-size: 14px; min-width: 0;
}
.chat__form input:focus { outline: 2px solid var(--bronze-500); outline-offset: 1px; border-color: transparent; }
.chat__send {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: var(--bronze-500); color: var(--forest-900);
  display: grid; place-items: center;
}
.chat__send:hover { background: var(--bronze-400); }
.chat__wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--forest-600); background: var(--sand-050);
}
.chat__wa:hover { color: var(--bronze-600); }

/* ---------- reveal (opt-in: only hides when JS armed it) ---------- */
.js-anim .reveal { opacity: 0; transform: translateY(14px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.js-anim .reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .tzmap { grid-template-columns: 1fr; }
  .tzmap__panel { position: static; }
  .usp, .itin, .expert, .news, .migration { grid-template-columns: 1fr; }
  .daytrips { grid-template-columns: repeat(2, 1fr); }
  .promo .wrap { flex-wrap: wrap; gap: 10px 14px; }
  .promo__ico  { order: 0; }
  .promo__text { order: 1; flex: 1 1 100%; }
  .promo__timer { order: 2; }
  .promo .btn { order: 3; }
  .promo__close { order: 4; margin-left: auto; }
  .promo__deadline { display: none; }
  .callband { grid-template-columns: auto 1fr; gap: 24px 28px; padding: 28px; }
  .callband__cta { grid-column: span 2; grid-template-columns: 1fr 1fr; }
  .callband__note { grid-column: span 2; }
  .itin { gap: 32px; }
  .quote-card { position: static; }
  .migration__media { min-height: 300px; }
  .migration__body { padding: 36px; }
  .expert { padding: 32px; }
  .quiz { padding: 36px; }
  .season-panel { grid-template-columns: 1fr; gap: 20px; }
  .gateway { grid-template-columns: 1fr 1fr; }
  .gate { min-height: 320px; }
  .xgrid { grid-template-columns: repeat(2, 1fr); }
  .xplore__panel { inset: 14px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 132px; }
  .planner { min-height: 0; max-width: 520px; }
  .ta-badge { gap: 12px; padding: 10px 18px 10px 14px; }
}
/* Eight nav items stop fitting beside the brand and the CTA below ~1140px,
   so the drawer takes over here — the CTA button survives until 900px.     */
@media (max-width: 1140px) {
  .nav { display: none; }
  .burger { display: grid; }
  .header__cta { margin-left: auto; }
}
@media (max-width: 900px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: grid; margin-left: auto; }
  .grid--3, .grid--4, .why, .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest--wide { grid-column: span 2; }
  .trust .wrap { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .quiz__steps { grid-template-columns: repeat(2, 1fr); }
  .months { grid-template-columns: repeat(6, 1fr); }
  .utility__proof span.hide-sm { display: none; }
}
@media (max-width: 640px) {
  /* A 390 px column makes every label unreadable, so the map keeps a usable
     intrinsic width and the stage scrolls sideways instead.              */
  .tzmap__stage { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tzmap__svg { min-width: 740px; }
  .tzmap__legend { flex-wrap: wrap; }
  .tzmap__stage::after {
    content: "Swipe the map sideways";
    display: block; padding-top: 8px;
    font-size: 12px; font-style: italic; color: var(--ink-400);
  }
  .m-country { font-size: 26px; }
  .m-lbl { font-size: 19px; }
  .m-lbl--small { font-size: 16px; }
  .m-lbl--water, .m-peaklbl, .m-town { font-size: 17px; }
  .m-scale text, .m-north text, .m-inset__cap, .m-inset__lbl { font-size: 14px; }
  .m-road { stroke-width: 6; }
  .section { padding: 64px 0; }
  body { font-size: 16px; }
  .hero__inner { padding: 72px var(--gutter) 108px; }
  .callband { grid-template-columns: 1fr; text-align: left; padding: 24px; }
  .callband__cta { grid-column: span 1; grid-template-columns: 1fr; }
  .callband__note { grid-column: span 1; }
  .callband-wrap { padding: 48px 0; }
  .daytrips { grid-template-columns: 1fr; }
  .promo__ico { display: none; }
  .promo__unit { min-width: 40px; padding: 4px 6px; }
  .promo__unit b { font-size: .95rem; }
  .promo .wrap { min-height: 0; position: relative; padding-right: 42px; }
  .promo__close { position: absolute; top: 6px; right: 6px; order: 0; margin: 0; }
  .callstrip { flex-wrap: wrap; gap: 12px 16px; padding: 16px; }
  .callstrip__text { flex: 1 1 100%; order: 2; }
  .callstrip__cta { order: 3; flex: 1 1 100%; justify-content: center; padding-top: 4px; border-top: 1px solid var(--line); }
  .grid--2, .grid--3, .grid--4, .why, .gateway, .dest-grid { grid-template-columns: 1fr; }
  .dest--wide { grid-column: span 1; }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); }
  .planner { max-width: none; }
  .ta-badge {
    flex-wrap: wrap; justify-content: center; white-space: normal;
    width: calc(100% - var(--gutter) * 2); text-align: center;
    border-radius: var(--radius-card); padding: 14px 16px; gap: 10px;
  }
  .ta-badge__cta { border-left: 0; padding-left: 0; margin-left: 0; width: 100%; justify-content: center; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .quiz__steps { grid-template-columns: 1fr; }
  .months { grid-template-columns: repeat(4, 1fr); }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .reopen { display: none !important; }   /* the sticky action bar carries the same CTA */
  .hero__cinema {
    left: 14px; right: 14px; bottom: 88px; transform: none;
    flex-direction: column; gap: 10px; padding: 14px;
    border-radius: var(--radius-card); text-align: center;
  }
  .hero__cinema .btn { width: 100%; }
  .hero__cinemaNote { white-space: normal; }
  .xgrid { grid-template-columns: 1fr; }
  .xplore__panel { inset: 0; border-radius: 0; }
  .xplore__head { padding: 18px 18px 14px; }
  .xplore__jump, .xplore__body, .xplore__foot { padding-inline: 18px; }
  .xplore__foot { flex-wrap: wrap; }
  .xplore__footCta { flex: 1 1 100%; }
  .xplore__footCta .btn { flex: 1; }
  /* the zoom button is a hover affordance; on touch it stays visible */
  .gate__zoom { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
  /* keep the launcher clear of the sticky action bar */
  .chat { right: 14px; bottom: 84px; }
  .chat__launcherText { display: none; }
  .chat__launcher { padding: 8px; }
  .chat__teaser { width: min(300px, calc(100vw - 28px)); }
  .chat__panel {
    position: fixed; inset: auto 8px 78px 8px; width: auto;
    max-height: calc(100vh - 150px);
  }
  .utility .wrap { justify-content: center; min-height: 44px; }
  .utility__proof, .utility__phone { display: none; }
  .utility__right { gap: 8px; }
  .picker select { font-size: 13px; padding: 7px 26px 7px 11px; }
  .picker--flag select { padding-left: 33px; }
  .usearch.is-open input { width: 100%; }
  .utility.is-searching .picker { display: none; }
  .utility.is-searching .usearch { flex: 1; }
  .utility.is-searching .lpicker { display: none; }
  /* the trigger sits mid-bar on phones, so pin the panel to the viewport */
  .lpicker__panel { position: fixed; inset: 56px 14px auto 14px; width: auto; }
  .lpicker__body { max-height: 62vh; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
