/*
Theme Name: Bwindi Forest
Theme URI: http://localhost/bwindi/
Author: Rich
Description: Bwindi Impenetrable National Park – premium travel theme.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: bwindi-forest
*/

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --forest:  #2D5A32;
  --canopy:  #4A8C52;
  --olive:   #8FA04F;
  --amber:   #D4922A;
  --gold:    #E8C06A;
  --sand:    #F5E4B8;
  --dark-bg: #0C0C0C;
  --dark-2:  #141414;
  --dark-3:  #1E1E1E;
  --cream:   #FAF6EE;
  --text-dark: #1A2B1A;
}

/* ── LILITA ONE GLOBAL TUNING ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Lilita One', sans-serif;
  letter-spacing: -0.01em;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Varela Round', sans-serif;
  font-size: 22px;
  font-weight: 400;
  background: var(--dark-bg);
  color: var(--sand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, .btn { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLL REVEALS ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale {
  opacity: 0; transform: scale(0.96) translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible, .reveal-left.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-scale { opacity: 1 !important; transform: none !important; }
}

/* ── SECTION TAG ────────────────────────────────────────── */
.section-tag {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber);
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: var(--amber);
}

/* ── WORDPRESS STANDARDS ────────────────────────────────── */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.alignwide  { margin-left: auto; margin-right: auto; max-width: 1200px; }
.alignfull  { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; width: 100vw; }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2.5rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
#navbar.scrolled {
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 60px;
}
.nav-logo {
  font-family: 'Mulish', sans-serif;
  font-size: 1.25rem; font-weight: 400;
  color: #fff; letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,228,184,0.55);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sand); }
.nav-cta {
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(212,146,42,0.5);
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: rgba(212,146,42,0.12) !important; }

/* hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; z-index: 101;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--sand); border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* mobile drawer */
.nav-links.open {
  display: flex; flex-direction: column;
  position: fixed; inset: 0;
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(16px);
  align-items: center; justify-content: center;
  gap: 2.25rem; z-index: 99;
}
.nav-links.open a { font-size: 1rem; color: var(--sand); }

/* ── DROPDOWN MENUS ─────────────────────────────────────── */
.nav-links .menu-item-has-children { position: relative; }

/* dropdown arrow */
.nav-links .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.45rem;
  vertical-align: middle;
  opacity: 0.55;
  transition: transform 0.2s;
}
.nav-links .menu-item-has-children:hover > a::after {
  transform: rotate(-135deg);
  opacity: 0.9;
}

/* sub-menu panel */
.nav-links .sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--amber);
  border-radius: 0 0 4px 4px;
  padding: 0.6rem 0;
  list-style: none;
  z-index: 200;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

/* show on hover */
.nav-links .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* dropdown items */
.nav-links .sub-menu li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,228,184,0.55);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-links .sub-menu li a:hover {
  color: var(--gold);
  background: rgba(212,146,42,0.08);
}

/* African Safaris — 2-column dropdown */
#menu-item-6722 .sub-menu {
  min-width: 380px;
  columns: 2;
  column-gap: 0;
  padding: 0.5rem 0;
}
#menu-item-6722 .sub-menu li {
  break-inside: avoid;
}

/* connecting bridge so dropdown doesn't vanish when cursor moves down */
.nav-links .menu-item-has-children > a::before {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0; right: 0;
  height: 14px;
}

/* hide sub-menus inside mobile drawer */
.nav-links.open .sub-menu {
  position: static;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  background: rgba(255,255,255,0.04);
  border: none;
  border-left: 2px solid rgba(212,146,42,0.3);
  border-radius: 0;
  box-shadow: none;
  padding: 0.25rem 0 0.25rem 1rem;
  margin-top: 0.5rem;
  columns: 1;
}
.nav-links.open .sub-menu li a {
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  white-space: normal;
}
.nav-links.open .menu-item-has-children > a::after { display: none; }

/* inner pages — nav starts solid */
body:not(.home) #navbar {
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 60px;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: grid; grid-template-columns: 1fr 400px;
  position: relative;
}
.hero-left {
  position: relative; overflow: hidden;
  background: var(--dark-3);
}
.hero-left img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  transition: transform 9s ease-out;
  transform: scale(1.06);
}
.hero-left img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,12,12,0.65) 0%, rgba(12,12,12,0.2) 55%, rgba(12,12,12,0.62) 100%),
    linear-gradient(to top, rgba(12,12,12,0.9) 0%, transparent 55%);
}
.hero-copy {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 5; padding: 3rem 2.75rem;
}
.hero-eyebrow {
  font-size: 0.70rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hero-h1 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 0.88;
  letter-spacing: -0.02em; color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-rule { width: 44px; height: 2px; background: var(--amber); margin-bottom: 1.25rem; border-radius: 1px; }
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(245,228,184,0.75); line-height: 1.85;
  max-width: 360px; letter-spacing: 0.025em; margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-btns { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.btn-primary-hero {
  padding: 0.9rem 1.9rem;
  background: var(--amber);
  border: 1px solid var(--amber);
  color: #fff;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(212,146,42,0.4);
}
.btn-primary-hero:hover { background: #b87b1e; border-color: #b87b1e; box-shadow: 0 6px 24px rgba(212,146,42,0.5); }
.btn-ghost-hero {
  padding: 0.9rem 1.9rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-ghost-hero:hover { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.08); }
.photo-credit {
  position: absolute; bottom: 0.75rem; right: 1rem;
  font-size: 0.60rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2); z-index: 6;
}

/* RIGHT — gorilla portrait + stats + booking */
.hero-right {
  background: var(--dark-2);
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.05);
}
.gorilla-portrait {
  flex: 1; position: relative; overflow: hidden;
  background: var(--dark-3);
  min-height: 280px;
}
.gorilla-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.gorilla-portrait:hover img { transform: scale(1.04); }
.portrait-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(12,12,12,0.75) 100%);
}
.portrait-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.5rem 1.25rem;
}
.portrait-caption p {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem;
}
.portrait-caption h3 {
  font-family: 'Mulish', sans-serif;
  font-size: 1.3rem; font-weight: 300;
  color: #fff; line-height: 1.25;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-cell {
  padding: 1.1rem 1.4rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.stat-cell:hover { background: rgba(255,255,255,0.03); }
.stat-cell:nth-child(even) { border-right: none; }
.stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
.stat-num {
  font-family: 'Mulish', sans-serif;
  font-size: 2.2rem; font-weight: 200; color: #fff; line-height: 1;
}
.stat-sup { font-size: 1.1rem; color: var(--amber); font-weight: 400; }
.stat-lbl {
  font-size: 0.67rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(245,228,184,0.5); margin-top: 0.3rem;
}
.booking-bar {
  padding: 1.1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
}
.booking-lbl {
  font-size: 0.67rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 0.7rem;
}
.booking-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 0.65rem;
}
.b-field {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.55rem 0.75rem; border-radius: 2px;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.b-field:hover { border-color: var(--amber); background: rgba(212,146,42,0.06); }
.b-field-lbl { font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.b-field-val { font-size: 0.95rem; color: rgba(245,228,184,0.8); margin-top: 0.15rem; font-weight: 300; }
.btn-book {
  width: 100%; padding: 0.8rem;
  background: var(--amber);
  border: none;
  color: #fff;
  font-size: 0.74rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
  border-radius: 2px; text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(212,146,42,0.35);
}
.btn-book:hover { background: #b87b1e; box-shadow: 0 5px 18px rgba(212,146,42,0.5); }

/* ══════════════════════════════════════════════════════════
   INTRO BAND
══════════════════════════════════════════════════════════ */
.intro-band {
  background: var(--forest);
  padding: 2.25rem 2.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.intro-band-text {
  font-family: 'Varela Round', sans-serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--sand); line-height: 1.4; flex: 1;
}
.intro-band-cta {
  flex-shrink: 0; padding: 0.75rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(245,228,184,0.3);
  color: var(--sand);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap;
  transition: background 0.25s;
}
.intro-band-cta:hover { background: rgba(245,228,184,0.1); }

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.about {
  padding: 7rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; background: var(--cream);
}
.about-images {
  position: relative; height: 560px;
}
.about-img-main {
  position: absolute; top: 0; left: 0; right: 3rem; bottom: 3rem;
  border-radius: 6px; overflow: hidden;
  background: rgba(0,0,0,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 52%; height: 45%;
  border-radius: 6px; overflow: hidden;
  border: 4px solid var(--cream); background: rgba(0,0,0,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.about-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.about-img-accent:hover { transform: scale(1.02) translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.24); }
.about-img-accent:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute; top: 1.5rem; right: 3.5rem;
  background: var(--amber);
  padding: 0.6rem 1rem; border-radius: 2px;
  font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff; font-weight: 700;
  box-shadow: 0 4px 12px rgba(212,146,42,0.4);
}
.about .section-tag { color: var(--forest); }
.about .section-tag::before { background: var(--forest); }
.about-text h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.05;
  color: var(--dark-bg); margin-bottom: 1.5rem;
}
.about-text h2 em { font-style: italic; color: var(--amber); }
.about-text p {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(26,43,26,0.65); line-height: 1.9;
  margin-bottom: 1.1rem;
}
.about-facts {
  margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.fact {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 3px solid transparent;
  border-radius: 4px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.fact:hover {
  border-left-color: var(--amber);
  border-color: rgba(212,146,42,0.25);
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  background: #fff;
}
.fact-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0; margin-top: 0.4rem;
  transition: transform 0.25s;
}
.fact:hover .fact-dot { transform: scale(1.4); }
.fact-text { font-size: 0.98rem; color: rgba(26,43,26,0.65); line-height: 1.7; }
.fact-text strong { color: var(--dark-bg); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   GALLERY STRIP
══════════════════════════════════════════════════════════ */
.gallery-section { padding: 5rem 0; background: var(--dark-2); overflow: hidden; position: relative; }
.gallery-section::before, .gallery-section::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 140px; z-index: 2; pointer-events: none;
}
.gallery-section::before { left: 0; background: linear-gradient(to right, var(--dark-2), transparent); }
.gallery-section::after  { right: 0; background: linear-gradient(to left,  var(--dark-2), transparent); }
.gallery-header { padding: 0 2.5rem; margin-bottom: 2.5rem; }
.gallery-track {
  display: flex; gap: 1rem;
  animation: gallerySlide 40s linear infinite;
  width: max-content;
}
.gallery-section:hover .gallery-track { animation-play-state: paused; }
@keyframes gallerySlide { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.gallery-item {
  width: 280px; height: 200px; border-radius: 4px;
  overflow: hidden; flex-shrink: 0;
  background: var(--dark-3);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ══════════════════════════════════════════════════════════
   EXPERIENCES
══════════════════════════════════════════════════════════ */
.experiences { padding: 7rem 2.5rem; background: var(--dark-bg); }
.experiences-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3.5rem; gap: 2rem;
}
.experiences-header h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--sand); line-height: 1.1;
}
.experiences-header h2 em { font-style: italic; color: var(--gold); }
.experiences-header p {
  font-size: 1.02rem; font-weight: 300;
  color: rgba(245,228,184,0.4); max-width: 320px;
  line-height: 1.85; text-align: right;
}
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.exp-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.5s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s;
}
.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border-color: rgba(212,146,42,0.2);
}
.exp-img {
  height: 220px; overflow: hidden;
  position: relative; background: var(--dark-3);
}
.exp-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.exp-card:hover .exp-img img { transform: scale(1.06); }
.exp-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(12,12,12,0.8);
  border: 1px solid rgba(212,146,42,0.3);
  padding: 0.3rem 0.7rem; border-radius: 2px;
  font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.exp-body { padding: 1.5rem; }
.exp-body h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.4rem; font-weight: 400; color: var(--sand);
  margin-bottom: 0.6rem; line-height: 1.2;
}
.exp-body p {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(245,228,184,0.4); line-height: 1.8; margin-bottom: 1.25rem;
}
.exp-meta {
  display: flex; justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}
.exp-price {
  font-family: 'Mulish', sans-serif;
  font-size: 1.1rem; font-weight: 300; color: var(--gold);
}
.exp-price span { font-size: 0.70rem; color: rgba(245,228,184,0.35); font-family: 'Varela Round', sans-serif; }
.exp-link {
  font-size: 0.70rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(212,146,42,0.7);
  transition: color 0.2s;
}
.exp-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   SECTORS
══════════════════════════════════════════════════════════ */
.sectors {
  padding: 7rem 2.5rem;
  background: var(--cream);
}
.sectors-inner {
  max-width: 1100px; margin: 0 auto;
}
.sectors .section-tag { color: var(--forest); }
.sectors .section-tag::before { background: var(--forest); }
.sectors h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--dark-bg); margin-bottom: 0.75rem;
}
.sectors h2 em { font-style: italic; color: var(--amber); }
.sectors-intro {
  font-size: 1.02rem; font-weight: 300;
  color: rgba(26,43,26,0.55); line-height: 1.85;
  max-width: 560px; margin-bottom: 3rem;
}
.sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(0,0,0,0.10); border: 1px solid rgba(0,0,0,0.10);
}
.sector-cell {
  background: var(--dark-2);
  padding: 2rem 1.75rem;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.sector-cell::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--amber);
  transition: height 0.4s cubic-bezier(0.22,1,0.36,1);
}
.sector-cell:hover::before { height: 100%; }
.sector-cell:hover { background: rgba(255,255,255,0.03); }
.sector-num {
  font-family: 'Mulish', sans-serif;
  font-size: 2.5rem; font-weight: 300;
  color: rgba(212,146,42,0.15); line-height: 1;
  margin-bottom: 0.75rem;
}
.sector-name {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--sand); margin-bottom: 0.35rem;
}
.sector-pos {
  font-size: 0.70rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 0.75rem;
}
.sector-desc {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(245,228,184,0.4); line-height: 1.75;
}
.sector-families {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem; color: rgba(212,146,42,0.6);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════
   WILDLIFE
══════════════════════════════════════════════════════════ */
.wildlife {
  padding: 7rem 2.5rem;
  background: var(--dark-bg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.wildlife-text h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--sand);
  margin-bottom: 1rem; line-height: 1.05;
}
.wildlife-text h2 em { font-style: italic; color: var(--gold); }
.wildlife-text p {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(245,228,184,0.45); line-height: 1.9; margin-bottom: 1rem;
}
.wildlife-list {
  margin-top: 2rem; display: flex; flex-direction: column; gap: 0;
}
.wildlife-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wildlife-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.wildlife-name {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.05rem; color: var(--sand); font-weight: 400;
}
.wildlife-count {
  font-size: 0.70rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(212,146,42,0.65);
}
.wildlife-images {
  display: grid; grid-template-rows: 1fr 1fr; gap: 1rem; height: 520px;
}
.wl-img {
  border-radius: 4px; overflow: hidden; background: var(--dark-3);
}
.wl-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.wl-img:hover img { transform: scale(1.05); }

/* ══════════════════════════════════════════════════════════
   CONSERVATION
══════════════════════════════════════════════════════════ */
.conservation {
  background: var(--cream);
  padding: 7rem 2.5rem;
  position: relative; overflow: hidden;
}
.conservation::before {
  content: 'BWINDI';
  position: absolute; right: -1rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Lilita One', sans-serif;
  font-size: 18rem; font-weight: 600; line-height: 1;
  color: rgba(45,90,50,0.06); pointer-events: none;
  user-select: none; white-space: nowrap;
}
.conservation::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--forest), var(--canopy), var(--olive));
}
.cons-inner {
  max-width: 800px; position: relative; z-index: 2;
}
.conservation .section-tag { color: var(--forest); }
.conservation .section-tag::before { background: var(--forest); }
.conservation h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--text-dark); margin-bottom: 1.25rem;
  line-height: 1.05;
}
.conservation h2 em { font-style: italic; color: var(--amber); }
.conservation p {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(26,43,26,0.58); line-height: 1.9; margin-bottom: 1rem;
}
.cons-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.pillar {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid rgba(45,90,50,0.1);
  border-radius: 4px;
  border-top: 3px solid var(--canopy);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s cubic-bezier(0.22,1,0.36,1),
              border-top-color 0.25s;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(45,90,50,0.1);
  border-top-color: var(--amber);
}
.pillar-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(45,90,50,0.08);
  border: 1px solid rgba(45,90,50,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.pillar-icon svg { width: 18px; height: 18px; fill: var(--forest); }
.pillar h4 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.15rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.6rem;
}
.pillar p {
  font-size: 1.05rem; color: rgba(26,43,26,0.55);
  line-height: 1.8; margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials { padding: 7rem 2.5rem; background: var(--dark-2); }
.testi-header { margin-bottom: 3rem; }
.testi-header h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 300; color: var(--sand);
}
.testi-header h2 em { font-style: italic; color: var(--gold); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.testi-card {
  padding: 2rem;
  background: var(--dark-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.testi-card:hover { border-color: rgba(212,146,42,0.2); transform: translateY(-5px); }
.stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.star {
  width: 10px; height: 10px;
  background: var(--amber); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.testi-quote {
  font-family: 'Mulish', sans-serif;
  font-size: 1.15rem; font-weight: 300;
  color: var(--sand); line-height: 1.6; margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--forest);
  border: 1px solid rgba(212,146,42,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
  flex-shrink: 0;
}
.testi-name { font-size: 1.05rem; font-weight: 500; color: var(--sand); }
.testi-loc { font-size: 0.70rem; color: rgba(245,228,184,0.35); letter-spacing: 0.06em; }

/* ══════════════════════════════════════════════════════════
   PLAN / CTA
══════════════════════════════════════════════════════════ */
.plan-cta {
  padding: 7rem 2.5rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--forest) 60%, var(--canopy) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.plan-cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.plan-cta h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300; color: #fff; line-height: 0.95;
  margin-bottom: 1.25rem;
}
.plan-cta h2 em { font-style: italic; color: var(--gold); }
.plan-cta p {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(245,228,184,0.6); line-height: 1.9;
  margin-bottom: 2.5rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-main {
  padding: 1rem 2.25rem;
  background: var(--amber);
  color: var(--dark-bg);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
}
.btn-cta-main:hover { background: var(--gold); transform: translateY(-2px); }
.btn-cta-ghost {
  padding: 1rem 2.25rem;
  border: 1px solid rgba(245,228,184,0.3);
  color: var(--sand);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}
.btn-cta-ghost:hover { background: rgba(245,228,184,0.08); border-color: rgba(245,228,184,0.5); }

/* ══════════════════════════════════════════════════════════
   PRESS LOGOS
══════════════════════════════════════════════════════════ */
.press-logos {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2.5rem;
}
.press-logos__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.press-logos__inner img {
  height: 38px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.3s, filter 0.3s;
}
.press-logos__inner img:hover {
  opacity: 0.85;
  filter: grayscale(0.2) brightness(1.4);
}

/* ══════════════════════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: #060f05;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2.5rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: 'Mulish', sans-serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--sand); margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(245,228,184,0.35); line-height: 1.85; max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245,228,184,0.07);
  color: rgba(245,228,184,0.45);
  transition: background 0.25s, color 0.25s;
}
.footer-social a:hover {
  background: rgba(245,228,184,0.15);
  color: var(--gold);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 {
  font-size: 0.70rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(212,146,42,0.7); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a {
  font-size: 0.98rem; font-weight: 300;
  color: rgba(245,228,184,0.35); transition: color 0.2s;
}
.footer-col li a:hover { color: var(--sand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem; color: rgba(245,228,184,0.2); letter-spacing: 0.06em;
}
.footer-credits {
  font-size: 0.68rem; color: rgba(245,228,184,0.18); letter-spacing: 0.05em;
}
.footer-legal {
  font-size: 0.68rem !important; color: rgba(245,228,184,0.22); letter-spacing: 0.04em; width: 100%;
}
.footer-legal a { color: rgba(245,228,184,0.45); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: rgba(245,228,184,0.8); }

/* ══════════════════════════════════════════════════════════
   INNER PAGE — HIGH-END REDESIGN
══════════════════════════════════════════════════════════ */

/* ── Page shell ──────────────────────────────────────────── */
.inner-page {
  padding-top: 60px;
  min-height: 100vh;
  background: var(--cream);
}

/* ── Hero — matches homepage section aesthetic ───────────── */
.inner-page-hero {
  background: var(--cream);
  padding: 2rem 2.5rem 1.25rem;
  border-bottom: 1px solid rgba(26,43,26,0.08);
}
.iph-inner {
  max-width: 860px;
  margin: 0 auto;
}
.inner-page-hero .section-tag {
  color: var(--forest);
}
.inner-page-hero .section-tag::before {
  background: var(--forest);
}
.inner-page-hero h1 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark-bg);
  margin-top: 0.25rem;
  margin-bottom: 0;
  text-align: center;
}
.inner-page-hero h1 em {
  font-style: italic;
  color: var(--amber);
}

/* Post meta (date · read time) */
.iph-meta {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.25rem; flex-wrap: wrap;
}
.iph-date, .iph-read, .iph-sep {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(26,43,26,0.45);
  letter-spacing: 0.04em;
}

/* ── Featured image (inline, after first paragraph) ─────── */
.post-featured-img-wrap {
  margin: 2.5rem 0 3rem;
}
.post-featured-img {
  width: 100%; max-height: 520px;
  object-fit: cover; object-position: center;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  display: block;
}

/* ── Content wrapper ─────────────────────────────────────── */
.page-content {
  max-width: 1140px; margin: 0 auto;
  padding: 2.5rem 3rem 6rem;
}

/* ── Lead paragraph ─────────────────────────────────────── */
.page-content > p:first-of-type {
  font-size: 1.1rem; color: #263326; line-height: 1.9;
  padding: 1.25rem 1.5rem; margin-bottom: 2rem;
  background: #fff; border-radius: 14px;
  border-left: 5px solid #C9A227;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* ── Typography ──────────────────────────────────────────── */
.page-content h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: #1B4332; font-weight: 400;
  margin: 4rem 0 1.25rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.page-content h2::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 6px; height: 1.1em;
  background: linear-gradient(180deg, #C9A227 0%, #E8C06A 100%);
  border-radius: 4px;
}
.page-content h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.3rem; color: #1B4332; font-weight: 400;
  margin: 2.25rem 0 0.65rem;
}
.page-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: #1B4332; letter-spacing: 0.02em;
  margin: 1.75rem 0 0.5rem;
  text-transform: uppercase;
}
.page-content p {
  font-size: 1.125rem; color: #374937;
  line-height: 1.9; margin-bottom: 1.4rem;
}
.page-content a {
  color: #1B4332; font-weight: 700;
  border-bottom: 2px solid rgba(27,67,50,0.55);
  transition: color 0.2s, border-color 0.2s;
}
.page-content a:hover { color: #C9A227; border-color: #C9A227; }
.page-content ul, .page-content ol {
  padding-left: 1.6rem; margin-bottom: 1.4rem;
  color: #374937; line-height: 1.9; font-size: 1rem;
}
.page-content li { margin-bottom: 0.45rem; }
.page-content strong { color: #1B4332; font-weight: 700; }
.page-content em { color: #C9A227; font-style: italic; }
.page-content blockquote {
  border-left: 4px solid #C9A227;
  padding: 1.25rem 1.75rem; margin: 2.5rem 0;
  background: rgba(201,162,39,0.06);
  border-radius: 0 12px 12px 0;
  font-size: 1.08rem; color: #374937; line-height: 1.8;
}

/* ── Images ──────────────────────────────────────────────── */
.page-content .wp-block-image img {
  border-radius: 14px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
}
.page-content .wp-block-image {
  margin: 0.5rem 0;
}
.page-content .wp-block-image.alignwide { margin: 2rem 0; }

/* ── Two-column grid rows ────────────────────────────────── */
.page-content .wp-block-columns {
  gap: 2.5rem; margin: 1.5rem 0 2rem;
  align-items: center;
}
.page-content .wp-block-column > p:first-child { margin-top: 0; }

/* ── Tables — card design ────────────────────────────────── */
.page-content .wp-block-table,
.page-content figure.wp-block-table {
  background: #fff; border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
  margin: 0.5rem 0 3rem;
  border: 1px solid #E4EEE4;
}
.page-content .wp-block-table table,
.page-content table {
  width: 100%; border-collapse: collapse;
  font-size: 0.95rem;
}
.page-content .wp-block-table th,
.page-content table th {
  background: #1B4332 !important; color: #fff !important;
  padding: 1rem 1.4rem; text-align: left;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: none;
}
.page-content .wp-block-table td,
.page-content table td {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid #E8EEE8;
  color: #1f3a2a !important; vertical-align: top;
  font-weight: 500;
  background: transparent;
  transition: background 0.15s;
}
.page-content .wp-block-table tbody tr:nth-child(even) td,
.page-content table tbody tr:nth-child(even) td {
  background: #F6FAF6;
}
.page-content .wp-block-table tbody tr:nth-child(odd) td,
.page-content table tbody tr:nth-child(odd) td {
  background: #fff;
}
.page-content .wp-block-table tr:last-child td,
.page-content table tr:last-child td { border-bottom: none; }
.page-content .wp-block-table tbody tr:hover td,
.page-content table tbody tr:hover td {
  background: #EDF5EE !important;
}
.page-content .wp-block-table td:first-child,
.page-content table td:first-child {
  font-weight: 700; color: #1B4332 !important;
  border-left: 3px solid #C9A227;
}

/* ── FAQ accordion ───────────────────────────────────────── */
.page-content .wp-block-details,
.page-content details {
  background: #fff;
  border: 1.5px solid #E4EEE4;
  border-radius: 14px; margin-bottom: 0.65rem;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.page-content .wp-block-details:hover,
.page-content details:hover {
  border-color: rgba(27,67,50,0.3);
  box-shadow: 0 6px 28px rgba(27,67,50,0.09);
}
.page-content .wp-block-details summary,
.page-content details summary {
  padding: 1.25rem 1.6rem;
  font-size: 1rem; font-weight: 600;
  color: #1B4332; cursor: pointer;
  list-style: none;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  user-select: none;
}
.page-content .wp-block-details summary::-webkit-details-marker,
.page-content details summary::-webkit-details-marker { display: none; }
.page-content .wp-block-details summary::after,
.page-content details summary::after {
  content: '+';
  width: 30px; height: 30px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #F0F5F0; border-radius: 50%;
  font-size: 1.2rem; line-height: 1; color: #1B4332;
  transition: background 0.2s, color 0.2s;
}
.page-content .wp-block-details[open] > summary::after,
.page-content details[open] > summary::after {
  content: '−'; background: #1B4332; color: #fff;
}
.page-content .wp-block-details > .wp-block-paragraph,
.page-content details > p,
.page-content .wp-block-details > p {
  margin: 0; padding: 1rem 1.6rem 1.4rem;
  font-size: 0.97rem; line-height: 1.82; color: #4A5E4A;
  border-top: 1px solid #EDF2ED;
}
.page-content .wp-block-details > .wp-block-paragraph p {
  margin: 0; font-size: 0.97rem; line-height: 1.82; color: #4A5E4A;
}

/* ── Post navigation ─────────────────────────────────────── */
.post-nav {
  max-width: 1140px; margin: 0 auto;
  padding: 2rem 3rem;
  display: flex; justify-content: space-between; gap: 1rem;
  border-top: 2px solid #E8EEE8;
  background: #F4F7F4;
}
.post-nav a {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: #1B4332; transition: color 0.2s;
  border: none;
}
.post-nav a:hover { color: #C9A227; border: none; }
.post-nav a svg { flex-shrink: 0; }

/* ── Post layout (content + sidebar) ────────────────────── */
.post-layout {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: start;
}
.post-layout--full {
  grid-template-columns: 1fr;
}
.post-layout--full .page-content {
  max-width: 860px; margin: 0 auto;
  border-right: none;
}
.post-layout--full .post-sidebar { display: none; }
.post-layout .page-content {
  max-width: none; margin: 0;
  padding: 2.5rem 2.5rem 6rem;
  border-right: 1px solid rgba(26,43,26,0.08);
}

/* ── Sidebar ─────────────────────────────────────────────── */
.post-sidebar {
  padding: 2.5rem 1.5rem;
  position: sticky; top: 80px;
}
.sidebar-cat-title {
  font-family: 'Lilita One', sans-serif;
  font-size: 1rem; color: #1B4332;
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid #C9A227;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.sidebar-post-list {
  list-style: none; padding: 0; margin: 0;
}
.sidebar-post-item {
  border-bottom: 1px solid rgba(26,43,26,0.08);
  padding: 0.6rem 0;
}
.sidebar-post-item a {
  font-size: 0.88rem; font-weight: 600;
  color: #374937; line-height: 1.4;
  text-decoration: none; border: none !important;
  transition: color 0.2s;
}
.sidebar-post-item a:hover { color: #C9A227; }

/* ── Related posts ───────────────────────────────────────── */
.related-posts {
  margin-top: 4rem; padding-top: 2.5rem;
  border-top: 2px solid #E8EEE8;
}
.related-posts-heading {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.5rem; color: #1B4332;
  font-weight: 400; margin: 0 0 1.5rem;
}
.related-posts-heading::before { display: none; }
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.related-post-card {
  display: block; text-decoration: none;
  border: none !important;
  border-radius: 12px; overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.related-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.related-post-img {
  aspect-ratio: 16 / 9; overflow: hidden;
}
.related-post-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.related-post-card:hover .related-post-img img { transform: scale(1.05); }
.related-post-card h3 {
  font-size: 0.9rem; font-weight: 700;
  color: #1B4332; line-height: 1.4;
  padding: 0.85rem 1rem 1rem; margin: 0;
}

/* section read-more link */
.section-readmore {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(212,146,42,0.7);
  transition: color 0.2s, transform 0.2s;
  margin-top: 1rem;
}
.section-readmore:hover { color: var(--gold); transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — FIVE BREAKPOINTS
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 340px; }
  .about, .wildlife { gap: 3rem; padding: 6rem 2rem; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; grid-template-rows: 65vh auto; }
  .hero-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .gorilla-portrait { min-height: 220px; }
  .hero-h1 { font-size: 2.8rem; }
  .hero-copy { padding: 2rem 1.5rem; }

  .intro-band { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .intro-band-text { font-size: 1.15rem; }

  .about { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 2.5rem; }
  .about-images { height: 360px; }

  .exp-grid { grid-template-columns: 1fr; }
  .experiences-header { flex-direction: column; align-items: flex-start; }
  .experiences-header p { text-align: left; }

  .wildlife { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 2.5rem; }
  .wildlife-images { grid-template-rows: 200px 200px; height: auto; }

  .cons-pillars { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  section, .experiences, .sectors, .conservation, .testimonials, .plan-cta {
    padding: 5rem 1.5rem;
  }
  .inner-page-hero { padding: 4rem 1.5rem 3rem; }
  .page-content { padding: 3rem 1.5rem 5rem; }
  .page-content > p:first-of-type { padding: 1.25rem 1.25rem; }
  .page-content .wp-block-columns { flex-direction: column; }
  .page-content .wp-block-table { overflow-x: auto; display: block; border-radius: 12px; }
  .post-nav { padding: 1.5rem 1.5rem; }
  .post-layout { grid-template-columns: 1fr; }
  .post-layout .page-content { border-right: none; padding: 2.5rem 1.5rem 4rem; }
  .post-sidebar { border-top: 1px solid rgba(26,43,26,0.08); padding: 2rem 1.5rem; position: static; }
  .related-posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { grid-template-rows: 60vh auto; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary-hero, .btn-ghost-hero { width: 100%; text-align: center; }
  .sectors-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  section, .experiences, .sectors, .conservation, .testimonials, .plan-cta {
    padding: 4.5rem 1.25rem;
  }
  .cta-btns { flex-direction: column; align-items: center; }
  .related-posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2rem; }
  .booking-fields { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cons-pillars { grid-template-columns: 1fr; }
  section, .experiences, .sectors, .conservation, .testimonials, .plan-cta {
    padding: 4rem 1rem;
  }
}

@media (max-width: 375px) {
  .hero-h1 { font-size: 1.8rem; }
  .hero-copy { padding: 1.5rem 1rem; }
  section, .experiences, .sectors, .conservation, .testimonials, .plan-cta {
    padding: 3.5rem 0.9rem;
  }
}
