/* ================================================================
   UNIQUE AFRICA — Global Styles
   Dark luxury aesthetic · Cormorant Garamond + Jost + DM Mono
   ================================================================ */

:root {
  --ink: #0a0906;
  --sand: #c8a96e;
  --sand-pale: #e8d5b0;
  --sand-deep: #8b6b35;
  --dust: #f5f0e8;
  --dusk: #1a1208;
  --ivory: #faf7f2;
  --earth: #3d2c14;
  --rust: #8b3a1a;
  --sage: #4a5e3a;
  --sky: #2c4a6e;
  --mist: rgba(200,169,110,0.12);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--ink);
  color: var(--ivory);
  overflow-x: hidden;
  cursor: none;
}

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

/* ========== CUSTOM CURSOR ========== */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--sand);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s;
}
body:hover .cursor { opacity: 1; }

/* ========== GRAIN OVERLAY ========== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grain 0.5s steps(1) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, -3%); }
  50% { transform: translate(3%, 1%); }
  75% { transform: translate(-1%, 4%); }
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(10,9,6,0.95) 0%, transparent 100%);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(10,9,6,0.97);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
}
.nav-logo span { color: var(--sand); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sand); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 10px 22px;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--sand);
  color: var(--ink);
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher { display: flex; gap: 5px; align-items: center; }
.lang-btn {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.3);
  background: none;
  border: 1px solid rgba(200,169,110,0.15);
  padding: 5px 9px;
  cursor: pointer;
  transition: all 0.25s;
}
.lang-btn.active,
.lang-btn:hover {
  color: #c8a96e;
  border-color: rgba(200,169,110,0.45);
}

span.lang-fr, span.lang-de { display: none !important; }
body.lang-fr span.lang-en { display: none !important; }
body.lang-fr span.lang-fr { display: inline !important; }
body.lang-de span.lang-en { display: none !important; }
body.lang-de span.lang-de { display: inline !important; }

/* Block-level lang elements */
body.lang-fr .lang-fr-block { display: block !important; }
body.lang-fr .lang-en-block { display: none !important; }
body.lang-de .lang-de-block { display: block !important; }
body.lang-de .lang-en-block { display: none !important; }
.lang-fr-block, .lang-de-block { display: none !important; }

/* ========== BUTTONS ========== */
.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--ink);
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--sand-pale); }

.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--sand); }
.btn-ghost::after { content: '→'; font-size: 14px; }

.btn-outline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  background: none;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--sand);
  color: var(--ink);
}

/* ========== SECTION LABELS ========== */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--sand);
}

section { position: relative; }

.divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--sand), transparent);
  margin: 0 auto;
}

/* ========== HERO (Homepage) ========== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,6,0.3) 0%, rgba(10,9,6,0.0) 30%, rgba(10,9,6,0.7) 75%, rgba(10,9,6,0.98) 100%),
    linear-gradient(90deg, rgba(10,9,6,0.4) 0%, transparent 60%),
    url('../img/safari-vehicle-lions-savanna-africa.webp') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.0); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 90px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sand);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--sand-pale);
}
.hero-sub {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(250,247,242,0.65);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--sand) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ========== MARQUEE ========== */
.marquee-bar {
  background: var(--sand);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 0;
}
.marquee-item {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 40px;
}
.marquee-dot { color: var(--sand-deep); padding: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== INTRO ========== */
.intro {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  background: var(--dusk);
}
.intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}
.intro-text h2 em { font-style: italic; color: var(--sand); }
.intro-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,247,242,0.65);
  margin-bottom: 16px;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200,169,110,0.15);
  margin-top: 50px;
}
.stat-cell {
  background: var(--dusk);
  padding: 28px 24px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
}
.intro-visual { position: relative; }
.intro-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.intro-img-accent {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 220px;
  height: 280px;
  object-fit: cover;
  border: 4px solid var(--dusk);
}
.intro-quote {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--sand);
  color: var(--ink);
  padding: 20px 24px;
  max-width: 200px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
}

/* ========== EXPERIENCES GRID (Homepage) ========== */
.experiences {
  padding: 120px 60px;
  background: var(--ink);
}
.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.exp-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
}
.exp-header h2 em { font-style: italic; color: var(--sand); }
.exp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 380px 280px;
  gap: 3px;
}
.exp-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.exp-card:first-child { grid-row: span 2; }
.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.exp-card:hover img { transform: scale(1.06); }
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,6,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}
.exp-card:hover .exp-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(10,9,6,0.92) 100%);
}
.exp-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}
.exp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 10px;
}
.exp-card:first-child .exp-name { font-size: 38px; }
.exp-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250,247,242,0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.exp-card:hover .exp-desc { max-height: 80px; }

/* ========== LODGES SCROLL (Homepage) ========== */
.lodges {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--dusk) 100%);
  overflow: hidden;
}
.lodges-header {
  padding: 0 60px;
  margin-bottom: 60px;
}
.lodges-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
}
.lodges-header h2 em { font-style: italic; color: var(--sand); }
.lodges-scroll {
  display: flex;
  gap: 3px;
  padding: 0 60px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lodges-scroll::-webkit-scrollbar { display: none; }
.lodge-card {
  flex-shrink: 0;
  width: 340px;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.lodge-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.88);
}
.lodge-card:hover .lodge-img {
  transform: scale(1.05);
  filter: brightness(1);
}
.lodge-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,9,6,0.95) 100%);
}
.lodge-brand {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 6px;
}
.lodge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 4px;
}
.lodge-location {
  font-size: 11px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  letter-spacing: 0.05em;
}
.lodge-price {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  background: rgba(10,9,6,0.7);
  color: var(--sand);
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}

/* ========== MAP SECTION ========== */
.map-section {
  padding: 120px 60px;
  background: var(--dusk);
  text-align: center;
}
.map-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  margin-bottom: 16px;
}
.map-section h2 em { font-style: italic; color: var(--sand); }
.map-section > p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 60px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.africa-map-container { position: relative; max-width: 860px; margin: 0 auto; }
#africa-d3-map { width: 100%; display: block; filter: drop-shadow(0 4px 60px rgba(200,169,110,0.16)); cursor: grab; }
#africa-d3-map:active { cursor: grabbing; }
.country-path { fill: rgba(200,169,110,0.07); stroke: rgba(200,169,110,0.2); stroke-width: 0.4; cursor: default; transition: fill 0.3s, stroke 0.3s; }
.country-path.featured { fill: rgba(200,169,110,0.15); stroke: rgba(200,169,110,0.5); stroke-width: 0.65; cursor: pointer; }
.country-path.featured:hover,
.country-path.featured.active { fill: rgba(200,169,110,0.36); stroke: #c8a96e; stroke-width: 1.1; }
.country-label { font-family: 'DM Mono',monospace; font-size: 5.5px; letter-spacing: 0.15em; text-transform: uppercase; fill: rgba(250,247,242,0.3); pointer-events: none; text-anchor: middle; dominant-baseline: middle; }
.featured-label { fill: rgba(200,169,110,0.88); font-size: 7px; }
.map-water-label { font-family: 'Cormorant Garamond',serif; font-size: 9px; font-style: italic; fill: rgba(120,180,230,0.2); pointer-events: none; text-anchor: middle; dominant-baseline: middle; }
.map-river { fill: none; stroke: rgba(120,180,230,0.3); stroke-width: 0.85; stroke-linecap: round; }
.map-lake { fill: rgba(90,150,210,0.14); stroke: rgba(120,180,230,0.28); stroke-width: 0.5; }
.map-sahara { font-family: 'Cormorant Garamond',serif; font-size: 13px; fill: rgba(200,169,110,0.07); letter-spacing: 0.3em; text-anchor: middle; pointer-events: none; }
.map-pin { cursor: pointer; }
.pin-ring { fill: none; stroke: rgba(200,169,110,0.4); animation: pinPulse 2.5s ease-in-out infinite; }
@keyframes pinPulse { 0%,100%{stroke-opacity:.2;r:8}50%{stroke-opacity:.65;r:11} }
.pin-dot { fill: #c8a96e; }
.map-tooltip { position: absolute; pointer-events: none; opacity: 0; transition: opacity .2s; background: rgba(10,9,6,.93); border: 1px solid rgba(200,169,110,.4); padding: 10px 18px; backdrop-filter: blur(12px); white-space: nowrap; z-index: 10; }
.map-tooltip .tt-name { font-family: 'Cormorant Garamond',serif; font-size: 18px; font-weight: 300; color: #e8d5b0; line-height: 1.2; }
.map-tooltip .tt-hint { font-family: 'DM Mono',monospace; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; color: rgba(250,247,242,.35); margin-top: 3px; }
.map-loading { display:flex; align-items:center; justify-content:center; min-height:480px; flex-direction:column; gap:18px; }
.map-loading-spinner { width:32px;height:32px; border:1px solid rgba(200,169,110,.15); border-top-color:rgba(200,169,110,.6); border-radius:50%; animation:spin .9s linear infinite; }
@keyframes spin{to{transform:rotate(360deg)}}
.map-loading p { font-family:'DM Mono',monospace; font-size:9px; letter-spacing:.25em; color:rgba(250,247,242,.25); text-transform:uppercase; margin:0; }

.country-cards {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
.country-pill {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  border: 1px solid rgba(200,169,110,0.2);
  padding: 10px 20px;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
}
.country-pill:hover,
.country-pill.active {
  color: var(--sand);
  border-color: var(--sand);
  background: rgba(200,169,110,0.08);
}

/* Country detail panel (inline on map page) */
.country-panel {
  max-width: 900px;
  margin: 50px auto 0;
  display: none;
  text-align: left;
  border: 1px solid rgba(200,169,110,0.2);
  background: rgba(10,9,6,0.6);
  backdrop-filter: blur(10px);
  animation: panelReveal 0.5s ease;
}
.country-panel.visible { display: block; }
@keyframes panelReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-hero { height: 320px; object-fit: cover; width: 100%; display: block; }
.panel-body { padding: 40px; }
.panel-eyebrow { font-family: 'DM Mono',monospace; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sand); margin-bottom: 12px; }
.panel-title { font-family: 'Cormorant Garamond',serif; font-size: 42px; font-weight: 300; margin-bottom: 6px; }
.panel-title em { font-style: italic; color: var(--sand); }
.panel-tagline { font-size: 13px; font-weight: 300; color: rgba(250,247,242,0.5); letter-spacing: 0.05em; margin-bottom: 28px; font-style: italic; font-family: 'Cormorant Garamond',serif; }
.panel-desc { font-size: 13px; font-weight: 300; line-height: 1.9; color: rgba(250,247,242,0.65); margin-bottom: 32px; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(200,169,110,0.15); margin-bottom: 32px; }
.panel-stat { background: rgba(10,9,6,0.8); padding: 20px; }
.panel-stat-icon { font-size: 18px; margin-bottom: 6px; color: var(--sand); }
.panel-stat-val { font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 300; color: var(--sand); margin-bottom: 4px; }
.panel-stat-key { font-family: 'DM Mono',monospace; font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,247,242,0.4); }
.panel-highlights { margin-bottom: 28px; }
.panel-highlights h4 { font-family: 'DM Mono',monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); margin-bottom: 14px; }
.highlight-list { display: flex; flex-direction: column; gap: 8px; }
.highlight-item { display: flex; align-items: flex-start; gap: 12px; font-size: 12px; font-weight: 300; color: rgba(250,247,242,0.7); line-height: 1.5; }
.highlight-item::before { content: '◆'; color: var(--sand); font-size: 7px; flex-shrink: 0; margin-top: 4px; }
.panel-lodges h4 { font-family: 'DM Mono',monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); margin-bottom: 14px; }
.lodge-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lodge-chip { font-family: 'DM Mono',monospace; font-size: 9px; letter-spacing: 0.1em; color: rgba(250,247,242,0.6); border: 1px solid rgba(200,169,110,0.25); padding: 6px 14px; transition: all 0.3s; }
.lodge-chip:hover { color: var(--sand); border-color: var(--sand); }

/* ========== MIGRATION SECTION ========== */
.migration {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.migration-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,9,6,0.92) 0%, rgba(10,9,6,0.4) 60%, rgba(10,9,6,0.8) 100%),
    url('../img/great-migration-wildebeest-mara-river.webp') center/cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
.migration-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 600px;
}
.migration-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.migration-content h2 em { font-style: italic; color: var(--sand); }
.migration-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,247,242,0.65);
  margin-bottom: 36px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 120px 60px;
  background: var(--dusk);
}
.testimonials h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,169,110,0.1);
  margin-top: 60px;
}
.test-card {
  background: var(--dusk);
  padding: 44px 36px;
}
.test-stars { color: var(--sand); font-size: 12px; letter-spacing: 4px; margin-bottom: 24px; }
.test-quote { font-family: 'Cormorant Garamond',serif; font-size: 19px; font-weight: 300; font-style: italic; line-height: 1.6; color: rgba(250,247,242,0.85); margin-bottom: 28px; }
.test-author { font-family: 'DM Mono',monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); margin-bottom: 4px; }
.test-origin { font-size: 11px; color: rgba(250,247,242,0.35); font-weight: 300; }

/* ========== BRANDS ========== */
.brands {
  padding: 80px 60px;
  background: var(--ink);
  text-align: center;
}
.brands p { font-family: 'DM Mono',monospace; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(250,247,242,0.3); margin-bottom: 40px; }
.brand-list { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 48px; }
.brand-name { font-family: 'Cormorant Garamond',serif; font-size: 18px; font-weight: 300; letter-spacing: 0.1em; color: rgba(250,247,242,0.25); transition: color 0.3s; cursor: none; }
.brand-name:hover { color: var(--sand-pale); }

/* ========== FINAL CTA ========== */
.final-cta {
  position: relative;
  padding: 160px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,6,0.7) 0%, rgba(10,9,6,0.6) 100%),
    url('../img/lions-crossing-road-game-drive-sunset.webp') center/cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.final-cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.final-cta h2 { font-family: 'Cormorant Garamond',serif; font-size: clamp(42px, 5vw, 72px); font-weight: 300; line-height: 1.1; margin-bottom: 24px; }
.final-cta h2 em { font-style: italic; color: var(--sand); }
.final-cta p { font-size: 14px; font-weight: 300; color: rgba(250,247,242,0.6); line-height: 1.8; margin-bottom: 48px; letter-spacing: 0.05em; }
.cta-divider { width: 60px; height: 1px; background: var(--sand); margin: 0 auto 40px; }

/* ========== FOOTER ========== */
footer {
  background: var(--ink);
  padding: 60px;
  border-top: 1px solid rgba(200,169,110,0.1);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand h3 { font-family: 'Cormorant Garamond',serif; font-size: 24px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand h3 span { color: var(--sand); }
.footer-brand p { font-size: 12px; font-weight: 300; line-height: 1.8; color: rgba(250,247,242,0.4); max-width: 280px; }
.footer-col h4 { font-family: 'DM Mono',monospace; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sand); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 12px; font-weight: 300; color: rgba(250,247,242,0.4); text-decoration: none; transition: color 0.3s; letter-spacing: 0.03em; }
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  background: var(--ink);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom p { font-family: 'DM Mono',monospace; font-size: 9px; letter-spacing: 0.15em; color: rgba(250,247,242,0.2); }


/* ================================================================
   COUNTRY PAGE STYLES
   ================================================================ */

/* Country Hero */
.country-hero {
  height: 75vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.country-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.country-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,6,0.2) 0%, rgba(10,9,6,0.0) 30%, rgba(10,9,6,0.75) 70%, rgba(10,9,6,0.98) 100%);
}
.country-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 70px;
  max-width: 900px;
}
.country-hero-content .hero-eyebrow { margin-bottom: 16px; }
.country-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 16px;
}
.country-hero-content .hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--sand-pale);
  letter-spacing: 0.03em;
}

/* Quick Facts Bar */
.quick-facts {
  background: var(--dusk);
  border-top: 1px solid rgba(200,169,110,0.12);
  border-bottom: 1px solid rgba(200,169,110,0.12);
}
.quick-facts-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.quick-fact {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(200,169,110,0.08);
}
.quick-fact:last-child { border-right: none; }
.quick-fact-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--sand);
  margin-bottom: 6px;
}
.quick-fact-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.35);
}

/* Country Intro */
.country-intro {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--dusk);
}
.country-intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 32px;
}
.country-intro-text h2 em { font-style: italic; color: var(--sand); }
.country-intro-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,247,242,0.65);
  margin-bottom: 18px;
}
.country-intro-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Unique Cards (What Makes Country Unique) */
.unique-section {
  padding: 100px 60px;
  background: var(--ink);
}
.unique-section > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  margin-bottom: 60px;
}
.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,169,110,0.1);
}
.unique-card {
  background: var(--ink);
  padding: 40px 32px;
  transition: background 0.3s;
}
.unique-card:hover {
  background: var(--dusk);
}
.unique-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--sand);
}
.unique-card-icon svg {
  width: 100%;
  height: 100%;
}
.unique-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 12px;
}
.unique-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,247,242,0.55);
}

/* Parks & Reserves */
.parks-section {
  padding: 100px 60px;
  background: var(--dusk);
}
.parks-section > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  margin-bottom: 16px;
}
.parks-section > p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  margin-bottom: 60px;
}
.parks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200,169,110,0.08);
}
.park-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dusk);
  transition: background 0.3s;
}
.park-card:hover { background: rgba(26,18,8,0.8); }
.park-card.reverse .park-card-img { order: 2; }
.park-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.park-card-text {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.park-card-type {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}
.park-card-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 12px;
}
.park-card-text p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,247,242,0.55);
}

/* Country Lodges Grid */
.country-lodges {
  padding: 100px 60px;
  background: var(--ink);
}
.country-lodges > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  margin-bottom: 16px;
}
.country-lodges > p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  margin-bottom: 60px;
}
.country-lodges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.country-lodge-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.country-lodge-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.85);
}
.country-lodge-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.country-lodge-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,9,6,0.95) 100%);
}
.country-lodge-info .lodge-brand { margin-bottom: 4px; }
.country-lodge-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 3px;
}
.country-lodge-info .lodge-location { font-size: 10px; }

/* When to Go */
.when-section {
  padding: 100px 60px;
  background: var(--dusk);
  text-align: center;
}
.when-section > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  margin-bottom: 16px;
}
.when-section > p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.when-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,169,110,0.1);
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.when-card {
  background: var(--dusk);
  padding: 36px 28px;
}
.when-card-months {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.when-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 14px;
}
.when-card p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,247,242,0.5);
}

/* Country CTA */
.country-cta {
  position: relative;
  padding: 120px 60px;
  text-align: center;
  overflow: hidden;
}
.country-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.country-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,9,6,0.7);
}
.country-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.country-cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.country-cta-content h2 em { font-style: italic; color: var(--sand); }
.country-cta-content p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}


/* ================================================================
   EXPERIENCES PAGE STYLES
   ================================================================ */

.exp-page-hero {
  height: 60vh;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.exp-page-hero .hero-bg {
  background-image:
    linear-gradient(180deg, rgba(10,9,6,0.3) 0%, rgba(10,9,6,0.0) 30%, rgba(10,9,6,0.8) 75%, rgba(10,9,6,0.98) 100%),
    url('../img/horseback-safari-giraffe-africa.webp');
  background-size: cover;
  background-position: center;
}

.exp-category {
  padding: 100px 60px;
}
.exp-category:nth-child(even) { background: var(--dusk); }
.exp-category:nth-child(odd) { background: var(--ink); }

.exp-category > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  margin-bottom: 16px;
}
.exp-category > h2 em { font-style: italic; color: var(--sand); }
.exp-category > p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  margin-bottom: 50px;
  max-width: 600px;
}

.exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.exp-detail-card {
  position: relative;
  overflow: hidden;
  background: rgba(200,169,110,0.04);
  border: 1px solid rgba(200,169,110,0.08);
  padding: 36px 30px;
  transition: all 0.3s;
}
.exp-detail-card:hover {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.2);
}
.exp-detail-card .card-icon {
  width: 36px;
  height: 36px;
  color: var(--sand);
  margin-bottom: 20px;
}
.exp-detail-card .card-icon svg { width: 100%; height: 100%; }
.exp-detail-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 8px;
}
.exp-detail-card .card-tagline {
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: var(--sand-pale);
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
}
.exp-detail-card .card-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,247,242,0.5);
  margin-bottom: 20px;
}
.exp-detail-card .card-meta {
  display: flex;
  gap: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.3);
}
.exp-detail-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.exclusivity-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 3px 8px;
  margin-top: 14px;
}

/* Full-bleed experience features */
.exp-feature {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.exp-feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
.exp-feature-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,9,6,0.9) 0%, rgba(10,9,6,0.3) 60%, rgba(10,9,6,0.7) 100%);
}
.exp-feature-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 580px;
}
.exp-feature-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
}
.exp-feature-content h2 em { font-style: italic; color: var(--sand); }
.exp-feature-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,247,242,0.65);
  margin-bottom: 32px;
}


/* ================================================================
   CONSERVATION PAGE
   ================================================================ */
.conserv-section {
  padding: 100px 60px;
}
.conserv-section:nth-child(even) { background: var(--dusk); }
.conserv-section:nth-child(odd) { background: var(--ink); }
.conserv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.conserv-grid.reverse { direction: rtl; }
.conserv-grid.reverse > * { direction: ltr; }
.conserv-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.conserv-grid h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  margin-bottom: 20px;
}
.conserv-grid h2 em { font-style: italic; color: var(--sand); }
.conserv-grid p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,247,242,0.65);
  margin-bottom: 14px;
}

.conserv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,169,110,0.1);
  margin-top: 50px;
}
.conserv-stat {
  background: var(--ink);
  padding: 36px;
  text-align: center;
}
.conserv-stat .stat-num { margin-bottom: 8px; }


/* ================================================================
   JOURNAL PAGE
   ================================================================ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 60px;
}
.journal-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.journal-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.85);
}
.journal-card:hover img { transform: scale(1.05); filter: brightness(1); }
.journal-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,9,6,0.95) 100%);
}
.journal-card-date {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}
.journal-card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 6px;
}
.journal-card-info p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  line-height: 1.6;
}


/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  background: var(--dusk);
  min-height: 80vh;
  align-items: center;
}
.contact-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-text h2 em { font-style: italic; color: var(--sand); }
.contact-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,247,242,0.6);
  margin-bottom: 16px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.contact-detail a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sand);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-detail a:hover { color: var(--sand-pale); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(200,169,110,0.05);
  border: 1px solid rgba(200,169,110,0.15);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sand); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--ink); color: var(--ivory); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }


/* ================================================================
   SVG ICON STYLES
   ================================================================ */
.icon-svg {
  display: inline-block;
  vertical-align: middle;
}
.icon-svg svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  .nav-links { gap: 24px; }
  .hero-content { padding: 0 30px 60px; }
  .intro { padding: 80px 30px; gap: 50px; }
  .experiences { padding: 80px 30px; }
  .exp-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 260px 260px; }
  .exp-card:first-child { grid-row: span 1; grid-column: span 2; }
  .lodges-header { padding: 0 30px; }
  .lodges-scroll { padding: 0 30px; }
  .map-section { padding: 80px 30px; }
  .testimonials { padding: 80px 30px; }
  .test-grid { grid-template-columns: 1fr; }
  .brands { padding: 60px 30px; }
  .final-cta { padding: 100px 30px; }
  footer { padding: 40px 30px; grid-template-columns: 1fr 1fr; }

  /* Country page */
  .country-hero-content { padding: 0 30px 50px; }
  .quick-facts-inner { grid-template-columns: repeat(3, 1fr); }
  .country-intro { padding: 80px 30px; gap: 50px; }
  .unique-section { padding: 80px 30px; }
  .unique-grid { grid-template-columns: repeat(2, 1fr); }
  .parks-section { padding: 80px 30px; }
  .parks-grid { grid-template-columns: 1fr; }
  .park-card { grid-template-columns: 1fr 1fr; }
  .country-lodges { padding: 80px 30px; }
  .country-lodges-grid { grid-template-columns: repeat(2, 1fr); }
  .when-section { padding: 80px 30px; }
  .when-grid { grid-template-columns: repeat(2, 1fr); }

  /* Experiences page */
  .exp-category { padding: 80px 30px; }
  .exp-cards { grid-template-columns: repeat(2, 1fr); }

  /* Contact page */
  .contact-section { padding: 80px 30px; gap: 50px; }
}

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 20px 50px; }
  .hero-scroll { display: none; }
  .intro { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
  .intro-img-accent { display: none; }
  .intro-quote { position: static; max-width: 100%; margin-top: 16px; }
  .experiences { padding: 60px 20px; }
  .exp-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 280px); }
  .exp-card:first-child { grid-column: span 1; }
  .lodges-header { padding: 0 20px; }
  .lodges-scroll { padding: 0 20px; }
  .map-section { padding: 60px 20px; }
  .migration { height: auto; padding: 80px 20px; }
  .migration-content { max-width: 100%; padding: 0; }
  .testimonials { padding: 60px 20px; }
  .brand-list { gap: 24px; }
  .brands { padding: 40px 20px; }
  .final-cta { padding: 80px 20px; }
  footer { grid-template-columns: 1fr; padding: 30px 20px; gap: 30px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; }

  /* Country page */
  .country-hero { height: 55vh; }
  .country-hero-content { padding: 0 20px 40px; }
  .quick-facts-inner { grid-template-columns: repeat(2, 1fr); }
  .quick-fact:last-child { grid-column: span 2; }
  .country-intro { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
  .unique-section { padding: 60px 20px; }
  .unique-grid { grid-template-columns: 1fr; }
  .parks-section { padding: 60px 20px; }
  .park-card { grid-template-columns: 1fr; }
  .park-card-img { height: 200px; }
  .park-card.reverse .park-card-img { order: 0; }
  .country-lodges { padding: 60px 20px; }
  .country-lodges-grid { grid-template-columns: 1fr; }
  .when-section { padding: 60px 20px; }
  .when-grid { grid-template-columns: 1fr; }

  /* Experiences */
  .exp-category { padding: 60px 20px; }
  .exp-cards { grid-template-columns: 1fr; }
  .exp-feature { height: auto; min-height: 400px; padding: 60px 0; }
  .exp-feature-content { max-width: 100%; padding: 0 20px; }

  /* Contact */
  .contact-section { grid-template-columns: 1fr; padding: 60px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Journal */
  .journal-grid { grid-template-columns: 1fr; padding: 0 20px; }
}


/* ================================================================
   COUNTRY PAGE COMPATIBILITY
   Sub-agent used different class names — these map them to styles
   ================================================================ */

/* Cursor & Grain aliases */
.custom-cursor {
  position: fixed; width: 8px; height: 8px; background: var(--sand);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: transform 0.1s, width 0.3s, height 0.3s;
}
.custom-cursor-dot {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); transition: transform 0.15s ease, width 0.3s, height 0.3s;
}
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000; opacity: 0.025;
  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)'/%3E%3C/svg%3E");
  background-size: 200px; animation: grain 0.5s steps(1) infinite;
}

/* Nav compatibility */
nav.nav-transparent,
nav.nav-solid {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 60px; display: flex; align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(10,9,6,0.95) 0%, transparent 100%);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1400px; margin: 0 auto;
}
.nav-container .nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none;
}
.logo-unique { color: var(--ivory); }
.logo-africa { color: var(--sand); }
.nav-container .nav-links { display: flex; gap: 40px; list-style: none; }
.nav-container .nav-links a {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(250,247,242,0.6); text-decoration: none; transition: color 0.3s;
}
.nav-container .nav-links a:hover { color: var(--sand); }
.nav-container .nav-cta {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sand); border: 1px solid rgba(200,169,110,0.4);
  padding: 10px 22px; text-decoration: none; transition: all 0.3s;
}
.nav-container .nav-cta:hover { background: var(--sand); color: var(--ink); }
.lang-selector { display: flex; gap: 5px; align-items: center; }
.lang-selector .lang-btn {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(250,247,242,0.3); background: none;
  border: 1px solid rgba(200,169,110,0.15); padding: 5px 9px; cursor: pointer; transition: all 0.25s;
}
.lang-selector .lang-btn.active,
.lang-selector .lang-btn:hover { color: #c8a96e; border-color: rgba(200,169,110,0.45); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; }
.mobile-menu { display: none; }

/* Container wrapper */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* Section defaults (aliases cover both Kenya & non-Kenya class names) */
.quick-facts,
.country-facts { background: var(--ink); border-top: 1px solid rgba(200,169,110,0.06); border-bottom: 1px solid rgba(200,169,110,0.06); }

.country-intro { padding: 120px 60px; }

.unique-section,
.country-highlights { padding: 120px 60px; background: var(--dusk); }

.unique-grid,
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(200,169,110,0.06); }

.parks-section,
.country-parks { padding: 120px 60px; }

.parks-grid { display: flex; flex-direction: column; gap: 1px; background: rgba(200,169,110,0.06); }

.country-lodges { padding: 120px 60px; background: var(--dusk); }
.country-lodges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.when-section,
.country-seasons { padding: 120px 60px; background: var(--ink); }

/* Country CTA banner (no background image variant) */
.country-cta-banner {
  padding: 100px 60px; text-align: center;
  background: var(--dusk); border-top: 1px solid rgba(200,169,110,0.08);
  border-bottom: 1px solid rgba(200,169,110,0.08);
}
.country-cta-banner .container { max-width: 640px; margin: 0 auto; }
.country-cta-banner h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300; line-height: 1.15; margin-bottom: 20px;
}
.country-cta-banner h2 em { font-style: italic; color: var(--sand); }
.country-cta-banner p {
  font-size: 14px; font-weight: 300; color: rgba(250,247,242,0.55);
  line-height: 1.8; margin-bottom: 40px;
}

/* Country hero (bg on element) */
header.country-hero {
  height: 75vh; min-height: 500px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
  background-size: cover; background-position: center;
}
header.country-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,6,0.2) 0%, rgba(10,9,6,0.0) 30%, rgba(10,9,6,0.75) 70%, rgba(10,9,6,0.98) 100%);
}
header.country-hero .country-hero-content {
  position: relative; z-index: 2; padding: 0 60px 70px; max-width: 900px;
}
.country-hero-label {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--sand); display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.country-hero-label::before { content: ''; width: 40px; height: 1px; background: var(--sand); }
header.country-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(56px, 9vw, 120px);
  font-weight: 300; line-height: 0.95; margin-bottom: 16px;
}
.country-hero-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300;
  font-style: italic; color: var(--sand-pale); letter-spacing: 0.03em;
}

/* Quick facts bar aliases */
.quick-facts .container { max-width: 100%; }
.facts-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); max-width: 1100px; margin: 0 auto;
}
.fact-item {
  text-align: center; padding: 36px 20px;
  border-right: 1px solid rgba(200,169,110,0.08);
}
.fact-item:last-child { border-right: none; }
.fact-value {
  display: block; font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-weight: 300; color: var(--sand); margin-bottom: 6px;
}
.fact-label {
  display: block; font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,247,242,0.35);
}

/* Country intro grid */
.country-intro .container { max-width: 100%; }
.country-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.country-intro-image img { width: 100%; height: 520px; object-fit: cover; }
.country-intro-image-accent { display: none; }

/* Section headers */
.section-header { margin-bottom: 60px; }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300; line-height: 1.15; margin-top: 0; margin-bottom: 0;
}
.section-title em { font-style: italic; color: var(--sand); }
.section-subtitle {
  font-size: 13px; font-weight: 300; color: rgba(250,247,242,0.5); margin-top: 14px;
}

/* Country page generic h2 inside intro/sections */
.country-intro h2,
.country-highlights h2,
.country-parks h2,
.country-lodges h2,
.country-seasons h2 { margin-top: 0; }
.section-label-light::before { background: rgba(200,169,110,0.4); }

/* Highlight cards (unique cards alias) */
.highlight-card {
  background: var(--ink); padding: 40px 32px; transition: background 0.3s;
  border: 1px solid rgba(200,169,110,0.06);
}
.highlight-card:hover { background: var(--dusk); }
.highlight-icon {
  width: 40px; height: 40px; margin-bottom: 20px; color: var(--sand); display: block;
}
.highlight-icon svg { width: 100%; height: 100%; }
.highlight-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; margin-bottom: 12px;
}
.highlight-card p {
  font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(250,247,242,0.55);
}

/* Parks card content alias */
.park-card-content {
  padding: 36px; display: flex; flex-direction: column; justify-content: center;
}
.park-card-content .park-card-type {
  font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 10px; display: block;
}
.park-card-content h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; margin-bottom: 12px;
}
.park-card-content p {
  font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(250,247,242,0.55);
}
.park-card .park-card-img img {
  width: 100%; height: 260px; object-fit: cover; display: block;
}
.parks-grid .park-card {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--dusk);
}
.parks-grid .park-card:nth-child(even) .park-card-img { order: -1; }

/* Lodge card wrappers */
.country-lodge-img { overflow: hidden; }
.country-lodge-img img {
  width: 100%; height: 320px; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); filter: brightness(0.85);
}
.country-lodge-card:hover .country-lodge-img img { transform: scale(1.05); filter: brightness(1); }
.country-lodge-brand {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 4px; display: block;
}
.country-lodge-location {
  font-size: 10px; font-weight: 300; color: rgba(250,247,242,0.5);
  letter-spacing: 0.05em; display: block; margin-bottom: 10px;
}
.country-lodge-info h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; margin-bottom: 3px;
}
.country-lodge-info p {
  font-size: 12px; font-weight: 300; line-height: 1.6; color: rgba(250,247,242,0.5); margin-top: 8px;
}
.country-lodge-card { background: rgba(200,169,110,0.04); }

/* Seasons / When-to-go aliases */
.seasons-content { text-align: center; }
.seasons-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300; margin-top: 0; margin-bottom: 20px;
}
.seasons-content > p {
  font-size: 13px; font-weight: 300; color: rgba(250,247,242,0.5);
  margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.seasons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(200,169,110,0.1); max-width: 1000px; margin: 0 auto; text-align: left;
}
.season-card { background: var(--dusk); padding: 36px 28px; }
.season-card-best { border-top: 2px solid var(--sand); }
.season-months {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 16px; display: block;
}
.season-name {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300;
  margin-bottom: 14px; display: block;
}
.season-desc {
  font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(250,247,242,0.5);
}

/* Country CTA (bg on section) */
section.country-cta {
  position: relative; padding: 120px 60px; text-align: center; overflow: hidden;
  background-size: cover; background-position: center;
}
section.country-cta::before {
  content: ''; position: absolute; inset: 0; background: rgba(10,9,6,0.7);
}
section.country-cta .container { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
section.country-cta h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.1; margin-bottom: 20px;
}
section.country-cta h2 em { font-style: italic; color: var(--sand); }
section.country-cta p {
  font-size: 13px; font-weight: 300; color: rgba(250,247,242,0.6); line-height: 1.8; margin-bottom: 40px;
}
.btn.btn-primary {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; background: var(--sand); color: var(--ink);
  padding: 16px 36px; text-decoration: none; display: inline-block; border: none; cursor: pointer;
  transition: all 0.3s;
}
.btn.btn-primary:hover { background: var(--sand-pale); }

/* Country navigation bar — override bare `nav` fixed positioning */
.country-nav {
  position: static !important;
  background: var(--ink); border-top: 1px solid rgba(200,169,110,0.1);
  border-bottom: 1px solid rgba(200,169,110,0.1); padding: 20px 60px;
  z-index: auto;
}
.country-nav-grid {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.country-nav-link {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(250,247,242,0.4); border: 1px solid rgba(200,169,110,0.15);
  padding: 10px 20px; text-decoration: none; transition: all 0.3s;
}
.country-nav-link:hover,
.country-nav-link.current { color: var(--sand); border-color: var(--sand); background: rgba(200,169,110,0.08); }

/* Footer compatibility */
footer.footer { background: var(--ink); padding: 60px; border-top: 1px solid rgba(200,169,110,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-tagline { font-size: 12px; font-weight: 300; line-height: 1.8; color: rgba(250,247,242,0.4); }
.footer-links h4 {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 12px; font-weight: 300; color: rgba(250,247,242,0.4);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--sand); }
footer.footer .footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04); text-align: center;
}
footer.footer .footer-bottom p {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.15em;
  color: rgba(250,247,242,0.2);
}

/* Responsive for country compat */
@media (max-width: 1024px) {
  nav.nav-transparent, nav.nav-solid { padding: 20px 30px; }
  header.country-hero .country-hero-content { padding: 0 30px 50px; }
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .country-intro { padding: 80px 30px; }
  .country-intro-grid { gap: 50px; }
  .unique-section, .parks-section, .country-lodges, .when-section,
  .country-highlights, .country-parks, .country-seasons { padding: 80px 30px; }
  .country-cta-banner { padding: 70px 30px; }
  .unique-grid, .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .country-lodges-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .country-nav { padding: 16px 30px; }
}
@media (max-width: 768px) {
  nav.nav-transparent .nav-links,
  nav.nav-solid .nav-links { display: none; }
  header.country-hero { height: 55vh; }
  header.country-hero .country-hero-content { padding: 0 20px 40px; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-item:last-child { grid-column: span 2; }
  .country-intro { padding: 60px 20px; }
  .country-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .unique-section, .parks-section, .country-lodges, .when-section,
  .country-highlights, .country-parks, .country-seasons { padding: 60px 20px; }
  .country-cta-banner { padding: 60px 20px; }
  .unique-grid, .highlights-grid { grid-template-columns: 1fr; }
  .country-lodges-grid { grid-template-columns: 1fr; }
  .parks-grid .park-card { grid-template-columns: 1fr; }
  .park-card .park-card-img img { height: 200px; }
  .seasons-grid { grid-template-columns: 1fr; }
  section.country-cta { padding: 80px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .country-nav-grid { gap: 8px; }
  .country-nav-link { padding: 8px 14px; font-size: 8px; }
}
