/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand: #F4EFE6;
  --sand-dark: #E8E0D0;
  --green-deep: #1B3828;
  --green-mid: #2E5940;
  --green-light: #4A7A5C;
  --brown: #7A5C3E;
  --brown-light: #A07850;
  --ink: #1A1A18;
  --ink-mid: #3D3D38;
  --ink-muted: #6B6B62;
  --ink-faint: #9A9A8F;
  --white: #FDFAF5;
  --whatsapp: #25D366;

  --font-display: 'Lora', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max: 1100px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITIES ─── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brown);
}

.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── NAV ─── */
nav:not(.breadcrumb) {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, border-color 0.3s;
}

nav.scrolled,
nav.nav-solid {
  background: rgba(244, 239, 230, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(122, 92, 62, 0.18);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

nav.scrolled .nav-logo,
nav.nav-solid .nav-logo { color: var(--green-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

nav.scrolled .nav-links a,
nav.nav-solid .nav-links a { color: var(--ink-mid); text-shadow: none; }

.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a:hover,
nav.nav-solid .nav-links a:hover { color: var(--green-deep); }

.nav-links a.active { color: var(--green-deep) !important; font-weight: 500; }

.nav-wa {
  background: var(--whatsapp);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em;
  transition: opacity 0.2s !important;
}
.nav-wa:hover { opacity: 0.88 !important; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s;
}
nav.scrolled .nav-mobile-toggle span,
nav.nav-solid .nav-mobile-toggle span { background: var(--ink); }

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(244, 239, 230, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 0.5px solid rgba(122, 92, 62, 0.18);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem var(--pad);
    color: var(--ink-mid) !important;
    font-size: 15px;
  }
  .nav-links a:hover { color: var(--green-deep) !important; background: rgba(122,92,62,0.05); }
  .nav-wa {
    margin: 0.5rem var(--pad) 0 !important;
    display: inline-flex !important;
    width: auto !important;
  }
  .nav-mobile-toggle { display: flex; }
}

/* ─── HERO (homepage) ─── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img,
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* override per-image with style="object-position: ..." */
}

.hero-dots {
  position: absolute;
  bottom: clamp(1.5rem, 3vh, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: rgba(255,255,255,0.85);
  transform: scale(1.35);
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1B3828 0%, #2E5940 40%, #4A5C3A 70%, #3A4A2A 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 20%),
    linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 35%, transparent 60%),
    linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.2) 60%, transparent 80%);
}

.hero-content {
  position: absolute;
  bottom: clamp(2.5rem, 6vh, 4.5rem);
  left: var(--pad);
  max-width: 560px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s 0.38s forwards;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.25rem;
  max-width: 340px;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s 0.54s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-deep);
  color: #fff;
  padding: 15px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s 0.68s forwards;
}
.hero-cta:hover { background: #1a3a2a; transform: translateY(-1px); }
.hero-cta svg { transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(3px); }

.scroll-hint {
  position: absolute;
  bottom: clamp(1.5rem, 3vh, 2.5rem);
  right: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1.2s 1.2s forwards;
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 0.5px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s 1.5s infinite;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

/* ─── PAGE HERO (safari pages) ─── */
.page-hero {
  padding-top: 64px;
  position: relative;
  height: clamp(420px, 60vw, 640px);
  overflow: hidden;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.page-hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1B3828 0%, #2E5940 50%, #3A5030 100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,20,14,0.75) 0%,
    rgba(10,20,14,0.25) 50%,
    transparent 75%
  );
}

.page-hero-content {
  position: absolute;
  bottom: clamp(2rem, 5vh, 4rem);
  left: var(--pad);
  max-width: 640px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.breadcrumb a, .breadcrumb span {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.page-hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  line-height: 1.7;
}

/* ─── SECTION: WHAT MAKES US DIFFERENT ─── */
/* ─── SECTION: APPROACH ─── */
.approach { background: var(--white); }

.approach-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.approach-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--green-deep);
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

/* Field notes layout */
.approach-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(122, 92, 62, 0.14);
}

.approach-note:last-child {
  border-bottom: none;
}

.approach-note-label {
  font-size: 10.5px;
  font-family: var(--font-body);
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 3px;
  opacity: 0.75;
}

.approach-note-text p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 0.9rem;
}

.approach-note-text p:last-child {
  margin-bottom: 0;
}

.approach-pull {
  font-family: var(--font-display) !important;
  font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
  color: var(--green-deep) !important;
  font-style: italic;
  margin-bottom: 0.5rem !important;
}

@media (max-width: 600px) {
  .approach-note {
    grid-template-columns: 1fr;
    gap: 0.4rem 0;
  }
  .approach-note-label {
    opacity: 0.6;
  }
}

/* ─── SECTION: SAFARI CARDS ─── */
.safaris { background: var(--sand); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-header p { font-size: 15px; color: var(--ink-muted); max-width: 480px; margin: 0 auto; line-height: 1.7; }

.safari-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.safari-card {
  background: var(--white);
  border: 0.5px solid rgba(122, 92, 62, 0.16);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.safari-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27, 56, 40, 0.1); }

.safari-card.featured { border-color: var(--green-mid); border-width: 1px; }

.safari-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--green-mid);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.safari-card-img { height: 180px; background: var(--sand-dark); position: relative; overflow: hidden; }

.safari-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.safari-card:hover .safari-card-img img { transform: scale(1.04); }

.safari-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.safari-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.safari-card-duration { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.5rem; }

.safari-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--green-deep); margin-bottom: 0.3rem; }

.safari-card-for {
  font-size: 12px;
  color: var(--ink-faint);
  font-style: italic;
  margin-bottom: 0.85rem;
}

.safari-card-desc,
.safari-card-desc p { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }
.safari-card-desc { flex: 1; margin-bottom: 1rem; }
.safari-card-desc p { margin-bottom: 0.6rem; }
.safari-card-desc p:last-child { margin-bottom: 0; }

.safari-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.safari-card-chips li {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--green-deep);
  background: rgba(44, 95, 65, 0.08);
  border-radius: 100px;
  padding: 4px 11px;
}

.safari-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 0.5px solid rgba(122, 92, 62, 0.15);
}

.safari-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--green-deep); }

.safari-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green-mid);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.safari-link:hover { gap: 9px; }

@media (max-width: 780px) {
  .safari-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ─── SECTION: LOCATIONS ─── */
.locations { background: var(--green-deep); }

.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.location-card {
  position: relative;
  height: clamp(320px, 45vw, 520px);
  overflow: hidden;
  cursor: pointer;
}

.location-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.location-img-placeholder { position: absolute; inset: 0; }

.location-card:nth-child(1) .location-img-placeholder { background: linear-gradient(160deg, #2A5040 0%, #1B3828 100%); }
.location-card:nth-child(2) .location-img-placeholder { background: linear-gradient(160deg, #3D4A2A 0%, #2A3818 100%); }

.location-card:hover .location-img { transform: scale(1.04); }

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,14,0.78) 0%, rgba(10,20,14,0.1) 55%, transparent 80%);
  transition: background 0.3s;
}

.location-content { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(1.5rem, 3vw, 2.5rem); }

.location-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }

.location-name { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400; color: #fff; margin-bottom: 0.6rem; letter-spacing: -0.01em; }

.location-desc { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.65; margin-bottom: 1.25rem; max-width: 340px; }

.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.75);
  border-bottom: 0.5px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.location-cta:hover { color: #fff; border-color: rgba(255,255,255,0.7); gap: 12px; }

@media (max-width: 600px) {
  .locations-grid { grid-template-columns: 1fr; }
  .location-card { height: 300px; }
}

/* ─── SECTION: STORY ─── */
.story { background: var(--white); }

.story-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.story-meta { padding-top: 0.5rem; position: sticky; top: 80px; }
.story-meta .label { display: block; margin-bottom: 1rem; }
.story-location { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--green-deep); margin-bottom: 0.3rem; }
.story-date { font-size: 13px; color: var(--ink-faint); }

.story-divider { width: 32px; height: 0.5px; background: var(--brown-light); margin: 1.5rem 0; }

.story-text blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.5;
  letter-spacing: -0.01em;
  border-left: 2px solid var(--brown-light);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.story-text p { font-size: 15px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1.2rem; }

@media (max-width: 680px) {
  .story-inner { grid-template-columns: 1fr; }
  .story-meta { position: static; }
}

/* ─── SECTION: REVIEWS ─── */
.reviews { background: var(--sand); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.review-card { background: var(--white); border: 0.5px solid rgba(122, 92, 62, 0.14); border-radius: 12px; padding: 1.75rem; }

.review-stars { color: var(--brown); font-size: 13px; letter-spacing: 2px; margin-bottom: 1rem; }

.review-text { font-family: var(--font-display); font-size: 15px; font-weight: 400; font-style: italic; color: var(--ink-mid); line-height: 1.7; margin-bottom: 1.25rem; }

.review-author { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.review-origin { font-size: 12px; color: var(--ink-faint); font-weight: 300; }

@media (max-width: 780px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ─── SECTION: CTA ─── */
.cta-section { background: var(--green-deep); text-align: center; }

.cta-inner { max-width: 560px; margin: 0 auto; }

.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; color: #fff; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 1rem; }

.cta-inner p { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 2.5rem; }

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--whatsapp);
  color: #fff;
  padding: 15px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-wa:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--whatsapp);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.btn-wa-sm:hover { opacity: 0.88; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255,255,255,0.78);
  padding: 14px 28px;
  border-radius: 8px;
  border: 0.5px solid rgba(255,255,255,0.28);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ─── INTRO SECTION (safari pages) ─── */
.intro { background: var(--white); }

.intro-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.intro-text p { font-size: 15px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1rem; }

.park-facts {
  background: var(--sand);
  border-radius: 12px;
  padding: 1.75rem;
  border: 0.5px solid rgba(122, 92, 62, 0.14);
}

.park-facts h3 { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--green-deep); margin-bottom: 1.25rem; }

.fact-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.65rem 0; border-bottom: 0.5px solid rgba(122, 92, 62, 0.1); }
.fact-row:last-child { border-bottom: none; }

.fact-key { font-size: 12px; color: var(--ink-faint); }
.fact-val { font-size: 13px; font-weight: 500; color: var(--ink-mid); text-align: right; }

.honest-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(122, 92, 62, 0.07);
  border-left: 2px solid var(--brown-light);
  border-radius: 0 8px 8px 0;
}

.honest-note p { font-size: 13px; color: var(--ink-muted); line-height: 1.7; margin: 0; }

@media (max-width: 680px) {
  .intro-inner { grid-template-columns: 1fr; }
}

/* ─── PACKAGES SECTION ─── */
.packages-section { background: var(--sand); }

.package {
  background: var(--white);
  border: 0.5px solid rgba(122, 92, 62, 0.14);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.package:last-child { margin-bottom: 0; }
.package.featured { border-color: var(--green-mid); border-width: 1px; }

.package-header {
  padding: 2rem 2.5rem;
  border-bottom: 0.5px solid rgba(122, 92, 62, 0.12);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.package-badge {
  display: inline-block;
  background: var(--green-mid);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.package-duration { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.5rem; }

.package-name { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 400; color: var(--green-deep); letter-spacing: -0.02em; margin-bottom: 0.6rem; }

.package-tagline { font-size: 15px; color: var(--ink-muted); line-height: 1.65; max-width: 480px; }

.package-price-block { text-align: right; flex-shrink: 0; }

.package-price { font-family: var(--font-display); font-size: 1.7rem; color: var(--green-deep); display: block; line-height: 1; margin-bottom: 4px; }
.package-price-note { font-size: 12px; color: var(--ink-faint); }

.package-body { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }

.package-col { padding: 2rem 2.5rem; border-right: 0.5px solid rgba(122, 92, 62, 0.1); }
.package-col:last-child { border-right: none; }

.package-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-bottom: 1rem; }

.package-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.package-col ul li { font-size: 14px; color: var(--ink-mid); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }

.check { color: var(--green-mid); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.cross { color: var(--ink-faint); font-size: 13px; flex-shrink: 0; margin-top: 1px; }

.package-footer {
  padding: 1.5rem 2.5rem;
  border-top: 0.5px solid rgba(122, 92, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--sand);
}

.package-footer p { font-size: 13px; color: var(--ink-muted); }
.package-footer p strong { color: var(--ink-mid); font-weight: 500; }

@media (max-width: 780px) {
  .package-header { flex-direction: column; }
  .package-price-block { text-align: left; }
  .package-body { grid-template-columns: 1fr; }
  .package-col { border-right: none; border-bottom: 0.5px solid rgba(122, 92, 62, 0.1); }
  .package-col:last-child { border-bottom: none; }
  .package-header, .package-col, .package-footer { padding: 1.5rem; }
}

/* ─── EXPERIENCE SECTION ─── */
.experience { background: var(--white); }

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.experience-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: var(--sand-dark); position: relative; }
.experience-img img { width: 100%; height: 100%; object-fit: cover; }

.experience-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sand-dark);
}

.experience-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.experience-content p { font-size: 15px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1rem; }

.time-tips { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

.time-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: var(--sand);
  border-radius: 8px;
  border: 0.5px solid rgba(122, 92, 62, 0.12);
}

.time-tip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-mid); flex-shrink: 0; margin-top: 6px; }
.time-tip p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; margin: 0; }
.time-tip strong { color: var(--green-deep); font-weight: 500; }

@media (max-width: 680px) {
  .experience-inner { grid-template-columns: 1fr; }
}

/* ─── FAQ / PRACTICAL ─── */
.practical { background: var(--sand); }

.practical-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.faq-list { display: flex; flex-direction: column; gap: 1px; }

.faq-item { background: var(--white); border-radius: 8px; overflow: hidden; }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--green-deep);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--sand); }

.faq-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 0.5px solid rgba(122, 92, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--brown);
  transition: transform 0.2s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 1rem 1.4rem 1.25rem;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.75;
  border-top: 0.5px solid rgba(122, 92, 62, 0.08);
}

.contact-sidebar { position: sticky; top: 84px; }

.contact-card { background: var(--green-deep); border-radius: 14px; padding: 2rem; color: #fff; }

.contact-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: #fff; margin-bottom: 0.5rem; }

.contact-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.5rem; }

.contact-card .btn-wa-sm { width: 100%; justify-content: center; margin-bottom: 0.75rem; }

.contact-divider { text-align: center; font-size: 11px; color: rgba(255,255,255,0.28); margin: 0.75rem 0; }

.contact-form-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 10px;
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.contact-form-link:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.82); }

.response-note { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 1rem; }

@media (max-width: 680px) {
  .practical-inner { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
}

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 3rem var(--pad) 2rem; }

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-brand-name { font-family: var(--font-display); font-size: 17px; font-weight: 400; color: var(--sand); margin-bottom: 0.75rem; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 300px; }

.footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--sand); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ─── FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 99;
  background: var(--whatsapp);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── HERO PHOTO CREDIT ─── */
.hero-photo-credit {
  position: absolute;
  bottom: clamp(1.5rem, 3vh, 2.5rem);
  right: var(--pad);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

/* ─── SAFARI CARD PHOTOGRAPHER TAG ─── */
.card-photographer-tag {
  font-size: 11px;
  color: var(--brown);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.75rem;
  opacity: 0.8;
}
.card-photographer-tag::before {
  content: "📷 ";
  font-size: 11px;
}

/* ─── PHOTO GALLERY SECTION ─── */
.field-gallery { background: var(--sand); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 8px;
  margin-top: 2.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  background: var(--sand-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--wide { grid-column: span 2; }

.gallery-credit {
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  font-style: italic;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item { aspect-ratio: 4/3; }
}

/* ─── ABOUT PAGE PHOTO STRIP ─── */
.about-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 300px;
  gap: 0;
}

.about-photo-strip-item {
  overflow: hidden;
}

.about-photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.about-photo-strip-item:hover img { transform: scale(1.04); }

@media (max-width: 600px) {
  .about-photo-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 360px;
  }
}

/* ─── CONTACT PAGE ─── */
.page-hero-short { height: clamp(280px, 35vw, 420px); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--sand);
  border: 0.5px solid rgba(122, 92, 62, 0.2);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-group select { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  justify-content: center;
}
.form-submit:hover { background: var(--green-mid); transform: translateY(-1px); }

.contact-card {
  background: var(--green-deep);
  border-radius: 14px;
  padding: 2rem;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--white);
  margin: 0 0 0.85rem;
}
.contact-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(253, 250, 245, 0.6);
  margin: 0 0 1.25rem;
}

.response-box {
  background: var(--sand);
  border: 0.5px solid rgba(122, 92, 62, 0.14);
  border-radius: 10px;
  padding: 1.25rem;
  margin-top: 1rem;
}
.response-box .response-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  display: block;
  margin-bottom: 0.5rem;
}
.response-box p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0 0 0.5rem;
}

.social-links { display: flex; gap: 0.75rem; margin-top: 0.75rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.social-link svg { flex-shrink: 0; }

.contact-right-sticky { position: sticky; top: 84px; }
