:root {
  --ink: #22362e;
  --deep: #173e32;
  --leaf: #2e5c48;
  --moss: #6f7f52;
  --clay: #ad7229;
  --sand: #f3efe7;
  --paper: #fffaf1;
  --line: rgba(34, 54, 46, 0.14);
  --shadow: 0 22px 70px rgba(24, 46, 38, 0.22);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8f6f0;
  font-family: var(--sans);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
h1,
h2,
h3,
p,
span,
strong,
small {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 12px clamp(20px, 6vw, 120px);
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 166px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  font-size: 14px;
  font-weight: 650;
  color: #385448;
}

.nav-links a {
  padding: 10px 0;
}

.nav-cta,
.primary-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.primary-btn {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 14px 32px rgba(23, 62, 50, 0.18);
}

.nav-cta:hover,
.primary-btn:hover,
.light-btn:hover {
  transform: translateY(-2px);
}

.light-btn {
  color: #16352b;
  background: #f4dfb2;
}

.nav-cta svg,
.primary-btn svg,
.light-btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("https://www.bookmeafrica.com/wp-content/uploads/2026/05/6037.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 42, 35, 0.86) 0%, rgba(22, 42, 35, 0.58) 39%, rgba(22, 42, 35, 0.1) 72%),
    linear-gradient(0deg, rgba(11, 23, 19, 0.32), rgba(11, 23, 19, 0.04));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: center;
  gap: clamp(34px, 7vw, 110px);
  min-height: 790px;
  padding: 72px clamp(20px, 8vw, 150px);
}

.hero-copy,
.hero-form,
.quote-copy,
.quote-form,
.safari-item,
.experience-card,
.camp-card,
.steps article,
.final-cta > div {
  min-width: 0;
}

.hero-copy {
  max-width: 720px;
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #f5deb0;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(39px, 5.25vw, 81px);
  line-height: 0.93;
}

h1 span,
h2 span {
  display: block;
  color: #e6c486;
  font-style: italic;
}

.hero-lede {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 28px 0;
}

.trust-row span,
.mini-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
}

.trust-row svg,
.mini-proof svg {
  width: 16px;
  height: 16px;
  color: #e6c486;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

.hero-form,
.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-form {
  padding: 28px;
}

.form-kicker {
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-form h2 {
  margin: 6px 0 8px;
  font-size: 34px;
  line-height: 1.05;
}

.hero-form p,
.quote-copy p,
.section-intro p,
.muted,
.steps p,
.final-cta p {
  color: #64736b;
  line-height: 1.7;
}

label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #263d34;
  font-size: 13px;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8d1c4;
  border-radius: 5px;
  background: #fff;
  color: #21372f;
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(173, 114, 41, 0.13);
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
  color: #42584f;
  font-size: 13px;
  font-weight: 750;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  accent-color: var(--clay);
  padding: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid.compact {
  gap: 12px;
}

.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-form .primary-btn {
  width: 100%;
  margin-top: 20px;
  background: var(--clay);
  box-shadow: 0 14px 26px rgba(173, 114, 41, 0.18);
}

.hero-form small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  color: #738078;
  font-weight: 650;
}

.hero-form small svg {
  width: 14px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 26px clamp(20px, 8vw, 150px);
  background: #ebe8df;
}

.section,
.camps-section,
.dark-section,
.quote-band,
.final-cta,
.site-footer {
  position: relative;
  z-index: 2;
}

.proof-strip div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: center;
}

.proof-strip svg {
  grid-row: span 2;
  width: 26px;
  color: var(--clay);
}

.proof-strip strong {
  font-size: 13px;
}

.proof-strip span {
  color: #6b766f;
  font-size: 12px;
}

.section {
  padding: 92px clamp(20px, 8vw, 150px);
}

.section-intro {
  max-width: 660px;
  margin-bottom: 38px;
}

.section-intro.narrow {
  max-width: 450px;
}

.section h2,
.quote-band h2,
.final-cta h2,
.dark-section h2,
.camps-section h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
}

.section h2 span,
.quote-band h2 span,
.final-cta h2 span,
.dark-section h2 span,
.camps-section h2 span {
  color: #7b8a61;
}

.safari-layout {
  display: grid;
  grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}

.feature-card {
  position: sticky;
  top: 100px;
  overflow: hidden;
  min-height: 660px;
  border-radius: 8px;
  background: #12382d;
}

.feature-card img {
  width: 100%;
  height: 660px;
  object-fit: cover;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 34, 28, 0.9), rgba(13, 34, 28, 0.05) 56%);
}

.feature-card div {
  position: absolute;
  inset: auto 26px 26px;
  z-index: 1;
  color: #fff;
}

.feature-card p {
  margin-bottom: 10px;
  color: #f1d298;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 330px;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.08;
}

.safari-list {
  padding-top: 36px;
}

.safari-list .muted {
  max-width: 520px;
  margin-left: auto;
  margin-bottom: 26px;
}

.safari-item {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.safari-item:last-child {
  border-bottom: 1px solid var(--line);
}

.safari-item > span {
  color: #9f8c68;
  font-weight: 800;
}

.safari-item small {
  color: #a37439;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.safari-item strong {
  display: block;
  margin: 6px 0;
  font-family: var(--serif);
  font-size: 28px;
}

.safari-item p {
  margin: 0;
  color: #6b766f;
  line-height: 1.55;
}

.safari-item svg {
  color: #789071;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(320px, 640px) minmax(260px, 430px);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
  margin-bottom: 38px;
}

.split-heading p:last-child {
  color: #64736b;
  line-height: 1.7;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.experience-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
}

.experience-card.large {
  grid-column: span 2;
  min-height: 500px;
}

.experience-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 450ms ease;
}

.experience-card:hover img {
  transform: scale(1.04);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 43, 35, 0.92), rgba(18, 43, 35, 0.08) 58%);
}

.experience-card > div {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
}

.experience-card span,
.camp-card small {
  display: block;
  margin-bottom: 9px;
  color: #e6c486;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.experience-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.08;
}

.experience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.experience-card.accent {
  display: flex;
  align-items: end;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(173, 114, 41, 0.96), rgba(23, 62, 50, 0.96)),
    url("https://www.bookmeafrica.com/wp-content/uploads/2026/05/16548.jpg") center / cover;
}

.experience-card.accent::after {
  display: none;
}

.experience-card.accent > div {
  position: static;
}

.text-link.dark {
  margin-top: 20px;
  color: #fff;
}

.camps-section {
  padding: 92px clamp(20px, 8vw, 150px);
  background: #f0ebe1;
}

.camps-section .section-intro {
  max-width: 760px;
}

.camp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.camp-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(34, 54, 46, 0.09);
}

.camp-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.camp-card div {
  padding: 24px;
}

.camp-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.08;
}

.camp-card p {
  margin-bottom: 0;
  color: #64736b;
  line-height: 1.65;
}

.camp-card.cta-card {
  display: flex;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(19, 55, 44, 0.96), rgba(19, 55, 44, 0.74)),
    url("https://www.bookmeafrica.com/wp-content/uploads/2026/06/NPV04366.jpg") center / cover;
}

.camp-card.cta-card p {
  color: rgba(255, 255, 255, 0.78);
}

.camp-card.cta-card .light-btn {
  margin-top: 22px;
}

.dark-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(42px, 8vw, 130px);
  align-items: center;
  padding: 92px clamp(20px, 8vw, 150px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 62, 48, 0.96), rgba(20, 62, 48, 0.9)),
    url("https://www.bookmeafrica.com/wp-content/uploads/2026/05/Asanja-Grumeti-04-scaled.jpg") center / cover;
}

.dark-copy {
  max-width: 590px;
}

.dark-copy .eyebrow {
  color: #e6c486;
}

.dark-copy p,
.check-list span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 32px 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
}

.check-list svg {
  color: #e6c486;
}

.check-list strong {
  display: block;
  margin-bottom: 5px;
}

.image-frame {
  position: relative;
  margin: 0;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3.7;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.image-frame figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 5px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(18, 43, 35, 0.78);
  font-size: 12px;
  font-weight: 750;
}

.image-frame svg {
  width: 14px;
}

.steps-section {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(28px, 8vw, 110px);
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.steps span {
  display: block;
  margin-bottom: 22px;
  color: #b6884b;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.steps h3 {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.12;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 760px);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
  padding: 96px clamp(20px, 8vw, 150px);
  background: #ecefe8;
}

.quote-copy {
  position: sticky;
  top: 108px;
}

.mini-proof {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.quote-form {
  padding: clamp(22px, 4vw, 42px);
}

.budget-label {
  gap: 12px;
}

.range-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

input[type="range"] {
  accent-color: var(--clay);
  padding: 0;
}

output {
  min-width: 116px;
  color: var(--deep);
  font-weight: 850;
}

.wide {
  width: 100%;
  margin-top: 22px;
}

.form-note {
  margin: 14px 0 0;
  color: #7c857f;
  text-align: center;
  font-size: 13px;
  font-weight: 650;
}

.form-note.success {
  color: var(--deep);
}

.form-note.error {
  color: #a53d2c;
}

.primary-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 72px clamp(20px, 8vw, 150px);
  background: var(--paper);
}

.final-cta h2 {
  margin-bottom: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 8vw, 150px);
  color: #607068;
  background: #f2eee4;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer img {
  width: 154px;
}

.site-footer span {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1050px) {
  .hero-inner,
  .safari-layout,
  .split-heading,
  .dark-section,
  .steps-section,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
  }

  .hero-inner {
    display: block;
    align-items: start;
    min-height: auto;
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .hero-copy {
    margin-bottom: 34px;
  }

  .hero-form,
  .quote-copy,
  .feature-card {
    position: static;
  }

  .hero-form {
    width: 100%;
    max-width: 560px;
  }

  .proof-strip,
  .steps,
  .experience-grid,
  .camp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 68px;
  }

  .brand img {
    width: 140px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-inner {
    gap: 28px;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.6;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .text-link {
    align-items: flex-start;
  }

  .hero-form {
    padding: 22px;
  }

  .hero-form h2 {
    font-size: 30px;
  }

  .form-grid,
  .form-grid.three,
  .proof-strip,
  .steps,
  .experience-grid,
  .camp-grid {
    grid-template-columns: 1fr;
  }

  .experience-card,
  .experience-card.large {
    grid-column: auto;
    min-height: 380px;
  }

  .proof-strip {
    gap: 22px;
  }

  .section,
  .camps-section,
  .dark-section,
  .quote-band,
  .final-cta {
    padding: 64px 18px;
  }

  .section h2,
  .quote-band h2,
  .final-cta h2,
  .dark-section h2,
  .camps-section h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.08;
  }

  .safari-item strong,
  .experience-card h3,
  .camp-card h3,
  .feature-card h3 {
    font-size: 26px;
  }

  .feature-card,
  .feature-card img {
    min-height: 500px;
    height: 500px;
  }

  .safari-item {
    grid-template-columns: 34px 1fr;
  }

  .safari-item svg {
    display: none;
  }

  .range-wrap {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
