:root {
  --sand: #dfc79f;
  --gold: #be8f3d;
  --earth: #4d341f;
  --forest: #294635;
  --mist: #c8bea6;
  --ink: #17120b;
  --sunset: #a76a2a;
  --clay: #7e4f26;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  position: relative;
  overflow-x: hidden;
  perspective: 1300px;
  --mx: 0;
  --my: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(190, 143, 61, 0.2), transparent 40%),
    radial-gradient(circle at 80% 35%, rgba(41, 70, 53, 0.17), transparent 45%),
    linear-gradient(132deg, #d7bd92 0%, #edd8b4 46%, #c5b391 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
}

body::before {
  width: 42vw;
  height: 42vw;
  min-width: 280px;
  min-height: 280px;
  top: -12vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(193, 140, 57, 0.45) 0%, rgba(193, 140, 57, 0) 68%);
  transform: translate3d(calc(var(--mx) * -10px), calc(var(--my) * -12px), 0);
}

body::after {
  width: 34vw;
  height: 34vw;
  min-width: 240px;
  min-height: 240px;
  bottom: -11vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(37, 74, 55, 0.42) 0%, rgba(37, 74, 55, 0) 70%);
  transform: translate3d(calc(var(--mx) * 8px), calc(var(--my) * 10px), 0);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 0.8rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  background: rgba(34, 24, 15, 0.78);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 230, 183, 0.28);
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.2rem;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--white);
}

.main-nav a {
  position: relative;
  opacity: 0.9;
  transition: opacity 220ms ease;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f6d18e, #be8f3d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  padding: 0.8rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 8px 18px rgba(62, 41, 16, 0.26);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 24px rgba(62, 41, 16, 0.3);
}

.btn-small {
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  min-height: 95vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(63, 39, 19, 0.25);
  transform-style: preserve-3d;
}

.hero-video-slider {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: saturate(1.14) contrast(1.12) brightness(0.93);
}

.hero-video.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 16, 10, 0.18), rgba(21, 16, 10, 0.78)),
    radial-gradient(circle at 35% 30%, rgba(167, 106, 42, 0.2), rgba(18, 18, 18, 0.74));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero::before {
  width: 340px;
  height: 340px;
  right: -70px;
  top: 22%;
  background: radial-gradient(circle, rgba(230, 177, 85, 0.44) 0%, rgba(230, 177, 85, 0) 70%);
  transform: translate3d(calc(var(--mx) * -18px), calc(var(--my) * -16px), 120px);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: 7%;
  background: radial-gradient(circle, rgba(56, 107, 81, 0.33) 0%, rgba(56, 107, 81, 0) 72%);
  transform: translate3d(calc(var(--mx) * 16px), calc(var(--my) * 14px), 90px);
}

.hero-content {
  position: relative;
  width: min(860px, 92%);
  padding: 7rem 2rem 4rem;
  color: var(--white);
  text-align: center;
  transform: translateZ(60px);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  animation: fadeHeroIn 900ms ease 120ms both;
}

@keyframes fadeHeroIn {
  from {
    opacity: 0;
    transform: translateY(18px) translateZ(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(60px);
  }
}

.hero-content h1,
.section-head h2,
.stats h2,
.cta-panel h2 {
  font-family: "Cinzel", serif;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0.2rem 0 1rem;
}

.hero-content p {
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.stats {
  margin: -2.6rem auto 1.5rem;
  width: min(1040px, 92%);
  background: linear-gradient(180deg, #fff9ec 0%, #f4e6c8 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(167, 106, 42, 0.25);
}

.stats article {
  padding: 1.2rem;
  text-align: center;
}

.stats h2 {
  margin: 0;
  color: var(--forest);
}

.section {
  width: min(1120px, 94%);
  margin: 3.5rem auto;
  padding: 1.2rem 1rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(145deg, rgba(255, 247, 233, 0.72), rgba(228, 206, 171, 0.5));
  border: 1px solid rgba(117, 78, 35, 0.14);
  position: relative;
  transform-style: preserve-3d;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 42%);
  transform: translateZ(2px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  margin: 0.3rem 0 0.7rem;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  color: var(--earth);
}

.section-head p {
  margin: 0;
  line-height: 1.65;
}

.africa-intro {
  margin-top: 2rem;
}

.map-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(190, 143, 61, 0.18), transparent 45%),
    linear-gradient(150deg, rgba(255, 245, 225, 0.92), rgba(223, 196, 151, 0.82));
}

.map-wrap {
  margin-top: 1rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(112, 74, 35, 0.28);
  overflow: hidden;
  background: linear-gradient(180deg, #f7e8ca 0%, #e5cfa5 100%);
  box-shadow:
    0 18px 30px rgba(56, 35, 13, 0.22),
    inset 0 0 0 1px rgba(255, 248, 234, 0.38);
}

.map-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.featured-video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 1.4rem;
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(41, 70, 53, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 247, 233, 0.78), rgba(214, 188, 147, 0.7));
}

.featured-video-copy h2 {
  margin: 0.25rem 0 0.8rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--earth);
}

.featured-video-copy p {
  margin: 0 0 1.3rem;
  line-height: 1.7;
}

.featured-video-frame {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(103, 69, 31, 0.22);
  background: linear-gradient(180deg, #1f1811 0%, #3a2b1b 100%);
  box-shadow:
    0 20px 34px rgba(58, 37, 15, 0.22),
    inset 0 0 0 1px rgba(255, 239, 210, 0.08);
}

.featured-video-frame video {
  display: block;
  width: 100%;
  min-height: 360px;
  background: #000;
}

.alt {
  background:
    linear-gradient(180deg, rgba(255, 246, 226, 0.82), rgba(213, 193, 157, 0.92)),
    repeating-linear-gradient(45deg, rgba(78, 52, 24, 0.03) 0 6px, transparent 6px 14px);
  padding: 2.1rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(103, 69, 31, 0.2);
}

.experience-grid,
.trip-grid,
.video-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.experience-card,
.trip-card,
.testimonial-grid blockquote {
  position: relative;
  background: linear-gradient(180deg, #fffdf7, #f2e3c4);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 14px 24px rgba(58, 37, 15, 0.18),
    0 4px 0 rgba(102, 68, 29, 0.1);
  transform-style: preserve-3d;
  transition: transform 320ms ease, box-shadow 320ms ease;
  isolation: isolate;
}

.experience-card:hover,
.trip-card:hover,
.testimonial-grid blockquote:hover,
.destination-card:hover,
.photo-strip img:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-2deg);
  box-shadow:
    0 20px 34px rgba(58, 37, 15, 0.26),
    0 8px 0 rgba(102, 68, 29, 0.12);
}

.experience-card img,
.trip-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: translateZ(18px);
  filter: contrast(1.04) saturate(1.06) brightness(1);
  transition: transform 420ms ease, filter 420ms ease;
}

.experience-card:hover img,
.trip-card:hover img {
  transform: translateZ(28px) scale(1.04);
  filter: contrast(1.06) saturate(1.08) brightness(1.01);
}

.experience-card div,
.trip-body {
  padding: 1rem;
}

.trip-body a {
  color: var(--forest);
  font-weight: 700;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.destination-card {
  position: relative;
  min-height: 230px;
  border-radius: var(--radius);
  overflow: hidden;
  background-image: linear-gradient(160deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65)), var(--img);
  background-size: cover;
  background-position: center;
  box-shadow:
    0 14px 28px rgba(45, 28, 12, 0.32),
    inset 0 -40px 70px rgba(0, 0, 0, 0.3);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.destination-card::after {
  content: none;
}

.experience-card,
.trip-card,
.destination-card,
.map-wrap,
.video-grid video {
  will-change: transform;
}

.video-grid {
  position: relative;
}

.destination-card h3 {
  position: absolute;
  bottom: 0.8rem;
  left: 1rem;
  color: var(--white);
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
}

.video-grid {
  grid-template-columns: repeat(2, 1fr);
}

.video-grid video {
  width: 100%;
  border-radius: var(--radius);
  background: #000;
  min-height: 220px;
  border: 1px solid rgba(190, 143, 61, 0.45);
  box-shadow: 0 14px 26px rgba(30, 19, 8, 0.34);
}

.photo-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.photo-strip img {
  position: relative;
  width: 100%;
  border-radius: 12px;
  height: 150px;
  object-fit: cover;
  border: 1px solid rgba(190, 143, 61, 0.44);
  box-shadow: 0 12px 20px rgba(41, 26, 10, 0.28);
  filter: contrast(1.03) saturate(1.05);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.photo-strip img:hover {
  filter: contrast(1.06) saturate(1.08);
  transform: translateY(-6px) rotateX(4deg) rotateY(-3deg);
}

.map-wrap {
  position: relative;
}

.map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 237, 202, 0.3), transparent 35%),
    linear-gradient(145deg, rgba(33, 62, 49, 0.08), rgba(143, 92, 34, 0.12));
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 1.2rem;
  line-height: 1.7;
}

.testimonial-grid cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  color: var(--forest);
  font-weight: 700;
}

.cta {
  margin-bottom: 5rem;
}

.contact-page .cta {
  margin-top: 6.4rem;
  margin-bottom: 2.5rem;
}

.contact-page main {
  min-height: calc(100vh - 160px);
}

.contact-page .cta-panel {
  max-width: 980px;
  margin: 0 auto;
}

.cta-panel {
  text-align: center;
  background:
    linear-gradient(135deg, #3d2a18, #5b3f22 55%, #2f4a39),
    radial-gradient(circle at 20% 30%, rgba(190, 143, 61, 0.2), transparent 50%);
  color: var(--white);
  padding: 2.4rem 1.3rem;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(233, 196, 130, 0.34);
}

.cta-panel p {
  max-width: 660px;
  margin: 0 auto 1.3rem;
  line-height: 1.6;
}

.enquiry-form {
  margin-top: 1rem;
}

.form-grid {
  text-align: left;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  font: inherit;
}

.form-grid select option {
  color: #1e1e1e;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
}

.enquiry-form.sending .btn {
  pointer-events: none;
  opacity: 0.85;
}

.site-footer {
  border-top: 1px solid rgba(72, 44, 17, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 3%;
  font-size: 0.9rem;
  background: linear-gradient(180deg, rgba(234, 219, 188, 0.8), rgba(209, 186, 147, 0.85));
}

@keyframes floatDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.map-wrap,
.stats,
.cta-panel {
  animation: floatDrift 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .map-wrap,
  .stats,
  .cta-panel {
    animation: none;
  }

  body::before,
  body::after,
  .hero::before,
  .hero::after {
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .featured-video-section {
    grid-template-columns: 1fr;
  }

  .experience-grid,
  .destination-grid,
  .trip-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    position: absolute;
    top: 88px;
    left: 1rem;
    right: 1rem;
    background: rgba(24, 22, 18, 0.95);
    border-radius: 12px;
    padding: 0.8rem;
    flex-direction: column;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-header .btn-small {
    display: none;
  }
}

@media (max-width: 640px) {
  .featured-video-frame video {
    min-height: 240px;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .experience-grid,
  .destination-grid,
  .trip-grid,
  .video-grid,
  .testimonial-grid,
  .photo-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 8.3rem;
  }

  .alt {
    padding: 1rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
