/* ====================================================
   TATAAZA OKAVANGO ADVENTURES — Main Stylesheet
   Fonts: Coco Gothic (via Google Fonts fallback) + Montserrat
   Colors from brand PDF:
     Brown dark  : #3B1F0A
     Gold/Orange : #D4920A / #F0A500
     Cream/Beige : #FAF0DC / #EDE0C4
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

:root {
  /* Brand palette (from PDF) */
  --brown:        #3B1F0A;
  --brown-mid:    #5C3317;
  --brown-light:  #8B5E3C;
  --gold:         #F0A500;
  --gold-dark:    #C88200;
  --gold-pale:    #FAE9BC;
  --cream:        #FAF0DC;
  --cream-dark:   #EDE0C4;
  --cream-warm:   #F5EDD8;
  --bark:         #1E0E02;
  --text-dark:    #2A1408;
  --text-muted:   #7A5A3A;

  /* Spacing */
  --section-pad:  110px 6vw;
  --max-w:        1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.display-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brown);
}

.section-title .accent {
  color: var(--gold);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
}

.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 20px 0 28px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--brown);
  text-decoration: none;
  padding: 14px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  padding: 14px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid rgba(250,240,220,0.5);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brown);
  color: var(--gold);
  text-decoration: none;
  padding: 14px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--brown-mid); }

/* ─── SECTION BASE ─── */
section { position: relative; }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 74px;
  background: rgba(30, 14, 2, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240,165,0,0.18);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(250,240,220,0.78);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--brown) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--bark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,5,0,0.25) 0%,
    rgba(10,5,0,0.05) 35%,
    rgba(30,14,2,0.88) 100%
  );
}

/* Wildlife silhouette strip at hero bottom */
.hero-silhouette {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 8vw 130px;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(240,165,0,0.5);
  padding: 7px 18px;
  border-radius: 4px;
  margin-bottom: 26px;
  background: rgba(240,165,0,0.12);
}

.hero-headline {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 32px rgba(0,0,0,0.35);
}

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(250,240,220,0.78);
  max-width: 480px;
  margin-bottom: 44px;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Contact bar in hero bottom */
.hero-footer-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 5vw;
  background: rgba(59, 31, 10, 0.88);
  font-size: 13px;
  font-weight: 500;
  color: rgba(250,240,220,0.9);
  letter-spacing: 0.04em;
}
.hero-footer-bar span { opacity: 0.5; }

/* ─────────────────────────────────────────
   WELCOME / ABOUT
───────────────────────────────────────── */
#welcome {
  background: var(--cream);
}

/* Painted watercolor brush texture overlay */
#welcome::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/19_page_background_texture.jpg') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.welcome-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.welcome-left {}

.welcome-title-block {
  margin-bottom: 32px;
}

.welcome-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.welcome-sig {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(59,31,10,0.12);
}
.welcome-sig-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--brown);
}
.welcome-sig-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* Right: sliced vertical photo strip like PDF page 2 */
.welcome-photo-strip {
  display: flex;
  gap: 4px;
  height: 560px;
  align-items: stretch;
}
.welcome-photo-strip .strip-slice {
  flex: 1;
  overflow: hidden;
  border-radius: 3px;
}
.welcome-photo-strip .strip-slice img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}
.welcome-photo-strip .strip-slice:hover img {
  transform: scale(1.04);
}

.welcome-footer-url {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cream);
  background: var(--brown);
  padding: 10px 0;
  border-radius: 40px;
  margin-top: 32px;
}

/* ─────────────────────────────────────────
   ABOUT US (full split page)
───────────────────────────────────────── */
#about {
  background: var(--cream-warm);
  position: relative;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  gap: 0;
}

.about-left {
  position: relative;
  overflow: hidden;
}
.about-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rounded corner accent block (like PDF p3) */
.about-corner-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 2;
}

.about-right {
  padding: 80px 60px;
  background: var(--cream-warm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Faint logo watermark */
.about-right::after {
  content: '';
  position: absolute;
  bottom: 40px; right: 40px;
  width: 180px; height: 180px;
  background: url('../images/02_logo_large.png') center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.about-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-logo {
  margin-top: 36px;
  width: 180px;
}

.about-footer-url {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  background: var(--brown);
  padding: 12px 0;
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────
   MISSION / VISION / CORE VALUES
───────────────────────────────────────── */
#mission {
  background: var(--cream);
  position: relative;
}

/* Texture overlay */
#mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/19_page_background_texture.jpg') center/cover;
  opacity: 0.06;
  pointer-events: none;
}

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

/* Left: Mission + Vision on cream */
.mission-left {
  padding: 80px 48px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-block { margin-bottom: 48px; }

.mission-block-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 18px;
}
.mission-block-title.gold { color: var(--gold); }
.mission-block-title.dark { color: var(--brown); }

.mission-body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.mission-list {
  list-style: none;
  margin-top: 10px;
}
.mission-list li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 4px 0 4px 20px;
  position: relative;
}
.mission-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Centre: Core Values on dark brown */
.mission-center {
  background: var(--brown);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.values-section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.values-logo-inline {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 28px;
}

.value-item {
  margin-bottom: 22px;
}
.value-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.value-item-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(250,240,220,0.6);
  line-height: 1.75;
}

/* Right: photo of jeep + elephant */
.mission-right {
  position: relative;
  overflow: hidden;
}
.mission-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.mission-footer-url {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  background: rgba(59,31,10,0.85);
  padding: 10px 0;
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────
   EXPERIENCES / SIGNATURE
───────────────────────────────────────── */
#experiences {
  background: var(--cream-warm);
  position: relative;
}

#experiences::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/19_page_background_texture.jpg') center/cover;
  opacity: 0.07;
  pointer-events: none;
}

.exp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.exp-left {}

.exp-type-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.exp-type-body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.exp-right {
  text-align: right;
  position: relative;
}

.exp-signature-title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--brown);
}
.exp-signature-title .accent {
  color: var(--gold);
  display: block;
  margin-top: 4px;
}
.exp-signature-sub {
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-top: 12px;
  line-height: 1.6;
  font-weight: 600;
}

/* Destination photo strip (horizontal, 5 images) */
.exp-photo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  height: 280px;
}

.exp-photo-cell {
  position: relative;
  overflow: hidden;
}
.exp-photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.exp-photo-cell:hover img { transform: scale(1.06); }

.exp-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,14,2,0.85) 0%, transparent 100%);
  padding: 20px 12px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  line-height: 1.4;
}

/* Signature Experience Media */
.sig-hero-img {
  position: relative;
  margin-top: 28px;
  border-radius: 3px;
  overflow: hidden;
  height: 220px;
}
.sig-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sig-hero-img:hover img { transform: scale(1.04); }
.sig-hero-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: var(--gold);
  color: var(--brown);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.sig-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.sig-img-cell {
  position: relative;
  height: 150px;
  border-radius: 3px;
  overflow: hidden;
}
.sig-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sig-img-cell:hover img { transform: scale(1.06); }
.sig-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,14,2,0.82) 0%, transparent 100%);
  padding: 18px 10px 8px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: left;
}

.sig-video-wrap {
  margin-top: 8px;
}
.sig-video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: left;
}
.sig-video-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.sig-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sig-vid {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 3px;
  background: var(--brown);
  display: block;
}
.sig-vid:focus { outline: 2px solid var(--gold); }

/* Accommodation block */
.sig-accom {
  margin-top: 8px;
  text-align: left;
}
.sig-accom-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--brown);
  margin: 8px 0 12px;
  line-height: 1;
}
.sig-accom-title .accent { color: var(--gold); }
.sig-accom-body {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.sig-accom-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 8px;
  height: 300px;
}
.sig-accom-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.sig-accom-cell {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  height: 100%;
}
.sig-accom-main { border-radius: 3px; }
.sig-accom-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sig-accom-cell:hover img { transform: scale(1.05); }
.sig-accom-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,14,2,0.85) 0%, transparent 100%);
  padding: 22px 12px 10px;
}
.sig-accom-tag {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.sig-accom-caption {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.exp-destinations-bar {
  background: var(--brown);
  color: rgba(250,240,220,0.75);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 5vw;
  text-align: center;
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────── */
#why {
  background: var(--cream);
  position: relative;
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/19_page_background_texture.jpg') center/cover;
  opacity: 0.06;
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left {}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}

.why-point-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
}

.why-logo-block {
  margin-top: 48px;
}
.why-logo-block img {
  width: 200px;
}

/* Right: stacked tent interior photos */
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.why-photo-main {
  grid-column: span 2;
  height: 280px;
  overflow: hidden;
  border-radius: 3px;
}
.why-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-photo-small {
  height: 200px;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}
.why-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Brown block accent */
.why-photo-block {
  background: var(--brown);
  border-radius: 3px;
}

/* ─────────────────────────────────────────
   GEAR / CLOSING INSPIRATION
───────────────────────────────────────── */
#gear {
  background: var(--brown);
  position: relative;
  overflow: hidden;
}

.gear-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  gap: 0;
}

.gear-left {
  position: relative;
  overflow: hidden;
}
.gear-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Silhouette overlay at bottom of photo */
.gear-left::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: url('../images/17_wildlife_silhouette_strip.png') bottom/contain no-repeat;
  opacity: 0.85;
}

.gear-right {
  background: var(--cream);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gear-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.gear-heading .accent { color: var(--gold); display: block; }

.gear-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.gear-quote {
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: var(--brown);
  margin-top: 24px;
}

.gear-header-bar {
  background: var(--brown);
  padding: 28px 8vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gear-header-bar-title {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cream);
  text-align: right;
}
.gear-header-bar-title span {
  display: block;
  color: var(--gold);
}

/* ─────────────────────────────────────────
   TEAM
───────────────────────────────────────── */
#team {
  position: relative;
  overflow: hidden;
}

.team-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.team-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,5,0,0.5) 0%,
    rgba(250,240,220,0.92) 45%,
    var(--cream) 80%
  );
}

.team-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 6vw 100px;
}

.team-headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.team-logo-top {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.team-logo-top img {
  height: 72px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.team-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(59,31,10,0.15);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-name-bar {
  background: var(--brown);
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.team-card-body {
  padding: 28px 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-bio-col { }

.team-bio-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}
.team-bio-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-bio-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Silhouette footer bar */
.team-footer-url {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream);
  background: var(--brown);
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.team-silhouette-bar {
  height: 80px;
  background: url('../images/17_wildlife_silhouette_strip.png') bottom/cover;
  background-color: var(--cream);
  opacity: 0.6;
}

/* ─────────────────────────────────────────
   BOOKING / CONTACT
───────────────────────────────────────── */
#booking {
  background: var(--cream-warm);
  position: relative;
}

#booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/19_page_background_texture.jpg') center/cover;
  opacity: 0.06;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.booking-left {}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border: 1px solid rgba(59,31,10,0.12);
  padding: 16px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card-icon.whatsapp { background: #E8F8EE; }
.contact-card-icon.email    { background: #EEF3FB; }
.contact-card-icon.phone    { background: var(--gold-pale); }
.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-card-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}

.booking-address {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
  font-weight: 400;
}

/* Form */
.booking-form {
  background: var(--brown);
  padding: 52px 52px 56px;
  border-radius: 6px;
  position: relative;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(250,240,220,0.55);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,240,220,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(250,240,220,0.08);
  border: 1px solid rgba(250,240,220,0.18);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,240,220,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--brown); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-submit {
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: var(--brown);
  border: none;
  border-radius: 4px;
  padding: 15px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
.form-note {
  font-size: 11px;
  font-weight: 400;
  color: rgba(250,240,220,0.35);
  text-align: center;
  margin-top: 14px;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 40px 32px;
}
.success-msg .icon { font-size: 52px; margin-bottom: 18px; }
.success-msg h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.success-msg p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,240,220,0.55);
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────
   JOIN (CONTACT CLOSING)
───────────────────────────────────────── */
#join {
  position: relative;
  overflow: hidden;
}

.join-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.join-left {
  background: rgba(30,14,2,0.75);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 8vw;
}
.join-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.join-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-logo { width: 160px; margin-bottom: 32px; }

.join-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.join-heading .white { color: var(--cream); }

.join-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.join-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(250,240,220,0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.join-contact-item:hover { color: var(--gold); }
.join-contact-icon {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(250,240,220,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.join-right {
  position: relative;
}
.join-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Wildlife silhouette at bottom */
.join-silhouette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: url('../images/17b_wildlife_silhouette_strip2.png') bottom/cover;
  z-index: 2;
}

.join-url-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: rgba(59,31,10,0.85);
  padding: 10px 20px;
  z-index: 3;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--bark);
  padding: 72px 6vw 36px;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(240,165,0,0.14);
}

.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }

.footer-brand-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(250,240,220,0.4);
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,165,0,0.5);
  text-decoration: none;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(250,240,220,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}
.footer-contact-item span:first-child {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,240,220,0.3);
}
.footer-contact-item a,
.footer-contact-item span:last-child {
  font-size: 13px;
  font-weight: 400;
  color: rgba(250,240,220,0.55);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(250,240,220,0.22);
  letter-spacing: 0.06em;
}
.footer-bottom span { color: rgba(240,165,0,0.45); }

/* ─────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .mission-layout { grid-template-columns: 1fr 1fr; }
  .mission-right { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-body { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: rgba(30,14,2,0.97);
    padding: 24px 5vw 32px;
    border-bottom: 1px solid rgba(240,165,0,0.2);
    gap: 20px;
  }
  .welcome-layout,
  .about-layout,
  .exp-layout,
  .why-layout,
  .gear-layout,
  .join-layout,
  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 36px 28px 40px; }
  .exp-photo-row { grid-template-columns: repeat(3, 1fr); }
  .exp-photo-row .exp-photo-cell:nth-child(4),
  .exp-photo-row .exp-photo-cell:nth-child(5) { display: none; }
  .hero-content { padding: 0 6vw 100px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 70px 5vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .exp-photo-row { grid-template-columns: 1fr 1fr; height: auto; }
  .exp-photo-cell { height: 160px; }
  .hero-footer-bar { flex-direction: column; gap: 4px; text-align: center; }
  .hero-content { padding-bottom: 180px; }
  .join-left, .join-right { min-height: 340px; }
  .mission-layout { grid-template-columns: 1fr; }
  .welcome-photo-strip { height: 300px; }
  .sig-hero-img { height: 180px; }
  .sig-img-cell { height: 120px; }
}

.exp-accom-section{
    background: var(--cream-warm);
    width: 100%;
}

.exp-accom-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

@media (max-width:900px){
    .exp-accom-layout{
        grid-template-columns:1fr;
        gap:40px;
    }
}