:root {
  --dusk: #101B2D;
  --dusk-deep: #0A1220;
  --sand: #E4D8BE;
  --sand-pale: #F5F1E8;
  --gold: #C89B3C;
  --rust: #A64B2A;
  --teal: #1D6E71;
  --ink: #1A1F16;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--sand-pale);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--dusk);
}

em { font-style: italic; font-weight: 300; color: var(--gold); }

a { color: inherit; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 6vw; }

/* --- Header / Nav --- */
header {
  background: var(--dusk);
  color: var(--sand-pale);
  padding: 1.4rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .wrap { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--sand-pale);
}

.logo em { color: var(--gold); }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--sand);
  transition: color 0.2s ease;
}

nav a:hover, nav a.active { color: var(--gold); }

nav .ext { display: inline-flex; align-items: center; gap: 0.3rem; }

.nav-toggle { display: none; }

@media (max-width: 780px) {
  nav ul { display: none; }
  .nav-toggle { display: block; background: none; border: none; color: var(--sand-pale); font-size: 1.4rem; cursor: pointer; }
  nav.open ul { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dusk); padding: 1.5rem 6vw; gap: 1.2rem; }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(180deg, var(--dusk) 0%, var(--dusk-deep) 100%);
  color: var(--sand-pale);
  padding: 8vh 6vw 10vh;
  text-align: center;
}

.hero .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.hero h1 { color: var(--sand-pale); font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1.05; }

.hero p.tagline {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--sand);
  font-weight: 300;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-small { padding: 6vh 6vw 7vh; }
.hero-small h1 { font-size: clamp(2rem, 5vw, 3rem); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold { background: var(--gold); color: var(--dusk-deep); }
.btn-outline { background: transparent; border: 1px solid rgba(228,216,190,0.4); color: var(--sand-pale); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero .btn-row { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Brand cards (homepage) --- */
.brands-section { padding: 8vh 6vw; }
.brands-section h2 { text-align: center; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.brands-section .lead { text-align: center; color: #5A5A50; max-width: 32rem; margin: 1rem auto 3.5rem; font-weight: 300; }

.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

@media (max-width: 820px) { .brand-grid { grid-template-columns: 1fr; } }

.brand-card {
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  color: var(--sand-pale);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.brand-card .tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

.brand-card h3 { color: var(--sand-pale); font-size: 1.5rem; margin: 0.6rem 0 0.8rem; }
.brand-card p { font-size: 0.9rem; font-weight: 300; opacity: 0.9; }
.brand-card .go { margin-top: 1.4rem; font-size: 0.8rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.4rem; }

.card-safaris { background: linear-gradient(160deg, var(--rust) 0%, #7a3719 100%); }
.card-islands { background: linear-gradient(160deg, var(--teal) 0%, #123f42 100%); }
.card-fishing { background: linear-gradient(160deg, #8a6a1f 0%, var(--dusk-deep) 100%); }

/* --- Section blocks --- */
.section { padding: 7vh 6vw; }
.section-alt { background: #EFE7D4; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; } }

.two-col .visual {
  border-radius: 16px;
  min-height: 280px;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.5rem; }
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--sand-pale);
  border: 1px solid rgba(16,27,45,0.08);
  border-radius: 14px;
  padding: 1.8rem;
}

.feature h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.9rem; color: #5A5A50; font-weight: 300; }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-bottom: 1rem; }
.dot-rust { background: var(--rust); }
.dot-teal { background: var(--teal); }
.dot-gold { background: var(--gold); }

/* --- CTA banner --- */
.cta-banner {
  background: var(--dusk);
  color: var(--sand-pale);
  text-align: center;
  padding: 6vh 6vw;
}
.cta-banner h2 { color: var(--sand-pale); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--sand); font-weight: 300; max-width: 30rem; margin: 0 auto 2rem; }

/* --- Forms --- */
.form-card {
  background: var(--sand-pale);
  border: 1px solid rgba(16,27,45,0.1);
  border-radius: 16px;
  padding: 2.4rem;
  max-width: 640px;
  margin: 0 auto;
}

.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--dusk); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(16,27,45,0.18);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: var(--ink);
}

.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.submit-btn {
  background: var(--gold);
  color: var(--dusk-deep);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.submit-btn:hover { transform: translateY(-1px); }

.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info .item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-info .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 500; }
.contact-info .value { font-size: 1rem; color: var(--dusk); margin-top: 0.2rem; }

/* --- Footer --- */
footer {
  background: var(--dusk-deep);
  color: var(--sand);
  padding: 4vh 6vw;
  text-align: center;
  font-size: 0.8rem;
}
footer .brands-line { margin-top: 0.6rem; opacity: 0.6; font-size: 0.72rem; letter-spacing: 0.05em; }

/* --- Combo Journeys card (blends safari rust + island teal) --- */
.card-combo { background: linear-gradient(160deg, var(--rust) 0%, var(--teal) 100%); }

/* --- Journey meta bar (nights / price / departure, under hero) --- */
.journey-meta {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.journey-meta .stat { text-align: center; }
.journey-meta .stat strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.journey-meta .stat span { color: var(--sand-pale); font-size: 0.95rem; }

/* --- Journey timeline (the leg-by-leg breakdown) --- */
.journey-timeline {
  border-left: 2px solid var(--gold);
  margin: 2.5rem 0 0 0.4rem;
  padding-left: 2rem;
}
.journey-leg { position: relative; padding-bottom: 2.6rem; }
.journey-leg:last-child { padding-bottom: 0; }
.journey-leg::before {
  content: '';
  position: absolute;
  left: -2.53rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--sand-pale);
}
.journey-leg .leg-time {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 500;
}
.journey-leg h4 { margin: 0.35rem 0 0.6rem; font-size: 1.2rem; }
.journey-leg p { color: #5A5A50; font-weight: 300; font-size: 0.92rem; }

/* --- Note box (flexible-option callouts) --- */
.note-box {
  background: #EFE7D4;
  border-left: 3px solid var(--gold);
  padding: 1rem 1.3rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--dusk);
  margin-top: 1.2rem;
}

/* --- FAQ list --- */
.faq-list { max-width: 640px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(16,27,45,0.1); padding: 1.5rem 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.9rem; color: #5A5A50; font-weight: 300; }
