/* PlanYourSafari.com premium static website */
:root {
  --charcoal: #171512;
  --charcoal-2: #242018;
  --olive: #4e5a3a;
  --olive-dark: #303724;
  --gold: #c99a45;
  --gold-dark: #a87827;
  --sand: #f3e7d0;
  --ivory: #fffdf7;
  --terracotta: #a85f3e;
  --muted: #766d5f;
  --line: rgba(23, 21, 18, .14);
  --shadow: 0 24px 70px rgba(23, 21, 18, .20);
  --radius: 22px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 7vw;
  background: rgba(255, 253, 247, .92);
  border-bottom: 1px solid rgba(23, 21, 18, .08);
  backdrop-filter: blur(18px);
}

.brand img { width: 230px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--gold-dark); }
.subtle-link { opacity: .75; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.whatsapp-mini {
  font-weight: 800;
  color: var(--olive);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 16px 30px rgba(201, 154, 69, .28);
}
.btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.06);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--ivory);
}
.full { width: 100%; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--charcoal);
  border-radius: 12px;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ivory);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  background: url("assets/hero-safari.svg") center/cover no-repeat;
  color: var(--ivory);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23,21,18,.88) 0%, rgba(23,21,18,.54) 46%, rgba(23,21,18,.28) 100%),
    linear-gradient(0deg, rgba(23,21,18,.55), rgba(23,21,18,.04));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  margin: 0 auto;
  padding: 34px 7vw 0;
  min-height: calc(100vh - 78px - 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 430px;
  gap: 54px;
  align-items: center;
}
.hero-copy {
  padding: 30px 0 60px;
  max-width: 700px;
}
.eyebrow {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 1000;
  margin-bottom: 14px;
}
h1, h2, h3 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.045em;
}
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 {
  font-size: clamp(52px, 7.1vw, 106px);
  max-width: 830px;
}
h2 { font-size: clamp(36px, 4.4vw, 64px); }
h3 { font-size: 23px; letter-spacing: -.02em; }

.hero-copy p {
  max-width: 650px;
  font-size: clamp(18px, 1.6vw, 24px);
  margin: 26px 0 32px;
  color: rgba(255, 253, 247, .90);
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.destination-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.destination-strip span {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.planner-card, .calculator-card {
  background: rgba(255,253,247,.96);
  color: var(--charcoal);
  border: 1px solid rgba(255,255,255,.60);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-form {
  padding: 28px;
  margin-bottom: -44px;
}
.card-kicker {
  color: var(--gold-dark);
  font-weight: 1000;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
}
.planner-card h2 {
  font-size: 31px;
  letter-spacing: -.03em;
  margin-top: 7px;
}
.muted { color: var(--muted); margin: 9px 0 18px; }

.lead-form { display: grid; gap: 13px; }
label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  color: var(--charcoal-2);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(23,21,18,.13);
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
  padding: 13px 14px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(201,154,69,.75);
  box-shadow: 0 0 0 4px rgba(201,154,69,.14);
}
.optional { color: var(--muted); font-weight: 600; }
.hp-field { display: none !important; }
.whatsapp-fallback {
  text-align: center;
  color: var(--olive);
  font-weight: 900;
  font-size: 14px;
}
.form-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.trust-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(34, 38, 25, .92);
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-bar div {
  padding: 26px 7vw;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-bar strong { display: block; font-size: 15px; }
.trust-bar span { display: block; color: rgba(255,253,247,.72); font-size: 13px; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 28px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-heading p { color: var(--muted); }
.with-action {
  display: flex;
  max-width: none;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.text-link {
  color: var(--gold-dark);
  font-weight: 1000;
}
.intro-section {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 58px;
  align-items: start;
}
.intro-copy {
  font-size: 20px;
  color: var(--charcoal-2);
}
.intro-copy p:first-child { margin-top: 0; }

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.destination-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(23,21,18,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}
.destination-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(23,21,18,.18);
}
.destination-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.destination-card div { padding: 22px; }
.destination-card p { color: var(--muted); min-height: 75px; }
.destination-card a {
  color: var(--gold-dark);
  font-weight: 1000;
}

.split-section {
  display: grid;
  grid-template-columns: .95fr .78fr;
  gap: 58px;
  align-items: center;
}
.split-copy p {
  font-size: 19px;
  color: var(--muted);
}
.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 1000;
}
.calculator-card {
  padding: 30px;
  display: grid;
  gap: 18px;
}
.estimate-box {
  background: linear-gradient(135deg, var(--charcoal), var(--olive-dark));
  color: var(--ivory);
  border-radius: 18px;
  padding: 24px;
}
.estimate-box span, .estimate-box small {
  display: block;
  color: rgba(255,253,247,.75);
}
.estimate-box strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  margin: 8px 0;
  letter-spacing: -.04em;
}

.dark-section {
  max-width: none;
  background: radial-gradient(circle at top, #3d452d, var(--charcoal));
  color: var(--ivory);
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}
.feature-grid, .guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-grid article {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 26px;
}
.feature-grid p { color: rgba(255,253,247,.76); }
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(201,154,69,.18);
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 18px;
}

.guide-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.guide-grid p { color: var(--muted); }

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--sand);
  border-radius: 28px;
  margin-bottom: 92px;
}
.cta-section h2 { max-width: 790px; }

.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 58px 7vw 24px;
}
.footer-brand img {
  width: 210px;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer-brand p {
  color: rgba(255,253,247,.70);
  max-width: 430px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  margin: 34px 0;
}
.footer-links h4 {
  color: var(--gold);
  margin: 0 0 12px;
}
.footer-links a {
  display: block;
  color: rgba(255,253,247,.72);
  margin: 8px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 22px;
  color: rgba(255,253,247,.56);
  font-size: 13px;
}
.micro-acquisition { max-width: 360px; text-align: right; }

.page-hero {
  background: radial-gradient(circle at top left, rgba(201,154,69,.28), transparent 30%),
              linear-gradient(135deg, var(--charcoal), var(--olive-dark));
  color: var(--ivory);
  padding: 92px 7vw;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero h1 { font-size: clamp(46px, 6vw, 84px); }
.page-hero p {
  max-width: 760px;
  color: rgba(255,253,247,.80);
  font-size: 20px;
}
.content-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 82px 28px;
}
.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(23,21,18,.08);
}
.content-card + .content-card { margin-top: 22px; }
.partner-form {
  display: grid;
  gap: 14px;
}

@media (max-width: 1120px) {
  .site-header { padding: 0 28px; }
  .brand img { width: 200px; }
  .main-nav { gap: 16px; font-size: 13px; }
  .header-actions .btn { display: none; }
  .hero-content { grid-template-columns: 1fr; padding-top: 50px; }
  .hero-form { margin-bottom: 30px; max-width: 620px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .site-header { height: 72px; }
  .brand img { width: 172px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .header-actions { display: none; }
  .hero-content { padding: 36px 22px 0; gap: 20px; }
  h1 { font-size: 54px; }
  .hero-copy p { font-size: 18px; }
  .hero-buttons { align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .hero-form { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar div { padding: 20px 28px; }
  .section { padding: 72px 22px; }
  .intro-section, .split-section { grid-template-columns: 1fr; gap: 28px; }
  .with-action { display: block; }
  .destination-grid, .feature-grid, .guide-grid { grid-template-columns: 1fr; }
  .destination-card img { height: 210px; }
  .cta-section { flex-direction: column; align-items: flex-start; margin: 0 22px 72px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .micro-acquisition { text-align: left; }
}

@media (max-width: 430px) {
  h1 { font-size: 46px; }
  .planner-card h2 { font-size: 27px; }
  .estimate-box strong { font-size: 28px; }
}
