/* ============================================================
   MANTUMA CAMP — styles.css
   uMkhuze Game Reserve · Northern KwaZulu-Natal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  --bone:           #d2cfc7;
  --paper:          #f0eeeb;
  --ink:            #3d372a;
  --ink-soft:       #5a5141;
  --bark:           #3d372a;
  --sage:           #6e7352;
  --sage-deep:      #494932;
  --terracotta:     #997153;
  --terracotta-deep:#7c5a41;
  --gold:           #aba69c;
  --gold-soft:      #c9c3b7;
  --line:           #c9c3b7;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Jost', sans-serif; font-weight: 300; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
p  { font-size: 1.05rem; }

.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--terracotta);
}
.eyebrow::before {
  content: ""; display: block; width: 2rem; height: 1px; background: var(--terracotta);
}

/* ---- LAYOUT ---- */
.container { max-width: 1220px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; position: relative; z-index: 2; }
.section-head { margin-bottom: 4rem; max-width: 780px; }
.section-head h2 { margin: 1rem 0 1.25rem; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  /* Pure-CSS safety net: if the IntersectionObserver in main.js doesn't fire
     (e.g. JS blocked, Safari file:// quirk), fade in after 1.2s anyway so
     no content is ever permanently invisible. */
  animation: revealFallback 1s ease 1.2s forwards;
}
.reveal.in { opacity: 1; transform: none; animation: none; }
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-nav.scrolled {
  background: rgba(61,55,42,.97);
  padding: .75rem 2.5rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
/* Adaptive theme: light bar + dark ink when the nav is over a light
   (paper) section. Toggled by main.js as you scroll. */
.site-nav.scrolled.nav-light {
  background: rgba(251,243,220,.96);
  box-shadow: 0 2px 20px rgba(42,26,8,.10);
}
.site-nav.nav-light .logo { color: var(--sage-deep); }
.site-nav.nav-light .logo-wordmark { filter: none; }
.site-nav.nav-light .nav-links a { color: var(--ink); }
.site-nav.nav-light .nav-hamburger span { background: var(--ink); }
.logo {
  display: flex; align-items: center; flex-shrink: 0;
  color: var(--bone);
}
.logo-wordmark {
  height: 38px; width: auto; display: block;
  transition: height .35s ease;
  filter: drop-shadow(0 1px 3px rgba(26,14,4,.45));
}
.site-nav.scrolled .logo-wordmark { height: 30px; }
.nav-links {
  display: flex; gap: 2.2rem; list-style: none;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
}
.nav-links a { color: var(--bone); opacity: .85; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--terracotta); color: var(--bone);
  padding: .55rem 1.4rem; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600;
  border: none; cursor: pointer; transition: background .2s;
}
.nav-cta:hover { background: var(--terracotta-deep); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--bone); margin: 5px 0; transition: all .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 780px;
  display: flex; align-items: flex-start;
  color: var(--bone); overflow: hidden;
  padding: 0;
  background: #2a1808;
}
/* ── Background video + legibility overlay ────────────────────── */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(26,14,4,.70) 0%, rgba(26,14,4,.34) 40%, rgba(26,14,4,.06) 72%),
    linear-gradient(180deg, rgba(26,14,4,.40) 0%, rgba(26,14,4,.12) 28%, rgba(26,14,4,.18) 60%, rgba(26,14,4,.60) 100%);
}
/* Illustrated layers replaced by the video hero.
   To bring the animated bush scene back, delete this one rule. */
.hero-bg, .hero-sun, .hero-birds, .hero-elephant, .hero-person, .acacia { display: none; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #e88828 0%, #b85020 35%, #7a3018 60%, #2a1808 100%);
}
.hero-sun {
  position: absolute; top: 18%; right: 28%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, #fff5d8 0%, #c9c3b7 35%, #aba69c 65%, transparent 100%);
  opacity: .85;
}
/* ── Birds — three depth layers, slow ambient drift ─────────────
   Negative animation-delays mean each flock starts mid-flight at
   page load — no waiting at the left edge, no snapping. */
.hero-birds { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bird-flock {
  position: absolute; left: 0;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
  will-change: transform;
}
.bird-flock.fly-fwd  { animation-name: bird-fly-fwd;  }
.bird-flock.fly-back { animation-name: bird-fly-back; }
.bird-flock.fly-back svg { transform: scaleX(-1); }

/* Per-flock placement, duration, and starting offset */
.bird-flock.far  { top: 13%; animation-duration: 42s; animation-delay: -10s; z-index: 1; }
.bird-flock.mid  { top: 30%; animation-duration: 36s; animation-delay: -22s; z-index: 2; }
.bird-flock.near { top: 48%; animation-duration: 30s; animation-delay: -8s;  z-index: 3; }

.bird-wing {
  animation: bird-flap 1.1s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.bird-flock.far  .bird-wing { animation-duration: .55s; }
.bird-flock.mid  .bird-wing { animation-duration: .85s; }
.bird-flock.near .bird-wing { animation-duration: 1.1s; }

@keyframes bird-fly-fwd  { from { transform: translateX(115vw); } to { transform: translateX(-25vw); } }
@keyframes bird-fly-back { from { transform: translateX(-25vw); } to { transform: translateX(115vw); } }
@keyframes bird-flap     { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(-0.5); } }

@media (prefers-reduced-motion: reduce) {
  .bird-flock, .bird-wing { animation: none !important; }
}

/* Walking elephant */
.hero-elephant {
  position: absolute; bottom: 7%; z-index: 2; pointer-events: none;
  transform: scaleX(-1);
  animation: elephant-walk 110s linear infinite;
}
.hero-elephant svg { width: 240px; height: 144px; overflow: visible; }
@keyframes elephant-walk { from { left: -260px; } to { left: 108vw; } }
.hero-elephant > svg { animation: body-bob 2.6s ease-in-out infinite; }
@keyframes body-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.hero-elephant .heleg-fl,
.hero-elephant .heleg-fr,
.hero-elephant .heleg-bl,
.hero-elephant .heleg-br {
  transform-origin: top center;
  animation-duration: 1.8s; animation-iteration-count: infinite; animation-timing-function: ease-in-out;
}
.hero-elephant .heleg-fl,
.hero-elephant .heleg-br { animation-name: legA; }
.hero-elephant .heleg-fr,
.hero-elephant .heleg-bl { animation-name: legB; }
@keyframes legA { 0%,100% { transform: rotate(12deg) translateY(0); } 50% { transform: rotate(-10deg) translateY(-1px); } }
@keyframes legB { 0%,100% { transform: rotate(-10deg) translateY(-1px); } 50% { transform: rotate(12deg) translateY(0); } }
.hero-elephant .he-trunk { transform-origin: top center; animation: trunk-swing 2.8s ease-in-out infinite; }
.hero-elephant .he-tail  { transform-origin: right center; animation: tail-swing 2.4s ease-in-out infinite; }
@keyframes trunk-swing { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(4deg); } }
@keyframes tail-swing  { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(8deg); } }

/* Giraffe browsing the big acacia. The head/neck rotates gently from
   the base of the neck (where it meets the body), as if reaching
   between branches and tugging leaves. */
.hero-giraffe .giraffe-head {
  transform-box: fill-box;
  transform-origin: 0% 100%;
  animation: giraffe-browse 7s ease-in-out infinite;
}
@keyframes giraffe-browse {
  0%, 12%, 100% { transform: rotate(0deg); }
  28%           { transform: rotate(-3.5deg); }   /* lift head higher into canopy */
  44%           { transform: rotate(-1.5deg); }   /* small tug */
  60%           { transform: rotate(1deg); }      /* lower a touch */
  76%           { transform: rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-giraffe .giraffe-head { animation: none; }
}

/* Person with binoculars */
.hero-person {
  position: absolute; bottom: 5%; left: 30%; z-index: 2; pointer-events: none;
}
.person-head { transform-origin: 50% 90%; animation: scan 7s ease-in-out infinite; }
@keyframes scan { 0%,100% { transform: rotate(-15deg); } 50% { transform: rotate(15deg); } }

/* Acacia silhouette */
.acacia { position: absolute; bottom: 0; left: 0; width: 100%; pointer-events: none; z-index: 1; }

/* Hero content */
.hero-content { position: relative; z-index: 2; width: 100%; padding: 155px 2rem 7vh; }
.hero-content .container { display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; max-width: 640px; margin: 0; margin-right: auto; }
.hero-wordmark { display: block; width: min(420px, 78%); height: auto; margin-bottom: 1.6rem; filter: drop-shadow(0 2px 12px rgba(26,14,4,.4)); }
.hero h1 { color: var(--bone); font-weight: 300; text-shadow: 0 2px 20px rgba(42,26,8,.5); }
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero .eyebrow { color: var(--gold-soft); margin-bottom: 1.5rem; text-shadow: 0 1px 8px rgba(42,26,8,.6); justify-content: flex-start; text-align: left; }
.hero .eyebrow::before { display: none; }
.hero-meta {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 2.5rem;
  color: rgba(245,233,200,.9); font-size: .95rem;
  border-top: 1px solid rgba(245,233,200,.30); padding-top: 1.5rem;
  text-shadow: 0 1px 6px rgba(42,26,8,.5);
}
.hero-meta strong { display: block; font-family: 'Jost',sans-serif; font-size: 1.55rem; color: var(--bone); font-weight: 400; margin-bottom: .15rem; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(245,233,200,.7); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.scroll-ring {
  width: 28px; height: 28px; border: 1px solid rgba(245,233,200,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: scroll-bob 2s ease-in-out infinite;
}
.scroll-ring::after { content: ""; width: 4px; height: 4px; background: var(--bone); border-radius: 50%; opacity: .7; }
@keyframes scroll-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================================================
   ABOUT / STATS
   ============================================================ */
.about { background: var(--paper); }
.about .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.about-text p { color: var(--ink-soft); margin-top: 1.5rem; }
.stat-stack { display: flex; flex-direction: column; gap: 0; }
.stat {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--line);
}
.stat:first-child { border-top: 1px solid var(--line); }
.stat-num { font-family: 'Jost',sans-serif; font-size: 2.5rem; color: var(--terracotta); font-weight: 400; line-height: 1; }
.stat-label { font-size: .85rem; color: var(--ink-soft); line-height: 1.4; }
.stat-label strong { display: block; font-size: .95rem; color: var(--ink); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }

/* ============================================================
   WILDLIFE
   ============================================================ */
.wildlife { background: var(--sage-deep); color: var(--bone); }
.wildlife .eyebrow { color: var(--gold-soft); }
.wildlife .eyebrow::before { background: var(--gold-soft); }
.wildlife .section-head h2 { color: var(--bone); }
.wildlife .section-head p { color: rgba(245,233,200,.8); }
.creature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.creature-card {
  background: rgba(245,233,200,.08); padding: 1.75rem 1.5rem;
  border: 1px solid rgba(245,233,200,.12); transition: background .25s;
}
.creature-card:hover { background: rgba(245,233,200,.13); }
.creature-icon { width: 52px; height: 52px; margin-bottom: 1rem; display: block; }
.creature-card h3 { font-size: 1.1rem; color: var(--bone); margin-bottom: .5rem; }
.creature-card p { font-size: .9rem; color: rgba(245,233,200,.75); }
.activity-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.activity-card {
  background: rgba(232,168,56,.12); border: 1px solid rgba(232,168,56,.2);
  padding: 1.5rem; border-left: 3px solid var(--gold);
}
.activity-card h3 { font-size: 1rem; color: var(--gold-soft); margin-bottom: .5rem; }
.activity-card p { font-size: .88rem; color: rgba(245,233,200,.75); }

/* Big 5 grid */
.big5-section-label { color: var(--gold-soft); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem; }
.big5-hint { color: rgba(245,233,200,.4); font-weight: 400; text-transform: none; letter-spacing: .04em; margin-left: .25rem; }

/* Click affordance: a small chevron at the foot of each card head that
   rotates when the card opens. Lets visitors know there's more to read. */
.big5-card-head { position: relative; }
.big5-card-head::after {
  content: "";
  display: block;
  width: 12px; height: 8px;
  margin-top: .35rem;
  background-color: rgba(245,233,200,.35);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M0 0 L 6 8 L 12 0 Z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M0 0 L 6 8 L 12 0 Z'/></svg>") center/contain no-repeat;
  transition: transform .35s ease, background-color .25s;
}
.big5-card:hover .big5-card-head::after { background-color: var(--gold-soft); }
.big5-card.open .big5-card-head::after {
  transform: rotate(180deg);
  background-color: var(--gold);
}
#big5Grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1rem; }
.big5-card {
  background: rgba(245,233,200,.06); border: 1px solid rgba(245,233,200,.1);
  cursor: pointer; transition: background .25s;
}
.big5-card:hover, .big5-card.open { background: rgba(245,233,200,.12); }
.big5-card-head { display: flex; flex-direction: column; align-items: center; padding: 1rem 1rem 1.25rem; gap: .4rem; }
.big5-photo { position: relative; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sage-deep); }
.big5-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.big5-card:hover .big5-photo img { transform: scale(1.04); }
/* Gold animated icon stays as a graceful fallback until each photo is in place */
.big5-icon { display: none; width: 56px; height: 56px; overflow: visible; }
.big5-card.no-photo .big5-photo { display: none; }
.big5-card.no-photo .big5-icon { display: block; }
.big5-card.no-photo .big5-card-head { padding-top: 1.5rem; }
.big5-icon g { transform-box: fill-box; transform-origin: center; }

/* ── Lion (10s cycle): tail swish → walk → lie down → rest → stand up ── */
.big5-lion .lion-tail { transform-origin: 100% 0%; animation: lion-tail 2.4s ease-in-out infinite; }
.big5-lion .lion-body { animation: lion-body 10s ease-in-out infinite; }
.big5-lion .lion-legs { transform-origin: 50% 0%; animation: lion-legs 10s ease-in-out infinite; }
@keyframes lion-tail { 0%,100% { transform: rotate(-12deg); } 50% { transform: rotate(15deg); } }
@keyframes lion-body { 0%,30% { transform: translateY(0); } 45%,75% { transform: translateY(7px); } 90%,100% { transform: translateY(0); } }
@keyframes lion-legs { 0%,30% { transform: scaleY(1); } 45%,75% { transform: scaleY(.15); } 90%,100% { transform: scaleY(1); } }

/* ── Leopard (8s cycle): prowl forward, pause, tail flick, prowl back ── */
.big5-leopard .leopard-body { animation: leo-prowl 8s ease-in-out infinite; }
.big5-leopard .leopard-tail { transform-origin: 100% 80%; animation: leo-flick 8s ease-in-out infinite; }
@keyframes leo-prowl { 0%,100% { transform: translateX(0); } 30% { transform: translateX(3px); } 50% { transform: translateX(3px); } 75% { transform: translateX(0); } }
@keyframes leo-flick { 0%,40%,100% { transform: rotate(0); } 55% { transform: rotate(-18deg); } 65% { transform: rotate(10deg); } 75% { transform: rotate(0); } }

/* ── Elephant (9s cycle): drink water sequence + occasional ear flap ── */
.big5-elephant .ele-trunk  { transform-origin: 0% 0%; animation: ele-trunk-drink 9s ease-in-out infinite; }
.big5-elephant .ele-ripple { animation: ele-ripple 9s ease-in-out infinite; }
@keyframes ele-trunk-drink {
  0%,8%   { transform: rotate(-8deg); }
  25%,55% { transform: rotate(8deg); }
  72%,100% { transform: rotate(-8deg); }
}
@keyframes ele-ripple {
  0%,15%  { transform: scale(0); opacity: 0; }
  30%,55% { transform: scale(1); opacity: .55; }
  70%,100% { transform: scale(0); opacity: 0; }
}

/* ── Rhino (8s cycle): graze → look up → graze again ── */
.big5-rhino .rhino-head { transform-origin: 0% 50%; animation: rhino-graze 8s ease-in-out infinite; }
@keyframes rhino-graze {
  0%,12%   { transform: translateY(0)   rotate(0deg); }
  28%,55%  { transform: translateY(3px) rotate(8deg); }
  68%,80%  { transform: translateY(-1px) rotate(-3deg); }
  92%,100% { transform: translateY(0)   rotate(0deg); }
}

/* ── Buffalo (9s cycle): stand → tail swish → head bob → graze briefly ── */
.big5-buffalo .buf-tail { transform-origin: 100% 0%; animation: buf-tail 2.7s ease-in-out infinite; }
.big5-buffalo .buf-head { transform-origin: 0% 100%; animation: buf-head 9s ease-in-out infinite; }
@keyframes buf-tail { 0%,100% { transform: rotate(15deg); } 50% { transform: rotate(-10deg); } }
@keyframes buf-head {
  0%,30%   { transform: rotate(0deg)  translateY(0); }
  45%,65%  { transform: rotate(7deg)  translateY(2px); }
  80%,100% { transform: rotate(0deg)  translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .big5-icon * { animation: none !important; }
}
.big5-card h3 { font-size: 1rem; color: var(--bone); text-align: center; }
.big5-card small { font-size: .72rem; color: rgba(245,233,200,.5); font-style: italic; }
.big5-card-body { max-height: 0; overflow: hidden; transition: max-height .45s ease, padding .35s ease; }
.big5-card.open .big5-card-body { max-height: 1200px; padding: 0 1rem 1.25rem; }
.big5-card-body p { font-size: .88rem; color: rgba(245,233,200,.8); line-height: 1.6; }

/* Species accordions */
.species-accordions { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
[data-acc] { border-bottom: 1px solid rgba(245,233,200,.12); }
.accordion-trigger {
  width: 100%; background: none; border: none; color: var(--bone);
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; font-size: .9rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer;
}
.accordion-trigger svg { transition: transform .35s; flex-shrink: 0; }
[data-acc].open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
[data-acc].open .accordion-body { max-height: 1000px; }
.species-list { padding: .75rem 0 1.5rem; display: flex; flex-wrap: wrap; gap: .3rem .5rem; }
.species-list span { font-size: .78rem; color: rgba(245,233,200,.75); }
.species-list .divider { font-size: .7rem; color: var(--terracotta); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; width: 100%; margin-top: .5rem; }

/* ============================================================
   BUSH STORIES
   ============================================================ */
.stories { background: var(--paper); padding: 5rem 0; }
.stories .section-head { max-width: 760px; margin-bottom: 3rem; }
.stories .section-lead { color: var(--ink-soft); font-size: 1rem; max-width: 640px; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.story-card {
  background: #fff;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 6px rgba(26, 14, 4, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(26, 14, 4, .12); }

.story-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.story-card:hover .story-image img { transform: scale(1.05); }
.story-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--terracotta); color: var(--bone);
  padding: .3rem .7rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.story-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.story-meta {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: .6rem; font-weight: 600;
}
.story-card h3 {
  font-family: 'Jost', sans-serif; font-weight: 400;
  font-size: 1.25rem; line-height: 1.3;
  margin-bottom: .75rem; color: var(--ink);
}
.story-card p {
  color: var(--ink-soft); font-size: .92rem; line-height: 1.6;
  margin-bottom: 1.25rem; flex: 1;
}
.story-link {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--terracotta); text-decoration: none;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color .25s;
}
.story-link:hover { border-bottom-color: var(--terracotta); }
.story-link[aria-disabled="true"] { opacity: .5; cursor: default; }
.story-link[aria-disabled="true"]:hover { border-bottom-color: transparent; }

.stories-note {
  text-align: center; font-style: italic; color: var(--ink-soft);
  font-size: .9rem; margin-top: 1rem;
}
.stories-note a { color: var(--terracotta); border-bottom: 1px dotted var(--terracotta); }

@media (max-width: 960px) { .stories-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .stories-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--ink-deep, #1a0e04); color: var(--bone); padding: 5rem 0; }
.faq .eyebrow { color: var(--gold-soft); }
.faq .eyebrow::before { background: var(--gold-soft); }
.faq h2 { color: var(--bone); font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: .75rem; }
.faq .section-lead { color: rgba(245,233,200,.7); font-size: 1rem; max-width: 640px; margin-bottom: 3rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; }
.faq-item { border-bottom: 1px solid rgba(245,233,200,.12); }
.faq-item .accordion-trigger { text-transform: none; letter-spacing: 0; font-size: 1rem; font-weight: 400; font-family: 'Jost', sans-serif; }
.faq-content { padding: 0 0 1.5rem 0; color: rgba(245,233,200,.82); font-size: .92rem; line-height: 1.65; }
.faq-content p { margin-bottom: .8rem; }
.faq-content ul { margin: .5rem 0 1rem 1.2rem; }
.faq-content li { margin-bottom: .35rem; }
.faq-content a { color: var(--gold-soft); border-bottom: 1px dotted var(--gold-soft); }
.faq-content strong { color: var(--bone); }
@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   ACCOMMODATION
   ============================================================ */
.stays { background: var(--paper); }

/* At-a-Glance summary panel */
.at-a-glance {
  background: var(--bone);
  border: 1px solid rgba(74, 53, 32, .12);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 0;
}
.glance-numbers {
  background: var(--bark);
  color: var(--bone);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.5rem;
  align-content: center;
}
.glance-numbers > div {
  display: flex; flex-direction: column;
  border-left: 2px solid var(--gold-soft);
  padding-left: 1rem;
}
.glance-numbers strong {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .35rem;
}
.glance-numbers span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245, 233, 200, .75);
  line-height: 1.3;
}
.glance-facts {
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.glance-facts h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--ink);
}
.glance-facts p {
  font-size: .94rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: .9rem;
}
.glance-facts p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .at-a-glance { grid-template-columns: 1fr; }
  .glance-facts { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .glance-numbers { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
}

.stay-card {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  background: var(--bone); border: 1px solid var(--line);
  margin-bottom: 2rem; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.stay-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(42,26,8,.12); }
.stay-visual { order: 2; min-height: 340px; position: relative; overflow: hidden; background: linear-gradient(135deg,#7a6a47,#4a4a2a); }
.stay-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.stay-gallery {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 2px; background: var(--ink);
}
.stay-gallery.two { grid-template-rows: 1fr; }
.stay-gallery.three {
  /* 1 large image on the left, 2 stacked on the right */
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.stay-gallery.three > div:nth-child(1) { grid-row: span 2; }
.stay-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.stay-gallery img:hover { transform: scale(1.04); }
.stay-gallery .photo-cap {
  position: absolute; bottom: .4rem; left: .4rem; right: .4rem;
  background: rgba(26,14,4,.78); color: var(--bone);
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .55rem; pointer-events: none; text-align: center;
}
.stay-gallery > div { position: relative; overflow: hidden; }
.stay-tag {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2;
  background: var(--bone); color: var(--ink);
  padding: .4rem 1rem; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
}
.stay-content { padding: 2.75rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.stay-content h3 { margin-bottom: .5rem; }
.stay-meta { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; font-size: .85rem; color: var(--ink-soft); }
.stay-content p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.stay-features { display: flex; flex-wrap: wrap; gap: .5rem; }
.feature-pill { border: 1px solid var(--line); padding: .3rem .9rem; font-size: .76rem; color: var(--ink-soft); }

/* Beyond Mantuma subsection */
.stays-divider { margin: 5rem 0 3rem; text-align: center; position: relative; }
.stays-divider::before, .stays-divider::after {
  content: ""; position: absolute; top: 50%; width: 25%; height: 1px; background: var(--line);
}
.stays-divider::before { left: 0; }
.stays-divider::after  { right: 0; }
.stays-divider .eyebrow { display: block; margin-bottom: .6rem; color: var(--terracotta); }
.stays-divider h3 {
  font-family: 'Jost',sans-serif; font-weight: 300; font-style: italic;
  font-size: 1.6rem; color: var(--ink); margin: 0 auto; max-width: 520px;
  background: var(--paper); padding: 0 1.5rem; display: inline-block; position: relative; z-index: 1;
}
.stay-card.beyond .stay-tag { background: var(--sage-deep); color: var(--bone); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--ink); }
.gallery .section-head h2, .gallery .section-head p, .gallery .eyebrow { color: var(--bone); }
.gallery .eyebrow::before { background: var(--gold-soft); }
.gallery .eyebrow { color: var(--gold-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: .75rem; }
.g-item { position: relative; overflow: hidden; cursor: pointer; }
.g-item img, .g-item svg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.g-item:hover img, .g-item:hover svg { transform: scale(1.05); }
.g1 { grid-column: 1 / 3; grid-row: 1 / 3; min-height: 420px; }
.g2 { min-height: 200px; }
.g3 { min-height: 200px; }
.g4 { min-height: 200px; }
.g5 { min-height: 200px; }
.g6 { grid-column: 3; grid-row: 1 / 3; min-height: 420px; }
.g7 { grid-column: 4; grid-row: 1 / 3; min-height: 420px; }
.g-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,14,4,.75));
  color: var(--bone); padding: 2rem .75rem .75rem;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  opacity: 0; transition: opacity .3s;
}
.g-item:hover .g-caption { opacity: 1; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.review-card { background: var(--bone); border: 1px solid var(--line); padding: 2rem; position: relative; }
.review-card::before {
  content: "\201C"; font-family: 'Jost',sans-serif; font-size: 5rem; color: var(--gold-soft);
  position: absolute; top: -.5rem; left: 1rem; line-height: 1; pointer-events: none;
}
.review-stars { color: var(--gold); letter-spacing: .1em; margin-bottom: .75rem; }
.review-text { font-style: italic; color: var(--ink-soft); margin-bottom: 1.25rem; line-height: 1.7; }
.review-meta { font-size: .8rem; color: var(--terracotta); font-weight: 500; letter-spacing: .08em; }

/* Featured single testimonial — used while the site has only one real
   review. When more guest reviews come in, switch back to the .review-grid
   layout above. */
.review-feature {
  max-width: 760px; margin: 3rem auto 0;
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  text-align: center;
}
.review-feature .quote-mark {
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 56px;
  color: var(--terracotta);
  background: var(--bone);
  padding: .5rem 1rem;
}
.review-feature .review-stars {
  font-size: 1.1rem; margin-bottom: 1.5rem;
  letter-spacing: .15em; color: var(--gold-soft);
}
.review-feature blockquote {
  margin: 0 0 2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.review-feature blockquote p { margin-bottom: 1.25rem; }
.review-feature blockquote p:last-child { margin-bottom: 0; }
.review-feature .review-meta {
  display: inline-block;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--terracotta);
  font-weight: 600;
  border-top: 1px solid rgba(217, 122, 42, .25);
  padding-top: 1.25rem;
}
@media (max-width: 600px) {
  .review-feature { padding: 2.5rem 1.5rem 2rem; }
  .review-feature blockquote { font-size: 1rem; }
}

.review-source { margin-top: 2.5rem; text-align: center; }
.review-source a { color: var(--terracotta-deep); font-size: .85rem; font-weight: 500; border-bottom: 1px solid var(--terracotta-deep); padding-bottom: 2px; }

/* ============================================================
   PRACTICAL / MAP
   ============================================================ */
.practical { background: var(--sage-deep); color: var(--bone); }
.practical .eyebrow { color: var(--gold-soft); }
.practical .eyebrow::before { background: var(--gold-soft); }
.practical .section-head h2 { color: var(--bone); }
.practical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.practical-info { display: flex; flex-direction: column; gap: 2.5rem; }
.info-block h4 { font-family: 'Jost',sans-serif; font-size: 1.1rem; color: var(--gold-soft); margin-bottom: .75rem; font-weight: 400; }
.info-block p, .info-block li { font-size: .92rem; color: rgba(245,233,200,.82); line-height: 1.55; }
.info-block ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; padding: 0; margin: 0; }
.info-block li {
  position: relative;
  padding-left: 1.4em;
}
/* Spearhead bullet — drawn as an SVG mask so the colour comes from CSS.
   Shape echoes the crossed assegai motif at the foot of the Mantuma logo. */
.info-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: .55em;
  height: .9em;
  background-color: var(--gold-soft);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16'><path d='M6 0 L11 6 L6 16 L1 6 Z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16'><path d='M6 0 L11 6 L6 16 L1 6 Z'/></svg>") center/contain no-repeat;
}
.gate-times { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; }
.gate-row { display: contents; }
.gate-row span:first-child { color: var(--gold-soft); font-weight: 500; }
.map-card { background: rgba(245,233,200,.06); border: 1px solid rgba(245,233,200,.12); padding: 2rem; }
.map-card .eyebrow { margin-bottom: .75rem; }
.map-card h3 { color: var(--bone); margin-bottom: .75rem; }
.map-card p { color: rgba(245,233,200,.75); font-size: .9rem; margin-bottom: 1.5rem; }
.map-note { font-size: .82rem; border-top: 1px solid rgba(245,233,200,.15); padding-top: .9rem; }
.map-note a { color: var(--gold-soft); text-decoration: underline; }
.map-note a:hover { color: var(--bone); }
.map-vis { width: 100%; aspect-ratio: 4/5; background: #f0e3c0; overflow: hidden; }
.map-directions { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.map-directions strong { color: var(--gold-soft); font-size: .9rem; font-weight: 600; }
.map-directions p { color: rgba(245,233,200,.75); font-size: .85rem; }
.map-quote { margin-top: 2rem; font-style: italic; color: rgba(245,233,200,.6); font-size: .85rem; border-top: 1px solid rgba(245,233,200,.1); padding-top: 1.25rem; }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
#bookingModal, #storyModal, #venueModal, #enquiryModal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  background: rgba(26,14,4,.85); backdrop-filter: blur(4px);
}
#bookingModal.open, #storyModal.open, #venueModal.open, #enquiryModal.open { display: flex; }
.modal-inner { background: var(--paper); width: 90vw; max-width: 920px; height: 88vh; display: flex; flex-direction: column; }
.modal-header { background: var(--bark); color: var(--bone); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.modal-header h4 { font-family: 'Jost',sans-serif; font-weight: 300; font-size: 1.1rem; }
.modal-close {
  background: none; border: none; color: var(--bone); cursor: pointer;
  font-size: 1.4rem; line-height: 1; padding: .25rem; transition: transform .25s;
}
.modal-close:hover { transform: rotate(90deg); }
.modal-iframe { flex: 1; border: none; width: 100%; }

/* ============================================================
   MAP ZOOM MODAL
   ============================================================ */
.map-vis { cursor: zoom-in; transition: filter .2s; }
.map-vis:hover { filter: brightness(1.04); }

#mapModal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  background: rgba(26,14,4,.92); backdrop-filter: blur(6px);
  padding: 2vh;
}
#mapModal.open { display: flex; }
.map-modal-inner {
  position: relative; background: var(--paper);
  width: 96vw; height: 92vh; max-width: 1400px;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 60px rgba(0,0,0,.5);
}
.map-modal-canvas { flex: 1; padding: 1rem; min-height: 0; }
.map-modal-canvas svg { width: 100%; height: 100%; cursor: default; }
.map-modal-close {
  position: absolute; top: -16px; right: -16px; z-index: 2;
  background: var(--bone); color: var(--ink, #1a0e04);
  border: 2px solid var(--ink, #1a0e04); border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1.2rem; line-height: 1; cursor: pointer;
  transition: transform .25s;
}
.map-modal-close:hover { transform: rotate(90deg); }
@media (max-width: 760px) {
  .map-modal-close { top: 8px; right: 8px; }
}

/* ============================================================
   PAW-PRINT CURSOR (desktop only, opt-in via class on <html>)
   ============================================================ */
#pawCursor {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 36px;
  margin: -18px 0 0 -16px;
  pointer-events: none;
  z-index: 99999;
  color: #3d372a;
  transition: width .25s cubic-bezier(.2,.9,.3,1.4),
              height .25s cubic-bezier(.2,.9,.3,1.4),
              margin .25s cubic-bezier(.2,.9,.3,1.4),
              opacity .2s ease,
              transform .04s linear;
  will-change: transform;
}
#pawCursor .paw {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity .35s ease;
}
#pawCursor .paw-cat  { transform: rotate(-15deg); }
#pawCursor .paw-ele  { transform: rotate(0deg); }
#pawCursor .paw-hoof { transform: rotate(8deg); }

#pawCursor[data-track="cat"]  .paw-cat  { opacity: 1; }
#pawCursor[data-track="ele"]  .paw-ele  { opacity: 1; }
#pawCursor[data-track="hoof"] .paw-hoof { opacity: 1; }

/* Activate on devices that support hover (i.e. mouse) */
@media (hover: hover) and (pointer: fine) {
  html.paw-on, html.paw-on body { cursor: none; }
  html.paw-on a, html.paw-on button,
  html.paw-on [role="button"], html.paw-on [data-open-booking],
  html.paw-on input, html.paw-on textarea, html.paw-on select,
  html.paw-on label, html.paw-on .accordion-trigger,
  html.paw-on .big5-card, html.paw-on .stay-gallery img,
  html.paw-on .gallery-grid img, html.paw-on #reserveMap {
    cursor: none;
  }
  html.paw-on #pawCursor { display: block; }
}

/* "Pressed" state: shrink + tilt slightly when hovering interactive elements */
#pawCursor.pressed {
  width: 26px; height: 30px;
  margin: -15px 0 0 -13px;
}
#pawCursor.pressed .paw { filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); }
#pawCursor.clicking {
  width: 22px; height: 26px;
  margin: -13px 0 0 -11px;
}

/* Hidden while typing in form fields */
#pawCursor.hidden { opacity: 0; }

/* Dust-trail ghost prints — spawned by JS as it moves */
.paw-ghost {
  position: fixed;
  width: 28px; height: 32px;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  color: #5a4828;
  animation: paw-ghost-fade 1.6s ease-out forwards;
}
.paw-ghost svg { width: 100%; height: 100%; display: block; }
@keyframes paw-ghost-fade {
  0%   { opacity: .35; transform: scale(1) translateY(0); }
  100% { opacity: 0;   transform: scale(.85) translateY(2px); }
}

@media (prefers-reduced-motion: reduce) {
  #pawCursor { transition: none; }
  .paw-ghost { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bark); color: var(--bone); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand img { height: 80px; margin-bottom: 1rem; }
.footer-wordmark { height: 44px; width: auto; display: block; color: var(--bone); margin-bottom: 1.1rem; }
.footer-brand p { font-size: .88rem; color: rgba(245,233,200,.65); line-height: 1.6; }
.footer-col h5 { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; font-family: 'Jost',sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col li { font-size: .88rem; color: rgba(245,233,200,.65); }
.footer-col a { color: rgba(245,233,200,.65); transition: color .2s; }
.footer-col a:hover { color: var(--bone); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a { color: rgba(245,233,200,.55); transition: color .2s; }
.footer-social a:hover { color: var(--bone); }
.footer-bottom { border-top: 1px solid rgba(245,233,200,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; color: rgba(245,233,200,.4); }
.footer-access a { color: rgba(245,233,200,.3); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: color .25s; }
.footer-access a:hover { color: rgba(245,233,200,.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  section { padding: 5rem 0; }
  .hero-content .container, .about .container, .practical-grid, .species-accordions { grid-template-columns: 1fr; }
  .creature-grid { grid-template-columns: repeat(2,1fr); }
  #big5Grid { grid-template-columns: repeat(3,1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .site-nav.menu-open .nav-links {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(61,55,42,.97); padding: 1.5rem 2.5rem; gap: 1.25rem;
  }
  .site-nav.menu-open .nav-links a { color: var(--bone); }
}
@media (max-width: 680px) {
  .stay-card, .stay-card:nth-child(even) { grid-template-columns: 1fr; }
  .activity-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g1, .g6, .g7 { grid-column: span 1; grid-row: span 1; min-height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  #big5Grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { border-left: none; padding-left: 0; border-top: 1px solid rgba(245,233,200,.25); padding-top: 1.5rem; }
}

/* ---- EXPERIENCES & ADD-ONS ---- */
.experiences { background: var(--bone); }
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.exp-card { background: #fff; border: 1px solid var(--line); padding: 1.5rem; }
.exp-card h3 { color: var(--sage-deep); margin-bottom: .6rem; font-size: 1.15rem; }
.exp-card p { color: var(--ink-soft); font-size: .92rem; line-height: 1.6; }
.exp-soon { display: inline-block; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; background: var(--gold-soft); color: var(--bark); padding: .15rem .5rem; margin-left: .4rem; vertical-align: middle; font-weight: 600; }

/* ---- MOBILE: kingfisher hero framing + small-screen tweaks ---- */
@media (max-width: 600px) {
  .hero { min-height: 78vh; }
  .hero-video { object-position: 58% center; }
  .hero-content { padding-top: 118px; }
}
@media (max-width: 400px) {
  #big5Grid { grid-template-columns: 1fr; }
}


/* ---- ACCOMMODATION VENUE CARDS ---- */
.venue-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 1.6rem; margin-top: 2.5rem; }
.venue-card { background:#fff; border:1px solid var(--line); overflow:hidden; cursor:pointer; display:flex; flex-direction:column; transition: box-shadow .25s ease, transform .25s ease; }
.venue-card:hover, .venue-card:focus-visible { box-shadow: 0 14px 34px rgba(42,26,8,.16); transform: translateY(-3px); outline:none; }
.venue-img { aspect-ratio: 4/3; overflow:hidden; }
.venue-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; display:block; }
.venue-card:hover .venue-img img { transform: scale(1.06); }
.venue-body { padding: 1.5rem; display:flex; flex-direction:column; flex:1; }
.venue-body h3 { color: var(--sage-deep); margin:.25rem 0 .6rem; }
.venue-body > p { color: var(--ink-soft); font-size:.92rem; line-height:1.6; }
.venue-facts { list-style:none; margin:1rem 0 1.2rem; display:flex; flex-direction:column; gap:.35rem; font-size:.85rem; color:var(--bark); }
.venue-facts li::before { content:"◆ "; color: var(--terracotta); }
.venue-cta { margin-top:auto; color: var(--terracotta-deep); font-weight:600; font-size:.82rem; letter-spacing:.06em; text-transform:uppercase; }


/* ---- NAV ACCOMMODATION DROPDOWN ---- */
.nav-dd { position: relative; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: .3rem; cursor: pointer; }
.nav-dd-caret { font-size: .7em; }
.nav-dd-menu { position: absolute; top: 100%; left: 0; min-width: 215px; background: rgba(42,26,8,.98); padding: .5rem 0; margin: 0; list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease, visibility .2s; box-shadow: 0 12px 30px rgba(0,0,0,.3); z-index: 120; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu li { display: block; }
.nav-dd-menu a { display: block; padding: .55rem 1.2rem; font-size: .76rem; letter-spacing: .06em; text-transform: none; color: var(--bone); opacity: .9; white-space: nowrap; }
.nav-dd-menu a:hover { background: rgba(245,233,200,.1); opacity: 1; }
@media (max-width: 900px) {
  .nav-dd-menu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; box-shadow: none; padding: .25rem 0 .5rem 1rem; }
}

/* ---- TEXT WORDMARK: Mkuze Game Reserve ---- */
.logo-word { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 1.35rem; letter-spacing: .02em; line-height: 1; white-space: nowrap; color: currentColor; display: block; filter: drop-shadow(0 1px 3px rgba(26,14,4,.45)); transition: font-size .35s ease; }
.site-nav.scrolled .logo-word { font-size: 1.15rem; }
.site-nav.nav-light .logo-word { filter: none; }
.hero-wordmark-text { font-family: 'Jost', sans-serif; font-weight: 300; color: var(--bone); font-size: clamp(2rem, 5.2vw, 3.6rem); line-height: 1.05; margin-bottom: 1.1rem; filter: drop-shadow(0 2px 12px rgba(26,14,4,.4)); max-width: 16ch; }
.footer-wordmark-text { font-family: 'Jost', sans-serif; font-weight: 300; color: var(--bone); font-size: 1.7rem; line-height: 1; margin-bottom: 1.1rem; }
@media (max-width: 600px) { .logo-word { font-size: 1.1rem; } }


/* ---- OFFICIAL MAP POP-OUT BUTTON ---- */
.map-open { display:flex; align-items:center; justify-content:space-between; gap:1rem; width:100%; text-align:left; background: rgba(245,233,200,.06); border:1px solid rgba(245,233,200,.2); color: var(--bone); padding:1.3rem 1.5rem; margin:.25rem 0 1rem; cursor:pointer; transition: background .2s ease, border-color .2s ease; font-family:'Jost',sans-serif; }
.map-open:hover { background: rgba(245,233,200,.12); border-color: var(--gold-soft); }
.map-open strong { display:block; font-family:'Jost',sans-serif; font-weight:400; font-size:1.05rem; color:var(--bone); }
.map-open small { display:block; color: rgba(245,233,200,.6); font-size:.78rem; margin-top:.25rem; }
.map-open-go { color: var(--gold-soft); font-weight:600; font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; white-space:nowrap; }


/* ---- BOOKING BAR (Stayntouch IBE) ---- */
.book-bar { background: var(--sage-deep); color: var(--bone); padding: 2rem 0; position: relative; z-index: 5; }
.book-head { display:flex; align-items:baseline; gap:1rem; flex-wrap:wrap; margin-bottom:1.1rem; }
.book-eyebrow { font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color: var(--gold-soft); }
.book-title { font-family:'Jost',sans-serif; font-weight:400; font-size:1.5rem; color:var(--bone); margin:0; line-height:1.1; }
.book-form { display:flex; flex-wrap:wrap; align-items:flex-end; gap:1rem; }
.bf-field { display:flex; flex-direction:column; gap:.35rem; flex:1 1 150px; }
.bf-field.bf-narrow { flex:0 1 100px; }
.bf-field label { font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color: var(--gold-soft); }
.bf-field label span { text-transform:none; letter-spacing:0; opacity:.6; }
.bf-field input { padding:.65rem .7rem; border:1px solid rgba(245,233,200,.3); background: rgba(255,255,255,.96); color: var(--ink); font-family:'Jost',sans-serif; font-size:.92rem; border-radius:2px; }
.bf-field input:focus { outline:none; border-color: var(--gold-soft); box-shadow:0 0 0 2px rgba(232,168,56,.3); }
.bf-submit { flex:0 0 auto; align-self:flex-end; background: var(--terracotta); color: var(--bone); border:none; padding:.72rem 1.7rem; font-family:'Jost',sans-serif; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; font-weight:600; cursor:pointer; transition: background .2s ease; border-radius:2px; }
.bf-submit:hover { background: var(--terracotta-deep); }
.book-msg { display:none; margin:1rem 0 0; padding:.8rem 1rem; background: rgba(245,233,200,.12); border-left:3px solid var(--gold-soft); color: var(--bone); font-size:.9rem; max-width:62ch; line-height:1.5; }
.book-msg.show { display:block; }
.book-alt { font-size:.82rem; color: rgba(245,233,200,.72); margin:.95rem 0 0; }
.book-alt a { color: var(--gold-soft); text-decoration:underline; }
@media (max-width: 700px) {
  .book-form { gap:.8rem; }
  .bf-field, .bf-field.bf-narrow, .bf-submit { flex:1 1 100%; }
  .bf-submit { padding:.85rem 1.7rem; }
}


/* ---- BRANDED BOOKING CALENDAR ---- */
.bf-field.bf-dates { flex: 1 1 300px; position: relative; }
.bf-field.bf-narrow { flex: 0 1 120px; }
.bf-datebtn { width:100%; display:flex; align-items:center; justify-content:space-between; gap:.6rem; padding:.62rem .8rem; background:rgba(255,255,255,.96); border:1px solid rgba(245,233,200,.3); color:var(--ink); font-family:'Jost',sans-serif; font-size:.92rem; cursor:pointer; border-radius:2px; text-align:left; }
.bf-datebtn:hover { border-color:var(--gold-soft); }
.bf-datebtn:focus-visible { outline:none; border-color:var(--gold-soft); box-shadow:0 0 0 2px rgba(232,168,56,.3); }
.bf-cal-ic { color:var(--sage-deep); flex:0 0 auto; }
.bf-cal { position:absolute; top:calc(100% + 8px); left:0; z-index:40; width:min(620px,92vw); background:var(--paper); color:var(--ink); border:1px solid var(--line); box-shadow:0 18px 44px rgba(42,26,8,.30); border-radius:5px; padding:1rem 1.1rem .9rem; }
.bf-cal[hidden] { display:none; }
.bf-cal-head { display:flex; align-items:center; justify-content:space-between; gap:.75rem; margin-bottom:.6rem; }
.bf-cal-headlbl { font-size:.8rem; color:var(--bark); flex:1; text-align:center; }
.bf-cal-nav { background:none; border:1px solid var(--line); color:var(--bark); width:34px; height:34px; border-radius:50%; cursor:pointer; font-size:1.15rem; line-height:1; flex:0 0 auto; }
.bf-cal-nav:hover { background:var(--bone); border-color:var(--gold-soft); }
.bf-cal-months { display:flex; gap:1.5rem; }
.bf-cal-month { flex:1; min-width:0; }
.bf-cal-mname { font-family:'Jost',sans-serif; font-weight:400; font-size:1rem; text-align:center; margin-bottom:.45rem; color:var(--bark); }
.bf-cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
.bf-cal-dow { font-size:.6rem; letter-spacing:.04em; text-transform:uppercase; color:var(--bark); opacity:.5; text-align:center; padding:.15rem 0; }
.bf-cal-day { border:none; background:none; aspect-ratio:1; width:100%; font-family:'Jost',sans-serif; font-size:.82rem; color:var(--ink); cursor:pointer; border-radius:50%; transition:background .12s ease; }
.bf-cal-day:hover { background:var(--bone); }
.bf-cal-day.is-past { color:#cdbf9c; cursor:default; }
.bf-cal-day.is-in { background:var(--gold-soft); border-radius:0; }
.bf-cal-day.is-start { background:var(--terracotta); color:#fff; border-radius:50% 0 0 50%; }
.bf-cal-day.is-end { background:var(--terracotta); color:#fff; border-radius:0 50% 50% 0; }
.bf-cal-day.is-start.is-end { border-radius:50%; }
.bf-cal-foot { display:flex; align-items:center; justify-content:space-between; margin-top:.6rem; border-top:1px solid var(--line); padding-top:.6rem; }
.bf-cal-clear { background:none; border:none; color:var(--bark); font-size:.78rem; text-decoration:underline; cursor:pointer; }
.bf-cal-done { background:var(--sage-deep); color:var(--bone); border:none; padding:.5rem 1.3rem; font-family:'Jost',sans-serif; font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; font-weight:600; cursor:pointer; border-radius:2px; }
.bf-cal-done:hover { background:var(--sage); }
.bf-step { display:flex; align-items:center; justify-content:space-between; gap:.3rem; background:rgba(255,255,255,.96); border:1px solid rgba(245,233,200,.3); border-radius:2px; padding:.22rem .3rem; }
.bf-step-btn { width:30px; height:30px; flex:0 0 auto; border:none; background:var(--bone); color:var(--bark); font-size:1.15rem; line-height:1; cursor:pointer; border-radius:2px; }
.bf-step-btn:hover { background:var(--gold-soft); }
.bf-step-val { min-width:1.5rem; text-align:center; color:var(--ink); font-size:.95rem; font-weight:600; }
@media (max-width:700px){ .bf-cal-months { flex-direction:column; gap:.8rem; } }


/* ===== BRAND REALIGNMENT 2026-06-24 — logo lockup, quiet type ===== */
.logo-word, .hero-wordmark-text, .footer-wordmark-text { display:flex; flex-direction:column; line-height:1; white-space:normal; }
.hero-wordmark-text { max-width:none; }
.bl-main { font-weight:400; letter-spacing:.22em; white-space:nowrap; color:currentColor; line-height:1; }
.bl-sub  { font-weight:400; letter-spacing:.30em; text-transform:uppercase; color:currentColor; opacity:.78; line-height:1; }
.logo-word .bl-main { font-size:1.0rem; }
.logo-word .bl-sub  { font-size:.46rem; margin-top:.62em; letter-spacing:.32em; }
.site-nav.scrolled .logo-word .bl-main { font-size:.9rem; }
.hero-wordmark-text .bl-main { font-size:clamp(1.9rem,4.8vw,3rem); }
.hero-wordmark-text .bl-sub  { font-size:clamp(.62rem,1.2vw,.82rem); margin-top:.55em; }
.footer-wordmark-text .bl-main { font-size:1.35rem; }
.footer-wordmark-text .bl-sub  { font-size:.58rem; margin-top:.5em; }
@media (max-width:600px){ .logo-word .bl-main{font-size:.9rem;} .logo-word .bl-sub{font-size:.42rem;} }
.hero .hero-content h1 { font-size:clamp(1.35rem,2.8vw,2rem); font-weight:300; letter-spacing:.005em; line-height:1.3; max-width:26ch; }
.hero .hero-content h1 em { font-style:italic; font-weight:400; }
h1,h2,h3,h4 { font-weight:400; }


/* ===== BOOKING BAR ALIGNMENT FIX ===== */
.book-form { align-items: flex-end; }
.bf-field label { white-space: nowrap; }
.bf-datebtn, .bf-step, .book-form .bf-field input { min-height: 46px; box-sizing: border-box; }
.bf-step { height: 46px; }
.bf-submit { min-height: 46px; box-sizing: border-box; display: inline-flex; align-items: center; justify-content: center; }


/* ===== SLIM STICKY BOOKING BAR (desktop) ===== */
@media (min-width: 760px){
  .book-bar { position: sticky; top: var(--navh, 60px); z-index: 30; transition: padding .25s ease, box-shadow .25s ease; }
  .book-bar.is-stuck { padding-top: .6rem; padding-bottom: .6rem; box-shadow: 0 8px 24px rgba(42,26,8,.30); }
  .book-bar.is-stuck .book-head { display: none; }
}

#bookSentinel { height: 0; }


/* ===== GOOGLE REVIEWS ===== */
.g-reviews { margin-bottom: 2rem; }
.g-reviews-head { display:flex; align-items:center; justify-content:center; gap:.6rem; flex-wrap:wrap; margin-bottom:1.6rem; }
.g-rate { font-family:'Jost',sans-serif; font-size:1.7rem; color:var(--ink); }
.g-rate-stars { color:var(--terracotta); letter-spacing:.06em; font-size:1.05rem; }
.g-rate-lbl { color:var(--bark); font-size:.85rem; letter-spacing:.04em; }
.g-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.2rem; }
.g-card { background:#fff; border:1px solid var(--line); border-radius:4px; padding:1.3rem 1.4rem; display:flex; flex-direction:column; gap:.7rem; }
.g-stars { color:var(--terracotta); letter-spacing:.06em; font-size:.95rem; }
.g-text { color:var(--ink); font-size:.92rem; line-height:1.6; display:-webkit-box; -webkit-line-clamp:7; -webkit-box-orient:vertical; overflow:hidden; }
.g-author { color:var(--bark); font-size:.8rem; margin-top:auto; opacity:.85; }
.g-more { display:inline-block; margin-top:1.4rem; color:var(--terracotta); font-size:.85rem; text-decoration:underline; }
@media (max-width:600px){ .g-grid { grid-template-columns:1fr; } }

/* ===== NAV ENQUIRIES + BOOK NOW GROUP ===== */
.nav-ctas { display:flex; align-items:center; gap:.55rem; }
@media (max-width:600px){ .nav-cta-alt { display:none; } }

/* ===== ENQUIRY MODAL FORM ===== */
#enquiryModal .modal-inner { width: 92vw; max-width: 640px; height: auto; max-height: 92vh; }
.enq-body { overflow-y: auto; padding: 1.4rem 1.5rem 1.6rem; }
.enq-form { display: flex; flex-direction: column; gap: 1rem; }
.enq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.enq-lab { display: flex; flex-direction: column; gap: .35rem; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bark); }
.enq-lab input, .enq-lab select, #enqMsg { border: 1px solid var(--line); background: #fff; color: var(--ink); padding: .6rem .7rem; font-family: 'Jost',sans-serif; font-size: .92rem; border-radius: 2px; width: 100%; text-transform: none; letter-spacing: normal; }
.enq-lab input:focus, .enq-lab select:focus, #enqMsg:focus { outline: none; border-color: var(--terracotta); }
#enqMsg { resize: vertical; }
.enq-datesrow { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .9rem; }
.enq-datefield { flex: 1 1 240px; position: relative; }
.enq-form .bf-field label { color: var(--bark); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .35rem; display: block; }
.enq-form .bf-datebtn, .enq-form .bf-step, .enq-form .bf-field input { border: 1px solid var(--line); }
.enq-form .bf-cal { position: static; width: 100%; box-shadow: none; margin-top: .5rem; }
.enq-submit { align-self: flex-start; }
.enq-status { display: none; font-size: .85rem; color: var(--terracotta-deep); font-weight: 600; }
.enq-status.show { display: block; }
.enq-note { font-size: .78rem; color: #8a8577; line-height: 1.5; }
.enq-note a { color: var(--terracotta); text-decoration: underline; }
@media (max-width: 600px) { .enq-grid { grid-template-columns: 1fr; } }

.footer-operator { display:inline-block; font-size:.76rem; opacity:.68; margin-top:.35rem; line-height:1.5; }
.footer-operator a { text-decoration:underline; color:inherit; }


/* ===== OFFICIAL LOGO IMAGE ===== */
.logo-img { height: 40px; width: auto; display: block; }
.logo-img-light { filter: drop-shadow(0 1px 3px rgba(26,14,4,.45)); }
.logo-img-dark { display: none; }
.site-nav.nav-light .logo-img-light { display: none; }
.site-nav.nav-light .logo-img-dark { display: block; }
.site-nav.scrolled .logo-img { height: 32px; }
@media (max-width:600px){ .logo-img { height: 30px; } }
.hero-logo-img { width: clamp(210px, 28vw, 350px); height: auto; display: block; }
.footer-logo-img { width: 190px; height: auto; display: block; }
.logo-img-legal { height: 38px; filter: none; }
