/* ============================================================
   EAST AFRICA SAFARI GUIDE — COMPLETE STYLESHEET
   Design: Editorial · Clean · Centred at 1200px
   Updated: May 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,600&family=Barlow:wght@300;400;500;600&display=swap');

/* ——— DESIGN TOKENS ——— */
:root {
  --max:       1200px;
  --nav-h:     66px;

  /* Colours */
  --ink:       #1c1810;
  --ink-soft:  #3a3028;
  --ivory:     #f8f4ec;
  --paper:     #f4f1eb;
  --ruled:     #e0d9cc;
  --ochre:     #c17b2a;
  --ochre-lt:  #d4953f;
  --forest:    #1c2e20;
  --forest-lt: #2e4835;
  --rust:      #a0432a;
  --sky:       #4a8fa8;
  --sage:      #6a8c6a;
  --muted:     #7a6f62;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Barlow', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(28,24,16,0.08);
  --shadow-md:  0 4px 20px rgba(28,24,16,0.12);
  --shadow-lg:  0 8px 40px rgba(28,24,16,0.16);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
}


/* ——— RESET ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--serif); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ——— CONTAINER / CENTRING ——— */
.wrap,
.nav-inner,
.footer-inner,
.page-hero-inner,
.breadcrumb-inner,
.article-layout,
.section-inner,
.cta-banner-inner {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}


/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(12,20,12,0.97);
  backdrop-filter: blur(14px);
  display: flex; align-items: center;
  padding: 0 32px;
  z-index: 1000;
  border-bottom: 1px solid rgba(193,123,42,0.15);
  gap: 24px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 17px; font-weight: 600;
  color: var(--ivory); letter-spacing: 0.3px;
  white-space: nowrap; flex-shrink: 0;
  line-height: 1.1;
}
.nav-logo span { color: var(--ochre-lt); }

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

.nav-links > a,
.dropdown-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(248,244,236,0.6);
  padding: 8px 11px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
  user-select: none;
  cursor: pointer;
}
.nav-links > a:hover,
.dropdown-label:hover {
  color: var(--ivory);
  background: rgba(255,255,255,0.07);
}

.dropdown-arrow { font-size: 8px; opacity: 0.5; margin-left: 1px; }

/* CTA pill */
.nav-cta {
  background: var(--ochre) !important;
  color: var(--ivory) !important;
  padding: 9px 18px !important;
  border-radius: var(--r-sm);
  font-size: 10px !important;
  letter-spacing: 1.8px !important;
  font-weight: 600 !important;
  margin-left: 10px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--ochre-lt) !important;
  transform: translateY(-1px);
}

/* Dropdown container */
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/* Dropdown panel */
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 220px;
  background: rgba(8,16,8,0.98);
  border: 1px solid rgba(193,123,42,0.2);
  border-radius: var(--r-md);
  padding: 16px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 1100;
}

/* Wide 3-column dropdown */
.dropdown-menu.dropdown-wide {
  display: flex;
  min-width: 700px;
  padding: 22px 0;
}

/* Right-align last two dropdowns to avoid overflow */
.nav-dropdown:last-of-type .dropdown-menu,
.nav-dropdown:nth-last-of-type(2) .dropdown-menu {
  left: auto; right: 0;
}

/* Column inside wide dropdown */
.dropdown-col {
  flex: 1; padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,0.055);
}
.dropdown-col:last-child { border-right: none; }

/* Section heading inside dropdown */
.dropdown-group-head {
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--ochre-lt);
  padding-bottom: 8px; margin-bottom: 6px;
  border-bottom: 1px solid rgba(193,123,42,0.18);
}

/* Links inside dropdown */
.dropdown-menu a {
  display: block;
  font-size: 12px;
  color: rgba(248,244,236,0.68);
  padding: 6px 0;
  letter-spacing: 0.1px;
  line-height: 1.35;
  transition: color 0.15s, padding-left 0.15s;
}
.dropdown-menu a:hover { color: var(--ochre-lt); padding-left: 5px; }

/* Zanzibar single-col dropdown spacing */
.dropdown-menu:not(.dropdown-wide) a { padding: 7px 20px; }
.dropdown-menu:not(.dropdown-wide) a:hover { padding-left: 26px; }
.dropdown-menu:not(.dropdown-wide) .dropdown-group-head { padding: 2px 20px 8px; margin: 6px 0 4px; }

/* Hamburger button */
.hamburger {
  display: none;
  color: var(--ivory); padding: 6px;
  margin-left: 8px;
}


/* ——— MOBILE MENU ——— */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,12,6,0.99);
  overflow-y: auto;
  padding: 20px 28px 56px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); display: block; }

.mobile-close {
  display: flex; align-items: center; justify-content: flex-end;
  width: 100%; margin-bottom: 24px;
  color: rgba(248,244,236,0.5); font-size: 20px;
  padding: 4px 0;
}
.mobile-close:hover { color: var(--ivory); }

.mobile-section { margin-bottom: 24px; }

.mobile-section-head {
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ochre-lt);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(193,123,42,0.22);
}

.mobile-menu a {
  display: block;
  font-size: 14px; color: rgba(248,244,236,0.7);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--ochre-lt); }

/* Mobile CTA block */
.mobile-cta-block {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(193,123,42,0.22);
}
.mobile-cta-btn {
  display: block; width: 100%;
  background: var(--ochre); color: var(--ivory) !important;
  text-align: center; padding: 15px;
  border-radius: var(--r-sm);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 18px;
  transition: background 0.2s;
}
.mobile-cta-btn:hover { background: var(--ochre-lt); }

.mobile-contact-links { display: flex; flex-direction: column; gap: 12px; }
.mobile-contact-links a {
  font-size: 13px !important;
  color: rgba(248,244,236,0.55) !important;
  border-bottom: none !important;
  padding: 0 !important;
}
.mobile-contact-links a:hover { color: var(--ochre-lt) !important; }


/* ——— NAV RESPONSIVE ——— */
@media (max-width: 1140px) {
  .nav { padding: 0 20px; }
  .nav-links > .nav-dropdown:nth-child(n+5) { display: none; }
}
@media (max-width: 960px) {
  .nav-links > .nav-dropdown:nth-child(n+3) { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}


/* ============================================================
   PAGE HERO (all content pages)
   ============================================================ */

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
}

.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    155deg,
    rgba(10,18,10,0.78) 0%,
    rgba(10,18,10,0.48) 45%,
    rgba(10,18,10,0.72) 100%
  );
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.page-hero-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--ochre-lt); margin-bottom: 16px;
  opacity: 0.9;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; color: var(--ivory);
  line-height: 1.05; max-width: 800px;
  margin-bottom: 18px;
}
.page-hero h1 em { color: var(--ochre-lt); font-style: italic; }
.page-hero-desc {
  font-size: 16px; color: rgba(248,244,236,0.7);
  max-width: 580px; line-height: 1.75;
  font-weight: 300; margin-bottom: 24px;
}
.page-hero-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  display: inline-block;
  background: rgba(193,123,42,0.85);
  color: var(--ivory);
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px;
}
.hero-credit {
  position: absolute; bottom: 10px; right: 16px; z-index: 3;
  font-size: 9px; color: rgba(255,255,255,0.25);
  letter-spacing: 0.3px; pointer-events: none;
}


/* ——— BREADCRUMB ——— */
.breadcrumb {
  background: var(--ivory);
  border-bottom: 1px solid var(--ruled);
  padding: 10px 0;
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ochre); }
.breadcrumb a:hover { color: var(--ochre-lt); }
.breadcrumb span:not(:last-child) { opacity: 0.5; }


/* ============================================================
   ARTICLE LAYOUT (main content + sidebar)
   ============================================================ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px; align-items: start;
  padding-top: 48px; padding-bottom: 64px;
}

/* Article body */
.article-body { min-width: 0; }

.content h2 {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: var(--forest); margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ochre);
  line-height: 1.2;
}
.content h2:first-child { margin-top: 0; }

.content h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--ink); margin: 28px 0 12px;
}

.content p {
  font-size: 15px; line-height: 1.8;
  color: var(--ink-soft); margin-bottom: 16px;
}
.content p strong { color: var(--ink); font-weight: 600; }

.content ul, .content ol {
  padding-left: 20px; margin-bottom: 20px;
}
.content ul { list-style: disc; }
.content ol { list-style: decimal; }
.content li {
  font-size: 15px; line-height: 1.75;
  color: var(--ink-soft); margin-bottom: 8px;
}
.content a {
  color: var(--ochre); border-bottom: 1px solid rgba(193,123,42,0.3);
  transition: color 0.15s, border-color 0.15s;
}
.content a:hover { color: var(--ochre-lt); border-color: var(--ochre-lt); }


/* ——— DATA TABLE ——— */
.data-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0; font-size: 13px;
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-md);
  overflow: hidden;
}
.data-table thead tr { background: var(--forest); color: var(--ivory); }
.data-table thead th {
  padding: 12px 14px; text-align: left;
  font-family: var(--sans); font-weight: 600;
  font-size: 11px; letter-spacing: 0.8px; text-transform: uppercase;
}
.data-table tbody tr { background: #fff; border-bottom: 1px solid var(--ruled); }
.data-table tbody tr:nth-child(even) { background: var(--ivory); }
.data-table tbody tr:hover { background: #f0ece3; }
.data-table td {
  padding: 11px 14px; color: var(--ink-soft);
  vertical-align: top; line-height: 1.5;
}
.data-table td strong { color: var(--ink); }

/* Table cell colour helpers */
.td-green { color: #2a6e2a !important; font-weight: 600; }
.td-gold  { color: #a06820 !important; font-weight: 600; }
.td-red   { color: #8c2a1a !important; font-weight: 600; }


/* ——— INFO BOX ——— */
.info-box {
  background: #faf6ee;
  border-left: 4px solid var(--ochre);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 20px; margin: 24px 0;
}
.info-box.green { border-color: var(--sage); background: #f2f7f0; }
.info-box.red   { border-color: var(--rust); background: #fdf4f2; }
.info-box > strong {
  display: block; font-family: var(--sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.info-box p { font-size: 14px; margin: 0; color: var(--ink-soft); }


/* ——— FAQ ACCORDION ——— */
.faq-item {
  border-bottom: 1px solid var(--ruled);
  margin-bottom: 0;
}
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 0; text-align: left;
  font-family: var(--serif); font-size: 17px;
  font-weight: 600; color: var(--forest);
  background: none; cursor: pointer;
  transition: color 0.2s;
  gap: 12px;
}
.faq-q:hover { color: var(--ochre); }
.faq-icon {
  font-size: 20px; font-weight: 300;
  color: var(--ochre); flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-a {
  display: none; padding: 0 0 18px;
}
.faq-a.open { display: block; }
.faq-a p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }


/* ——— SIDEBAR ——— */
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }

.cta-sidebar {
  background: var(--forest);
  border-radius: var(--r-md);
  padding: 28px 24px; margin-bottom: 24px;
  text-align: center;
}
.cta-sidebar h4 {
  font-family: var(--serif); font-size: 20px;
  font-weight: 600; color: var(--ivory); margin-bottom: 10px;
}
.cta-sidebar p { font-size: 13px; color: rgba(248,244,236,0.65); margin-bottom: 18px; line-height: 1.6; }

.btn-wa-sidebar {
  display: block; width: 100%;
  background: #25d366; color: #fff;
  padding: 12px 16px; border-radius: var(--r-sm);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 10px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer; border: none;
}
.btn-wa-sidebar:hover { background: #1ab954; transform: translateY(-1px); }

.btn-email-sidebar {
  display: block; width: 100%;
  background: rgba(248,244,236,0.12); color: var(--ivory);
  border: 1px solid rgba(248,244,236,0.2);
  padding: 11px 16px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  text-align: center;
  transition: background 0.2s;
}
.btn-email-sidebar:hover { background: rgba(248,244,236,0.2); }

.sidebar-card {
  background: #fff;
  border: 1px solid var(--ruled);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-card-head {
  background: var(--forest); color: var(--ivory);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 18px;
}
.sidebar-card-body { padding: 16px 18px; }
.sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.sidebar-links a {
  font-size: 13px; color: var(--ink-soft);
  padding: 7px 0; border-bottom: 1px solid var(--ruled);
  transition: color 0.15s, padding-left 0.15s;
  display: block; line-height: 1.4;
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--ochre); padding-left: 4px; }


/* ——— CTA BANNER ——— */
.cta-banner {
  background: var(--forest);
  padding: 60px 24px;
}
.cta-banner-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner-body h2 {
  font-family: var(--serif); font-size: clamp(26px,3.5vw,40px);
  font-weight: 300; color: var(--ivory); margin-bottom: 10px;
}
.cta-banner-body h2 em { color: var(--ochre-lt); font-style: italic; }
.cta-banner-body p { font-size: 15px; color: rgba(248,244,236,0.65); max-width: 500px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-white {
  display: inline-block;
  background: var(--ivory); color: var(--forest);
  padding: 14px 28px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: #fff; transform: translateY(-2px); }

.btn-wa-banner {
  display: inline-block;
  background: #25d366; color: #fff;
  padding: 14px 28px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer; border: none;
}
.btn-wa-banner:hover { background: #1ab954; transform: translateY(-2px); }


/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: #0a1409;
  border-top: 1px solid rgba(193,123,42,0.2);
}

.footer-inner {
  padding-top: 64px;
  padding-bottom: 0;
}

/* 4-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 300;
  color: var(--ivory); line-height: 1.1;
  margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--ochre-lt); }

.footer-brand > p {
  font-size: 13px; color: rgba(248,244,236,0.5);
  line-height: 1.75; max-width: 280px;
  margin-bottom: 24px;
}

/* Contact in footer */
.footer-contact {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-wa,
.footer-email {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  transition: color 0.2s;
}
.footer-wa {
  color: #4ade80;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  padding: 10px 16px; border-radius: var(--r-sm);
  letter-spacing: 0.3px;
}
.footer-wa:hover { color: #6ee7a0; background: rgba(37,211,102,0.15); }
.footer-wa::before { content: '📱'; font-size: 14px; }

.footer-email {
  color: rgba(248,244,236,0.55);
  border-bottom: 1px solid transparent;
  padding: 4px 0;
}
.footer-email:hover { color: var(--ochre-lt); border-bottom-color: var(--ochre-lt); }
.footer-email::before { content: '✉'; font-size: 13px; }

/* Link columns */
.footer-col h4 {
  font-family: var(--sans);
  font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ochre-lt);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(193,123,42,0.2);
}

.footer-col ul { display: flex; flex-direction: column; gap: 1px; }

.footer-col a {
  display: block; font-size: 13px;
  color: rgba(248,244,236,0.45);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s, padding-left 0.15s;
  line-height: 1.35;
}
.footer-col a:hover { color: var(--ochre-lt); padding-left: 5px; }
.footer-col li:last-child a { border-bottom: none; }

/* Bottom bar */
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  font-size: 11px; color: rgba(248,244,236,0.25);
  letter-spacing: 0.3px;
}
.footer-bottom a {
  color: rgba(193,123,42,0.65);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--ochre-lt); }


/* ============================================================
   HOMEPAGE SPECIFIC
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--forest);
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  display: block; filter: brightness(0.38);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(193,123,42,0.2), transparent 70%),
    linear-gradient(160deg, rgba(12,22,14,0.55) 0%, rgba(16,28,16,0.2) 50%, rgba(12,22,14,0.65) 100%);
}

.hero-svg { position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none; z-index: 1; }

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto; width: 100%;
  padding: 100px 24px 80px;
  align-self: center;
}

.hero-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--ochre-lt);
  margin-bottom: 22px; opacity: 0;
  animation: riseIn 1s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300; color: var(--ivory);
  line-height: 0.92; margin-bottom: 28px;
  opacity: 0; animation: riseIn 1s ease 0.5s forwards;
}
.hero-title em { color: var(--ochre-lt); font-style: italic; }
.hero-desc {
  font-size: 16px; color: rgba(248,244,236,0.62);
  max-width: 500px; line-height: 1.8; font-weight: 300;
  margin-bottom: 44px;
  opacity: 0; animation: riseIn 1s ease 0.7s forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: riseIn 1s ease 0.9s forwards;
}
.btn-primary {
  background: var(--ochre); color: var(--ivory);
  padding: 14px 30px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--ochre-lt); transform: translateY(-2px); }
.btn-outline-light {
  border: 1px solid rgba(248,244,236,0.35); color: rgba(248,244,236,0.75);
  padding: 13px 30px; border-radius: var(--r-sm);
  font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
  font-weight: 500; transition: border-color 0.3s, color 0.3s;
  display: inline-block; background: none;
}
.btn-outline-light:hover { border-color: var(--ochre-lt); color: var(--ivory); }

/* Hero stats bar */
.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4,1fr);
  background: rgba(14,22,14,0.75); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(193,123,42,0.15);
  max-width: 100%;
}
.hero-stat {
  padding: 22px 28px;
  border-right: 1px solid rgba(193,123,42,0.12);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300; color: var(--ochre-lt);
  line-height: 1; margin-bottom: 4px;
}
.stat-lbl {
  font-size: 10px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(248,244,236,0.4);
}

/* Destination cards */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.dest-card {
  position: relative; overflow: hidden;
  min-height: 280px; display: block;
  cursor: pointer;
}
.dest-bg {
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.dest-card:hover .dest-bg { transform: scale(1.06); }
.dest-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: filter 0.4s;
}
.dest-card:hover .dest-bg img { filter: brightness(0.45); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,14,8,0.82) 100%);
  z-index: 1;
}

/* CSS colour fallbacks if image fails */
.dest-tz .dest-bg { background: linear-gradient(145deg, #5c3d20, #3d2810 50%, #8b5e30); }
.dest-ke .dest-bg { background: linear-gradient(145deg, #3d5820, #2a4015 50%, #6b8b35); }
.dest-ug .dest-bg { background: linear-gradient(145deg, #1e3c30, #152b22 50%, #3a6050); }
.dest-rw .dest-bg { background: linear-gradient(145deg, #3a2840, #281c2e 50%, #5c4070); }
.dest-zz .dest-bg { background: linear-gradient(145deg, #1a4560, #0e2e42 50%, #2a6888); }

.dest-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 20px;
}
.dest-flag { font-size: 22px; display: block; margin-bottom: 6px; }
.dest-name {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  color: var(--ivory); line-height: 1.1; margin-bottom: 4px;
}
.dest-sub {
  font-size: 10px; letter-spacing: 0.8px;
  color: rgba(248,244,236,0.55); line-height: 1.4;
  margin-bottom: 10px;
}
.dest-price {
  display: inline-block;
  background: rgba(193,123,42,0.85); color: var(--ivory);
  font-size: 10px; letter-spacing: 1px; padding: 4px 10px;
  border-radius: 2px; font-weight: 600;
}

/* Homepage sections */
.section { padding: 72px 0; }
.section-inner { }
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.eyebrow-line {
  width: 32px; height: 1px; background: var(--ochre);
}
.eyebrow-text {
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ochre);
}
.section-heading {
  font-family: var(--serif); font-size: clamp(28px,4vw,48px);
  font-weight: 300; color: var(--ink); line-height: 1.1;
  margin-bottom: 40px;
}
.section-heading em { color: var(--ochre); font-style: italic; }


/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.mc { display: flex; align-items: center; gap: 4px; }
.mc-label { font-size: 11px; color: var(--muted); }
.mc-stars { color: var(--ochre); font-size: 12px; }
.mc-peak { font-size: 10px; color: var(--rust); font-weight: 600; letter-spacing: 0.5px; }

/* Tab buttons */
.tab-btn {
  padding: 11px 22px; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; color: var(--muted);
  border: none; background: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  white-space: nowrap; transition: color 0.2s, border-color 0.2s;
  font-family: var(--sans);
}
.tab-btn.active { color: var(--ochre); border-bottom-color: var(--ochre); }
.tab-btn:hover { color: var(--ink); }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:last-child { grid-column: 1 / -1; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-content { padding: 60px 20px 60px; }
  .cta-banner-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand > p { max-width: 100%; }
  .wrap, .footer-inner, .section-inner,
  .page-hero-inner, .breadcrumb-inner,
  .article-layout, .cta-banner-inner { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:last-child { grid-column: auto; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}


/* ——— ANIMATIONS ——— */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   NAV INNER CENTERING
   The nav content is constrained to --max but the bar spans full width
   ============================================================ */

.nav {
  padding: 0;
}
.nav-logo {
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
}
.nav-links {
  margin-right: max(24px, calc((100vw - var(--max)) / 2));
}

