/* ===== CSS VARIABLES ===== */
:root {
  --dark-brown: #1a0c06;
  --mid-brown: #3d2b1f;
  --warm-brown: #5c3d1e;
  --rich-brown: #7a5230;
  --gold-brown: #8B6914;
  --light-brown: #c8b89a;
  --cream: #f5e6d3;
  --off-white: #faf6f0;
  --white: #ffffff;
  --accent-amber: #c4601a;
  --accent-gold: #e8841c;
  --text-dark: #1a0c06;
  --text-mid: #5c3d1e;
  --text-light: #c8b89a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--off-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .silhouette,
body.is-loading .hero-eyebrow,
body.is-loading .hero-line,
body.is-loading .hero-desc,
body.is-loading .hero-actions,
body.is-loading .hero-scroll,
body.is-loading .hero-stat-bar,
body.is-loading .scroll-line {
  animation-play-state: paused;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

/* ===== LOADER ===== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 72%, rgba(196,96,26,0.18) 0%, rgba(196,96,26,0) 32%),
    linear-gradient(180deg, #0d0604 0%, #1a0c06 42%, #271307 72%, #140904 100%);
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.site-loader::before {
  content: '';
  position: absolute;
  top: clamp(7rem, 15vh, 9rem);
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,184,154,0.24), transparent);
  opacity: 0.5;
}

.site-loader::after {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -18%;
  height: 42vh;
  background: radial-gradient(circle at 50% 10%, rgba(232,132,28,0.45) 0%, rgba(196,96,26,0.18) 22%, rgba(196,96,26,0) 65%);
  filter: blur(20px);
  opacity: 0.9;
}

.site-loader__halo,
.site-loader__content,
.site-loader__sun {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.site-loader__halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.site-loader__halo--left {
  top: -9rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(232,132,28,0.14) 0%, rgba(232,132,28,0) 68%);
  animation: loaderHaloDrift 6s ease-in-out infinite;
}

.site-loader__halo--right {
  right: -6rem;
  bottom: 10%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(122,82,48,0.24) 0%, rgba(122,82,48,0) 72%);
  animation: loaderHaloDrift 7s ease-in-out infinite reverse;
}

.site-loader__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: min(100%, 34rem);
  text-align: center;
  animation: loaderContentRise 1.1s ease both;
}

.site-loader__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.site-loader__map-frame {
  position: relative;
  width: min(100%, 18rem);
  aspect-ratio: 11 / 14;
  display: grid;
  place-items: center;
}

.site-loader__sun {
  position: absolute;
  bottom: 13%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,132,28,0.48) 0%, rgba(196,96,26,0.22) 38%, rgba(196,96,26,0) 70%);
  filter: blur(18px);
  animation: loaderSunPulse 3s ease-in-out infinite;
}

.site-loader__map {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 26px 36px rgba(0,0,0,0.28));
}

.loader-map__shadow {
  fill: rgba(0,0,0,0.24);
  transform-origin: center;
  animation: loaderShadowPulse 2.8s ease-in-out infinite;
}

.loader-map__continent {
  fill: url(#loaderMapFill);
  opacity: 0;
  transform-origin: 50% 50%;
  animation: loaderMapRise 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
}

.loader-map__outline,
.loader-map__madagascar-outline {
  fill: none;
  stroke: rgba(245,230,211,0.75);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: loaderStroke 1.6s ease 0.2s forwards;
}

.loader-map__madagascar {
  fill: rgba(245,230,211,0.82);
  opacity: 0;
  transform-origin: center;
  animation: loaderIslandRise 1s ease 0.55s forwards;
}

.loader-map__madagascar-outline {
  stroke-width: 3.5;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation-delay: 0.5s;
}

.site-loader__track {
  position: relative;
  width: min(12rem, 58vw);
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(245,230,211,0), rgba(245,230,211,0.3), rgba(245,230,211,0));
}

.site-loader__track span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, rgba(232,132,28,0), rgba(232,132,28,0.95) 40%, rgba(245,230,211,0.85) 100%);
  animation: loaderTrack 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.site-loader__caption {
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  color: rgba(245,230,211,0.78);
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader.is-hidden .site-loader__content {
  transform: translateY(-18px);
  opacity: 0;
}

.site-loader.is-hidden .site-loader__halo,
.site-loader.is-hidden .site-loader__sun {
  opacity: 0;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 3rem;
  background: transparent;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(26, 12, 6, 0.96);
  padding: 0.9rem 3rem;
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  width: clamp(8rem, 12vw, 11rem);
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: 1rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border: 1px solid rgba(200,184,154,0.18);
  background: rgba(26,12,6,0.48);
  backdrop-filter: blur(8px);
}

.language-switch__btn {
  min-width: 2.55rem;
  padding: 0.45rem 0.7rem;
  border: none;
  background: transparent;
  color: rgba(245,230,211,0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.language-switch__btn:hover,
.language-switch__btn.is-active {
  background: rgba(232,132,28,0.14);
  color: var(--cream);
}

.nav-link {
  color: rgba(245,230,211,0.75);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--cream);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}

.nav-cta:hover {
  background: var(--accent-gold);
  color: var(--dark-brown);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition);
}

/* ===== PAGES ===== */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-amber);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,230,211,0.4);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245,230,211,0.08);
}

.btn-outline {
  background: transparent;
  color: var(--warm-brown);
  border: 1.5px solid var(--warm-brown);
}
.btn-outline:hover {
  background: var(--warm-brown);
  color: var(--cream);
}

.btn-cream {
  background: var(--cream);
  color: var(--dark-brown);
}
.btn-cream:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.full-width { width: 100%; text-align: center; }

/* ===== WELCOME INTRO ===== */
.welcome-intro {
  position: relative;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 0 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 72%, rgba(232,132,28,0.18) 0%, rgba(232,132,28,0) 38%),
    linear-gradient(180deg, #0c0604 0%, #130804 32%, #1a0c06 74%, #140904 100%);
}

.welcome-intro__video-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

#welcomeIntroPlayer,
.welcome-intro__video-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.7778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.16);
  pointer-events: none;
}

.welcome-intro__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,5,4,0.88) 0%, rgba(12,6,4,0.48) 28%, rgba(18,8,4,0.56) 68%, rgba(13,6,4,0.92) 100%),
    radial-gradient(circle at 50% 50%, rgba(196,96,26,0.16) 0%, rgba(196,96,26,0) 40%);
  z-index: 1;
}

.welcome-intro__content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.welcome-intro__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent 0%, rgba(232,132,28,0.52) 20%, rgba(245,230,211,0.42) 50%, rgba(232,132,28,0.52) 80%, transparent 100%);
  opacity: 0.9;
}

.welcome-intro__title {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.8rem 2.4rem;
  background: rgba(17,8,5,0.1);
  border: 1px solid rgba(200,184,154,0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  will-change: clip-path, opacity, transform;
  animation: welcomeIntroTitleExit 1.2s ease 6s forwards;
}

.welcome-intro__title span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.welcome-intro__title em {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.96;
  color: var(--cream);
}

@keyframes welcomeIntroTitleExit {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: translateX(1.5rem);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0d0604 0%, #1a0c06 30%, #2a1508 60%, #1a1006 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("img/leopard.JPEG") center 24% / cover no-repeat;
  opacity: 0.42;
  transform: scale(1.03);
  filter: saturate(0.82) brightness(0.62);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(196,96,26,0.15) 0%, transparent 60%);
}

/* Animated savanna ground */
.savanna-ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, #1a0c06 0%, #2a1505 40%, transparent 100%);
}

/* Hero animal silhouettes */
.hero-animals {
  position: absolute;
  bottom: 100px; left: 0; right: 0;
  height: 350px;
}

.silhouette {
  position: absolute;
  bottom: 0;
}

/* Elephant SVG silhouette */
.elephant {
  right: 12%;
  width: 280px;
  height: 220px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 220'%3E%3Cellipse cx='155' cy='160' rx='90' ry='60' fill='%231a0c06'/%3E%3Ccircle cx='80' cy='120' r='50' fill='%231a0c06'/%3E%3Cpath d='M45 150 Q20 180 30 210 Q35 220 45 215 Q38 195 55 175' fill='%231a0c06'/%3E%3Cellipse cx='65' cy='105' rx='35' ry='48' fill='%23200f07'/%3E%3Cpath d='M40 152 Q28 158 32 168' stroke='%23c8b89a' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3Crect x='90' y='205' width='22' height='15' rx='8' fill='%231a0c06'/%3E%3Crect x='120' y='210' width='22' height='10' rx='8' fill='%231a0c06'/%3E%3Crect x='155' y='205' width='22' height='15' rx='8' fill='%231a0c06'/%3E%3Crect x='185' y='210' width='22' height='10' rx='8' fill='%231a0c06'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: contain;
  opacity: 0;
  animation: fadeUp 1.5s ease 0.5s forwards;
}

/* Giraffe silhouette */
.giraffe {
  right: 28%;
  width: 80px;
  height: 320px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 320'%3E%3Crect x='32' y='120' width='16' height='150' rx='6' fill='%231a0c06'/%3E%3Cellipse cx='40' cy='115' rx='14' ry='25' fill='%231a0c06'/%3E%3Crect x='34' y='20' width='10' height='100' rx='4' fill='%231a0c06'/%3E%3Ccircle cx='39' cy='16' r='14' fill='%231a0c06'/%3E%3Crect x='20' y='240' width='12' height='80' rx='5' fill='%231a0c06'/%3E%3Crect x='48' y='240' width='12' height='80' rx='5' fill='%231a0c06'/%3E%3Cline x1='39' y1='6' x2='39' y2='0' stroke='%231a0c06' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: contain;
  opacity: 0;
  animation: fadeUp 1.5s ease 0.9s forwards;
}

/* Acacia trees */
.tree {
  bottom: 0;
  background-size: contain;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.tree1 {
  left: 5%;
  width: 120px;
  height: 250px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 250'%3E%3Crect x='55' y='130' width='10' height='120' fill='%231a0c06'/%3E%3Cellipse cx='60' cy='120' rx='55' ry='30' fill='%231a0c06'/%3E%3Cellipse cx='60' cy='105' rx='45' ry='20' fill='%23200f07'/%3E%3C/svg%3E") no-repeat center bottom;
  animation-delay: 0.2s;
}

.tree2 {
  left: 20%;
  width: 80px;
  height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 180'%3E%3Crect x='37' y='90' width='8' height='90' fill='%231a0c06'/%3E%3Cellipse cx='40' cy='85' rx='38' ry='20' fill='%231a0c06'/%3E%3Cellipse cx='40' cy='72' rx='30' ry='14' fill='%23200f07'/%3E%3C/svg%3E") no-repeat center bottom;
  animation-delay: 0.4s;
}

.tree3 {
  left: 42%;
  width: 100px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Crect x='46' y='100' width='8' height='100' fill='%231a0c06'/%3E%3Cellipse cx='50' cy='95' rx='48' ry='24' fill='%231a0c06'/%3E%3Cellipse cx='50' cy='80' rx='38' ry='16' fill='%23200f07'/%3E%3C/svg%3E") no-repeat center bottom;
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 3rem;
  max-width: 760px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hero-line {
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}

.hero-line.italic {
  font-style: italic;
  font-weight: 300;
  color: var(--light-brown);
  animation-delay: 0.7s;
}

.hero-desc {
  color: rgba(245,230,211,0.65);
  font-size: 0.95rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  padding-bottom: clamp(5rem, 10vh, 6.5rem);
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 120px;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,230,211,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 10;
  animation: fadeIn 1.5s ease 2s both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(245,230,211,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.6); opacity: 0.8; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes loaderContentRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderMapRise {
  from { opacity: 0; transform: translateY(34px) scale(0.93); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes loaderIslandRise {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes loaderStroke {
  to { stroke-dashoffset: 0; }
}

@keyframes loaderTrack {
  0% {
    transform: translateX(-130%) scaleX(0.65);
    opacity: 0;
  }
  25% { opacity: 1; }
  100% {
    transform: translateX(270%) scaleX(1.12);
    opacity: 0;
  }
}

@keyframes loaderHaloDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0.6rem, 1rem, 0) scale(1.08); }
}

@keyframes loaderSunPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes loaderShadowPulse {
  0%, 100% { transform: scaleX(0.92); opacity: 0.18; }
  50% { transform: scaleX(1); opacity: 0.26; }
}

.hero-stat-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  background: rgba(26,12,6,0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(200,184,154,0.15);
  padding: 1.5rem 3rem;
  animation: fadeIn 1s ease 1.5s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-brown);
  text-align: center;
}

.stat-divider {
  width: 1px;
  background: rgba(200,184,154,0.2);
  align-self: stretch;
  margin: 0.5rem 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 1rem;
}

.section-eyebrow.center, .section-title.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--mid-brown);
  margin-bottom: 1.5rem;
}

.body-text {
  color: var(--warm-brown);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.body-text.light { color: rgba(245,230,211,0.75); }
.body-text.max-600 { max-width: 600px; }
.body-text.max-700 { max-width: 700px; }

.about-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.15;
  color: var(--mid-brown);
  margin-bottom: 0.6rem;
}

.about-territory {
  max-width: 38rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--accent-amber);
  margin-bottom: 1.8rem;
}

/* ===== INTRO SPLIT ===== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.split-text .btn { margin-top: 1rem; }

.image-frame {
  position: relative;
}

.safari-illustration {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
}

.okavango {
  background: linear-gradient(180deg, #0d1f18 0%, #1a3a2a 40%, #2a5040 70%, #1a3a2a 100%);
  position: relative;
}

.okavango::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(196,96,26,0.3), transparent);
}

.okavango::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(circle at 60% 30%, rgba(200,132,28,0.2), transparent 60%);
}

.image-caption {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-brown);
  text-align: center;
}

/* ===== REGIONS GRID ===== */
.regions-section { background: var(--cream); }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.regions-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.region-card {
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(26,12,6,0.08);
}

.region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,12,6,0.15);
}

.region-card.large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.region-art {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0c06 0%, #3d2b1f 100%);
}

.region-card.large .region-art { height: 100%; min-height: 320px; }

.region-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,12,6,0.28) 0%, rgba(26,12,6,0.06) 55%, rgba(26,12,6,0) 100%);
}

.region-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition);
  filter: saturate(0.96) contrast(1.02);
}

.region-card:hover .region-photo {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.04);
}

.okavango-art {
  background: linear-gradient(160deg, #0d1f18 0%, #1a3a2a 50%, #2a5040 100%);
}
.linyanti-art {
  background: linear-gradient(160deg, #1a0c06 0%, #2a1505 50%, #3d2b1f 100%);
}
.mababe-art {
  background: linear-gradient(160deg, #0a0805 0%, #1a0c06 50%, #2a1a0e 100%);
}

.water-ripple {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 80%, rgba(26,90,60,0.4), transparent 60%);
}

.region-wildlife {
  width: 70%;
  max-width: 200px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

.region-wildlife.small { width: 55%; }

.region-info {
  padding: 1.35rem 1.35rem 1.5rem;
}

.region-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--mid-brown);
  margin-bottom: 0.4rem;
}

.region-info p {
  font-size: 0.85rem;
  color: var(--warm-brown);
  line-height: 1.6;
  margin-bottom: 0;
}

.region-tag {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-amber);
  border: 1px solid var(--accent-amber);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.featured-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--mid-brown) 50%, var(--warm-brown) 100%);
}

.featured-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(196,96,26,0.2), transparent 60%);
}

.featured-section .container { position: relative; z-index: 1; }
.section-title.light { color: var(--cream); }

.featured-tier-intro {
  margin-bottom: 2.5rem;
}

.featured-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.featured-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.featured-tier-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  background: rgba(245,230,211,0.05);
  border: 1px solid rgba(200,184,154,0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.featured-tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,132,28,0.38);
  background: rgba(245,230,211,0.08);
}

.featured-tier-card--signature {
  background: linear-gradient(160deg, rgba(26,12,6,0.82) 0%, rgba(61,43,31,0.88) 100%);
  border-color: rgba(232,132,28,0.3);
}

.featured-tier-kicker {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.featured-tier-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1rem;
}

.featured-tier-body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(245,230,211,0.76);
  margin-bottom: 1.5rem;
}

.featured-tier-price {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(200,184,154,0.22);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* ===== TESTIMONIAL ===== */
.testimonial-section { background: var(--off-white); padding: 7rem 0; }

.testimonial-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--light-brown);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--mid-brown);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.author-name {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--warm-brown);
  letter-spacing: 0.1em;
}

.author-origin {
  font-size: 0.75rem;
  color: var(--light-brown);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brochure-section {
  padding: 0 0 7rem;
  background: var(--off-white);
}

.brochure-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 2.4rem;
  background: linear-gradient(135deg, rgba(26,12,6,0.97), rgba(92,61,30,0.94));
  border: 1px solid rgba(232,132,28,0.18);
  box-shadow: 0 18px 40px rgba(26,12,6,0.14);
}

.brochure-copy .section-eyebrow,
.brochure-copy .section-title {
  color: var(--cream);
}

.brochure-copy .section-title {
  margin-bottom: 0.8rem;
}

.brochure-copy .body-text {
  max-width: 38rem;
  color: rgba(245,230,211,0.78);
}

.brochure-download {
  white-space: nowrap;
}

/* ===== PAGE HEROES ===== */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-image, url("img/leopard.jpg"));
  background-position: center var(--page-hero-focus, 28%);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  transform: scale(1.04);
  filter: saturate(0.88) brightness(0.72);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,12,6,0.9) 0%, rgba(26,12,6,0.5) 60%, rgba(26,12,6,0.3) 100%);
}

.page-hero-overlay.dark-overlay {
  background: linear-gradient(to top, rgba(26,12,6,0.95) 0%, rgba(26,12,6,0.7) 100%);
}

.destinations-hero {
  --page-hero-image: url("img/destination.jpg");
  --page-hero-focus: 42%;
  background: linear-gradient(to bottom right, #0d1205, #1a2010, #2a3018);
}

.page-hero-art {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}

.page-hero-art svg {
  width: 100%;
  height: 100%;
}

.exp-hero {
  --page-hero-image: url("img/experience.jpg");
  --page-hero-focus: 38%;
  background: linear-gradient(135deg, #1a0c06, #2a1505, #3d2b0d);
}
.team-hero {
  --page-hero-image:
    radial-gradient(circle at 50% 34%, rgba(232,132,28,0.18) 0%, rgba(232,132,28,0.02) 20%, rgba(232,132,28,0) 46%),
    linear-gradient(180deg, rgba(245,230,211,0.08) 0%, rgba(245,230,211,0) 44%),
    url("img/team.jpg");
  --page-hero-focus: 50%;
  background:
    linear-gradient(135deg, #080604 0%, #150e08 52%, #24170a 100%);
}
.team-hero::after {
  content: '';
  position: absolute;
  top: clamp(5.75rem, 15vh, 7.5rem);
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,184,154,0.3), transparent);
  opacity: 0.75;
  z-index: 1;
}
.conservation-hero { background: linear-gradient(135deg, #0a0f0a, #0d1f18, #1a3a2a); }
.contact-hero {
  --page-hero-image: url("img/contact.jpg");
  --page-hero-focus: 36%;
  background: linear-gradient(135deg, #1a0c06, #2a1505, #1a1006);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 4rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.page-hero-sub {
  font-size: 0.9rem;
  color: rgba(245,230,211,0.65);
  max-width: 500px;
  line-height: 1.7;
}

/* ===== DESTINATIONS ===== */
.destination-pills-wrap {
  position: relative;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(26,12,6,0.98) 0%, rgba(26,12,6,0.94) 100%);
  border-top: 1px solid rgba(200,184,154,0.12);
  border-bottom: 1px solid rgba(200,184,154,0.12);
}

.destination-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.35rem 0;
}

.destination-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(200,184,154,0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,230,211,0.72);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.destination-pill:hover {
  color: var(--cream);
  border-color: rgba(232,132,28,0.45);
  background: rgba(232,132,28,0.08);
  transform: translateY(-2px);
}

.destination-guide {
  background:
    radial-gradient(circle at top, rgba(232,132,28,0.06) 0%, rgba(232,132,28,0) 28%),
    linear-gradient(180deg, #f7f0e7 0%, #faf6f0 35%, #f6ede3 100%);
}

.destination-country {
  --destination-accent: var(--accent-amber);
  --destination-soft: rgba(196,96,26,0.12);
  --destination-border: rgba(122,82,48,0.18);
  position: relative;
  padding: 4.75rem 0;
  scroll-margin-top: 6rem;
}

.destination-country::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,82,48,0.18), transparent);
}

.destination-country:last-child::after { display: none; }

.destination-country--botswana {
  --destination-accent: #3b8a6e;
  --destination-soft: rgba(59,138,110,0.12);
  --destination-border: rgba(59,138,110,0.18);
}

.destination-country--zimbabwe {
  --destination-accent: #8b3a2c;
  --destination-soft: rgba(139,58,44,0.12);
  --destination-border: rgba(139,58,44,0.18);
}

.destination-country--namibia {
  --destination-accent: #c4762a;
  --destination-soft: rgba(196,118,42,0.14);
  --destination-border: rgba(196,118,42,0.2);
}

.destination-country--south-africa {
  --destination-accent: #2c5f8b;
  --destination-soft: rgba(44,95,139,0.12);
  --destination-border: rgba(44,95,139,0.18);
}

.destination-country__frame {
  position: relative;
  padding: clamp(1.8rem, 3.2vw, 3rem);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.68) 0%, rgba(245,230,211,0.8) 100%);
  border: 1px solid var(--destination-border);
  box-shadow: 0 24px 60px rgba(61,43,31,0.08);
  overflow: hidden;
}

.destination-country__frame::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(0.45rem, 0.8vw, 0.65rem);
  background: linear-gradient(180deg, var(--destination-accent) 0%, rgba(255,255,255,0) 100%);
  opacity: 0.92;
}

.destination-country__frame::after {
  content: '';
  position: absolute;
  inset: auto -12% -32% auto;
  width: 20rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--destination-soft) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.destination-country__header,
.destination-story,
.destination-metrics {
  position: relative;
  z-index: 1;
}

.destination-country__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  margin-bottom: 2.35rem;
  border-bottom: 1px solid rgba(122,82,48,0.12);
}

.destination-country__heading {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
}

.destination-country__count {
  min-width: 3.4rem;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 5.1rem);
  font-weight: 300;
  line-height: 0.86;
  color: rgba(61,43,31,0.14);
}

.destination-country__label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

.destination-country__name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--dark-brown);
}

.destination-country__name span {
  font-style: italic;
  color: var(--destination-accent);
}

.destination-country__tagline {
  max-width: 40rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--warm-brown);
}

.destination-country__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.destination-country__badge-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.destination-badge {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--destination-border);
  background: var(--destination-soft);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--destination-accent);
}

.destination-best-time {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.destination-best-time strong {
  color: var(--dark-brown);
  font-weight: 500;
}

.destination-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.4rem;
}

.destination-copy__title {
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(122,82,48,0.12);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.destination-copy__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.94rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.destination-highlights {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.destination-highlights li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--warm-brown);
}

.destination-highlights li::before {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--destination-accent);
}

.destination-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 2.4rem;
}

.destination-gallery__item {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 6 / 5;
  overflow: hidden;
  border: 1px solid var(--destination-border);
  background: rgba(255,255,255,0.48);
  box-shadow: 0 16px 34px rgba(61,43,31,0.06);
}

.destination-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,12,6,0.22) 0%, rgba(26,12,6,0.04) 48%, rgba(26,12,6,0) 100%);
  pointer-events: none;
}

.destination-gallery__item--feature {
  aspect-ratio: 6 / 5;
}

.destination-gallery__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8.25;
}

.destination-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform var(--transition-slow), filter var(--transition);
}

.destination-gallery__item:hover .destination-gallery__image {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.04);
}

.destination-metrics {
  padding-top: 2rem;
  border-top: 1px solid rgba(122,82,48,0.12);
}

.destination-metrics__title {
  margin-top: -0.25rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--mid-brown);
}

.destination-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.destination-metric {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, var(--destination-soft) 100%);
  border: 1px solid var(--destination-border);
  box-shadow: 0 12px 28px rgba(61,43,31,0.04);
}

.destination-metric__value {
  flex: 0 0 auto;
  min-width: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--destination-accent);
}

.destination-metric__value sup {
  font-size: 0.5em;
  top: -0.6em;
}

.destination-metric__body {
  width: 100%;
}

.destination-metric__body h3 {
  margin-bottom: 0.65rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-brown);
}

.destination-metric__body p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-mid);
}

.destination-metric__context {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(122,82,48,0.12);
}

.destination-metric__source {
  margin-top: 0.8rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(92,61,30,0.74);
}

/* ===== EXPERIENCES ===== */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.safari-tier-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.legacy-exp-grid {
  display: none;
}

.exp-card {
  background: var(--white);
  border: 1px solid var(--cream);
  padding: 2.5rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}

.exp-card:hover {
  box-shadow: 0 12px 40px rgba(26,12,6,0.12);
  transform: translateY(-4px);
  border-color: var(--light-brown);
}

.exp-card.featured-exp {
  background: linear-gradient(135deg, var(--dark-brown), var(--mid-brown));
  border-color: var(--warm-brown);
}

.exp-card.featured-exp .exp-title { color: var(--cream); }
.exp-card.featured-exp .exp-body { color: rgba(245,230,211,0.7); }
.exp-card.featured-exp .exp-detail { color: rgba(245,230,211,0.5); border-color: rgba(200,184,154,0.2); }

.safari-tier-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.exp-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.2rem 0.6rem;
}

.exp-icon {
  width: 60px; height: 60px;
  margin-bottom: 1.5rem;
}

.exp-icon.large { width: 70px; height: 70px; }

.exp-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--mid-brown);
  margin-bottom: 0.8rem;
}

.exp-kicker {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.exp-body {
  font-size: 0.85rem;
  color: var(--warm-brown);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.exp-price {
  margin-top: auto;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(200,184,154,0.45);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-amber);
}

.safari-tier-card.featured-exp .exp-kicker,
.safari-tier-card.featured-exp .exp-price {
  color: var(--accent-gold);
}

.safari-tier-card.featured-exp .exp-price {
  border-top-color: rgba(200,184,154,0.22);
}

.exp-detail {
  display: flex;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-brown);
  border-top: 1px solid var(--cream);
  padding-top: 1rem;
  flex-wrap: wrap;
}

.journey-showcase {
  margin-top: 5.5rem;
}

.journey-intro {
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin: 1.6rem auto 0;
}

.journey-intro .body-text {
  text-align: center;
}

.journey-path {
  display: grid;
  gap: 1.4rem;
  margin-top: 3rem;
}

.journey-card {
  --journey-accent: var(--accent-amber);
  position: relative;
  display: grid;
  grid-template-columns: minmax(6.5rem, 8.5rem) minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem;
  scroll-margin-top: 6rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,246,240,0.98) 100%);
  border: 1px solid rgba(200,184,154,0.5);
  box-shadow: 0 18px 44px rgba(61,43,31,0.06);
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.38rem;
  background: linear-gradient(180deg, var(--journey-accent) 0%, rgba(255,255,255,0) 100%);
}

.journey-card--10 {
  --journey-accent: #3b8a6e;
}

.journey-card--14 {
  --journey-accent: #c4762a;
}

.journey-card--21 {
  --journey-accent: #2c5f8b;
}

.journey-card__day {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
  padding-right: 1.6rem;
  border-right: 1px solid rgba(200,184,154,0.55);
}

.journey-card__count {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 0.85;
  color: var(--journey-accent);
}

.journey-card__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.journey-card__content {
  display: grid;
  gap: 0.8rem;
}

.journey-card__meta {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--journey-accent);
}

.journey-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--mid-brown);
}

.journey-card__subtitle {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

.journey-card__body {
  font-size: 0.9rem;
  line-height: 1.88;
  color: var(--warm-brown);
}

.journey-custom-note {
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, var(--dark-brown), rgba(61,43,31,0.98));
  border: 1px solid rgba(200,184,154,0.18);
  box-shadow: 0 18px 40px rgba(26,12,6,0.14);
}

.journey-custom-note__eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.journey-custom-note__text {
  max-width: 62rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(245,230,211,0.86);
}

.legacy-unused::before {
  content: '→ ';
  color: var(--accent-amber);
}

/* ===== VALUES STORY ===== */
.values-page {
  --values-ink: #1a1510;
  --values-charcoal: #2c2520;
  --values-earth: #6b4c35;
  --values-clay: #c4956a;
  --values-gold: #c8973a;
  --values-gold-light: #e2b96a;
  --values-sand: #f2ead8;
  --values-cream: #faf7f2;
  --values-white: #ffffff;
  --values-muted: #8a7d70;
  --values-border: rgba(107, 76, 53, 0.15);
  background: var(--values-ink);
}

.values-story-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background: var(--values-ink);
  text-align: center;
}

.values-story-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.035;
  pointer-events: none;
}

.values-story-hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(38rem, 80vw);
  height: min(25rem, 54vw);
  transform: translate(-50%, -55%);
  background: radial-gradient(ellipse, rgba(200, 151, 58, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.values-story-hero__tree {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 56rem);
  transform: translateX(-50%);
  color: var(--values-white);
  opacity: 0.06;
  pointer-events: none;
}

.values-story-hero__content,
.values-story-hero__scroll {
  position: relative;
  z-index: 1;
}

.values-story-hero__eyebrow,
.values-story-hero__title,
.values-story-hero__rule,
.values-story-hero__sub,
.values-story-hero__scroll {
  opacity: 0;
  animation: valuesFadeUp 0.95s ease forwards;
}

.values-story-hero__eyebrow {
  margin-bottom: 1.75rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--values-gold);
  animation-delay: 0.22s;
}

.values-story-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 11vw, 7.5rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--values-cream);
  animation-delay: 0.42s;
}

.values-story-hero__title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--values-gold-light);
}

.values-story-hero__rule {
  width: 1px;
  height: 3.75rem;
  margin: 2.2rem auto;
  background: linear-gradient(to bottom, transparent, var(--values-clay), transparent);
  animation-delay: 0.66s;
}

.values-story-hero__sub {
  font-size: 0.84rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 234, 216, 0.56);
  animation-delay: 0.82s;
}

.values-story-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translateX(-50%);
  animation-delay: 1.12s;
}

.values-story-hero__scroll span {
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242, 234, 216, 0.32);
}

.values-story-hero__scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--values-clay), transparent);
  animation: valuesScrollPulse 2s ease-in-out infinite;
}

.values-story-shell {
  background: var(--values-cream);
}

.values-story-intro {
  padding: 4.4rem 2rem;
  text-align: center;
  background: var(--values-sand);
  border-bottom: 1px solid var(--values-border);
}

.values-story-intro__label {
  margin-bottom: 1rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--values-clay);
}

.values-story-intro__text {
  max-width: 42rem;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--values-charcoal);
}

.values-story-card {
  --values-panel-bg: #1e1812;
  --values-copy-bg: var(--values-cream);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 31rem;
  scroll-margin-top: 6rem;
  border-bottom: 1px solid var(--values-border);
}

.values-story-card--authenticity {
  --values-panel-bg: #1e1812;
}

.values-story-card--local {
  --values-panel-bg: #221a12;
  --values-copy-bg: var(--values-white);
}

.values-story-card--eco {
  --values-panel-bg: #1a1c12;
}

.values-story-card--guardians {
  --values-panel-bg: #121a1c;
  --values-copy-bg: var(--values-white);
}

.values-story-card--fair {
  --values-panel-bg: #1c1412;
}

.values-story-card--reverse .values-story-card__identity {
  order: 2;
}

.values-story-card--reverse .values-story-card__copy {
  order: 1;
}

.values-story-card__identity {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 4.5rem 4rem;
  background: var(--values-panel-bg);
  color: var(--values-cream);
}

.values-story-card__identity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 151, 58, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.values-story-card__number {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(200, 151, 58, 0.12);
  user-select: none;
  pointer-events: none;
}

.values-story-card__icon,
.values-story-card__name,
.values-story-card__rule,
.values-story-card__tagline {
  position: relative;
  z-index: 1;
}

.values-story-card__icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  color: var(--values-gold-light);
}

.values-story-card__icon svg {
  width: 100%;
  height: 100%;
}

.values-story-card__name {
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 300;
  line-height: 0.98;
  color: var(--values-cream);
}

.values-story-card__name em {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7em;
  font-style: italic;
  font-weight: 300;
  color: var(--values-gold-light);
  letter-spacing: 0.04em;
}

.values-story-card__rule {
  width: 2.5rem;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--values-gold);
}

.values-story-card__tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1.8;
  text-transform: uppercase;
  color: rgba(200, 151, 58, 0.76);
}

.values-story-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 4rem;
  background: var(--values-copy-bg);
}

.values-story-card__body {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  font-weight: 300;
  line-height: 1.78;
  color: var(--values-charcoal);
}

.values-story-card__body p + p {
  margin-top: 1.1rem;
}

.values-story-card__body strong {
  font-weight: 600;
  color: var(--values-earth);
}

.values-story-card__closing {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--values-border);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--values-clay);
}

.values-story-outro {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 4.5rem;
  background: var(--values-ink);
  text-align: center;
}

.values-story-outro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 3.75rem;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--values-clay));
}

.values-story-outro__brand {
  margin-bottom: 1.2rem;
  padding-top: 3.8rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--values-gold);
}

.values-story-outro__quote {
  max-width: 38rem;
  margin: 0 auto 1.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(242, 234, 216, 0.64);
}

.values-story-outro__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(242, 234, 216, 0.38);
}

.values-story-outro__contact a {
  color: var(--values-clay);
  transition: color var(--transition);
}

.values-story-outro__contact a:hover {
  color: var(--values-gold-light);
}

.values-story-outro__url {
  margin-top: 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242, 234, 216, 0.22);
}

@keyframes valuesFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes valuesScrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ===== TEAM ===== */
.team-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
  position: relative;
  z-index: 2;
}

.team-hero-meta span {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(200,184,154,0.22);
  background: rgba(8,6,4,0.34);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,230,211,0.72);
}

.team-founder {
  padding-top: 5rem;
}

.team-founder-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid rgba(61,43,31,0.08);
  overflow: hidden;
  background: var(--white);
}

.team-founder-card {
  position: relative;
  padding: clamp(2rem, 4vw, 4rem);
}

.team-founder-card--identity {
  background:
    radial-gradient(circle at 22% 34%, rgba(232,132,28,0.18) 0%, rgba(232,132,28,0) 46%),
    linear-gradient(160deg, #120906 0%, #1a0c06 54%, #2a1709 100%);
  color: var(--cream);
}

.team-founder-role {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(232,132,28,0.88);
}

.team-founder-name {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
}

.team-founder-name em {
  font-style: italic;
  color: rgba(245,230,211,0.82);
}

.team-founder-rule {
  width: 3.5rem;
  height: 1px;
  margin: 1.5rem 0;
  background: linear-gradient(90deg, rgba(232,132,28,0.95), rgba(245,230,211,0.14));
}

.team-founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.team-founder-tags span {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(200,184,154,0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,230,211,0.7);
  background: rgba(245,230,211,0.04);
}

.team-founder-location {
  margin-top: 1.6rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,230,211,0.58);
}

.team-founder-card--story {
  background:
    linear-gradient(180deg, rgba(200,184,154,0.12), rgba(200,184,154,0) 28%),
    var(--white);
}

.team-founder-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.team-founder-copy p {
  font-size: 0.94rem;
  line-height: 1.95;
  color: var(--warm-brown);
}

.team-founder-quote {
  margin-top: 2rem;
  padding-left: 1.35rem;
  border-left: 2px solid rgba(232,132,28,0.85);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--mid-brown);
}

.team-field {
  background:
    linear-gradient(180deg, rgba(200,184,154,0.16) 0%, rgba(250,246,240,0) 26%),
    var(--off-white);
}

.team-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.team-section-head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.team-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-feature-card {
  padding: 2rem 1.8rem;
  background: var(--white);
  border-top: 3px solid var(--mid-brown);
  box-shadow: 0 24px 50px rgba(26,12,6,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.team-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px rgba(26,12,6,0.1);
  border-top-color: var(--accent-amber);
}

.team-feature-kicker {
  margin-bottom: 0.75rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-amber);
}

.team-feature-card h3 {
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--mid-brown);
}

.team-feature-card p:last-child {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--warm-brown);
}

.team-partners {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 26%, rgba(232,132,28,0.13) 0%, rgba(232,132,28,0) 28%),
    linear-gradient(145deg, #100906 0%, #1a0c06 46%, #26170a 100%);
}

.team-country-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-country-card {
  --team-country-accent: var(--accent-amber);
  position: relative;
  padding: 2rem;
  background: rgba(245,230,211,0.05);
  border: 1px solid rgba(200,184,154,0.16);
  box-shadow: 0 26px 48px rgba(0,0,0,0.18);
}

.team-country-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--team-country-accent);
}

.team-country-card--botswana { --team-country-accent: #3b8a6e; }
.team-country-card--namibia { --team-country-accent: #c4762a; }
.team-country-card--zimbabwe { --team-country-accent: #8b3a2c; }
.team-country-card--south-africa { --team-country-accent: #2c5f8b; }

.team-country-role {
  margin-bottom: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,230,211,0.54);
}

.team-country-card h3 {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}

.team-country-card > p:last-of-type {
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(245,230,211,0.74);
}

.team-country-card ul {
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.team-country-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(245,230,211,0.88);
}

.team-country-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--team-country-accent);
}

.team-difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.2rem;
}

.team-difference-card {
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid rgba(200,184,154,0.25);
}

.team-difference-number {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(196,96,26,0.22);
}

.team-difference-card h3 {
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--mid-brown);
}

.team-difference-card p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--warm-brown);
}

.team-coverage {
  padding-top: 0;
}

.team-coverage-frame {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(232,132,28,0.16) 0%, rgba(232,132,28,0) 36%),
    linear-gradient(160deg, #100906 0%, #1a0c06 54%, #26170a 100%);
  border: 1px solid rgba(200,184,154,0.12);
}

.team-coverage-sub {
  max-width: 42rem;
  margin: 1rem auto 0;
  text-align: center;
}

.team-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.team-coverage-card {
  padding: 1.5rem 1.2rem;
  text-align: center;
  background: rgba(245,230,211,0.05);
  border: 1px solid rgba(200,184,154,0.12);
}

.team-coverage-dot {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
}

.team-coverage-dot--botswana {
  background: #3b8a6e;
  box-shadow: 0 0 0 4px rgba(59,138,110,0.22);
}

.team-coverage-dot--namibia {
  background: #c4762a;
  box-shadow: 0 0 0 4px rgba(196,118,42,0.22);
}

.team-coverage-dot--zimbabwe {
  background: #8b3a2c;
  box-shadow: 0 0 0 4px rgba(139,58,44,0.22);
}

.team-coverage-dot--south-africa {
  background: #2c5f8b;
  box-shadow: 0 0 0 4px rgba(44,95,139,0.22);
}

.team-coverage-card h3 {
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
}

.team-coverage-card p {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,230,211,0.58);
}

.team-closing {
  padding-top: 2rem;
}

.team-closing-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(200,184,154,0.4);
}

.team-closing-quote {
  max-width: 34rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
  color: var(--mid-brown);
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-details--legacy {
  display: none;
}

.contact-info > .body-text:not(.contact-intro-clean) {
  display: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.88rem;
  color: var(--warm-brown);
  line-height: 1.6;
}

.contact-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--accent-amber);
}

.contact-icon svg { width: 100%; height: 100%; }

.contact-copy {
  min-width: 0;
}

.contact-copy strong {
  color: var(--mid-brown);
}

.contact-copy small {
  color: rgba(92, 61, 30, 0.78);
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--accent-amber);
}

.contact-primary-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.contact-inline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(232,132,28,0.18);
  border-radius: 999px;
  color: var(--accent-amber);
  background: rgba(232,132,28,0.08);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.contact-inline-action:hover {
  transform: translateY(-1px);
  border-color: rgba(232,132,28,0.32);
  background: rgba(232,132,28,0.14);
}

.contact-inline-action svg {
  width: 1rem;
  height: 1rem;
}

.contact-inline-action--whatsapp {
  color: #1faa59;
  border-color: rgba(31,170,89,0.22);
  background: rgba(31,170,89,0.08);
}

.contact-inline-action--whatsapp:hover {
  border-color: rgba(31,170,89,0.35);
  background: rgba(31,170,89,0.14);
}

.contact-form-wrap {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--cream);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--mid-brown);
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--warm-brown);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--cream);
  margin-top: 1rem;
  text-align: center;
}

.form-success svg {
  width: 48px; height: 48px;
  color: var(--rich-brown);
}

.form-success p {
  color: var(--mid-brown);
  font-size: 0.9rem;
}

.floating-contact {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.floating-contact__panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(0.7rem) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.floating-contact.is-open .floating-contact__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-contact__action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  min-width: 10.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(232,132,28,0.22);
  background: rgba(26,12,6,0.96);
  color: var(--cream);
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(26,12,6,0.18);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.floating-contact__action:hover {
  transform: translateY(-2px);
  border-color: rgba(232,132,28,0.38);
  background: rgba(44,22,10,0.98);
}

.floating-contact__action--whatsapp {
  border-color: rgba(31,170,89,0.26);
}

.floating-contact__action--whatsapp:hover {
  border-color: rgba(31,170,89,0.42);
}

.floating-contact__action-icon,
.floating-contact__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-contact__action-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.floating-contact__action-icon svg,
.floating-contact__toggle-icon svg {
  width: 100%;
  height: 100%;
}

.floating-contact__action-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-contact__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem 0.75rem 0.8rem;
  border: 1px solid rgba(232,132,28,0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26,12,6,0.97), rgba(92,61,30,0.94));
  color: var(--cream);
  box-shadow: 0 20px 40px rgba(26,12,6,0.22);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.floating-contact__toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(232,132,28,0.42);
  box-shadow: 0 24px 42px rgba(26,12,6,0.26);
}

.floating-contact__toggle-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  color: var(--accent-amber);
  background: rgba(232,132,28,0.14);
}

.floating-contact__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-brown);
  color: var(--light-brown);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(200,184,154,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .brand-logo {
  width: clamp(10rem, 15vw, 13rem);
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(200,184,154,0.5);
  line-height: 1.8;
  max-width: 280px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  font-size: 0.82rem;
  color: rgba(200,184,154,0.55);
  transition: color var(--transition);
  cursor: pointer;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(200,184,154,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .split-layout, .destination-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .regions-grid { grid-template-columns: 1fr 1fr; }
  .region-card.large { grid-column: 1 / -1; }
  .featured-tier-grid { grid-template-columns: 1fr 1fr; }
  .featured-tier-card--signature { grid-column: 1 / -1; }
  .brochure-card { grid-template-columns: 1fr; justify-items: flex-start; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .team-founder-layout,
  .team-section-head { grid-template-columns: 1fr; }
  .team-section-head { align-items: start; }
  .team-feature-grid,
  .team-country-grid,
  .team-difference-grid,
  .team-coverage-grid { grid-template-columns: 1fr 1fr; }
  .team-closing-frame {
    flex-direction: column;
    align-items: flex-start;
  }

  .destination-country__header { grid-template-columns: 1fr; }
  .destination-country__aside { align-items: flex-start; }
  .destination-country__badge-list { justify-content: flex-start; }
  .destination-gallery { gap: 0.9rem; }
  .destination-gallery__item { aspect-ratio: 5 / 4; }
  .destination-gallery__item--wide { aspect-ratio: 16 / 9; }
  .destination-metrics__grid { grid-template-columns: 1fr; }
  .journey-card {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .journey-card__day {
    flex-direction: row;
    align-items: flex-end;
    gap: 0.75rem;
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(200,184,154,0.55);
  }
}

@media (max-width: 768px) {
  .site-loader { padding: 1.5rem; }
  .site-loader__content { width: min(100%, 20rem); gap: 1rem; }
  .site-loader__map-frame { width: min(100%, 14rem); }
  .site-loader__caption { font-size: 1.15rem; }

  .welcome-intro {
    height: 100vh;
    min-height: 100svh;
    padding: 6.5rem 0 0;
  }

  .welcome-intro__content { padding: 0 1.5rem; }

  .welcome-intro__title {
    gap: 0.7rem;
    width: min(100%, 24rem);
    padding: 1.35rem 1.2rem;
  }

  .welcome-intro__title span {
    font-size: 0.64rem;
    letter-spacing: 0.26em;
  }

  .welcome-intro__title em { font-size: clamp(2.1rem, 9vw, 3.3rem); }

  .nav-logo { width: 8.5rem; }

  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }

  .nav-actions {
    margin-left: auto;
    gap: 0.6rem;
  }

  .language-switch {
    position: relative;
    z-index: 1001;
    padding: 0.18rem;
  }

  .language-switch__btn {
    min-width: 2.2rem;
    padding: 0.4rem 0.55rem;
    font-size: 0.68rem;
  }

  .floating-contact {
    right: 0.9rem;
    bottom: 0.9rem;
    gap: 0.6rem;
  }

  .floating-contact__action {
    min-width: 9.2rem;
    padding: 0.72rem 0.9rem;
  }

  .floating-contact__toggle {
    gap: 0.65rem;
    padding: 0.68rem 0.82rem 0.68rem 0.72rem;
  }

  .floating-contact__toggle-icon {
    width: 2rem;
    height: 2rem;
  }

  .floating-contact__label,
  .floating-contact__action-label {
    font-size: 0.68rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark-brown);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-link { font-size: 1rem; }
  .nav-cta { font-size: 0.85rem; padding: 0.7rem 2rem; }
  .nav-toggle { display: flex; z-index: 1001; }

  .hero-content { padding: 0 1.5rem; padding-top: 80px; }
  .hero-stat-bar { display: none; }

  .hero-actions {
    flex-direction: column;
    padding-bottom: 0;
  }
  .btn { padding: 0.8rem 1.8rem; }

  .section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }
  .team-hero-meta {
    gap: 0.65rem;
    margin-top: 1.15rem;
  }
  .team-hero-meta span { width: 100%; }
  .team-founder { padding-top: 4rem; }
  .team-founder-card,
  .team-country-card,
  .team-coverage-frame { padding: 1.5rem; }
  .team-feature-grid,
  .team-country-grid,
  .team-difference-grid,
  .team-coverage-grid { grid-template-columns: 1fr; }
  .team-feature-card,
  .team-difference-card,
  .team-coverage-card { padding: 1.5rem; }
  .team-closing {
    padding-top: 1.25rem;
    padding-bottom: 3.5rem;
  }
  .team-closing-frame {
    gap: 1.25rem;
    padding-top: 1.5rem;
  }

  .destination-pills { justify-content: flex-start; }
  .destination-pill { min-width: auto; }
  .destination-country { padding: 3.5rem 0; scroll-margin-top: 5rem; }
  .destination-country__frame { padding: 1.4rem; }
  .destination-country__heading { gap: 1rem; }
  .destination-country__count { min-width: 2.6rem; font-size: 3rem; }
  .destination-country__tagline { margin-top: 0.85rem; }
  .destination-gallery { gap: 0.75rem; }
  .destination-gallery__item { aspect-ratio: 1 / 1; }
  .destination-gallery__item--wide { aspect-ratio: 16 / 10; }
  .destination-metric { flex-direction: column; }
  .destination-metric__value { min-width: 0; }
  .journey-showcase { margin-top: 4.2rem; }
  .journey-card { padding: 1.5rem; }
  .journey-custom-note { padding: 1.5rem; }

  .regions-grid { grid-template-columns: 1fr; }
  .region-card.large { grid-column: 1; }
  .featured-tier-grid { grid-template-columns: 1fr; }
  .featured-tier-card--signature { grid-column: auto; }
  .featured-tier-card { padding: 1.6rem; }
  .brochure-card { padding: 1.75rem; }

  .exp-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem 1.5rem; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-nav { grid-template-columns: 1fr 1fr; }

  .hero-scroll { display: none; }

  .stat { padding: 0 1.5rem; }
}

@media (max-width: 1024px) {
  .values-story-hero {
    padding: 6.5rem 1.5rem 5rem;
  }

  .values-story-card__identity,
  .values-story-card__copy {
    padding: 3.5rem 3rem;
  }
}

@media (max-width: 860px) {
  .values-story-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .values-story-card--reverse .values-story-card__identity,
  .values-story-card--reverse .values-story-card__copy {
    order: initial;
  }

  .values-story-card__identity {
    min-height: 17rem;
  }
}

@media (max-width: 768px) {
  .values-story-hero {
    padding: 6rem 1.25rem 4.5rem;
  }

  .values-story-hero__title {
    font-size: clamp(3.35rem, 17vw, 5.4rem);
  }

  .values-story-hero__sub {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .values-story-hero__scroll {
    display: none;
  }

  .values-story-intro {
    padding: 3.5rem 1.5rem;
  }

  .values-story-card__identity,
  .values-story-card__copy {
    padding: 3rem 1.6rem;
  }

  .values-story-card__identity {
    min-height: 15rem;
  }

  .values-story-card__number {
    top: 1.2rem;
    right: 1.2rem;
    font-size: 4.6rem;
  }

  .values-story-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.25rem;
  }

  .values-story-card__name {
    font-size: 2.5rem;
  }

  .values-story-card__tagline,
  .values-story-card__closing {
    letter-spacing: 0.18em;
  }

  .values-story-outro {
    padding: 4.5rem 1.25rem 4rem;
  }

  .values-story-outro__contact {
    gap: 0.55rem;
    font-size: 0.76rem;
  }
}

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

  .welcome-intro__title {
    animation: none !important;
    clip-path: inset(0 0 0 0) !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-loader,
  .site-loader *,
  .hero-eyebrow,
  .hero-line,
  .hero-desc,
  .hero-actions,
  .hero-scroll,
  .hero-stat-bar,
  .silhouette,
  .scroll-line {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
