/* ============================================================
   Navoi Tanzania Safari — Shared Design System
   Used by every template. Edit here to change the whole site.
   ============================================================ */

:root{
  --ink:#F7F1E4;
  --ink-rgb:247,241,228;
  --ink-2:#EEE3CC;
  --panel:#F1E7D4;
  --gold:#A97D34;
  --gold-light:#7C5A24;
  --gold-dim:#C7A467;
  --ivory:#2A2318;
  --stone:#6B6252;
  --rust:#8B4A30;
  --hair:rgba(120,90,40,0.20);
  --chip-text:#F1DFB8;
  --shadow-rgb:42,30,16;
  --max:1200px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

body{
  background:var(--ink);
  color:var(--ivory);
  font-family:'Jost', sans-serif;
  font-weight:300;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,.serif{ font-family:'Fraunces', serif; font-weight:400; }

a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 32px;}

.eyebrow{
  font-family:'Jost', sans-serif;
  font-size:12px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:500;
}

/* ---------- Scroll trail (signature element) ---------- */
#trail{
  position:fixed; top:0; left:0; width:2px; height:100vh;
  background:var(--hair); z-index:40; pointer-events:none;
}
#trail-fill{
  width:100%; height:0%;
  background:linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow:0 0 8px rgba(169,125,52,0.6);
  transition:height 0.08s linear;
}
@media (max-width:900px){ #trail{display:none;} }

/* ---------- Nav ---------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:56;
  padding:22px 0;
  transition:background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom:1px solid transparent;
  background:linear-gradient(180deg, rgba(var(--shadow-rgb),0.55) 0%, rgba(var(--shadow-rgb),0.2) 75%, transparent 100%);
}
header.scrolled{
  background:rgba(var(--ink-rgb),0.92);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  padding:14px 0;
  border-bottom:1px solid var(--hair);
}
nav.wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:56px; width:auto; transition:height 0.4s ease; filter:drop-shadow(0 2px 6px rgba(20,15,8,0.45)); }
header.scrolled .brand img{ height:44px; }
.brand .logo-scrolled{ display:none; }
header.scrolled .brand .logo-default{ display:none; }
header.scrolled .brand .logo-scrolled{ display:block; filter:none; }

.nav-links{ display:flex; align-items:center; gap:34px; font-size:13px; letter-spacing:0.12em; text-transform:uppercase; font-weight:600; }
.nav-links > li{ position:relative; list-style:none; }
.nav-links a{ padding:6px 0; position:relative; color:#F3ECDA; transition:color 0.3s ease; }
header.scrolled .nav-links a{ color:var(--ivory); }
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:var(--gold); transform:scaleX(0); transform-origin:left;
  transition:transform 0.35s ease;
}
.nav-links a:hover::after{ transform:scaleX(1); }
.nav-links ul{ display:flex; }

.nav-links .has-dropdown{ display:flex; align-items:center; position:static; }
.mega-menu{
  position:absolute; top:100%; left:0; right:0;
  padding:0 32px;
  opacity:0; visibility:hidden;
  transition:opacity 0.25s ease, visibility 0.25s;
  z-index:49;
}
.has-dropdown:hover .mega-menu{ opacity:1; visibility:visible; }
.mega-menu-inner{
  max-width:var(--max);
  margin:0 auto;
  background:var(--panel);
  border-top:1px solid var(--hair);
  border-bottom:1px solid var(--hair);
  box-shadow:0 24px 48px rgba(60,45,20,0.14);
  padding:28px 8px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:4px;
}
@media (max-width:900px){ .mega-menu-inner{ grid-template-columns:repeat(2, 1fr); } }

.mega-item{
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 16px; border-radius:2px;
  transition:background 0.25s ease;
}
.mega-item:hover{ background:rgba(169,125,52,0.08); }
.mega-item::after{ display:none; }
.mega-icon{ width:34px; height:34px; flex-shrink:0; opacity:0.9; margin-top:2px; }
.mega-icon svg{ width:100%; height:100%; }
.mega-text{ display:flex; flex-direction:column; gap:4px; }
.mega-name{
  font-family:'Fraunces', serif; font-style:italic; font-weight:400;
  font-size:15px; color:var(--ivory); text-transform:none; letter-spacing:0;
}
.mega-tagline{
  font-family:'Jost', sans-serif; font-size:12px; font-weight:400;
  color:var(--stone); text-transform:none; letter-spacing:0; line-height:1.4;
}

.nav-cta{
  background:var(--gold);
  border:1px solid var(--gold);
  padding:10px 22px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:#FBF6EA;
  transition:background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.nav-cta:hover{ background:#8C6425; border-color:#8C6425; transform:translateY(-1px); }

.nav-toggle{ display:none; }

/* ---------- Buttons ---------- */
.btn-primary{
  display:inline-block;
  background:var(--gold);
  color:var(--ivory);
  padding:15px 34px;
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-weight:500;
  transition:background 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover{ background:var(--gold-light); transform:translateY(-2px); }
.btn-ghost{
  display:inline-block;
  border:1px solid var(--hair);
  color:var(--ivory);
  padding:15px 34px;
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  transition:border-color 0.3s ease, color 0.3s ease;
}
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold-light); }

/* ---------- Page hero (interior pages — shorter than homepage hero) ---------- */
.page-hero{
  position:relative;
  min-height:100vh;
  display:flex; align-items:center; justify-content:center; text-align:center;
  padding:180px 24px 90px;
  overflow:hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 15%, rgba(169,125,52,0.10), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink) 100%);
}
.page-hero-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0.94; filter:saturate(1.05) brightness(0.92);
  z-index:0;
}
.page-hero::after{
  content:''; position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(var(--shadow-rgb),0.5) 0%, rgba(var(--shadow-rgb),0) 22%),
    linear-gradient(180deg, rgba(var(--shadow-rgb),0.1) 0%, rgba(var(--shadow-rgb),0.4) 100%);
}
.page-hero-inner{ position:relative; z-index:2; max-width:760px; }
.page-hero .crumb{ color:#E4D8BE; }
.page-hero .crumb a{ color:#E4D8BE; }
.page-hero .eyebrow{ display:block; margin-bottom:22px; color:var(--chip-text); }
.page-hero h1{
  font-size:clamp(30px, 4.6vw, 52px);
  line-height:1.22; font-style:italic; font-weight:400;
  color:#FBF6EA;
}
.page-hero h1 em{ font-style:normal; color:#E7BE72; }
.page-hero p{ margin-top:22px; font-size:16px; color:#E4D8BE; max-width:520px; margin-left:auto; margin-right:auto; }
.placeholder-tag{
  font-size:9.5px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--chip-text); background:rgba(var(--shadow-rgb),0.55);
  border:1px solid var(--hair); padding:4px 9px; -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px);
  display:inline-block;
}
.page-hero .placeholder-tag{ position:absolute; left:24px; bottom:24px; z-index:2; }

/* ---------- Hero (homepage — full bleed) ---------- */
.hero{
  position:relative; min-height:100vh;
  display:flex; align-items:center; justify-content:center; text-align:center;
  padding:160px 24px 120px; overflow:hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 15%, rgba(169,125,52,0.10), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink) 100%);
}
.hero-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0.96; filter:saturate(1.05) brightness(0.94);
  z-index:0;
}
.hero::after{
  content:''; position:absolute; inset:0; z-index:0;
  background:
    linear-gradient(180deg, rgba(var(--shadow-rgb),0.55) 0%, rgba(var(--shadow-rgb),0) 16%),
    radial-gradient(ellipse 75% 65% at 50% 42%, rgba(var(--shadow-rgb),0.45), rgba(var(--shadow-rgb),0.12) 70%, rgba(var(--shadow-rgb),0.4) 100%);
}
.hero-scape{ position:absolute; left:0; right:0; bottom:0; width:100%; opacity:0.9; z-index:1; }
.hero-placeholder-tag{ position:absolute; left:24px; bottom:24px; z-index:2; }
.hero-inner{ position:relative; z-index:2; max-width:820px; }
.hero-mark{ width:64px; margin:0 auto 32px; opacity:0.9; }
.hero .eyebrow{ display:block; margin-bottom:26px; color:var(--chip-text); }
.hero h1{
  font-size:clamp(32px, 5vw, 58px); line-height:1.22; font-style:italic; font-weight:400;
  color:#FBF6EA; letter-spacing:0.005em;
}
.hero h1 em{ font-style:normal; color:#E7BE72; }
.hero p{ margin-top:28px; font-size:16px; color:#E4D8BE; max-width:520px; margin-left:auto; margin-right:auto; }
.hero-actions{ margin-top:44px; display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }

.scroll-cue{
  position:absolute; bottom:38px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-size:10px; letter-spacing:0.24em; text-transform:uppercase; color:var(--stone);
  z-index:2;
}
.scroll-cue .line{ width:1px; height:44px; background:linear-gradient(180deg, var(--gold), transparent); animation:cueMove 2.4s ease-in-out infinite; }
@keyframes cueMove{ 0%,100%{ opacity:0.4; } 50%{ opacity:1; } }

/* ---------- Sections ---------- */
section{ position:relative; padding:130px 0; }
.section-inner{ max-width:760px; }
.center{ margin-left:auto; margin-right:auto; text-align:center; }

.waypoint{ width:9px; height:9px; border-radius:50%; border:1px solid var(--gold); background:var(--ink); margin-bottom:28px; }
.center .waypoint{ margin-left:auto; margin-right:auto; }

.reveal{ opacity:0; transform:translateY(26px); transition:opacity 0.9s ease, transform 0.9s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

h2{ font-size:clamp(26px, 3.4vw, 40px); font-weight:400; line-height:1.3; color:var(--ivory); margin-bottom:26px; }
h2 em{ font-style:italic; color:var(--gold-light); }

.lede{ font-size:19px; font-style:italic; font-family:'Fraunces', serif; color:var(--gold-light); line-height:1.6; margin-bottom:22px; }

section p{ color:var(--stone); font-size:16px; margin-bottom:18px; }
section p:last-child{ margin-bottom:0; }
section p strong{ color:var(--ivory); font-weight:400; }

.divider{ width:1px; height:64px; background:linear-gradient(180deg, transparent, var(--gold), transparent); margin:0 auto; }

/* ---------- Safari / Tour cards (grid) ---------- */
.stat-strip{
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--hair); border-bottom:1px solid var(--hair);
  margin:56px 0 70px;
}
.stat-strip div{ padding:26px 30px; border-left:1px solid var(--hair); }
.stat-strip div:first-child{ border-left:none; }
.stat-strip .num{ font-family:'Fraunces', serif; font-style:italic; font-size:28px; color:var(--gold-light); display:block; margin-bottom:6px; }
.stat-strip .lbl{ font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--stone); }
@media (max-width:760px){
  .stat-strip{ grid-template-columns:repeat(2,1fr); }
  .stat-strip div:nth-child(3){ border-left:none; }
  .stat-strip div{ border-top:1px solid var(--hair); }
  .stat-strip div:first-child, .stat-strip div:nth-child(2){ border-top:none; }
}

.collection-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; flex-wrap:wrap; }
.collection-head p{ max-width:340px; font-size:14.5px; color:var(--stone); }

.collection-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:2px; background:var(--hair); margin-top:8px; }
.collection-grid.cols-3{ grid-template-columns:repeat(3, 1fr); }
@media (max-width:980px){ .collection-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .collection-grid{ grid-template-columns:1fr; } }

.safari-card{ background:var(--ink); display:flex; flex-direction:column; transition:background 0.4s ease; }
.safari-card:hover{ background:var(--ink-2); }
.safari-visual{
  position:relative; aspect-ratio:4/3;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  background:
    radial-gradient(ellipse 120% 90% at 30% 0%, rgba(169,125,52,0.14), transparent 60%),
    linear-gradient(160deg, #F1E7D4 0%, #E4D5B4 100%);
}
.safari-visual img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:saturate(0.88) brightness(0.95) sepia(0.08);
  transition:transform 0.6s ease, filter 0.5s ease;
}
.safari-card:hover .safari-visual img{ transform:scale(1.06); filter:saturate(0.95) brightness(1) sepia(0.08); }
.safari-visual::before{
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(var(--shadow-rgb),0.05) 0%, rgba(var(--shadow-rgb),0.22) 75%, rgba(var(--shadow-rgb),0.5) 100%);
}
.visual-badge{
  position:absolute; top:14px; right:14px; z-index:2;
  width:38px; height:38px; border-radius:50%;
  background:rgba(var(--shadow-rgb),0.5); border:1px solid var(--hair);
  display:flex; align-items:center; justify-content:center; -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px);
}
.visual-badge svg{ width:20px; height:20px; opacity:0.9; }
.safari-visual .placeholder-tag{ position:absolute; left:14px; bottom:12px; z-index:2; }
.safari-visual::after{ content:''; position:absolute; inset:0; z-index:2; border:1px solid transparent; transition:border-color 0.4s ease; }
.safari-card:hover .safari-visual::after{ border-color:var(--hair); }

.safari-body{ padding:26px 28px 30px; flex:1; display:flex; flex-direction:column; }
.safari-tags{ font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.safari-body h3{ font-family:'Fraunces', serif; font-style:italic; font-weight:400; font-size:20px; color:var(--ivory); margin-bottom:12px; }
.safari-body p{ font-size:13.5px; color:var(--stone); margin-bottom:22px; flex:1; }
.safari-link{ display:inline-flex; align-items:center; gap:8px; font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold-light); align-self:flex-start; }
.safari-link svg{ width:12px; height:12px; transition:transform 0.3s ease; }
.safari-card:hover .safari-link svg{ transform:translateX(4px); }

/* ---------- Two column split (Our Approach style) ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.split .art{ display:flex; justify-content:center; }
.split .art svg{ width:100%; max-width:340px; height:auto; }
.split .art img{ width:100%; border-radius:2px; }
@media (max-width:860px){ .split{ grid-template-columns:1fr; gap:50px; } .split .art{ order:-1; } }

/* ---------- Triad (three quiet blocks) ---------- */
.triad{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin-top:56px; }
.triad > div{ padding:0 34px; border-left:1px solid var(--hair); }
.triad > div:first-child{ border-left:none; padding-left:0; }
.triad h3{ font-size:19px; font-style:italic; color:var(--gold-light); margin-bottom:14px; font-weight:400; }
.triad p{ font-size:14.5px; }
@media (max-width:860px){
  .triad{ grid-template-columns:1fr; gap:36px; }
  .triad > div{ border-left:none; padding-left:0; border-top:1px solid var(--hair); padding-top:30px; }
  .triad > div:first-child{ border-top:none; padding-top:0; }
}

/* ---------- Local / destination grid ---------- */
.local-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.local-grid .art svg{ width:100%; max-width:420px; }
.local-grid .art img{ width:100%; border-radius:2px; }
@media (max-width:860px){ .local-grid{ grid-template-columns:1fr; gap:44px; } }

/* ---------- Icon row ---------- */
.icon-row{ display:flex; gap:56px; justify-content:center; margin:50px 0 46px; flex-wrap:wrap; }
.icon-row div{ text-align:center; max-width:150px; }
.icon-row svg{ width:38px; height:38px; margin-bottom:14px; }
.icon-row span{ font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--stone); }

/* ---------- Reasons list ---------- */
.reasons{ margin-top:20px; }
.reasons li{
  list-style:none; display:flex; align-items:baseline; gap:16px; padding:20px 0;
  border-bottom:1px solid var(--hair);
  font-family:'Fraunces', serif; font-size:19px; font-style:italic; color:var(--ivory);
}
.reasons li:first-child{ border-top:1px solid var(--hair); }
.reasons li::before{ content:'—'; color:var(--gold); font-family:'Jost',sans-serif; font-style:normal; }

/* ---------- Closing statement ---------- */
#closing{
  text-align:center;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(169,125,52,0.10), transparent 60%), var(--ink);
  padding:150px 0 90px;
}
#closing .serif-mark{ width:46px; margin:0 auto 34px; opacity:0.85; }
#closing h2{ max-width:740px; margin-left:auto; margin-right:auto; }
#closing .lines p{ font-family:'Fraunces', serif; font-style:italic; color:var(--gold-light); font-size:18px; margin-bottom:6px; }

/* ---------- Contact / CTA band ---------- */
#contact{ padding-top:70px; }
.contact-card{ border:1px solid var(--hair); padding:56px; display:grid; grid-template-columns:1.1fr 1fr; gap:48px; align-items:center; }
@media (max-width:760px){ .contact-card{ grid-template-columns:1fr; padding:38px 26px; } }
.contact-card h3{ font-size:26px; font-style:italic; font-weight:400; color:var(--ivory); margin-bottom:14px; }
.contact-card p{ color:var(--stone); font-size:15px; }
.contact-details{ display:flex; flex-direction:column; gap:18px; }
.contact-details a, .contact-details span{ display:flex; align-items:center; gap:14px; font-size:15px; color:var(--ivory); }
.contact-details svg{ width:18px; height:18px; flex-shrink:0; }
.contact-details a:hover{ color:var(--gold-light); }

/* ---------- Footer ---------- */
footer{ border-top:1px solid var(--hair); padding:56px 0 40px; }
.footer-grid{ display:flex; justify-content:space-between; align-items:flex-start; gap:40px; flex-wrap:wrap; }
.footer-brand img{ height:34px; margin-bottom:14px; }
.footer-brand p{ color:var(--stone); font-size:13px; max-width:260px; }
.footer-cols{ display:flex; gap:70px; flex-wrap:wrap; }
.footer-col h4{ font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; font-weight:500; }
.footer-col a{ display:block; font-size:13.5px; color:var(--stone); margin-bottom:11px; transition:color 0.25s ease; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{
  margin-top:56px; padding-top:26px; border-top:1px solid var(--hair);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px;
  font-size:12px; color:var(--stone); letter-spacing:0.03em;
}

/* ---------- Mobile nav ---------- */
.mobile-menu{ display:none; } /* hidden by default; only shown on narrow screens below */

@media (max-width:980px){
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; z-index:60; }
  .nav-toggle span{ width:26px; height:1px; background:#E7BE72; }
  header.scrolled .nav-toggle span{ background:var(--gold-light); }
  .mobile-menu{
    display:flex; position:fixed; inset:0; background:var(--ink); z-index:55;
    flex-direction:column; align-items:center; justify-content:center; gap:26px;
    transform:translateY(-100%); transition:transform 0.5s ease;
    overflow-y:auto; padding:60px 24px;
  }
  .mobile-menu.open{ transform:translateY(0); }
  body.mobile-menu-open header{ display:none; }
  .mobile-menu-close{
    position:absolute; top:24px; right:24px; z-index:2;
    width:44px; height:44px; display:flex; align-items:center; justify-content:center;
    background:none; border:1px solid var(--hair); border-radius:50%;
    color:var(--gold-light); cursor:pointer;
  }
  .mobile-menu-close svg{ width:20px; height:20px; }
  .mobile-menu a{ font-family:'Fraunces',serif; font-style:italic; font-size:24px; color:var(--ivory); }
  .mobile-menu .m-sub{ display:flex; flex-direction:column; gap:14px; align-items:center; margin-top:6px; }
  .mobile-menu .m-sub a{ font-family:'Jost',sans-serif; font-style:normal; font-size:13px; letter-spacing:0.06em; color:var(--stone); }
}


/* ---------- Availability / Departures ---------- */
.departures-list{ margin-top:20px; }
.departure-option{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 20px; border:1px solid var(--hair); margin-bottom:10px; cursor:pointer;
  transition:border-color 0.3s ease, background 0.3s ease;
}
.departure-option:hover{ border-color:var(--gold-dim); }
.departure-option.is-full{ opacity:0.6; cursor:not-allowed; }
.departure-option input[type=radio]{ accent-color:var(--gold); width:16px; height:16px; margin-right:14px; flex-shrink:0; }
.departure-option .dep-main{ display:flex; align-items:center; }
.departure-option .dep-dates{ font-family:'Fraunces', serif; font-style:italic; color:var(--ivory); font-size:16px; }
.departure-option .dep-dates small{ display:block; font-family:'Jost', sans-serif; font-style:normal; color:var(--stone); font-size:12px; margin-top:3px; }
.avail-badge{ font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase; padding:5px 12px; border:1px solid var(--hair); white-space:nowrap; }
.avail-badge.open{ color:var(--gold-light); border-color:var(--gold-dim); }
.avail-badge.limited{ color:var(--ink); background:var(--gold-light); border-color:var(--gold-light); }
.avail-badge.full, .avail-badge.closed{ color:var(--stone); }

.custom-date-option{
  border:1px solid var(--hair); padding:18px 20px; margin-bottom:10px;
}
.custom-date-option > label{ display:flex; align-items:center; cursor:pointer; }
.custom-date-option input[type=radio]{ accent-color:var(--gold); width:16px; height:16px; margin-right:14px; }
.custom-date-fields{ display:none; margin-top:16px; padding-left:30px; }
.custom-date-fields.show{ display:block; }

/* Shared form-field styles (booking form, contact form) */
.bk-field{ margin-bottom:20px; }
.bk-field label{ display:block; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:9px; }
.bk-field input, .bk-field textarea{
  width:100%; background:transparent; border:1px solid var(--hair); color:var(--ivory);
  font-family:'Jost', sans-serif; font-size:15px; padding:13px 15px; transition:border-color 0.3s ease;
}
.bk-field input:focus, .bk-field textarea:focus{ outline:none; border-color:var(--gold); }
.bk-field textarea{ resize:vertical; min-height:100px; }
.bk-field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:520px){ .bk-field-row{ grid-template-columns:1fr; } }
.bk-checkbox{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--stone); margin-bottom:20px; }
.bk-checkbox input{ width:auto; accent-color:var(--gold); }
.bk-submit{
  background:var(--gold); color:var(--ivory); border:none; cursor:pointer;
  padding:15px 36px; font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
  font-weight:500; font-family:'Jost', sans-serif; transition:background 0.3s ease, transform 0.3s ease;
}
.bk-submit:hover{ background:var(--gold-light); transform:translateY(-2px); }
.bk-alert{ border:1px solid var(--hair); padding:16px 20px; margin-bottom:24px; font-size:14px; }
.bk-alert.success{ color:var(--gold-light); border-color:var(--gold); }
.bk-alert ul{ margin-left:18px; }



/* Breadcrumb */
.crumb{ font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--stone); margin-bottom:18px; position:relative; z-index:2; }
.crumb a{ color:var(--stone); }
.crumb a:hover{ color:var(--gold-light); }
.page-hero .crumb{ display:flex; justify-content:center; gap:8px; }

/* Facts strip (Tour Detail quick facts) */
.facts-strip{
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--hair); border-bottom:1px solid var(--hair);
  margin:0 0 90px;
}
.facts-strip div{ padding:22px 28px; border-left:1px solid var(--hair); }
.facts-strip div:first-child{ border-left:none; }
.facts-strip .num{ font-family:'Fraunces', serif; font-style:italic; font-size:22px; color:var(--gold-light); display:block; margin-bottom:6px; }
.facts-strip .lbl{ font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--stone); }
@media (max-width:760px){
  .facts-strip{ grid-template-columns:repeat(2,1fr); }
  .facts-strip div:nth-child(3){ border-left:none; }
  .facts-strip div:nth-child(n+3){ border-top:1px solid var(--hair); }
}

/* Itinerary (day by day) */
.itinerary{ margin-top:20px; }
.itinerary-day{ display:grid; grid-template-columns:110px 1fr; gap:30px; padding:32px 0; border-top:1px solid var(--hair); }
.itinerary-day:last-child{ border-bottom:1px solid var(--hair); }
.itinerary-day .day-num{ font-family:'Fraunces', serif; font-style:italic; color:var(--gold-light); font-size:15px; }
.itinerary-day h3{ font-size:19px; font-weight:400; margin-bottom:10px; color:var(--ivory); }
.itinerary-day p{ font-size:14.5px; }
@media (max-width:640px){ .itinerary-day{ grid-template-columns:1fr; gap:8px; } }

/* Pricing table */
.pricing-table{ margin-top:20px; border-top:1px solid var(--hair); }
.pricing-row{ display:flex; justify-content:space-between; align-items:baseline; padding:20px 0; border-bottom:1px solid var(--hair); gap:20px; }
.pricing-row .season{ font-size:14.5px; color:var(--ivory); }
.pricing-row .season small{ display:block; color:var(--stone); font-size:12px; margin-top:3px; }
.pricing-row .price{ font-family:'Fraunces', serif; font-style:italic; color:var(--gold-light); font-size:19px; white-space:nowrap; }
.price-note{ margin-top:16px; font-size:12.5px; color:var(--stone); }

/* Inclusions / exclusions */
.incl-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-top:20px; }
.incl-grid h4{ font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.incl-grid ul{ list-style:none; }
.incl-grid li{ font-size:14.5px; color:var(--stone); padding:9px 0; border-top:1px solid var(--hair); display:flex; gap:10px; }
.incl-grid li:first-child{ border-top:none; }
.incl-grid .yes li::before{ content:'+'; color:var(--gold); }
.incl-grid .no li::before{ content:'–'; color:var(--stone); }
@media (max-width:640px){ .incl-grid{ grid-template-columns:1fr; gap:30px; } }

/* Gallery grid */
.gallery-grid{ display:grid; grid-template-columns:repeat(6,1fr); grid-auto-rows:120px; gap:6px; margin-top:20px; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; filter:saturate(0.9) brightness(0.98); }
.gallery-grid .g-lg{ grid-column:span 3; grid-row:span 2; }
.gallery-grid .g-md{ grid-column:span 3; grid-row:span 1; }
@media (max-width:760px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:110px; }
  .gallery-grid .g-lg{ grid-column:span 2; grid-row:span 2; }
  .gallery-grid .g-md{ grid-column:span 1; grid-row:span 1; }
}

/* Article / Journal cards */
.article-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:2px; background:var(--hair); margin-top:8px; }
@media (max-width:860px){ .article-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .article-grid{ grid-template-columns:1fr; } }
.article-card{ background:var(--ink); display:flex; flex-direction:column; transition:background 0.4s ease; }
.article-card:hover{ background:var(--ink-2); }
.article-card .safari-visual{ aspect-ratio:3/2; }
.article-date{ font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }

/* Article single — prose */
.prose{ max-width:700px; margin:0 auto; }
.prose p{ font-size:16.5px; color:var(--stone); margin-bottom:22px; line-height:1.85; }
.prose h2{ font-size:26px; margin-top:50px; }
.prose blockquote{
  font-family:'Fraunces', serif; font-style:italic; font-size:22px; color:var(--gold-light);
  border-left:1px solid var(--gold); padding-left:26px; margin:40px 0;
}
.prose img{ width:100%; margin:36px 0; border-radius:2px; }

/* About page — values grid */
.values-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:2px; background:var(--hair); margin-top:56px; }
@media (max-width:760px){ .values-grid{ grid-template-columns:1fr; } }
.value-card{ background:var(--ink); padding:40px; }
.value-card h3{ font-size:19px; font-style:italic; color:var(--gold-light); margin-bottom:14px; font-weight:400; }
.value-card p{ font-size:14.5px; color:var(--stone); }

/* Team row */
.team-row{ display:flex; gap:40px; flex-wrap:wrap; margin-top:50px; }
.team-member{ max-width:220px; }
.team-member .safari-visual{ aspect-ratio:1/1; margin-bottom:16px; }
.team-member h4{ font-family:'Fraunces', serif; font-style:italic; font-weight:400; font-size:17px; color:var(--ivory); }
.team-member span{ font-size:11.5px; letter-spacing:0.06em; text-transform:uppercase; color:var(--gold); display:block; margin-top:4px; }

/* ============================================================
   Homepage additions: WhatsApp CTAs, Reviews, Why Choose Us,
   Destination cards, Blog cards, Affiliates strip
   ============================================================ */

/* Floating WhatsApp button (sitewide, in footer.php) */
.whatsapp-fab{
  position:fixed; right:24px; bottom:24px; z-index:70;
  width:56px; height:56px; border-radius:50%;
  background:#fff; box-shadow:0 8px 24px rgba(20,15,8,0.3);
  display:flex; align-items:center; justify-content:center;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-fab svg{ width:34px; height:34px; }
.whatsapp-fab:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 12px 30px rgba(20,15,8,0.38); }
@media (max-width:600px){ .whatsapp-fab{ right:16px; bottom:16px; width:50px; height:50px; } .whatsapp-fab svg{ width:30px; height:30px; } }

/* Inline WhatsApp CTA button, reused in several sections */
.btn-whatsapp{
  display:inline-flex; align-items:center; gap:10px;
  background:#3BA55C; color:#fff;
  padding:15px 30px; font-size:12px; letter-spacing:0.16em; text-transform:uppercase; font-weight:600;
  transition:background 0.3s ease, transform 0.3s ease;
}
.btn-whatsapp svg{ width:16px; height:16px; flex-shrink:0; }
.btn-whatsapp:hover{ background:#2E8B49; transform:translateY(-2px); }

/* ---------- Why Choose Us ---------- */
.why-choose-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:0; margin-top:56px; }
.why-choose-grid > div{ padding:0 30px; border-left:1px solid var(--hair); }
.why-choose-grid > div:nth-child(3n+1){ border-left:none; padding-left:0; }
.why-choose-grid .wc-icon{ width:36px; height:36px; margin-bottom:18px; }
.why-choose-grid .wc-icon svg{ width:100%; height:100%; }
.why-choose-grid h3{ font-family:'Fraunces', serif; font-style:italic; font-weight:400; font-size:18px; color:var(--ivory); margin-bottom:10px; }
.why-choose-grid p{ font-size:14px; color:var(--stone); }
@media (max-width:900px){
  .why-choose-grid{ grid-template-columns:repeat(2, 1fr); gap:40px 0; }
  .why-choose-grid > div{ border-left:none; padding-left:0; }
  .why-choose-grid > div:nth-child(2n+1){ padding-right:20px; }
}
@media (max-width:600px){
  .why-choose-grid{ grid-template-columns:1fr; gap:34px; }
  .why-choose-grid > div{ padding:0 !important; }
}

/* ---------- Reviews / Testimonials slider ---------- */
.reviews-slider{ position:relative; max-width:820px; margin:50px auto 0; text-align:center; min-height:220px; }
.review-slide{
  display:none; opacity:0; transition:opacity 0.5s ease;
}
.review-slide.active{ display:block; opacity:1; }
.review-stars{ color:var(--gold); font-size:16px; letter-spacing:3px; margin-bottom:22px; }
.review-quote{
  font-family:'Fraunces', serif; font-style:italic; font-size:22px; line-height:1.55;
  color:var(--ivory);
}
.review-meta{ margin-top:26px; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); }
.review-meta span{ display:block; color:var(--stone); text-transform:none; letter-spacing:0; margin-top:4px; font-size:13px; }
.review-dots{ display:flex; justify-content:center; gap:10px; margin-top:36px; }
.review-dot{
  width:8px; height:8px; border-radius:50%; border:1px solid var(--gold-dim);
  background:transparent; cursor:pointer; padding:0; transition:background 0.3s ease;
}
.review-dot.active{ background:var(--gold); }

/* ---------- Destination cards ---------- */
.destination-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:2px; background:var(--hair); margin-top:8px; }
@media (max-width:860px){ .destination-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .destination-grid{ grid-template-columns:1fr; } }
.destination-card{ background:var(--ink); display:flex; flex-direction:column; transition:background 0.4s ease; }
.destination-card:hover{ background:var(--ink-2); }
.destination-card .safari-visual{ aspect-ratio:5/4; }
.destination-card .safari-body h3{ font-size:19px; }
.destination-fact{ font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--stone); margin-top:4px; }
.destination-card-simple .safari-body{ gap:0; }
.destination-card-simple .destination-fact{ margin-bottom:20px; }
.destination-card-simple .safari-link{ align-self:flex-start; }

/* ---------- Affiliates strip ---------- */
.affiliates-strip{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:44px; margin-top:8px; padding:36px 0;
  border-top:1px solid var(--hair); border-bottom:1px solid var(--hair);
}
.affiliate-item{
  font-family:'Fraunces', serif; font-style:italic; font-size:17px;
  color:var(--stone); opacity:0.75; transition:opacity 0.3s ease;
  letter-spacing:0.01em;
}
.affiliate-item:hover{ opacity:1; color:var(--gold-light); }
.affiliate-item img{ height:32px; width:auto; filter:grayscale(1); opacity:0.7; transition:opacity 0.3s ease, filter 0.3s ease; }
.affiliate-item:hover img{ opacity:1; filter:grayscale(0.3); }

/* ============================================================
   Tour Detail rebuild — hero facts, intro/story, summary table,
   highlights, transfer/stay itinerary flow + sticky map,
   reusable carousel, explore-more, sticky bottom bar
   ============================================================ */

/* Hero quick-facts row + destinations, sitting inside the hero itself */
.td-facts-row{
  display:flex; align-items:center; gap:28px; flex-wrap:wrap; justify-content:center;
  margin-top:34px; padding-top:28px; border-top:1px solid rgba(243,236,218,0.25);
}
.td-fact{ text-align:center; }
.td-fact .num{ font-family:'Fraunces', serif; font-style:italic; font-size:22px; color:#FBF6EA; display:block; }
.td-fact .lbl{ font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:#E4D8BE; margin-top:2px; display:block; }
.td-facts-divider{ width:1px; height:30px; background:rgba(243,236,218,0.25); }
.td-destinations{ margin-top:18px; font-size:12.5px; color:#E4D8BE; }
.td-destinations strong{ color:#FBF6EA; font-weight:500; }

/* Intro / Story block (dark editorial) */
#td-intro{ background:var(--ink); }
.td-intro-grid{ display:grid; grid-template-columns:1fr; max-width:760px; margin:0 auto; text-align:center; }
.td-intro-grid p.lede{ text-align:left; }
.td-designer{ display:flex; align-items:center; gap:12px; justify-content:flex-start; margin-top:22px; }
.td-designer img{ width:40px; height:40px; border-radius:50%; object-fit:cover; }
.td-designer-noimg{
  width:40px; height:40px; border-radius:50%; background:var(--panel); border:1px solid var(--hair);
  display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-style:italic; color:var(--gold-light);
}
.td-designer-text{ text-align:left; }
.td-designer-text .name{ font-size:13.5px; color:var(--ivory); display:block; }
.td-designer-text .role{ font-size:11.5px; color:var(--stone); display:block; }

/* Reusable carousel — used for the intro gallery, each stay's gallery, and each experience's gallery */
.td-carousel{ margin-top:30px; }
.td-carousel-track{ display:flex; gap:10px; overflow:hidden; }
.td-carousel-slide{ flex:0 0 auto; width:260px; aspect-ratio:4/3; position:relative; display:none; }
.td-carousel-slide.active{ display:block; }
.td-carousel-slide img{ width:100%; height:100%; object-fit:cover; }
.td-carousel-caption{ font-size:11.5px; color:var(--stone); margin-top:8px; }
.td-carousel-nav{ display:flex; align-items:center; gap:14px; margin-top:10px; }
.td-carousel-count{ font-size:11px; color:var(--stone); letter-spacing:0.05em; }
.td-carousel-btn{
  width:30px; height:30px; border-radius:50%; border:1px solid var(--hair); background:none;
  color:var(--gold); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:border-color 0.25s ease;
}
.td-carousel-btn:hover{ border-color:var(--gold); }
.td-carousel-btn svg{ width:14px; height:14px; }
#td-intro .td-carousel-slide{ width:100%; aspect-ratio:16/10; }

/* Summary table */
.summary-table{ width:100%; border-collapse:collapse; margin-top:20px; }
.summary-table th{
  text-align:left; font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--stone);
  padding:12px 16px; border-bottom:1px solid var(--hair); font-weight:500;
}
.summary-table td{ padding:16px; border-bottom:1px solid var(--hair); vertical-align:top; font-size:14px; color:var(--stone); }
.summary-table tr:last-child td{ border-bottom:none; }
.summary-table .st-day{ font-family:'Fraunces',serif; font-style:italic; color:var(--gold-light); white-space:nowrap; }
.summary-table .st-camp{ color:var(--ivory); }
.summary-table .st-camp a{ text-decoration:underline; text-decoration-color:var(--hair); }
.summary-table .st-loc{ font-size:12px; color:var(--stone); display:block; margin-top:2px; }

/* Highlights (dark block) */
#td-highlights{ background:var(--ink); }
.highlight-icons{ display:flex; gap:22px; margin-bottom:28px; }
.highlight-icons svg{ width:34px; height:34px; opacity:0.85; }
.highlight-list{ list-style:none; }
.highlight-list li{
  position:relative; padding-left:22px; margin-bottom:16px; font-size:14.5px; color:var(--stone); line-height:1.6;
}
.highlight-list li::before{ content:''; position:absolute; left:0; top:9px; width:6px; height:6px; border-radius:50%; background:var(--gold); }

/* Itinerary flow (alternating transfer/stay) + sticky map */
.flow-layout{ display:grid; grid-template-columns:1.3fr 1fr; gap:60px; align-items:start; }
@media (max-width:960px){ .flow-layout{ grid-template-columns:1fr; } }
.flow-col{ display:flex; flex-direction:column; }

.flow-transfer{
  display:flex; gap:18px; padding:26px 0; border-bottom:1px solid var(--hair);
}
.flow-transfer-icon{
  width:36px; height:36px; border-radius:50%; border:1px solid var(--hair); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; color:var(--gold);
}
.flow-transfer-icon svg{ width:17px; height:17px; }
.flow-transfer-body .day{ font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
.flow-transfer-route{ font-family:'Fraunces',serif; font-style:italic; font-size:16px; color:var(--ivory); }
.flow-transfer-meta{ font-size:12px; color:var(--stone); margin-top:3px; }
.flow-transfer-desc{ font-size:14px; color:var(--stone); margin-top:10px; line-height:1.6; }

.flow-stay{ padding:40px 0; border-bottom:1px solid var(--hair); }
.flow-stay .day{ font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.flow-stay h3{ font-family:'Fraunces',serif; font-style:italic; font-weight:400; font-size:24px; color:var(--ivory); }
.flow-stay .loc{ font-size:13px; color:var(--stone); margin-top:4px; display:flex; align-items:center; gap:6px; }
.flow-stay .loc svg{ width:14px; height:14px; }
.flow-stay .desc{ font-size:14.5px; color:var(--stone); margin-top:18px; line-height:1.7; max-width:600px; }
.flow-stay .nights{ font-size:12.5px; color:var(--gold-light); margin-top:14px; }

.experience-block{ margin-top:30px; padding-top:26px; border-top:1px solid var(--hair); }
.experience-head{ display:flex; justify-content:space-between; align-items:baseline; gap:16px; }
.experience-head h4{ font-size:15px; font-weight:500; color:var(--ivory); }
.experience-head a{ font-size:11.5px; letter-spacing:0.06em; text-transform:uppercase; color:var(--gold-light); white-space:nowrap; }
.experience-desc{ font-size:13.5px; color:var(--stone); margin-top:10px; line-height:1.6; max-width:600px; }

.sticky-map-wrap{ position:sticky; top:100px; }
.sticky-map{ width:100%; height:520px; border:1px solid var(--hair); background:var(--panel); }
.sticky-map .placeholder-tag{ position:relative; display:inline-block; margin-top:10px; }
@media (max-width:960px){ .sticky-map-wrap{ position:static; margin-top:40px; } .sticky-map{ height:340px; } }

/* Explore More Trips (reuses .safari-card look) */
#explore-more{ background:var(--ink-2); }

/* Sticky bottom booking bar */
.sticky-bottom-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:45;
  background:rgba(var(--ink-rgb),0.97); border-top:1px solid var(--hair);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  padding:14px 0;
  transform:translateY(100%); transition:transform 0.4s ease;
}
.sticky-bottom-bar.show{ transform:translateY(0); }
.sbb-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.sbb-facts{ display:flex; gap:26px; }
.sbb-facts .num{ font-family:'Fraunces',serif; font-style:italic; color:var(--gold-light); font-size:16px; }
.sbb-facts .lbl{ font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:var(--stone); display:block; }
@media (max-width:640px){ .sbb-facts{ display:none; } }
