/* ============================================================
   SAFARIS BY DABSY — Dark Luxury Safari Design System
   Cormorant Garamond (display) · DM Sans (UI)
   Redesigned for editorial-quality premium feel
   ============================================================ */

:root {
  --green:      #1E5631;
  --green-dark: #0F2E1A;
  --green-soft: #EAF0E8;
  --amber:      #C8922A;
  --amber-dark: #A67520;
  --charcoal:   #1C1C1E;
  --ink:        #2C2C2E;
  --muted:      #6B7280;
  --sand:       #F5EFE0;
  --earth:      #2A1F14;
  --card:       #FFFFFF;
  --line:       #E5DDD0;
  --wa:         #25D366;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --container: 1240px;
  --nav-h: 80px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0 0 .45em;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1.02; font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; }
h3 { font-size: 1.4rem; line-height: 1.2; font-weight: 600; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }
/* hide-sm: visible on desktop, hidden on mobile */
.hide-sm { display: inline-flex; }
@media (max-width: 639px) { .hide-sm { display: none !important; } }

.eyebrow {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
}

.muted { color: var(--muted); }

/* ---------- UTILITIES ---------- */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: .9rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform .22s ease, background .2s ease, color .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green); color: #fff; border: 1.5px solid var(--green); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); }

.btn--accent { background: var(--amber); color: #fff; border: 1.5px solid var(--amber); }
.btn--accent:hover { background: var(--amber-dark); border-color: var(--amber-dark); }

.btn--ghost { background: transparent; color: var(--charcoal); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--charcoal); }

.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.9); }

.btn--lg { padding: 1rem 1.8rem; font-size: 1rem; }
.btn--sm { padding: .5rem .85rem; font-size: .82rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--wa { background: var(--wa); color: #fff; border: 1.5px solid var(--wa); }
.btn--wa:hover { background: #1eb557; border-color: #1eb557; color: #fff; }
.btn--loading { opacity: .65; pointer-events: none; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  border-top: 3px solid var(--amber);
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav.is-scrolled {
  background: rgba(15, 46, 26, 0.85); /* var(--green-dark) with opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-h);
  padding-block: .5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}
.brand em { font-style: italic; font-weight: 400; color: rgba(255,255,255,.75); }
.brand__mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--amber);
  border-radius: 10px;
  flex-shrink: 0;
}
.brand--light { color: #fff; }
.brand--light em { color: rgba(255,255,255,.65); }

/* Nav links — unified single row (links + actions) on desktop */
.nav__links {
  display: flex; align-items: center; gap: .2rem 1rem;
  font-size: .84rem; font-weight: 400; color: rgba(255,255,255,.85);
  flex: 1; justify-content: flex-end;
}
.nav__links a { position: relative; padding: .35rem 0; transition: color .2s; white-space: nowrap; color: rgba(255,255,255,.85); text-decoration: none; }
.nav__links a:hover { color: #fff; }
.nav__links a::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: #fff; }

/* Vertical separator between content links and action links */
.nav__sep {
  width: 1px; height: 20px; background: rgba(255,255,255,.2);
  margin: 0 .3rem;
}

/* Inline action buttons (auth, quiz) styled as links */
.nav__link-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  background: transparent; border: 0; padding: .35rem 0;
  font-family: inherit; font-size: .84rem; color: rgba(255,255,255,.85);
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: color .2s;
}
.nav__link-btn:hover { color: #fff; }

/* Lang button — compact pill */
.lang {
  display: inline-flex; align-items: center; gap: .2rem;
  padding: .3rem .65rem; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85);
  font-family: inherit; font-weight: 500; font-size: .78rem;
  background: transparent; cursor: pointer;
  transition: border-color .2s;
}
.lang:hover { border-color: rgba(255,255,255,.65); }

/* WhatsApp nav button — compact */
.nav__wa {
  padding: .5rem .9rem !important;
  font-size: .82rem !important;
  gap: .35rem !important;
}

.nav__actions { display: inline-flex; align-items: center; gap: .6rem; }

/* Burger — hidden on desktop */
.burger {
  display: none;
  background: transparent; border: 0; color: #fff;
  cursor: pointer; padding: 4px;
}

/* ---- Mobile / tablet: collapse to burger at 1079px ---- */
@media (max-width: 1079px) {
  .burger { display: inline-flex; place-items: center; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(15, 46, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column; align-items: stretch;
    padding: 1.5rem 2rem 2.5rem;
    gap: 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s ease;
    border-bottom: 1px solid rgba(255,255,255,.1);
    flex: unset;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a,
  .nav__links .nav__link-btn { font-size: 1.05rem; font-weight: 500; padding: .4rem 0; }
  .nav__sep { width: 100%; height: 1px; margin: .3rem 0; }
  .lang { align-self: flex-start; }
  .nav__wa { align-self: flex-start; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  display: flex; flex-direction: column;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero.is-loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top right, rgba(15,46,26,.92) 0%, rgba(15,46,26,.5) 40%, transparent 70%),
    linear-gradient(to top, rgba(10,20,14,.6) 0%, transparent 50%);
}

.hero__inner {
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: calc(var(--nav-h) + 3px + 2rem);
  padding-bottom: 5rem;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  margin-bottom: 1.6rem;
  width: fit-content;
}
.dot { width: 7px; height: 7px; border-radius: 999px; background: #fff; display: inline-block; flex-shrink: 0; }
.dot--live { background: var(--amber); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,146,42,.7); }
  60% { box-shadow: 0 0 0 8px rgba(200,146,42,0); }
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.9);
}
.hero__title span { color: var(--amber); }

.hero__sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }

.hero__trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .8rem 1.8rem;
  color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 400;
}
.hero__trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust svg { color: var(--amber); flex-shrink: 0; }

/* Scroll-down chevron */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.55); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero__scroll svg { color: rgba(255,255,255,.45); }

/* ---------- SEARCH SECTION ---------- */
.search-section {
  background: var(--sand);
  padding: 3rem 0 3.5rem;
  position: relative;
}
.search-section::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-dark) 100%);
}

.search {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  padding: 1.2rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 8px 40px -8px rgba(42,31,20,.12);
}
.search label {
  display: flex; flex-direction: column; gap: .3rem;
  padding: .6rem .9rem;
  border-radius: var(--radius);
  background: var(--sand);
  min-width: 0;
}
.search__label {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.search select, .search input {
  border: 0; background: transparent; padding: .1rem 0; font: inherit;
  color: var(--charcoal); font-weight: 500; outline: 0; font-size: .95rem;
}
.search .btn--lg { justify-self: stretch; }
@media (min-width: 760px) {
  .search {
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    align-items: stretch; padding: .7rem .7rem .7rem 1.2rem; gap: 0;
  }
  .search label {
    background: transparent;
    border-right: 1px solid var(--line);
    border-radius: 0;
    padding: .5rem 1.1rem;
  }
  .search label:first-child { padding-left: 0; }
  .search label:nth-last-child(2) { border-right: 0; }
  .search .btn--lg { margin: .4rem .4rem .4rem .6rem; align-self: center; }
}
@media (max-width: 759px) {
  .search .btn--lg { grid-column: 1 / -1; }
}

/* ---------- SECTIONS ---------- */
section { padding: clamp(4rem, 8vw, 7rem) 0; }
section.hero { padding: 0; height: 100vh; min-height: 680px; }
section.how { padding-top: 0; }
section.search-section { padding: 3rem 0 3.5rem; }

.section__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 3rem;
}
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__sub { color: var(--muted); max-width: 580px; font-weight: 300; line-height: 1.7; }

/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--earth);
  color: #fff;
}
.how h2 { color: #fff; }
.how .eyebrow { color: var(--amber); }
.how .section__sub { color: rgba(255,255,255,.65); }

.how__grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .how__grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }

.how__step {
  position: relative;
  padding: 0;
}
.how__num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: .85;
  color: var(--amber);
  opacity: .25;
  margin-bottom: -.6rem;
  letter-spacing: -0.04em;
}
.how__step h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: .6rem;
}
.how__step p {
  color: rgba(255,255,255,.65);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  font-size: .95rem;
}

/* ---------- CHIPS / FILTERS ---------- */
.chips {
  display: flex; flex-wrap: wrap; gap: .45rem;
  max-width: 100%; overflow-x: auto; scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: .82rem;
  color: var(--muted);
  transition: all .18s ease;
  white-space: nowrap;
}
.chip:hover { border-color: var(--amber); color: var(--amber); }
.chip--active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

/* ---------- TOURS ---------- */
.tours { background: var(--sand); }

.tour-grid {
  display: grid; gap: 1.8rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .tour-grid { grid-template-columns: repeat(3, 1fr); } }

.tour {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s ease;
  cursor: pointer;
  border: 1px solid var(--line);
}
.tour:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: var(--amber);
}

.tour__media {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}
.tour__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.tour:hover .tour__media img { transform: scale(1.07); }

/* Hover overlay CTA */
.tour__media::after {
  content: "View safari";
  position: absolute; inset: 0;
  background: rgba(15,46,26,.5);
  display: flex; align-items: center; justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 500; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
}
.tour:hover .tour__media::after { opacity: 1; }

.tour__tags { position: absolute; top: .9rem; left: .9rem; display: flex; gap: .4rem; flex-wrap: wrap; z-index: 1; }
.tour__tag {
  padding: .3rem .65rem; border-radius: 999px;
  background: rgba(255,255,255,.94);
  font-family: "DM Sans"; font-weight: 600; font-size: .7rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--charcoal);
  backdrop-filter: blur(4px);
}
.tour__tag--hot { background: var(--amber); color: #fff; }
.tour__tag--green { background: var(--green); color: #fff; }

.tour__badge {
  position: absolute; bottom: .9rem; left: .9rem;
  padding: .3rem .7rem;
  background: var(--amber); color: #fff;
  font-family: "DM Sans"; font-weight: 600;
  font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px;
  z-index: 1;
}

.tour__save {
  position: absolute; top: .8rem; right: .8rem;
  padding: .28rem .65rem; border-radius: 999px;
  background: var(--green); color: #fff;
  font-family: "DM Sans"; font-weight: 600; font-size: .68rem;
  letter-spacing: .03em;
  display: inline-block;
  transition: background .2s;
  z-index: 1;
}
.tour__save:hover { background: var(--green-dark); }

/* Price overlay on image bottom-right */
.tour__price-overlay {
  position: absolute; bottom: .9rem; right: .9rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-family: "DM Sans"; font-weight: 600; font-size: .82rem;
  backdrop-filter: blur(4px);
  z-index: 1;
}

.tour__live {
  position: absolute; bottom: .7rem; left: .7rem;
  padding: .35rem .65rem; border-radius: 999px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: .72rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: .35rem;
  backdrop-filter: blur(4px);
  z-index: 1;
}

.tour__body {
  padding: 1.3rem 1.4rem 1.4rem;
  flex: 1; display: flex; flex-direction: column; gap: .5rem;
}
.tour__park {
  font-size: .75rem; color: var(--amber); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
}
.tour__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 .2rem;
  line-height: 1.15;
  color: var(--charcoal);
}
.tour__highlights {
  font-size: .87rem; color: var(--muted); margin: 0; line-height: 1.5;
  font-weight: 300;
}
.tour__meta {
  display: flex; flex-wrap: wrap; gap: .3rem .8rem;
  font-size: .83rem; color: var(--muted);
}
.tour__meta b { color: var(--charcoal); font-weight: 500; }

.tour__guide {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 0;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.tour__guide img {
  width: 40px; height: 40px; border-radius: 999px; object-fit: cover;
  border: 2px solid var(--line);
}
.tour__guide small {
  display: block; font-size: .68rem; color: var(--amber);
  text-transform: uppercase; letter-spacing: .07em; font-weight: 600;
}
.tour__guide strong { display: block; font-size: .9rem; color: var(--charcoal); font-weight: 500; }

.tour__inc {
  list-style: none; padding: 0; margin: .2rem 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .2rem .6rem;
  font-size: .8rem; color: var(--muted);
}
.tour__inc li { padding: 0; }
.tour__inc .more { color: var(--green); font-weight: 600; }

.tour__foot { display: flex; justify-content: space-between; align-items: center; padding-top: .6rem; }
.tour__price {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700; color: var(--charcoal); font-size: 1.5rem;
  line-height: 1;
}
.tour__price s { font-size: .9rem; color: var(--muted); font-weight: 400; margin-right: .25rem; font-family: "DM Sans"; }
.tour__price small {
  display: block; font-weight: 400; font-size: .7rem;
  color: var(--muted); font-family: "DM Sans"; margin-top: .1rem;
}

.tour__cta { display: flex; gap: .4rem; align-items: center; }
.tour__cta .btn { padding: .6rem 1rem; font-size: .85rem; }
.tour__cta .btn--wa { width: 38px; height: 38px; padding: 0; justify-content: center; border-radius: 999px; }

.tour__trust {
  display: flex; flex-wrap: wrap; gap: .35rem .9rem;
  padding-top: .7rem; margin-top: .3rem;
  border-top: 1px solid var(--line);
  font-size: .73rem; color: var(--muted);
}

.stars { color: var(--amber); font-size: .85rem; letter-spacing: 1px; }
.stars--lg { font-size: 1.1rem; }
.rating-inline { display: inline-flex; align-items: center; gap: .3rem; font-size: .83rem; color: var(--muted); }
.rating-inline b { color: var(--charcoal); font-weight: 600; }

/* ---------- GUIDE RAIL ---------- */
.guides { background: var(--green); }
.guides h2 { color: #fff; }
.guides h3 { color: #fff; }             /* guide card names on green bg */
.guides .eyebrow { color: var(--amber); }
.guides .section__sub { color: rgba(255,255,255,.65); }

.guide-rail {
  display: grid; gap: 1.25rem;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 230px);
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.guide-rail::-webkit-scrollbar { display: none; }
@media (min-width: 1060px) {
  .guide-rail {
    grid-auto-columns: 1fr;
    overflow-x: visible;
  }
}

.guide {
  scroll-snap-align: start;
  background: transparent;
  border: none;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease;
  position: relative;
}
.guide:hover { transform: translateY(-4px); }

.guide__media {
  aspect-ratio: 5/6;
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
}
.guide__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.guide:hover .guide__media img { transform: scale(1.05); }

/* Dark overlay at bottom */
.guide__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  pointer-events: none;
}

.guide__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.2rem .8rem;
  z-index: 1;
}

.guide__photo { aspect-ratio: 1/1; position: relative; }
.guide__photo img { width: 100%; height: 100%; object-fit: cover; }
.guide__video {
  position: absolute; bottom: .6rem; left: .6rem;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .6rem; border-radius: 999px;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: .78rem; font-weight: 500;
  backdrop-filter: blur(4px);
}
.guide__body { padding: .75rem 0 0; flex: 1; display: flex; flex-direction: column; }
.guide__body .btn--wa { margin-top: auto; }
.guide__name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600; font-size: 1.2rem;
  color: #fff; line-height: 1.1; margin-bottom: .15rem;
}
.guide__role { font-size: .78rem; color: rgba(255,255,255,.65); margin-bottom: .4rem; }
.guide__bio { font-size: .82rem; color: rgba(255,255,255,.75); margin-bottom: .5rem; line-height: 1.5; font-weight: 300; }

.guide__lang { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .7rem; }
.guide__lang span {
  padding: .2rem .6rem; border-radius: 999px;
  background: rgba(200,146,42,.2); color: var(--amber);
  font-size: .7rem; font-weight: 600; letter-spacing: .04em;
  border: 1px solid rgba(200,146,42,.3);
}

.guide__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .6rem;
}

.guide__meta { font-size: .75rem; color: rgba(255,255,255,.55); margin: 0 0 .2rem; font-weight: 500; }
.guide__tags { display: flex; flex-wrap: wrap; gap: .25rem; margin: .35rem 0 .6rem; }
.tag { font-size: .7rem; padding: .2rem .55rem; border-radius: 999px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); font-weight: 500; }
.tag--muted { background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); }

.guide__play {
  position: absolute; inset: 0; margin: auto;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,.9); color: var(--green);
  display: grid; place-items: center;
  transition: transform .2s;
}
.guide__play:hover { transform: scale(1.1); }

/* ---------- TRUST ---------- */
.trust { background: var(--sand); }
.trust .eyebrow { color: var(--amber); }

.trust__grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 720px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

.trust__card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  border-left: 3px solid var(--amber);
  transition: transform .25s ease;
  position: relative;
  overflow: hidden;
}
.trust__card::before {
  content: attr(data-num);
  position: absolute; top: -.3rem; right: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem; font-weight: 700;
  color: var(--amber); opacity: .07;
  line-height: 1; letter-spacing: -0.04em;
  pointer-events: none;
}
.trust__card:hover { transform: translateY(-4px); }

.trust__layer {
  display: inline-block;
  font-family: "DM Sans"; font-weight: 600; font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .9rem;
}

.trust__card h3 { font-size: 1.2rem; margin-bottom: .7rem; }
.trust__card ul { list-style: none; padding: 0; margin: 0; }
.trust__card li {
  padding: .4rem 0 .4rem 1.4rem; position: relative;
  font-size: .88rem; color: var(--ink); font-weight: 300; line-height: 1.5;
}
.trust__card li::before {
  content: "";
  position: absolute; left: 0; top: .85rem;
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--amber); opacity: .5;
}

.trust__badges { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.badge {
  padding: .5rem .9rem; border-radius: 999px;
  background: var(--card); border: 1.5px solid var(--line);
  font-family: "DM Sans"; font-weight: 500; font-size: .8rem;
  color: var(--charcoal);
  transition: border-color .2s;
}
.badge:hover { border-color: var(--amber); }
.badge--verified { color: var(--green); border-color: rgba(30,86,49,.2); }
.badge--licensed { color: var(--green); border-color: rgba(30,86,49,.2); }
.badge--insured { color: var(--green); border-color: rgba(30,86,49,.2); }
.badge--toprated { color: var(--amber-dark); border-color: rgba(200,146,42,.3); }
.badge--responsive { color: var(--charcoal); }
.badge--green { color: var(--green); }
.badge--sm { font-size: .7rem; padding: .2rem .6rem; color: var(--green); }

/* ---------- DESTINATIONS ---------- */
.destinations { background: var(--card); }
.destinations .eyebrow { color: var(--amber); }

.park-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .park-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .park-grid { grid-template-columns: repeat(3, 1fr); } }

.park {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  isolation: isolate;
  background-size: cover; background-position: center;
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1rem;
  transition: transform .35s ease;
}
.park:hover { transform: translateY(-5px); }
.park img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; position: absolute; inset: 0; z-index: -2; }
.park:hover img { transform: scale(1.06); }
.park::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.8) 100%);
}

.park__body { position: relative; z-index: 1; margin-top: auto; }
.park__name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600; font-size: 1.7rem; margin-bottom: .2rem; color: #fff;
  line-height: 1.05;
}
.park__meta { font-size: .83rem; color: rgba(255,255,255,.8); font-weight: 300; }

.park__pill {
  position: relative; z-index: 2; align-self: flex-start;
  font-size: .7rem; padding: .3rem .7rem;
  background: rgba(255,255,255,.92); color: var(--charcoal);
  border-radius: 999px; font-weight: 600; letter-spacing: .04em;
}

.park__sight {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .65rem; border-radius: 999px;
  background: var(--amber); color: #fff;
  font-size: .72rem; font-weight: 600;
  margin-top: .5rem;
  width: fit-content;
}

.park__wildlife { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .5rem; }
.park__wildlife span {
  font-size: .7rem; padding: .2rem .55rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  white-space: nowrap;               /* prevent "Tree-climbing\nlion" breaks */
}
.park__best { color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 300; }

/* ---------- REVIEWS ---------- */
.reviews { background: var(--earth); }
.reviews h2 { color: #fff; }
.reviews .eyebrow { color: var(--amber); }
.reviews__meta {
  display: flex; align-items: center; gap: .6rem; margin-top: .6rem;
  color: rgba(255,255,255,.6);
}
.reviews__meta strong { color: #fff; font-size: 1.6rem; font-family: "Cormorant Garamond", serif; }

.rating-bars { display: grid; gap: .6rem; min-width: 260px; }
.rating-bars__row {
  display: grid; grid-template-columns: 80px 1fr 44px;
  align-items: center; gap: .8rem; font-size: .83rem; color: rgba(255,255,255,.55);
}
.bar { height: 4px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--amber); border-radius: inherit; }
.rating-bars__row b { color: rgba(255,255,255,.85); font-family: "DM Sans"; font-weight: 600; }

/* Giant quote mark */
.reviews .section__head { position: relative; }
.reviews .section__head::before {
  content: "\201C";
  position: absolute; top: -2rem; left: -1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 14rem; line-height: 1;
  color: var(--amber); opacity: .08;
  pointer-events: none;
  z-index: 0;
}

.review-rail {
  display: grid; gap: 1.5rem;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 400px);
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.review-rail::-webkit-scrollbar { display: none; }
@media (min-width: 1200px) { .review-rail { grid-auto-columns: 1fr; } }

.review {
  scroll-snap-align: start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: .8rem;
  transition: border-color .25s;
}
.review:hover { border-color: rgba(200,146,42,.3); }

.review__head {
  display: flex; gap: .9rem; align-items: flex-start;
  /* no position:relative — rating is now a flex item, not absolute */
}
.review__head img { width: 46px; height: 46px; border-radius: 999px; object-fit: cover; border: 2px solid rgba(255,255,255,.15); flex-shrink: 0; }
/* name + country block grows to fill space, clips if too long */
.review__head > div:not(.review__rating) { flex: 1; min-width: 0; }
.review__head strong { display: block; font-weight: 600; color: var(--amber); font-size: .92rem; line-height: 1.3; }
.review__head small { display: block; color: rgba(255,255,255,.5); font-weight: 400; font-size: .75rem; }
/* stars flex-item at far right — name-div flex:1 handles the push */
.review__rating {
  flex-shrink: 0; padding-left: .5rem;
  color: var(--amber); font-size: .82rem; letter-spacing: 1px;
  line-height: 1.3; /* align with first line of name */
}

.review__tour { font-size: .8rem; color: rgba(255,255,255,.55); font-weight: 500; }
.review__text {
  font-size: .95rem; line-height: 1.65; color: rgba(255,255,255,.8);
  font-weight: 300;
}
.review__photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.review__photos img { aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.review__verified {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; color: var(--amber); font-weight: 600;
}
.review__breakdown {
  display: flex; flex-wrap: wrap; gap: .25rem .9rem;
  padding: .7rem 0; border-block: 1px solid rgba(255,255,255,.07);
  font-size: .77rem; color: rgba(255,255,255,.5);
}
.review__breakdown span { white-space: nowrap; }  /* prevent "Wildlife\n5" wrap */
.review__breakdown b { color: rgba(255,255,255,.82); font-family: "DM Sans"; margin-left: .25rem; font-weight: 600; }
.review__badges { display: flex; flex-wrap: wrap; gap: .3rem; }

/* ---------- PRICING ---------- */
.pricing { background: var(--charcoal); color: #fff; }
.pricing h2 { color: #fff; }
.pricing .eyebrow { color: var(--amber); }
.pricing p { color: rgba(255,255,255,.7); font-weight: 300; }

.pricing__inner {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) { .pricing__inner { grid-template-columns: 1fr 1.4fr; gap: 4rem; } }

.pricing__table {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing__table table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.pricing__table th, .pricing__table td {
  padding: .9rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: left;
}
.pricing__table th {
  font-family: "DM Sans"; font-weight: 600; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5);
}
.pricing__table th.us { color: var(--amber); }
.pricing__table td:first-child { font-weight: 500; color: rgba(255,255,255,.85); }
.pricing__table .good {
  color: #6DBF82;
  display: inline-flex; align-items: center; gap: .4rem;
}
.pricing__table .bad {
  color: rgba(255,255,255,.35);
  display: inline-flex; align-items: center; gap: .4rem;
}
.pricing__table tbody tr:last-child td { border-bottom: 0; }
.pricing__table tbody tr:hover td { background: rgba(255,255,255,.02); }

/* ---------- FINAL CTA ---------- */
.finalcta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  isolation: isolate;
}
.finalcta::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1521651201144-634f700b36ef?auto=format&fit=crop&w=1800&q=80');
  background-size: cover; background-position: center;
}
.finalcta::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(15,46,26,.92) 0%, rgba(42,31,20,.88) 100%);
}
.finalcta h2 { color: #fff; }
.finalcta h2 span { color: var(--amber); font-style: italic; }
.finalcta__inner { max-width: 680px; margin: 0 auto; padding-inline: 20px; }
.finalcta p { color: rgba(255,255,255,.75); margin-bottom: 1.8rem; font-size: 1.05rem; font-weight: 300; }

/* ---------- FOOTER ---------- */
.footer { background: var(--earth); color: rgba(255,255,255,.75); padding: 5rem 0 2rem; }
.footer h4 {
  font-family: "DM Sans"; color: #fff; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; } }

.footer a {
  display: block; padding: .35rem 0;
  color: rgba(255,255,255,.55); font-size: .88rem; font-weight: 300;
  transition: color .2s;
}
.footer a:hover { color: var(--amber); }
.footer .brand { margin-bottom: 1.2rem; }
.footer .muted { color: rgba(255,255,255,.45); font-size: .88rem; font-weight: 300; line-height: 1.6; }

.socials { display: flex; gap: .5rem; margin-top: 1.2rem; }
.socials a {
  padding: .4rem .8rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  font-family: "DM Sans"; font-weight: 500; font-size: .75rem;
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.socials a:hover { border-color: var(--amber); color: var(--amber); }

.newsletter { display: grid; gap: .6rem; margin-top: .5rem; }
.newsletter input {
  padding: .85rem 1.1rem; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: #fff; font: inherit; font-size: .9rem;
  transition: border-color .2s;
}
.newsletter input:focus { outline: none; border-color: var(--amber); }
.newsletter input::placeholder { color: rgba(255,255,255,.35); }
.newsletter .ok { color: var(--amber); font-size: .82rem; padding-left: 1rem; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 2.5rem; margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.3); font-size: .78rem;
}

/* ---------- WHATSAPP FAB ---------- */
.fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.1rem;
  border-radius: 999px;
  background: var(--wa); color: #fff;
  font-family: "DM Sans"; font-weight: 600; font-size: .9rem;
  transition: transform .22s ease;
  animation: fabPulse 3s ease-in-out infinite;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 32px -4px rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 48px -4px rgba(37,211,102,.75); }
}
.fab:hover { transform: scale(1.06); }
.fab__label { display: none; }
@media (min-width: 640px) { .fab__label { display: inline; } }
@media (min-width: 900px) {
  .fab { padding-right: 1.4rem; }
  .fab__label { display: inline; font-weight: 600; font-size: .9rem; }
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center; padding: 1rem;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,12,10,.75);
  backdrop-filter: blur(6px);
  animation: fadeIn .25s ease;
}
.modal__panel {
  position: relative; z-index: 1;
  background: var(--card);
  border-radius: var(--radius-lg);
  max-width: 620px; width: 100%; max-height: 92vh;
  overflow: auto;
  animation: slideUp .32s ease;
  border: 1px solid var(--line);
}
.modal__panel--tour { max-width: 960px; }
/* Auth modal — scoped overrides */
.modal__panel--auth { max-width: 440px; }
.modal__panel--auth h2 {
  font-size: 1.55rem;          /* override global clamp — keep it compact */
  line-height: 1.2;
  margin-bottom: .3rem;
}
.modal__panel--booking { max-width: 520px; }
.modal__panel--booking h2 {
  font-size: 1.5rem;           /* override global clamp inside booking modal */
  line-height: 1.2;
  margin-bottom: .3rem;
}
/* Tour modal — bare h2 before .detail__title class kicks in */
.modal__panel--tour h2 { font-size: 1.9rem; line-height: 1.1; }
.modal__panel--quiz { max-width: 600px; }

.modal__close {
  position: absolute; top: .8rem; right: .9rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--sand); color: var(--charcoal);
  font-size: 1.4rem; line-height: 1;
  display: grid; place-items: center;
  transition: background .2s;
}
.modal__close:hover { background: var(--line); }
.modal.is-open .modal__panel { animation: slideUp .32s ease both; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- QUIZ ---------- */
.quiz__head { padding: 2.2rem 2.2rem 1.4rem; border-bottom: 1px solid var(--line); }
.quiz__head .eyebrow { color: var(--amber); }
.quiz__head h2 { font-size: 1.7rem; }
.quiz__progress {
  height: 4px; border-radius: 999px; background: var(--sand); overflow: hidden;
  margin: 1.2rem 0 .5rem;
}
.quiz__progress i { display: block; height: 100%; width: 20%; background: var(--amber); transition: width .35s ease; }
.quiz__step { color: var(--muted); font-size: .82rem; margin: 0; }

.quiz__body { padding: 1.8rem 2.2rem; }
.quiz__q {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600; font-size: 1.4rem;
  margin-bottom: 1.4rem; color: var(--charcoal); line-height: 1.2;
}
.quiz__options { display: grid; gap: .6rem; }
.quiz__option {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--card);
  display: flex; align-items: center; gap: .9rem;
  text-align: left;
  font-family: "DM Sans"; font-size: .95rem; font-weight: 400;
  transition: border-color .18s, background .18s;
}
.quiz__option:hover { border-color: var(--amber); background: rgba(200,146,42,.05); }
.quiz__option.is-selected { border-color: var(--amber); background: rgba(200,146,42,.08); color: var(--amber-dark); font-weight: 600; }
.quiz__option i { font-size: 1.3rem; font-style: normal; }

.quiz__foot { display: flex; justify-content: space-between; padding: 1.2rem 2.2rem 2rem; border-top: 1px solid var(--line); gap: .5rem; }

/* Quiz (app.js variants) */
.quiz__opts { display: grid; gap: .55rem; }
.quiz__opt {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .85rem;
  padding: .95rem 1.1rem;
  border: 2px solid var(--line); border-radius: var(--radius);
  background: var(--card); text-align: left; width: 100%;
  font-size: .95rem; font-family: "DM Sans";
  transition: border-color .18s, background .18s;
}
.quiz__opt:hover { border-color: var(--amber); background: rgba(200,146,42,.05); }
.quiz__opt.is-selected { border-color: var(--amber); background: rgba(200,146,42,.08); color: var(--amber-dark); font-weight: 600; }
.quiz__ico { font-size: 1.35rem; line-height: 1; }
.quiz__check { opacity: 0; color: var(--amber); font-weight: 700; }
.quiz__opt.is-selected .quiz__check { opacity: 1; }

.quiz-results { padding: 1.6rem 2.2rem 2.2rem; }
.quiz-results h3 { margin-bottom: .3rem; font-size: 1.5rem; }
.quiz-results__sub { color: var(--muted); margin-bottom: 1.4rem; font-weight: 300; }
.quiz-results__grid { display: grid; gap: .9rem; }

.quiz__results { display: grid; gap: .8rem; }
.quiz__match {
  display: grid; grid-template-columns: 100px 1fr; gap: 1rem;
  padding: .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  background: var(--card); cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.quiz__match:hover { border-color: var(--amber); transform: translateY(-1px); }
.quiz__match img { width: 100px; height: 100px; border-radius: 10px; object-fit: cover; }
.quiz__match-rank {
  grid-column: 1 / -1;
  font-family: "DM Sans"; font-weight: 600; font-size: .72rem;
  color: var(--amber-dark); letter-spacing: .06em; text-transform: uppercase;
}
.quiz__match-body h4 { margin: 0 0 .15rem; font-size: 1.05rem; font-family: "Cormorant Garamond", serif; }
.quiz__match-body p { margin: 0 0 .2rem; font-size: .82rem; color: var(--muted); }
.quiz__match-guide { color: var(--green-dark) !important; font-weight: 600; }
.quiz__match-cta { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; }
.quiz__match-cta strong { font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 1.2rem; }
.quiz__footnote { margin: 1.2rem 0 0; font-size: .83rem; color: var(--muted); text-align: center; }
.quiz__match-score {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .15rem .55rem; background: var(--amber); color: #fff;
  border-radius: 999px; font-family: "DM Sans"; font-weight: 700; font-size: .72rem; margin-bottom: .2rem;
}
.quiz-match { /* legacy alias */
  padding: 1rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  display: grid; grid-template-columns: 80px 1fr; gap: .9rem; align-items: center;
  cursor: pointer; transition: border-color .2s;
}
.quiz-match:hover { border-color: var(--amber); }
.quiz-match img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; }
.quiz-match h4 { margin: 0; font-size: 1rem; font-family: "Cormorant Garamond", serif; }
.quiz-match__score { display: inline-flex; align-items: center; gap: .3rem; padding: .15rem .55rem; background: var(--amber); color: #fff; border-radius: 999px; font-family: "DM Sans"; font-weight: 700; font-size: .72rem; margin-bottom: .15rem; }
.quiz-match__meta { font-size: .82rem; color: var(--muted); }
.quiz-match__price { font-family: "Cormorant Garamond", serif; font-weight: 700; color: var(--charcoal); font-size: 1.1rem; }

.link { background: none; border: 0; color: var(--amber); font-weight: 600; cursor: pointer; padding: 0; text-decoration: underline; }

/* ---------- TOUR DETAIL MODAL ---------- */
.detail { display: flex; flex-direction: column; }
.detail__hero { position: relative; aspect-ratio: 16/8; }
.detail__hero img { width: 100%; height: 100%; object-fit: cover; }
.detail__hero .tour__badge { top: 1rem; left: 1rem; }
.detail__body { padding: 1.8rem 2.2rem 2.2rem; }
.detail__head {
  display: flex; justify-content: space-between; align-items: start;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.2rem;
}
.detail__title { font-size: 1.9rem; line-height: 1.1; margin: 0; font-family: "Cormorant Garamond", serif; }
.detail__price {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700; font-size: 2rem; color: var(--charcoal);
}
.detail__price small { font-size: .75rem; color: var(--muted); display: block; font-weight: 400; font-family: "DM Sans"; }
.detail__price s { color: var(--muted); font-weight: 400; font-size: 1rem; margin-right: .3rem; font-family: "DM Sans"; }
.detail__price strong { color: var(--charcoal); }
.detail__meta { display: flex; flex-wrap: wrap; gap: .35rem .7rem; color: var(--muted); font-size: .88rem; }
.detail__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .detail__grid { grid-template-columns: 1.4fr 1fr; } }
.detail__main h3 { font-size: 1.1rem; font-family: "DM Sans"; margin: 1.3rem 0 .5rem; color: var(--charcoal); font-weight: 600; letter-spacing: .01em; }
.detail__main h3:first-child { margin-top: 0; }
.detail__list { list-style: none; padding: 0; margin: 0 0 .6rem; display: grid; gap: .35rem; }
.detail__list li { padding: 0; font-size: .9rem; color: var(--ink); }
.detail__included { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .9rem; font-size: .88rem; }
.detail__included li { list-style: none; padding-left: 1.3rem; position: relative; }
.detail__included li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.detail__included li.no::before { content: "✕"; color: #C62828; }

.detail__guide {
  display: grid; grid-template-columns: 72px 1fr; gap: 1rem;
  padding: 1.2rem; background: var(--sand); border-radius: var(--radius); margin-bottom: .6rem;
}
.detail__guide img { width: 72px; height: 72px; border-radius: 999px; object-fit: cover; }
.detail__guide strong { display: block; font-size: 1rem; color: var(--charcoal); }
.detail__guide small { display: block; color: var(--muted); margin-bottom: .4rem; font-size: .8rem; }
.detail__guide p { font-size: .88rem; margin-bottom: .6rem; color: var(--ink); font-weight: 300; }

.detail__book {
  background: var(--sand); padding: 1.4rem;
  border-radius: var(--radius); position: sticky; top: 0;
}
.detail__book .btn { width: 100%; margin-bottom: .55rem; }
.detail__date, .detail__pax { display: block; margin-bottom: .8rem; }
.detail__date span, .detail__pax span {
  display: block; font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem;
}
.detail__date input, .detail__pax select {
  width: 100%; padding: .75rem .9rem;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--card);
  font: inherit; color: var(--charcoal);
  transition: border-color .15s;
}
.detail__date input:focus, .detail__pax select:focus { outline: none; border-color: var(--amber); }
.detail__trust { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .4rem; font-size: .83rem; color: var(--muted); }

.detail__pricing table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.detail__pricing td { padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.detail__pricing td:last-child { text-align: right; color: var(--green-dark); font-weight: 600; }
.detail__pricing .total td { border-bottom: 0; border-top: 2px solid var(--charcoal); padding-top: .8rem; font-family: "DM Sans"; font-weight: 700; color: var(--charcoal); font-size: 1.05rem; }
.detail__pricing .total td:last-child { color: var(--green); }

.day { padding: .85rem 0; border-bottom: 1px dashed var(--line); }
.day:last-child { border-bottom: 0; }
.day b { color: var(--amber); font-family: "DM Sans"; font-weight: 600; }

/* ---------- AUTH MODAL ---------- */
.auth__head { padding: 2.2rem 2.2rem 1.2rem; border-bottom: 1px solid var(--line); }
.auth__head .eyebrow { color: var(--amber); }
.auth__head p { color: var(--muted); font-size: .9rem; margin: 0; font-weight: 300; }
.auth__body { padding: 1.8rem 2.2rem 2.2rem; }
.auth__form label { display: block; margin-bottom: 1.1rem; }
.auth__form label span { display: block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .4rem; }
.auth__form input {
  display: block;              /* force below label span */
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--charcoal); font-size: .95rem;
  transition: border-color .15s;
}
.auth__form input:focus { outline: none; border-color: var(--amber); }
.auth__sent { text-align: center; padding: 2rem 0; }
.auth__sent .emoji { font-size: 3rem; margin-bottom: .5rem; }
.auth__sent h3 { margin-bottom: .4rem; font-family: "Cormorant Garamond", serif; font-size: 1.5rem; }
.auth__sent p { color: var(--muted); font-size: .9rem; font-weight: 300; }
.auth__bookings-list { display: grid; gap: .7rem; margin-top: 1.1rem; }
.auth__booking-item {
  padding: .9rem 1.1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius); font-size: .88rem;
  display: grid; grid-template-columns: 1fr auto; gap: .3rem .8rem; align-items: center;
}
.auth__booking-item strong { font-size: .92rem; }
.auth__booking-item small { color: var(--muted); grid-column: 1; }

/* ---------- BOOKING MODAL ---------- */
.booking-form { padding: 2.2rem; }
.booking-form h2 { font-size: 1.6rem; margin-bottom: .3rem; font-family: "Cormorant Garamond", serif; }
.booking-summary {
  display: flex; gap: .9rem; align-items: center;
  padding: 1rem; background: var(--sand); border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.booking-summary img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.booking-summary strong { display: block; font-size: .95rem; color: var(--charcoal); }
.booking-summary small { color: var(--muted); font-size: .8rem; font-weight: 300; }
.booking-fields { display: grid; gap: 1rem; margin-bottom: 1.3rem; }
.booking-fields label { display: block; }
.booking-fields label span {
  display: block; font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .35rem;
}
.booking-fields input, .booking-fields select {
  display: block;              /* force below label span */
  width: 100%; padding: .78rem 1rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--charcoal);
  background: var(--card);
  transition: border-color .15s;
}
.booking-fields input:focus, .booking-fields select:focus { outline: none; border-color: var(--amber); }
/* Two-col row inside booking fields (date + pax) */
.booking-fields__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: .9rem;
}
@media (max-width: 480px) { .booking-fields__row { grid-template-columns: 1fr; } }
.booking-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.1rem; background: var(--charcoal); color: #fff;
  border-radius: var(--radius); margin-bottom: 1rem;
}
.booking-price-row span { font-size: .83rem; color: rgba(255,255,255,.65); }
.booking-price-row strong { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; color: var(--amber); }
.booking-error { color: #C62828; font-size: .83rem; margin-top: .5rem; min-height: 1.2em; }

/* ---------- BOOKING BANNER ---------- */
.booking-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--green); color: #fff;
  padding: 1rem 1.8rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 500; font-size: .92rem;
  animation: slideDown .35s ease both;
}
.booking-banner[hidden] { display: none; }
.booking-banner button {
  background: rgba(255,255,255,.2); border: 0; color: #fff;
  border-radius: 999px; width: 28px; height: 28px; font-size: 1.2rem; cursor: pointer;
  transition: background .2s;
}
.booking-banner button:hover { background: rgba(255,255,255,.35); }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- SKELETON ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--line) 25%, #ede7da 50%, var(--line) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.tour-grid.is-loading .tour { pointer-events: none; }
/* Empty-state message when no tour filter results */
.no-results { color: var(--muted); font-size: .95rem; padding: 2.5rem 0; text-align: center; grid-column: 1 / -1; }
/* Park spot count pill (injected via JS inline style — kept here for reference) */
.park__spots { display: block; margin-top: 4px; opacity: .8; font-size: .7rem; color: rgba(255,255,255,.8); }

/* ---- Section head center alignment helper ---- */
.section__head--center .eyebrow { margin: 0 auto; }
.section__head--center .section__sub { margin: .6rem auto 0; }

/* ---- Nav responsive (safety net) ---- */
@media (min-width: 860px) {
}

/* ---- Mobile nav (legacy overrides removed) ---- */
@media (max-width: 639px) {
  #navWhatsapp span { display: none; }
  #navWhatsapp { padding: .7rem .8rem; }
  .nav__inner { min-height: 60px; }
}

/* ---- Hero responsive ---- */
@media (max-width: 640px) {
  .hero__title { font-size: 2.6rem; }
  .hero__inner {
    padding-top: 7.5rem;   /* extra room for 2-row mobile nav */
    padding-bottom: 4rem;
  }
}

/* ============================================================
   SPA PAGE SWITCHER — Only one page at a time
   ============================================================ */
/* Nav links/buttons that carry data-page are NOT sections — ignore them */
section[data-page] { display: none; }

/* Show only the section(s) matching the current page (body.page-*) */
body.page-home       section[data-page="home"],
body.page-tours      section[data-page="tours"],
body.page-destinations section[data-page="destinations"],
body.page-health-visas section[data-page="health-visas"],
body.page-guides     section[data-page="guides"],
body.page-trust      section[data-page="trust"],
body.page-reviews    section[data-page="reviews"] {
  display: block;
}

/* Non-home pages: clear the fixed nav + fill the viewport */
body:not(.page-home) section[data-page].is-visible-page,
body.page-tours      section[data-page="tours"],
body.page-destinations section[data-page="destinations"],
body.page-health-visas section[data-page="health-visas"],
body.page-guides     section[data-page="guides"],
body.page-trust      section[data-page="trust"],
body.page-reviews    section[data-page="reviews"] {
  padding-top: calc(var(--nav-h) + 2.5rem);
  min-height: calc(100vh - var(--nav-h));
}

/* Active nav link — gold underline visible */
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after { transform: scaleX(1); }

/* Page-switch fade animation */
body.page-home       section[data-page="home"],
body.page-tours      section[data-page="tours"],
body.page-destinations section[data-page="destinations"],
body.page-health-visas section[data-page="health-visas"],
body.page-guides     section[data-page="guides"],
body.page-trust      section[data-page="trust"],
body.page-reviews    section[data-page="reviews"] {
  animation: pageIn .35s ease both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ---- Footer responsive ---- */
.footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1.3fr; } }

/* ============================================================
   DESTINATIONS — Categorised destination grid
   ============================================================ */

.destinations { background: var(--sand); padding: 5rem 0; }

/* Tab bar */
.dest-tabs {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.dest-tabs::-webkit-scrollbar { display: none; }

.dest-tab {
  flex-shrink: 0;
  padding: .45rem 1.15rem;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
  font-family: inherit;
}
.dest-tab:hover { border-color: var(--green); color: var(--green); }
.dest-tab--active { background: var(--green); border-color: var(--green); color: #fff; }

/* Card grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.dest-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.13); }

.dest-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.dest-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.dest-card__cat {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--amber);
}

.dest-card__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}

.dest-card__desc {
  font-size: .855rem;
  color: var(--muted);
  line-height: 1.55;
  margin: .1rem 0 0;
}

.dest-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .3rem;
}

.dest-chip {
  font-size: .7rem;
  padding: .2rem .6rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 500;
  white-space: nowrap;
}

.dest-card__season {
  font-size: .77rem;
  color: var(--muted);
  margin-top: .25rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.dest-card__season::before { content: "🗓"; font-size: .78rem; }

/* ============================================================
   HEALTH & VISAS SECTION
   ============================================================ */

.health-visas {
  background: var(--green-dark);
  color: rgba(255,255,255,.9);
  padding: 5rem 0;
}
.health-visas .eyebrow { background: rgba(255,255,255,.12); color: rgba(255,255,255,.65); }
.health-visas h2 { color: #fff; }
.health-visas .section__sub { color: rgba(255,255,255,.65); max-width: 560px; }

/* Two-panel grid */
.hv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 860px) { .hv-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.hv-panel__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.4rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

/* Health requirement items */
.req-list { display: flex; flex-direction: column; gap: .8rem; }

.req-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: .85rem .95rem;
  border-left: 3px solid transparent;
}
.req-item--required { background: rgba(200,146,42,.12); border-left-color: var(--amber); }
.req-item--recommended { border-left-color: rgba(255,255,255,.25); }

.req-item__icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1.35; }

.req-item__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--amber);
  margin-bottom: .15rem;
  display: block;
}
.req-item__name { font-size: .92rem; font-weight: 600; color: #fff; margin-bottom: .15rem; }
.req-item__note { font-size: .8rem; color: rgba(255,255,255,.58); line-height: 1.5; }

/* Visa on arrival box */
.voa-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}
.voa-box__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.45); margin-bottom: .3rem; }
.voa-box__heading { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: .3rem; }
.voa-box p { font-size: .83rem; color: rgba(255,255,255,.62); margin: 0; line-height: 1.55; }

/* Visa-free chips */
.vf-intro { font-size: .875rem; color: rgba(255,255,255,.65); margin: 0 0 1.1rem; line-height: 1.55; }

.vf-grid { display: flex; flex-wrap: wrap; gap: .35rem; }

.vf-chip {
  font-size: .72rem;
  font-weight: 500;
  padding: .28rem .72rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.14);
  white-space: nowrap;
}

.vf-note {
  margin-top: 1.2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.55;
}
