  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --forest: #1A2E1A;
    --forest-light: #243824;
    --gold: #C8A96E;
    --gold-light: #D4BC87;
    --sand: #E8D5B0;
    --ivory: #FAF7F2;
    --charcoal: #1C1C1C;
    --text-mid: #4A4035;
    --white: #ffffff;
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Inter', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--ff-body);
    background: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 40px; left: 0; right: 0; z-index: 150;
    display: flex; align-items: stretch;
    height: 88px;
    transition: box-shadow 0.4s, top 0.3s;
  }
  nav.scrolled {
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
    top: 40px; /* stays below top bar even on scroll */
  }
  nav.scrolled .nav-right {
    background: rgba(26,46,26,0.97);
    margin-top: 0;
    padding: 0 6vw;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 88px;
  }
  nav.scrolled .nav-links {
    gap: 2.8rem;
    justify-content: center;
  }
  /* Logo disappears when scrolled */
  nav.scrolled .nav-logo-wrap {
    width: 0; margin-left: 0; overflow: hidden;
    opacity: 0; pointer-events: none;
  }

  /* Overlapping logo box — drops below the nav bar */
  .nav-logo-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    background: var(--forest);
    width: 200px; flex-shrink: 0;
    margin-left: 130px;
    padding: 0;
    z-index: 101;
    margin-bottom: -56px;
    box-shadow: 2px 4px 20px rgba(0,0,0,0.35);
    transition: width 0.4s ease, margin 0.4s ease, opacity 0.3s ease;
  }
  .nav-logo-wrap img {
    height: 100%; width: 100%; object-fit: cover;
    display: block;
  }

  /* Top utility bar — always fixed, always visible */
  .nav-top-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 40px; background: var(--forest);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw; gap: 1.5rem;
    font-size: 0.68rem; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(200,169,110,0.15);
  }
  .nav-top-bar-left {
    display: flex; align-items: center; gap: 0.7rem;
    flex-shrink: 0;
  }
  .nav-top-bar-stars { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.05em; }
  .nav-top-bar-rating { font-size: 0.67rem; color: rgba(255,255,255,0.6); }
  .nav-top-bar-sep { color: rgba(255,255,255,0.25); }
  .nav-top-bar-right {
    display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
  }
  .nav-top-bar-right span { color: rgba(255,255,255,0.5); font-size: 0.67rem; }
  .nav-top-bar-right a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 0.68rem; font-weight: 500; transition: color 0.2s;
  }
  .nav-top-bar-right a:hover { color: var(--gold); }
  .nav-top-bar-phone { color: var(--gold) !important; font-weight: 700 !important; }
  .nav-topbar-contact, .nav-topbar-enquire {
    padding: 0.22rem 0.85rem;
    font-size: 0.66rem !important; font-weight: 700 !important;
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
  }
  .nav-topbar-contact {
    border: 1px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85) !important;
  }
  .nav-topbar-contact:hover { border-color: var(--gold); color: var(--gold) !important; }
  .nav-topbar-enquire {
    background: var(--gold); color: var(--forest) !important;
    border: 1px solid var(--gold);
  }
  .nav-topbar-enquire:hover { background: var(--gold-light); }
  @media (max-width: 900px) {
    .nav-top-bar-left { display: none; }
    .nav-top-bar { justify-content: flex-end; }
  }

  /* Main nav links row — sits below utility bar */
  .nav-right {
    display: flex; align-items: center; justify-content: space-between;
    flex: 1; padding: 0 4vw;
    /* push down to sit below the 40px utility bar */
    margin-top: 40px;
    background: transparent;
  }
  .nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; }
  .nav-links a {
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.9);
    text-decoration: none; transition: color 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: var(--forest) !important;
    padding: 0.6rem 1.5rem; letter-spacing: 0.06em !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--forest) !important; }

  /* Sub-pages: nav always has solid dark background since no hero behind it */
  nav.nav-dark { background: var(--forest); }
  nav.nav-dark .nav-right {
    background: var(--forest);
    margin-top: 0;
  }
  /* Logo stays full on sub-pages — same overlapping box as homepage */
  nav.nav-dark .nav-logo-wrap {
    margin-bottom: -56px;
  }

  /* Home link — hidden by default, only visible when scrolled (logo gone) */
  .nav-home-link { display: none !important; }
  nav.scrolled .nav-home-link { display: list-item !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2px; background: white; }

  /* ── HERO / BANNER (Africa Uncovered style) ── */
  .hero {
    position: relative; height: 72.29vh; min-height: 544px;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease-in-out;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,20,15,0.8) 0%, rgba(26,46,26,0.3) 45%, rgba(0,0,0,0.2) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 10.5rem 8vw 0;
    max-width: 900px;
  }
  .hero-eyebrow {
    font-family: var(--ff-body);
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: 0.8rem;
    transition: opacity 0.4s;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.6rem, 6.5vw, 5.6rem);
    font-weight: 300; line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    transition: opacity 0.4s;
    white-space: nowrap;
  }
  .hero h1 em {
    font-style: italic; color: var(--gold);
    font-weight: 400; display: inline;
  }
  .hero-divider {
    width: 100px; height: 1px; background: var(--white);
    opacity: 0.5; margin-bottom: 1.6rem;
  }
  .hero-find-out-more {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold); color: var(--forest);
    font-family: var(--ff-body); font-size: 0.72rem;
    font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    padding: 0.65rem 1.3rem; width: fit-content;
    transition: background 0.2s, transform 0.2s;
  }
  .hero-find-out-more:hover { background: var(--gold-light); transform: translateY(-1px); }
  .hero p {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,0.85);
    max-width: 560px; margin-bottom: 2.4rem;
    transition: opacity 0.4s;
  }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--gold); color: var(--forest);
    font-family: var(--ff-body); font-size: 0.78rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.95rem 2rem; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.6rem;
    border: 1px solid rgba(255,255,255,0.4); color: var(--white);
    font-family: var(--ff-body); font-size: 0.78rem;
    font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.95rem 2rem; text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold); background: rgba(200,169,110,0.1); }

  /* Bottom tab bar — Africa Uncovered style: hover/click a tab to pop up a card above it */
  .hero-tabs {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    display: flex; flex-wrap: wrap;
  }
  .hero-tab {
    position: relative;
    flex: 1; min-width: 200px;
    background: rgba(15,20,15,0.82);
    border-right: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid transparent;
    padding: 1.1rem 1.8rem;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
  }
  .hero-tab:last-child { border-right: none; }
  .hero-tab:hover, .hero-tab.active {
    background: rgba(200,169,110,0.28);
    border-top-color: var(--gold);
  }
  .hero-tab-title {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--white);
    line-height: 1.3;
  }

  /* Floating popup card — appears only on hover */
  .hero-tab-popup {
    position: absolute; bottom: 100%; left: 0;
    width: 280px;
    background: rgba(74,64,53,0.94);
    padding: 1.6rem 1.8rem;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
  }
  .hero-tab:hover .hero-tab-popup,
  .hero-tab.popup-open .hero-tab-popup {
    opacity: 1; visibility: visible;
    transform: translateY(0);
  }
  .hero-tab-popup-title {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 0.6rem;
  }
  .hero-tab-popup-divider {
    width: 60px; height: 1px; background: rgba(255,255,255,0.4);
    margin-bottom: 0.8rem;
  }
  .hero-tab-popup-desc {
    font-size: 0.78rem; font-weight: 300;
    color: rgba(255,255,255,0.75); line-height: 1.6;
  }

  /* ── SECTION COMMONS ── */
  section { padding: 7rem 8vw; }
  .section-eyebrow {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.9rem;
    display: flex; align-items: center; gap: 0.7rem;
  }
  .section-eyebrow::before {
    content: ''; display: block;
    width: 24px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300; line-height: 1.15; color: var(--forest);
    margin-bottom: 1.4rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-sub {
    font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: var(--text-mid); max-width: 600px;
  }

  /* ── ABOUT INTRO — Dawn Safaris full-bleed split layout ── */
  .about-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }
  .about-intro-image {
    position: relative; overflow: hidden; max-height: 500px;
  }
  .about-intro-image img {
    width: 100%; height: 500px; object-fit: cover;
    display: block; filter: brightness(0.88);
    transition: transform 0.8s ease;
  }
  .about-intro:hover .about-intro-image img { transform: scale(1.03); }
  .about-intro-badge {
    position: absolute; bottom: 0; right: 0;
    background: rgba(26,46,26,0.92);
    padding: 1.6rem 2rem; text-align: center; min-width: 160px;
  }
  .about-intro-badge-num {
    font-family: var(--ff-display); font-size: 2.8rem; font-weight: 300;
    color: var(--gold); line-height: 1; display: block;
  }
  .about-intro-badge-label {
    font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.65); display: block; margin-top: 0.3rem;
  }
  .about-intro-content {
    background: var(--ivory);
    padding: 3rem 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .about-intro-eyebrow {
    font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.7rem;
  }
  .about-intro-eyebrow::before {
    content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
  }
  .about-intro-title {
    font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: var(--forest); line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .about-intro-title em {
    font-style: italic; font-weight: 300; color: var(--gold);
    display: inline;
  }
  .about-intro-text {
    font-size: 0.9rem; line-height: 1.8; color: var(--text-mid);
    margin-bottom: 1rem;
  }
  .about-intro-stats {
    display: flex; gap: 0; margin-top: 1.2rem;
    border: 1px solid rgba(26,46,26,0.12);
  }
  .about-intro-stat {
    flex: 1; text-align: center; padding: 0.8rem 0.6rem;
    border-right: 1px solid rgba(26,46,26,0.12);
  }
  .about-intro-stat:last-child { border-right: none; }
  .about-intro-stat-num {
    font-family: var(--ff-display); font-size: 1.5rem; font-weight: 300;
    color: var(--forest); display: block; line-height: 1;
  }
  .about-intro-stat-label {
    font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-mid); display: block; margin-top: 0.25rem;
  }
  @media (max-width: 900px) {
    .about-intro { grid-template-columns: 1fr; }
    .about-intro-image { min-height: 320px; }
    .about-intro-content { padding: 2rem 1.5rem; }
  }

  /* ── PHOTO STRIP ── */
  .photo-strip {
    display: block; position: relative; overflow: hidden;
    text-decoration: none; height: 220px;
    margin-top: -2.4rem; /* reduce space after about-intro by 40% */
    cursor: pointer;
  }
  .photo-strip-inner {
    display: flex; height: 100%;
    animation: stripScroll 30s linear infinite;
  }
  .photo-strip:hover .photo-strip-inner { animation-play-state: paused; }
  .photo-strip-inner img {
    height: 100%; width: auto; flex-shrink: 0;
    object-fit: cover; filter: brightness(0.6);
    transition: filter 0.3s;
  }
  @keyframes stripScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .photo-strip-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 0.5rem;
    background: rgba(26,46,26,0.45);
    transition: background 0.3s;
  }
  .photo-strip:hover .photo-strip-overlay { background: rgba(26,46,26,0.62); }
  .photo-strip-label {
    font-family: var(--ff-display); font-size: 1.6rem; font-weight: 300;
    color: var(--white); letter-spacing: 0.05em;
  }
  .photo-strip-icon {
    width: 44px; height: 44px; border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
  }
  .photo-strip:hover .photo-strip-icon { background: var(--gold); color: var(--forest); }

  /* ── TESTIMONIALS ── */
  .testimonials-home {
    background: var(--ivory); padding: 6rem 8vw;
  }
  .testi-grid-home {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem;
  }
  .testi-card-home {
    background: var(--white); padding: 2.2rem;
    border-left: 3px solid var(--gold);
    display: flex; flex-direction: column;
  }
  .testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
  .testi-quote-home {
    font-family: var(--ff-display); font-size: 1.02rem;
    font-style: italic; font-weight: 400; line-height: 1.7;
    color: var(--forest); margin-bottom: 1.5rem; flex: 1;
  }
  .testi-author-home { margin-top: auto; }
  .testi-name {
    font-size: 0.82rem; font-weight: 600; color: var(--charcoal);
  }
  .testi-origin {
    font-size: 0.72rem; color: var(--gold); letter-spacing: 0.08em;
    margin-top: 0.2rem;
  }
  @media (max-width: 900px) {
    .testi-grid-home { grid-template-columns: 1fr; }
  }

  /* ── EXPERIENCES — Dawn Safaris style: uniform full-bleed cards, hover reveals detail ── */
  .experiences { background: var(--forest); padding-bottom: 2rem; }
  .experiences .section-title { color: var(--white); }
  .exp-layout-wrap {
    display: flex; gap: 2rem;
    margin-top: 3rem;
    align-items: flex-start;
  }

  /* Intro panel — fixed in place, does not scroll with the cards */
  .exp-intro {
    flex-shrink: 0;
    width: 280px; height: 400px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .exp-intro-eyebrow {
    font-family: var(--ff-display); font-size: 1.1rem; font-style: italic;
    font-weight: 500; color: var(--gold); opacity: 0.9;
    margin-bottom: 0.6rem;
  }
  .exp-intro-title {
    font-family: var(--ff-body); font-size: 1.6rem; font-weight: 700;
    letter-spacing: 0.02em; text-transform: uppercase;
    color: var(--white); line-height: 1.3; margin-bottom: 1.2rem;
  }
  .exp-intro-title em { font-style: normal; color: var(--gold); }
  .exp-intro-text {
    font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.75;
    margin-bottom: 1.8rem;
  }
  .exp-intro-link {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--forest); text-decoration: none; font-weight: 600;
    background: var(--gold); padding: 0.85rem 1.6rem;
    width: fit-content; transition: background 0.2s;
  }
  .exp-intro-link:hover { background: var(--gold-light); }

  .exp-scroll-wrap { position: relative; flex: 1; min-width: 0; }
  .exp-scroll {
    display: flex; gap: 1.2rem;
    overflow-x: auto; scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .exp-scroll::-webkit-scrollbar { display: none; }

  /* Uniform full-bleed safari cards */
  .exp-card {
    position: relative; overflow: hidden; cursor: pointer;
    flex-shrink: 0; scroll-snap-align: start;
    width: 300px; height: 400px;
  }
  .exp-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.7s ease, filter 0.5s;
    filter: brightness(0.6);
  }
  .exp-card:hover img { transform: scale(1.06); filter: brightness(0.4); }

  .exp-card-num {
    position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
    font-family: var(--ff-display); font-size: 0.9rem; font-weight: 400;
    color: rgba(255,255,255,0.7); letter-spacing: 0.05em;
  }
  .exp-card-badge {
    position: absolute; top: 1.2rem; right: 1.2rem; z-index: 2;
    background: var(--gold); color: var(--forest);
    font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.32rem 0.65rem;
  }

  .exp-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.4rem;
    background: linear-gradient(to top, rgba(15,20,15,0.95) 0%, rgba(15,20,15,0.5) 55%, transparent 100%);
    transition: padding-bottom 0.35s ease;
  }
  .exp-card-label {
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.45rem; font-weight: 600;
  }
  .exp-card-title {
    font-family: var(--ff-display); font-size: 1.35rem; font-weight: 400;
    color: var(--white); line-height: 1.2;
  }

  /* Hidden by default — revealed on hover only */
  .exp-card-text {
    font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.6;
    margin-top: 0.7rem;
    opacity: 0; max-height: 0; overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.35s ease, margin-top 0.35s ease;
  }
  .exp-card-meta {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-top: 0.8rem;
    opacity: 0; max-height: 0; overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.35s ease, margin-top 0.35s ease;
  }
  .exp-card-meta-item { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
  .exp-card-meta-item strong {
    display: block; font-size: 0.68rem; color: var(--gold);
    font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 0.15rem;
  }
  .exp-card-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; font-weight: 700;
    margin-top: 1rem;
    opacity: 0; max-height: 0; overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.35s ease, margin-top 0.35s ease;
  }
  .exp-card:hover .exp-card-text,
  .exp-card:hover .exp-card-meta,
  .exp-card:hover .exp-card-cta {
    opacity: 1; max-height: 200px;
  }
  .exp-card:hover .exp-card-overlay { padding-bottom: 1.6rem; }

  /* Nav arrows float on top of the image, vertically centered */
  .exp-nav {
    position: absolute; top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    display: flex; justify-content: space-between;
    padding: 0 0.8rem;
    pointer-events: none;
    z-index: 5;
  }
  .exp-nav button {
    width: 38px; height: 38px; border-radius: 50%;
    border: none; background: rgba(255,255,255,0.9);
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    color: var(--forest); box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background 0.2s, color 0.2s;
    pointer-events: auto;
  }
  .exp-nav button:hover { background: var(--gold); color: var(--forest); }

  @media (max-width: 900px) {
    .exp-layout-wrap { flex-direction: column; gap: 1.5rem; }
    .exp-intro { width: 100%; height: auto; padding: 1rem 0; }
    .exp-card { width: 240px; height: 320px; }
  }
  @media (max-width: 600px) {
    .exp-card { width: 200px; height: 280px; }
  }

  /* ── DESTINATIONS ── */
  .destinations { background: var(--forest); padding-top: 2rem; }
  .destinations .section-title { color: var(--white); }
  .destinations .section-eyebrow { color: var(--gold); }

  .dest-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
  }
  .dest-view-all {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; font-weight: 600;
    border-bottom: 1px solid rgba(200,169,110,0.4);
    padding-bottom: 0.2rem; transition: border-color 0.2s;
  }
  .dest-view-all:hover { border-color: var(--gold); }

  /* Country block */
  .dest-country-block { margin-bottom: 3.5rem; }
  .dest-country-label {
    font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .dest-country-label::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(200,169,110,0.2);
  }

  /* Mosaic: featured left + 2x2 grid right */
  .dest-mosaic {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3px;
    height: 460px;
  }

  /* Featured large card — left column, full height */
  .dest-mosaic-featured {
    position: relative; overflow: hidden; cursor: pointer;
    text-decoration: none; display: block;
    height: 100%;
  }
  .dest-mosaic-featured img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s;
    filter: brightness(0.65);
  }
  .dest-mosaic-featured:hover img { transform: scale(1.05); filter: brightness(0.45); }

  /* Small arrow button top-right of featured card */
  .dest-mosaic-arrow {
    position: absolute; top: 1.2rem; right: 1.2rem;
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 0.85rem;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
  }
  .dest-mosaic-featured:hover .dest-mosaic-arrow {
    background: var(--gold); border-color: var(--gold); color: var(--forest);
  }

  /* 3x2 small cards grid — right column */
  .dest-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 3px;
  }
  .dest-mosaic-small {
    position: relative; overflow: hidden; cursor: pointer;
    text-decoration: none; display: block;
  }
  .dest-mosaic-small img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s;
    filter: brightness(0.65);
  }
  .dest-mosaic-small:hover img { transform: scale(1.08); filter: brightness(0.45); }

  /* Shared overlay body */
  .dest-mosaic-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,15,10,0.92) 0%, transparent 65%);
    padding: 1rem 1rem 0.8rem;
  }
  .dest-mosaic-featured .dest-mosaic-body { padding: 2rem 1.8rem 1.5rem; }
  .dest-mosaic-tag {
    display: block; font-size: 0.55rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .dest-mosaic-name {
    font-family: var(--ff-display); font-weight: 400;
    color: var(--white); line-height: 1.15;
  }
  .dest-mosaic-featured .dest-mosaic-name { font-size: 1.7rem; }
  .dest-mosaic-small .dest-mosaic-name { font-size: 1rem; }

  @media (max-width: 900px) {
    .dest-mosaic { grid-template-columns: 1fr; height: auto; }
    .dest-mosaic-featured { height: 280px; }
    .dest-mosaic-grid { grid-template-columns: 1fr 1fr; }
    .dest-mosaic-small { height: 160px; }
  }
  @media (max-width: 600px) {
    .dest-mosaic-grid { grid-template-columns: 1fr 1fr; }
    .dest-mosaic-small { height: 130px; }
  }

  /* ── PACKAGES ── */
  .packages { background: #F2EDE4; }
  .pkg-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 3.5rem;
    background: rgba(200,169,110,0.2);
  }
  .pkg-card {
    background: var(--white); position: relative;
    overflow: hidden; cursor: pointer;
  }
  .pkg-card-img {
    height: 240px; overflow: hidden;
  }
  .pkg-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s; display: block;
    filter: brightness(0.9);
  }
  .pkg-card:hover .pkg-card-img img { transform: scale(1.05); }
  .pkg-card-body { padding: 1.8rem; }
  .pkg-tag {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 0.6rem;
  }
  .pkg-title {
    font-family: var(--ff-display); font-size: 1.3rem; font-weight: 500;
    color: var(--forest); margin-bottom: 0.6rem; line-height: 1.2;
  }
  .pkg-desc {
    font-size: 0.85rem; color: var(--text-mid); line-height: 1.65;
    margin-bottom: 1.2rem;
  }
  .pkg-meta {
    display: flex; gap: 1rem; align-items: center;
    font-size: 0.75rem; color: var(--text-mid); margin-bottom: 1.2rem;
  }
  .pkg-meta span { display: flex; align-items: center; gap: 0.3rem; }
  .pkg-link {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--forest); text-decoration: none; font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.4rem;
    border-bottom: 1px solid var(--gold); padding-bottom: 0.1rem;
    transition: color 0.2s;
  }
  .pkg-link:hover { color: var(--gold); }

  /* ── ACCOMMODATION ── */
  .accommodation { background: var(--forest); }
  .accommodation .section-title { color: var(--white); }
  .accommodation .section-sub { color: rgba(255,255,255,0.6); }
  .accom-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2px; margin-top: 3.5rem; background: rgba(200,169,110,0.15);
  }
  .accom-card { position: relative; overflow: hidden; cursor: pointer; }
  .accom-card img {
    width: 100%; height: 100%; min-height: 280px;
    object-fit: cover; display: block; transition: transform 0.7s, filter 0.5s;
    filter: brightness(0.75);
  }
  .accom-card:hover img { transform: scale(1.05); filter: brightness(0.55); }
  .accom-card:first-child { grid-row: span 2; }
  .accom-card:first-child img { min-height: 580px; }
  .accom-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(26,46,26,0.9) 0%, transparent 100%);
  }
  .accom-type {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.3rem;
  }
  .accom-name {
    font-family: var(--ff-display); font-size: 1.2rem; font-weight: 400;
    color: var(--white);
  }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--ivory); }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3.5rem;
  }
  .testi-card {
    background: var(--white);
    padding: 2.2rem; border-left: 3px solid var(--gold);
  }
  .testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
  .testi-quote {
    font-family: var(--ff-display); font-size: 1.05rem;
    font-style: italic; font-weight: 400; line-height: 1.7;
    color: var(--forest); margin-bottom: 1.5rem;
  }
  .testi-author { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; color: var(--text-mid); }
  .testi-origin { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; }

  /* ── ABOUT ── */
  .about { background: var(--forest); padding: 7rem 8vw; }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .about .section-title { color: var(--white); }
  .about p {
    font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
  }
  .about-offices {
    display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2rem;
  }
  .about-office {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.82rem; color: rgba(255,255,255,0.65);
  }
  .about-office::before {
    content: ''; display: block; width: 6px; height: 6px;
    background: var(--gold); flex-shrink: 0;
  }
  .about-img-mosaic {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    height: 480px;
  }
  .about-img-mosaic img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .about-img-mosaic .tall { grid-row: span 2; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: 
      linear-gradient(rgba(26,46,26,0.82), rgba(26,46,26,0.82)),
      url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1600&q=80') center/cover fixed;
    padding: 8rem 8vw; text-align: center;
  }
  .cta-banner h2 {
    font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300; color: var(--white); margin-bottom: 1.2rem;
    line-height: 1.15;
  }
  .cta-banner h2 em { font-style: italic; color: var(--gold); }
  .cta-banner p {
    font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 520px;
    margin: 0 auto 2.5rem; line-height: 1.8;
  }

  /* ── CONTACT ── */
  .contact-section { background: #F2EDE4; padding: 7rem 8vw; }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  }
  .contact-details { display: flex; flex-direction: column; gap: 2rem; }
  .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
  .contact-icon {
    width: 44px; height: 44px; background: var(--forest);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); flex-shrink: 0; font-size: 1rem;
  }
  .contact-label {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.3rem;
  }
  .contact-value { font-size: 0.95rem; color: var(--forest); font-weight: 400; }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label {
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-mid); font-weight: 500;
  }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--white); border: 1px solid rgba(26,46,26,0.2);
    padding: 0.85rem 1rem; font-family: var(--ff-body); font-size: 0.9rem;
    color: var(--charcoal); outline: none; transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }

  /* ── FOOTER ── */
  /* ── FOOTER — white background, Dawn Safaris-style layout ── */
  footer {
    background: var(--ivory);
    padding: 4rem 8vw 0;
    border-top: 3px solid var(--forest);
  }
  .footer-brand-row {
    display: grid;
    grid-template-columns: 260px 1fr 200px;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .footer-brand-info { display: flex; flex-direction: column; gap: 1rem; }
  .footer-logo-img { 
    height: 120px; width: auto; object-fit: contain; display: block;
    background: var(--forest);
    padding: 10px 18px;
  }
  .footer-contact-info {
    display: flex; flex-direction: column; gap: 0.35rem;
  }
  .footer-contact-info a, .footer-contact-info span {
    font-size: 0.85rem; color: var(--text-mid); text-decoration: none;
    transition: color 0.2s; line-height: 1.5;
  }
  .footer-contact-info a:hover { color: var(--gold); }
  .footer-contact-info span { font-weight: 600; color: var(--charcoal); }
  .footer-cols {
    display: flex; gap: 3rem;
  }
  .footer-col h4 {
    font-family: var(--ff-body); font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
    font-weight: 700;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col ul li a {
    color: var(--text-mid); text-decoration: none; font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-follow h4 {
    font-family: var(--ff-body); font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
    font-weight: 700;
  }
  .footer-social-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
  .footer-social-btn {
    width: 38px; height: 38px; border: 1px solid rgba(0,0,0,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); font-size: 0.8rem; text-decoration: none;
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .footer-social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-bottom-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 0;
    font-size: 0.75rem; color: var(--text-mid);
  }
  .footer-payment { display: flex; gap: 0.5rem; align-items: center; }
  .footer-pay-badge {
    border: 1px solid rgba(0,0,0,0.15); padding: 0.25rem 0.7rem;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
    color: var(--text-mid); border-radius: 3px;
  }
  @media (max-width: 900px) {
    .footer-brand-row { grid-template-columns: 1fr; gap: 2rem; }
    .footer-cols { flex-wrap: wrap; gap: 2rem; }
    .footer-bottom-bar { flex-direction: column; gap: 0.8rem; text-align: center; }
  }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 56px; height: 56px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    animation: waPulse 3s ease-in-out infinite;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
  }
  .wa-float svg { width: 30px; height: 30px; }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    section { padding: 5rem 6vw; }
    .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .pkg-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .accom-grid { grid-template-columns: 1fr; }
    .accom-card:first-child { grid-row: span 1; }
    .accom-card:first-child img { min-height: 280px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .about-img-mosaic { height: 300px; }
    .nav-logo-wrap { width: 130px; margin-left: 60px; }
    .nav-right { padding: 0 5vw; }
    .hero-tab { min-width: 130px; padding: 0.8rem 1rem; }
    .hero-tab-popup { width: 220px; left: 50%; transform: translate(-50%, 8px); padding: 1.2rem 1.4rem; }
    .hero-tab:hover .hero-tab-popup, .hero-tab.popup-open .hero-tab-popup { transform: translate(-50%, 0); }
    .hero-content { padding-top: 7rem; }
  }
  @media (max-width: 600px) {
    .exp-card { width: 200px; height: 280px; }
    .dest-card { width: 240px; }
    .hero-ctas { flex-direction: column; }
  }
  /* Hide mobile drawer links — handled separately */
  .mobile-drawer-links { display: none; }

