/* ==========================================================================
   1) DESIGN TOKENS
   ========================================================================== */
:root {
  --sand-light: #F5EDE4;
  --sand: #D4B896;
  --kalahari: #C4956A;
  --terracotta: #B5654A;
  --terracotta-dark: #8B4432;
  --forest: #3D5A47;
  --forest-light: #4A6B52;
  --cream: #FDFBF8;
  --charcoal: #2B2621;
  --charcoal-light: #4A443D;
  --airbnb: #FF5A5F;
  --white: #FFFFFF;

  --royal: var(--terracotta);

  /* Footer (light scheme) */
  --footer-bg: var(--sand-light);
  --footer-panel: var(--cream);
  --footer-text: var(--charcoal);
  --footer-muted: var(--charcoal-light);
  --footer-heading: var(--charcoal);
  --footer-link: var(--charcoal-light);
  --footer-link-hover: var(--terracotta);
  --footer-border: rgba(43,38,33,0.12);
}

/* ==========================================================================
   2) BASE / RESET / TYPOGRAPHY
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

/* ==========================================================================
   3) GLOBAL LAYOUT HELPERS
   ========================================================================== */
section { padding: 6rem 5%; }

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ==========================================================================
   4) GLOBAL PATTERNS / REUSABLE UI
   ========================================================================== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-subtitle { color: var(--charcoal-light); font-size: 1.05rem; line-height: 1.8; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollDown { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(12px); } }

/* ==========================================================================
   5) NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(253,251,248,0.98);
  box-shadow: 0 2px 30px rgba(43,38,33,0.06);
  padding: 0.7rem 5%;
}

/* Original logo */
.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.logo-img { height: 55px; width: auto; transition: transform 0.3s ease; }
.navbar.scrolled .logo-img { height: 45px; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}
.navbar.scrolled .logo-text { color: var(--charcoal); }

/* Nav menu */
.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}
.navbar.scrolled .nav-menu a { color: var(--charcoal-light); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--kalahari);
  transition: width 0.3s ease;
}
.nav-menu a:hover::after { width: 100%; }

/* Current page highlight */
.nav-menu a.is-active::after { width: 100%; }
.nav-menu a.is-active { opacity: 1; }
.nav-menu a.nav-cta.is-active { box-shadow: 0 8px 20px rgba(0,0,0,0.18); }


.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--terracotta-dark) !important; }
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.menu-toggle span { width: 25px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.navbar.scrolled .menu-toggle span { background: var(--charcoal); }

/* Navbar wordmark lockup (SAFE) */
.navbar a.logo{
  display:flex;
  align-items:stretch;
  gap:0.75rem;
  text-decoration:none;
  color:inherit;
}
.navbar a.logo, .navbar a.logo *{ text-decoration:none; }
.navbar .logo-img{ height:52px; width:auto; display:block; }
.navbar .logo-wordmark{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:52px;
}
/* Ensure logo subtitle is readable on HERO (transparent navbar) */
.navbar:not(.scrolled) .logo-wordmark { color: rgba(255,255,255,0.95); }

.navbar:not(.scrolled) .logo-sub{
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

/* Optional: also help the KALAHARI line */
.navbar:not(.scrolled) .logo-kalahari{
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.navbar .logo-kalahari{
  font-family:"Playfair Display", serif;
  font-style:italic;
  font-weight:600;
  text-transform:uppercase;
  color:var(--terracotta);

  font-optical-sizing:auto;
  font-variation-settings:"opsz" 40;

  font-kerning:normal;
  letter-spacing:0.2em;
  line-height:1;
  font-size:1.55rem;

  --logo-kalahari-scale:1;
  transform:scaleX(var(--logo-kalahari-scale));
  transform-origin:left center;
}
.navbar .logo-sub{
  font-family:"Bahnschrift","Montserrat",sans-serif;
  text-transform:uppercase;

  font-kerning:normal;
  letter-spacing:0.2em;
  line-height:0.8;
  font-size:1rem;
  color:inherit;
}

/* ==========================================================================
   6) HERO
   ========================================================================== */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-bg { position: absolute; inset: 0; background: url("/assets/images/IMG_20260104_165541.jpg") center/cover no-repeat; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,38,33,0.5) 0%, rgba(43,38,33,0.2) 50%, rgba(43,38,33,0.6) 100%);
}
.hero-content { position: relative; z-index: 10; text-align: center; color: var(--white); padding: 2rem; max-width: 900px; }

/* Hero brand lockup (deduped) */
.hero-brand{
  display:flex;
  align-items:stretch;
  gap:1.1rem;
}
.hero-logo{
  height:clamp(56px, 7vw, 88px);
  width:auto;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-wordmark{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:clamp(56px, 7vw, 88px);
}
.hero-kalahari{
  font-family:"Playfair Display", serif;
  font-style:italic;
  font-weight:600;
  color:var(--terracotta);
  text-transform:uppercase;

  font-optical-sizing:auto;
  font-variation-settings:"opsz" 48;
  font-kerning:normal;
  letter-spacing:0.10em;
  line-height:1;

  font-size:clamp(1.55rem, 4.2vw, 2.1rem);

  --kalahari-scale:1;
  transform:scaleX(var(--kalahari-scale));
  transform-origin:left center;
}
.hero-sub{
  font-family:"Bahnschrift","Montserrat",sans-serif;
  text-transform:uppercase;

  font-kerning:normal;
  letter-spacing:0.28em;
  line-height:1;

  font-size:clamp(0.85rem, 2.2vw, 1.05rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--kalahari); }
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--sand); }
.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; }
.scroll-indicator .mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}

/* ==========================================================================
   7) STRIPS / “UNDER HERO” COMPONENTS
   ========================================================================== */
/* Benefits strip */
.benefits-strip{
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.benefits-grid{
  display:flex;
  justify-content:space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  flex-wrap: wrap;
}
.benefit-item{
  flex: 1 1 160px;
  min-width: 160px;
  text-align:center;
}
.benefit-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin: 0 auto 0.65rem;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,0.03);
  color: var(--forest);
}
.benefit-icon svg{ width:22px; height:22px; }
.benefit-title{
  font-family: "Playfair Display", serif;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.15;
}
.benefit-sub{
  color: var(--charcoal-light);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

/* ==========================================================================
   8) SECTIONS (IN PAGE ORDER)
   ========================================================================== */

/* About */
.about { background: var(--sand-light); }
.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  max-width: 1250px;
  margin: 0 auto;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 85%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 25px 50px rgba(43,38,33,0.15);
}
.about-img-secondary {
  position: absolute;
  bottom: -2rem; right: 0;
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  border: 6px solid var(--sand-light);
  box-shadow: 0 15px 40px rgba(43,38,33,0.12);
}
.about-content { padding: 1rem 0; }
.about-content .section-label { text-align: left; }
.about-content h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.5rem; text-align: left; }
.about-content p { color: var(--charcoal-light); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.9; }
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}
.feature { text-align: center; }
.feature-icon {
  width: 50px; height: 50px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--white); }
.feature h4 { font-size: 1.8rem; color: var(--charcoal); margin-bottom: 0.2rem; }
.feature span { font-size: 0.85rem; color: var(--charcoal-light); }

/* Accommodation */
.accommodation { background: var(--cream); }
.acc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.acc-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(43,38,33,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.acc-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(43,38,33,0.12); }
.acc-image { height: 300px; overflow: hidden; position: relative; }
.acc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.acc-card:hover .acc-image img { transform: scale(1.08); }
.acc-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--white);
  color: var(--terracotta);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.acc-body { padding: 2rem; }
.acc-body h3 { font-size: 1.7rem; margin-bottom: 0.3rem; color: var(--charcoal); }
.acc-subtitle { font-size: 0.9rem; color: var(--terracotta); font-style: italic; margin-bottom: 0.8rem; }
.acc-body p { color: var(--charcoal-light); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.acc-amenities { display: flex; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--sand-light); }
.amenity { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--charcoal-light); }
.amenity svg { width: 18px; height: 18px; stroke: var(--forest); }

/* Thumb carousel */
.thumb-carousel { position: relative; margin-top: 1rem; }
.carousel-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 2.6rem;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track img {
  flex: 0 0 auto;
  width: 110px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  scroll-snap-align: start;
  transition: opacity 0.3s ease;
}
.carousel-track img:hover { opacity: 0.85; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 18px rgba(43,38,33,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.04); }
.carousel-btn svg { width: 18px; height: 18px; stroke: var(--charcoal); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* Transfers */
.transfers { background: var(--charcoal); color: var(--white); }
.transfers .section-label { color: var(--kalahari); }
.transfers .section-title { color: var(--white); }
.transfers-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.transfers-image { border-radius: 8px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.transfers-image img { width: 100%; height: auto; display: block; }
.transfers-content h3 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--white); }
.transfers-content p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; line-height: 1.8; }
.transfer-types { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.transfer-type { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.1); }
.transfer-type h4 { font-size: 1.1rem; color: var(--kalahari); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.transfer-type h4 svg { width: 20px; height: 20px; stroke: var(--kalahari); }
.transfer-type ul { list-style: none; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.transfer-type li { padding: 0.3rem 0; padding-left: 1rem; position: relative; }
.transfer-type li::before { content: '→'; position: absolute; left: 0; color: var(--kalahari); }
.transfers-cta { margin-top: 2rem; }
.transfers-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--kalahari);
  color: var(--charcoal);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.transfers-cta a:hover { background: var(--sand); transform: translateY(-2px); }
.transfers-cta svg { width: 20px; height: 20px; }

/* Gallery */
.gallery { background: var(--sand-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item { position: relative; border-radius: 6px; overflow: hidden; cursor: pointer; }
.gallery-item::before { content: ''; position: absolute; inset: 0; background: rgba(43,38,33,0); transition: background 0.3s ease; z-index: 1; }
.gallery-item:hover::before { background: rgba(43,38,33,0.3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  width: 50px; height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-zoom { transform: translate(-50%, -50%) scale(1); }
.gallery-zoom svg { width: 22px; height: 22px; stroke: var(--charcoal); }

/* Explore */
.explore { background: var(--cream); }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.explore-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(43,38,33,0.05);
  text-decoration: none;
  color: inherit;
  display: block;
}
.explore-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(43,38,33,0.1); }
.explore-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.2rem;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.explore-card:hover .explore-icon { background: var(--terracotta); }
.explore-icon svg { width: 32px; height: 32px; stroke: var(--terracotta); transition: stroke 0.3s ease; }
.explore-card:hover .explore-icon svg { stroke: var(--white); }
.explore-card h4 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--charcoal); }
.explore-card p { font-size: 0.9rem; color: var(--charcoal-light); line-height: 1.6; }
.explore-cta { text-align: center; margin-top: 3rem; }
.explore-cta a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--terracotta); font-weight: 600; text-decoration: none; font-size: 0.95rem; transition: all 0.3s ease; }
.explore-cta a:hover { color: var(--terracotta-dark); gap: 0.8rem; }
.explore-cta svg { width: 20px; height: 20px; }

/* Reviews */
.reviews { background: var(--sand-light); }
.reviews-container { max-width: 1000px; margin: 0 auto; }
.airbnb-review-box {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(43,38,33,0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.airbnb-stats { text-align: center; padding-right: 3rem; border-right: 1px solid var(--sand-light); }
.airbnb-logo { width: 80px; height: auto; margin-bottom: 1rem; }
.airbnb-rating { display: flex; align-items: baseline; justify-content: center; gap: 0.3rem; margin-bottom: 0.5rem; }
.airbnb-rating .score { font-size: 3.5rem; font-weight: 600; color: var(--charcoal); font-family: 'Cormorant Garamond', serif; }
.airbnb-rating .max { font-size: 1.2rem; color: var(--charcoal-light); }
.airbnb-stars { display: flex; gap: 0.2rem; justify-content: center; margin-bottom: 0.5rem; }
.airbnb-stars svg { width: 20px; height: 20px; fill: var(--airbnb); }
.airbnb-count { font-size: 0.9rem; color: var(--charcoal-light); margin-bottom: 1rem; }
.superhost-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--airbnb); color: var(--white); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.superhost-badge svg { width: 16px; height: 16px; fill: var(--white); }
.review-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-category { text-align: center; }
.review-category-score { font-size: 1.5rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.2rem; }
.review-category-label { font-size: 0.85rem; color: var(--charcoal-light); }
.review-category-bar { width: 100%; height: 4px; background: var(--sand-light); border-radius: 2px; margin-top: 0.5rem; overflow: hidden; }
.review-category-bar span { display: block; height: 100%; background: var(--airbnb); border-radius: 2px; }
.airbnb-cta { text-align: center; margin-top: 2.5rem; }
.airbnb-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--airbnb);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.airbnb-cta a:hover { background: #E04E53; transform: translateY(-2px); }
.airbnb-cta svg { width: 20px; height: 20px; }
.booking-platforms { display: flex; justify-content: center; gap: 3rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--sand); flex-wrap: wrap; }
.platform-link { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--charcoal-light); font-size: 0.85rem; font-weight: 500; transition: all 0.3s ease; }
.platform-link:hover { color: var(--terracotta); transform: translateY(-3px); }

/* Instagram follow strip */
.ig-strip { background: linear-gradient(180deg, rgba(245,237,228,0.6), rgba(253,251,248,0.9)); padding: 4.5rem 5%; }
.ig-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.ig-strip h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.ig-strip p { color: var(--charcoal-light); margin-bottom: 1.25rem; }
.ig-cta { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.9rem 1.2rem; border-radius: 6px; background: var(--terracotta); color: #fff; text-decoration: none; font-weight: 600; letter-spacing: 0.02em; }
.ig-cta:hover { background: var(--terracotta-dark); }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.ig-grid a { border-radius: 10px; overflow: hidden; display: block; position: relative; }
.ig-grid img { width: 100%; height: 120px; object-fit: cover; display: block; transition: transform 0.35s ease; }
.ig-grid a:hover img { transform: scale(1.06); }
.ig-badge { position: absolute; bottom: 8px; left: 8px; background: rgba(0,0,0,0.55); color: #fff; padding: 0.25rem 0.5rem; border-radius: 999px; font-size: 0.75rem; }

/* Why KSRI */
.why-ksri{ background: var(--cream); padding: 5.2rem 0; }
.why-ksri .eyebrow{
  text-align:center;
  font-weight:700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--royal);
  margin-bottom: 0.6rem;
}
.why-title{
  text-align:center;
  font-family:"Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 0 0 2.6rem;
  color: var(--charcoal);
}
.why-accent{ color: var(--royal); font-style: italic; }
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card{ text-align:center; padding: 0.5rem 0.5rem; }
.why-icon{
  width: 72px; height: 72px;
  border-radius: 999px;
  margin: 0 auto 1.1rem;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--forest);
}
.why-icon svg{ width: 28px; height: 28px; }
.why-card h3{
  font-family:"Playfair Display", serif;
  font-size: 1.55rem;
  margin: 0 0 0.55rem;
  color: var(--charcoal);
}
.why-card p{
  color: var(--charcoal-light);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto;
}

/* Contact */
.contact { background: var(--forest); color: var(--white); }
.contact .section-label { color: var(--kalahari); }
.contact .section-title { color: var(--white); }
.contact-container { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; line-height: 1.8; }
.contact-list { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon-wrap { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-wrap svg { width: 22px; height: 22px; stroke: var(--kalahari); }
.contact-item-content a, .contact-item-content span { color: var(--white); text-decoration: none; font-size: 1rem; transition: color 0.3s ease; display: block; }
.contact-item-content a:hover { color: var(--kalahari); }
.messaging-icons { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.footer-messaging { justify-content: flex-start; }
.footer-messaging a { width: 38px; height: 38px; }
.messaging-icons a { width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.messaging-icons a:hover { transform: scale(1.1); }
.messaging-icons a.whatsapp:hover { background: #25D366; }
.messaging-icons a.signal:hover { background: #3A76F0; }
.messaging-icons a.telegram:hover { background: #0088cc; }
.messaging-icons svg { width: 16px; height: 16px; fill: var(--white); }

.contact-form-box { background: var(--white); padding: 2.5rem; border-radius: 8px; color: var(--charcoal); }
.contact-form-box h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--sand);
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(61,90,71,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover { background: var(--forest-light); transform: translateY(-2px); }
.form-submit svg { width: 20px; height: 20px; }

/* ==========================================================================
   9) FOOTER (LIGHT SCHEME)
   ========================================================================== */
footer{
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--footer-border);
}

.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--footer-border);
  align-items: start;
}

.footer-brand{ max-width: 300px; }
.footer-logo{ height: 80px; width: auto; margin-bottom: 1rem; }
.footer-brand p{
  color: var(--footer-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Social (light) */
.footer-social{
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.footer-social a{
  width: 40px;
  height: 40px;
  background: rgba(43,38,33,0.06);
  border: 1px solid rgba(43,38,33,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover{
  transform: translateY(-2px);
  background: rgba(181,101,74,0.14);
  border-color: rgba(181,101,74,0.25);
}
.footer-social svg{ width: 18px; height: 18px; fill: var(--footer-text); }

/* Columns */
.footer-col h4{
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
  color: var(--footer-heading);
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; }
.footer-col ul li{ margin-bottom: 0.9rem; }

/* Links: obvious links (underline + hover accent) */
.footer-col a,
.footer-bottom a{
  color: var(--footer-link);
  font-size: 0.95rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43,38,33,0.25);
  transition: color 0.2s ease, text-decoration-color 0.2s ease, transform 0.15s ease;
}
.footer-col a:hover,
.footer-bottom a:hover{
  color: var(--footer-link-hover);
  text-decoration-color: var(--footer-link-hover);
  transform: translateY(-1px);
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p{
  color: rgba(43,38,33,0.65);
  font-size: 0.85rem;
}

/* Legal + subheads */
.footer-legal ul li a{ opacity: 1; }
.footer-stack .footer-subhead{ margin-top: 1.5rem; }
.footer-contact-legal .footer-subhead{ margin-top: 1.35rem; margin-bottom: 1.15rem; }

@media (min-width: 980px){
  .footer-grid{ grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 3.5rem; }
}

/* Focus style (accessible but tasteful) */
footer a:focus-visible{
  outline: 2px solid rgba(181,101,74,0.55);
  outline-offset: 3px;
  border-radius: 8px;
}


/* ==========================================================================
   10) FOOTER (LUXE VARIANT — LIGHT)
   ========================================================================== */
.footer-luxe{
  margin-top: 80px;
  padding: 64px 0 0;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid var(--footer-border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-luxe__grid{
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr 0.9fr 1.1fr;
  align-items: start;
}

/* Brand */
.footer-luxe__logo{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
}
.footer-luxe__logo img{
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(43,38,33,0.18));
}
.footer-luxe__wordmark{ display: grid; gap: 6px; }
.footer-luxe__name{ font-weight: 700; letter-spacing: 0.3px; line-height: 1.1; }
.footer-luxe__tagline{
  color: var(--footer-muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* Headings + labels */
.footer-luxe__heading{
  color: var(--footer-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.footer-luxe__label{
  display: block;
  color: rgba(43,38,33,0.60);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

/* Lists */
.footer-luxe__list,
.footer-luxe__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-luxe__text{
  color: var(--footer-muted);
  line-height: 1.6;
}

/* Links: obvious */
.footer-luxe a,
.footer-luxe a:visited{
  color: var(--footer-link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43,38,33,0.25);
  transition: color 0.2s ease, text-decoration-color 0.2s ease, transform 0.15s ease;
}
.footer-luxe a:hover{
  color: var(--footer-link-hover);
  text-decoration-color: var(--footer-link-hover);
  transform: translateY(-1px);
}
.footer-luxe a:focus-visible{
  outline: 2px solid rgba(181,101,74,0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* CTA row */
.footer-luxe__ctaRow{
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer-luxe__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--footer-border);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--footer-text);
  transition: transform 0.15s ease, background 0.2s ease;
}
.footer-luxe__cta--primary{ background: rgba(181,101,74,0.14); }
.footer-luxe__cta--secondary{ background: rgba(43,38,33,0.06); margin-top: 14px; }
.footer-luxe__cta--ghost{ background: transparent; }
.footer-luxe__cta:hover{ transform: translateY(-1px); background: rgba(181,101,74,0.20); }

/* Trust pills + Zamsato cards (light surfaces) */
.footer-luxe__badges{ margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }

.trust-pill{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--footer-border);
  background: var(--footer-panel);
  font-size: 0.92rem;
  color: var(--footer-muted);
  box-shadow: 0 8px 18px rgba(43,38,33,0.06);
}
.trust-pill__icon{ opacity: 0.9; }

.footer-luxe__fineprint{
  margin-top: 16px;
  color: rgba(43,38,33,0.60);
  font-size: 0.9rem;
}

.footer-luxe__miniTrust{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--footer-border);
}
.mini-trust{
  color: rgba(43,38,33,0.70);
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mini-trust__sep{ opacity: 0.45; }

.footer-luxe__zLinks{ margin-top: 12px; display: grid; gap: 14px; }

.z-card{
  display: grid;
  gap: 2px;
  padding: 12px 12px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid var(--footer-border);
  background: var(--footer-panel);
  box-shadow: 0 8px 18px rgba(43,38,33,0.06);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.z-card:hover{
  transform: translateY(-2px);
  background: rgba(253,251,248,0.65);
  border-color: rgba(181,101,74,0.25);
}
.z-card__title{ font-weight: 700; color: var(--footer-text); }
.z-card__sub{ color: var(--footer-muted); font-size: 0.92rem; }

/* Bottom bar */
.footer-luxe__bottom{
  margin-top: 36px;
  border-top: 1px solid var(--footer-border);
  padding: 16px 0;
  background: rgba(43,38,33,0.05);
}
.footer-luxe__bottomRow{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-luxe__muted{ color: rgba(43,38,33,0.62); font-size: 0.92rem; }
.footer-luxe__bottomLinks{ display: flex; gap: 10px; flex-wrap: wrap; }
.footer-luxe__dot{ opacity: 0.45; }


/* ==========================================================================
   11) FLOATING / OVERLAYS
   ========================================================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 32px; height: 32px; fill: white; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 50px; height: 50px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--terracotta); border-color: var(--terracotta); }
.lightbox-close svg { width: 24px; height: 24px; stroke: white; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; }


/* ==========================================================================
   8.x) FAQ (ACCORDION)
   ========================================================================== */
.faq { background: var(--cream); }
.faq .container { max-width: 1100px; margin: 0 auto; }
.faq-list { margin-top: 24px; display: grid; gap: 14px; }

.faq-item{
  background: var(--white);
  border: 1px solid rgba(43,38,33,0.10);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(43,38,33,0.06);
}

.faq-question{
  width: 100%;
  text-align: left;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
}

.faq-question-text{
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
}

.faq-chevron{
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  opacity: 0.85;
  transition: transform 220ms ease;
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer__inner{
  padding: 0 18px 18px 18px;
  color: var(--charcoal-light);
  line-height: 1.75;
}

.faq-item.faq-open .faq-answer {
  max-height: 600px;
}

.faq-item.faq-open .faq-chevron { transform: rotate(180deg); }
.faq-question:focus-visible{
  outline: 2px solid rgba(181,101,74,0.45);
  outline-offset: 4px;
  border-radius: 10px;
}


/* ==========================================================================
   12) RESPONSIVE (MOBILE LAST)
   ========================================================================== */
@media (max-width: 1100px) {
  .footer-luxe__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .acc-grid { grid-template-columns: 1fr; max-width: 550px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 200px); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .airbnb-review-box { grid-template-columns: 1fr; text-align: center; }
  .airbnb-stats { padding-right: 0; padding-bottom: 2rem; border-right: none; border-bottom: 1px solid var(--sand-light); }
  .transfers-container { grid-template-columns: 1fr; gap: 2rem; }
  .transfers-image { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .ig-strip-inner { grid-template-columns: 1fr; }
  .ig-grid img { height: 140px; }
}

@media (max-width: 980px){
  .why-grid{ grid-template-columns: 1fr; gap: 2rem; }
  .benefits-grid{ justify-content:center; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 5%; }
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  section { padding: 4rem 5%; }
  .about-features { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .explore-grid { grid-template-columns: 1fr; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .review-details { grid-template-columns: repeat(2, 1fr); }
  .transfer-types { grid-template-columns: 1fr; }
  .hero-logo { width: 140px; }
}

@media (max-width: 720px) {
  .footer-luxe { padding-top: 52px; }
  .footer-luxe__grid { grid-template-columns: 1fr; }
  .footer-luxe__ctaRow { gap: 12px; }
}

@media (max-width: 520px){
  .hero-brand{ gap:0.85rem; }
  .hero-kalahari{ letter-spacing:0.09em; font-variation-settings:"opsz" 40; }
  .hero-sub{ letter-spacing:0.24em; }

  .navbar .logo-img{ height:46px; }
  .navbar .logo-wordmark{ min-height:46px; }
  .navbar .logo-kalahari{ letter-spacing:0.10em; font-size:0.98rem; }
  .navbar .logo-sub{ letter-spacing:0.20em; font-size:0.68rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 200px); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
  .review-details { grid-template-columns: 1fr; }
  .carousel-track { padding: 0.25rem 2.2rem; }
  .carousel-track img { width: 96px; height: 60px; }
  .logo-text { display: none; }
}