@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-700.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-800.woff2") format("woff2");
}

:root {
  --bg: #14110d;
  --bg-2: #1c1812;
  --bg-3: #241f17;
  --ink: #f3ead6;
  --muted: #c9b89a;
  --gold: #d4a017;
  --gold-2: #f0c14b;
  --line: rgba(243, 234, 214, 0.12);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --max: 1180px;
  --radius: 4px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; margin: 0 0 0.6rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0 0 0 1.1rem; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--gold);
  color: #1a1408;
  padding: 8px 12px;
}

.announce {
  background: var(--gold);
  color: #1a1408;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0.55rem 1rem;
}
.announce a { color: #1a1408; text-decoration: underline; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  min-height: 64px;
  max-height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.brand span { line-height: 1.15; }
.brand small { display: block; font-weight: 600; font-size: 0.68rem; color: var(--muted); letter-spacing: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a { color: var(--ink); font-weight: 600; font-size: 0.92rem; }
.nav-links a[aria-current="page"] { color: var(--gold-2); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius);
  font-weight: 800;
  padding: 0.78rem 1.15rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold); color: #1a1408; }
.btn-gold:hover { background: var(--gold-2); color: #1a1408; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 3.2rem 0; }
.muted { color: var(--muted); }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 62ch; }

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 17, 13, 0.88) 0%, rgba(20, 17, 13, 0.45) 48%, rgba(20, 17, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(20, 17, 13, 0.2) 0%, rgba(20, 17, 13, 0.75) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem 3.4rem;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  max-width: 14ch;
  padding-bottom: 0.15rem;
}
.hero .lead { color: #efe6d2; max-width: 38ch; }

.band { background: var(--bg-2); }
.band-3 { background: var(--bg-3); }

.tour-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}
.tour-grid.even {
  grid-template-columns: 1fr 1fr;
}
.tour-grid.even .tour-card { min-height: 260px; }
.tour-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  text-decoration: none;
}
.tour-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 17, 13, 0.92) 100%);
}
.tour-card > div { position: relative; z-index: 1; padding: 1.2rem; }
.tour-card h3 { font-size: 1.35rem; }
.tour-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.tour-stack { display: grid; gap: 1rem; }
.tour-card.tall { min-height: 580px; }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.rates {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-variant-numeric: tabular-nums;
}
table.rates caption {
  caption-side: bottom;
  text-align: left;
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}
table.rates th,
table.rates td {
  padding: 0.72rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.rates th { font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
table.rates tbody tr:last-child td { border-bottom: 0; }
table.rates tbody tr:hover { background: rgba(212, 160, 23, 0.06); }
table.rates.prose { min-width: 0; }
table.rates.prose td { white-space: normal; }
.usd { font-weight: 800; color: var(--gold-2); }
.ksh { color: var(--ink); }

.fx-note {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.trust {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
}
.trust h2 { font-size: 1.2rem; }
.trust ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.trust li {
  padding-left: 0;
  color: var(--ink);
}
.trust li strong { color: var(--gold-2); display: block; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.15rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}
.split img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
}
.facts dt { color: var(--gold-2); font-weight: 800; margin-bottom: 0.25rem; }
.facts dd { margin: 0; color: var(--muted); }

.spec {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.4rem;
}
.spec th, .spec td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec th { width: 38%; color: var(--muted); font-weight: 700; font-size: 0.88rem; }

.itin { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.itin li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.itin time {
  font-weight: 800;
  color: var(--gold-2);
  font-variant-numeric: tabular-nums;
}
.wildlife {
  columns: 2;
  gap: 2rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
}
.inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 0 0 1.5rem;
}
.inc-exc h3 { font-size: 1.05rem; }
.inc-exc ul { color: var(--muted); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.guide-card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  display: block;
}
.guide-card:hover {
  border-color: var(--gold);
  text-decoration: none;
}
.guide-card h3 { font-size: 1.05rem; }
.guide-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

@media (max-width: 768px) {
  .itin li { grid-template-columns: 1fr; gap: 0.25rem; }
  .wildlife, .inc-exc { grid-template-columns: 1fr; columns: 1; }
  .guide-grid { grid-template-columns: 1fr; }
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 700; }
.faq details p { margin: 0.6rem 0 0; color: var(--muted); }

.form {
  display: grid;
  gap: 0.85rem;
  max-width: 520px;
}
label { font-weight: 700; font-size: 0.9rem; display: grid; gap: 0.35rem; }
input, select, textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius);
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.footer {
  background: #0e0c0a;
  padding: 2.4rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.footer a { color: var(--ink); }
.worldwide {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.crumbs { font-size: 0.85rem; color: var(--muted); margin: 1rem 0 0; }
.crumbs a { color: var(--muted); }

.page-hero {
  padding: 2.2rem 0 0;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 18ch; }

@media (max-width: 900px) {
  .tour-grid, .tour-grid.even, .split, .footer-grid, .facts, .guide-grid { grid-template-columns: 1fr; }
  .tour-card.tall { min-height: 280px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 108px;
    background: var(--bg-2);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.3rem;
    z-index: 40;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .hero { min-height: 100dvh; }
  .hero-copy { padding-top: 7rem; }
  header { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
