/* ============================================================
   TOURING BUSH SAFARIS — Global Stylesheet
   Brand palette taken from the logo (brown + gold + cream)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --brown:        #3d1710;
  --brown-2:      #5a2418;
  --gold:         #c8961e;
  --gold-light:   #e0b64a;
  --cream:        #faf6ef;
  --cream-2:      #f1e8db;
  --ink:          #2b1a12;
  --muted:        #7a6a5e;
  --white:        #ffffff;
  --shadow:       0 18px 40px -18px rgba(61, 23, 16, .35);
  --shadow-sm:    0 8px 22px -12px rgba(61, 23, 16, .3);
  --radius:       16px;
  --maxw:         1200px;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Poppins', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 14px 30px; border-radius: 50px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .3px; cursor: pointer; border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-gold { background: var(--gold); color: var(--brown); box-shadow: 0 10px 26px -10px rgba(200,150,30,.8); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: var(--white); color: var(--brown); transform: translateY(-3px); }
.btn-brown { background: var(--brown); color: var(--cream); }
.btn-brown:hover { background: var(--brown-2); transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
}
.site-header.transparent { background: linear-gradient(to bottom, rgba(30,12,8,.55), rgba(30,12,8,0)); }
.site-header.scrolled { background: var(--brown); box-shadow: 0 6px 24px -12px rgba(0,0,0,.6); padding: 8px 0; }

.nav { display: flex; align-items: center; justify-content: space-between; }
/* The brand plus 7 links plus the CTA need ~1160px, more than the 1200px
   container leaves after padding — so the header gets a wider measure than the
   rest of the site. Without this the nav overflows and .nav-cta, being inline,
   breaks its gold pill across two lines. */
.site-header .container { max-width: 1440px; }
.brand { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.brand img {
  height: 84px; width: auto; transition: height .35s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
}
.scrolled .brand img { height: 64px; }
.brand-text {
  color: var(--white); font-family: var(--serif); font-weight: 700;
  font-size: 1.6rem; line-height: 1.06; letter-spacing: .5px; white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
  transition: font-size .35s ease;
}
.brand-text span {
  display: block; font-family: var(--sans); font-weight: 500; font-size: .78rem;
  letter-spacing: 6px; color: var(--gold-light); margin-top: 3px;
}
.scrolled .brand-text { font-size: 1.32rem; }
.scrolled .brand-text span { font-size: .68rem; letter-spacing: 5px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--white); font-weight: 500; font-size: .92rem; padding: 10px 12px;
  border-radius: 8px; position: relative; transition: color .2s ease;
  white-space: nowrap; /* a wrapped link fragments its background box */
}
.nav-links a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }
.nav-cta { margin-left: 10px; padding: 10px 22px !important; background: var(--gold); color: var(--brown) !important; border-radius: 50px; font-weight: 600; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-light); }
/* Secondary action for customers who have already booked. Deliberately quieter
   than the gold CTA — an outline pill, so "Plan My Trip" keeps the emphasis. */
.nav-pay { margin-left: 8px; padding: 9px 18px !important; border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 50px; font-weight: 600; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.nav-pay::after { display: none; }
.nav-pay:hover { background: rgba(255,255,255,.12); border-color: var(--gold-light); color: var(--gold-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; color: var(--white);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1.6s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
/* bg.jpg is an ultra-wide panorama (1280x373) — anchor it so the crop keeps the ridge line */
.hero-slide-pano { background-position: center 45%; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(30,12,8,.82) 0%, rgba(30,12,8,.5) 45%, rgba(30,12,8,.15) 100%);
}
.hero-inner { max-width: 760px; padding: 150px 0 80px; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; text-transform: uppercase;
  letter-spacing: 3px; font-size: .74rem; font-weight: 600; color: var(--gold-light);
  margin-bottom: 22px; max-width: 640px; line-height: 1.9;
}
.eyebrow::before { content: ''; flex: 0 0 38px; height: 2px; background: var(--gold); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 800; margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold-light); font-style: italic; }
.hero p { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 300; max-width: 560px; margin-bottom: 34px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--serif); font-size: 2rem; color: var(--gold-light); display: block; }
.hero-stats .stat span { font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.8); }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; text-align: center; }
.scroll-cue .mouse { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; margin: 0 auto 8px; position: relative; }
.scroll-cue .mouse::before { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold-light); border-radius: 2px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 20px; } }

/* ---------- Section headings ---------- */
.section { padding: 100px 0; }
.section.tint { background: var(--cream-2); }
.section.dark { background: var(--brown); color: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head .kicker { text-transform: uppercase; letter-spacing: 4px; font-size: .76rem; font-weight: 600; color: var(--gold); margin-bottom: 14px; display: inline-block; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--brown); margin-bottom: 16px; }
.section.dark .section-head h2 { color: var(--white); }
.section-head p { color: var(--muted); font-size: 1.02rem; }
.section.dark .section-head p { color: rgba(255,255,255,.75); }

/* ---------- About preview ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); height: 520px; width: 100%; object-fit: cover; }
.about-media .badge {
  position: absolute; bottom: -26px; right: -18px; background: var(--gold); color: var(--brown);
  padding: 22px 26px; border-radius: 14px; box-shadow: var(--shadow); text-align: center;
}
.about-media .badge b { font-family: var(--serif); font-size: 2.1rem; display: block; }
.about-media .badge span { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }
.about-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--brown); margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.feature-list { list-style: none; margin: 26px 0 32px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ic { flex: 0 0 42px; height: 42px; border-radius: 10px; background: var(--cream-2); display: grid; place-items: center; font-size: 1.2rem; }
.feature-list b { display: block; color: var(--brown); }
.feature-list span { color: var(--muted); font-size: .92rem; }

/* ---------- Cards grid ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card .thumb { position: relative; height: 240px; overflow: hidden; }
.card .thumb img { height: 100%; width: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .thumb img { transform: scale(1.08); }
.card .flag { position: absolute; top: 16px; left: 16px; background: rgba(61,23,16,.85); color: var(--white); padding: 6px 14px; border-radius: 50px; font-size: .78rem; font-weight: 500; backdrop-filter: blur(4px); }
.card .flag.gold { background: var(--gold); color: var(--brown); }
.card-body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.4rem; color: var(--brown); margin-bottom: 10px; }
.card-body p { color: var(--muted); font-size: .94rem; margin-bottom: 18px; flex: 1; }
.card-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--cream-2); padding-top: 16px; }
.card-meta .price { color: var(--brown); font-weight: 600; }
.card-meta .price span { color: var(--muted); font-weight: 400; font-size: .82rem; }
.card-link { color: var(--gold); font-weight: 600; font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; transition: gap .25s ease; }
.card-link:hover { gap: 12px; }

/* ---------- Destinations feature strip ---------- */
.dest-hero { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.dest-tile { position: relative; height: 420px; overflow: hidden; }
.dest-tile img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s ease; }
.dest-tile:hover img { transform: scale(1.1); }
.dest-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,12,8,.85), rgba(30,12,8,.1)); }
.dest-tile .label { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px; color: var(--white); z-index: 2; }
.dest-tile .label h3 { font-size: 1.5rem; margin-bottom: 6px; }
.dest-tile .label span { font-size: .85rem; color: rgba(255,255,255,.8); }

/* ---------- Itinerary list (detailed) ---------- */
.itinerary { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 40px; }
.itinerary-top { display: grid; grid-template-columns: 1.1fr 1fr; }
.itinerary-top img { height: 100%; min-height: 320px; width: 100%; object-fit: cover; }
.itinerary-info { padding: 40px; }
.itinerary-info .tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.itinerary-info .tags span { background: var(--cream-2); color: var(--brown-2); padding: 5px 14px; border-radius: 50px; font-size: .78rem; font-weight: 500; }
.itinerary-info h3 { font-size: 1.8rem; color: var(--brown); margin-bottom: 12px; }
.itinerary-info .lead { color: var(--muted); margin-bottom: 22px; }
.day-toggle { width: 100%; text-align: left; background: var(--cream); border: 1px solid var(--cream-2); border-radius: 12px; padding: 16px 20px; margin-bottom: 10px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s ease; font-family: var(--sans); }
.day-toggle:hover { background: var(--cream-2); }
.day-toggle .d { display: flex; align-items: center; gap: 14px; }
.day-toggle .num { background: var(--gold); color: var(--brown); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: .85rem; flex: 0 0 auto; }
.day-toggle b { color: var(--brown); font-family: var(--serif); font-size: 1rem; }
.day-toggle .chev { transition: transform .3s ease; color: var(--gold); font-size: 1.1rem; }
.day-toggle.open .chev { transform: rotate(180deg); }
.day-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.day-body p { color: var(--muted); padding: 4px 20px 18px 68px; font-size: .93rem; }
.day-list { list-style: none; color: var(--muted); padding: 4px 20px 18px 68px; font-size: .93rem; }
.day-list li { position: relative; padding-left: 18px; margin-bottom: 7px; line-height: 1.6; }
.day-list li::before { content: ''; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.day-extra { margin-top: 16px; padding: 14px 18px; background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; color: var(--muted); font-size: .9rem; }
.day-extra b { color: var(--brown); }
.itinerary-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 26px 40px; background: var(--cream); border-top: 1px solid var(--cream-2); }
.itinerary-foot .price b { font-family: var(--serif); font-size: 1.9rem; color: var(--brown); }
.itinerary-foot .price span { color: var(--muted); font-size: .85rem; }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 4; column-gap: 16px; }
.gallery-item, .g-item {
  display: block; width: 100%; padding: 0; margin: 0 0 16px; border: 0; cursor: pointer;
  background: var(--cream-2); border-radius: 12px; overflow: hidden;
  break-inside: avoid; position: relative; line-height: 0;
  box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease;
}
.g-item img { width: 100%; height: auto; display: block; transition: transform .6s ease, filter .35s ease; }
.g-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.g-item:hover img { transform: scale(1.05); }
.g-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.g-video {
  width: 100%; aspect-ratio: 9 / 16; max-height: 620px; background: #1a0c07;
  border-radius: 14px; box-shadow: var(--shadow-sm); object-fit: cover;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3000; background: rgba(18,8,5,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.9); }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.12); color: var(--white);
  border: 0; cursor: pointer; border-radius: 50%; display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease; line-height: 1;
}
.lb-close { top: 22px; right: 24px; width: 46px; height: 46px; font-size: 1.9rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.4rem; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: var(--brown); }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lb-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .82rem; letter-spacing: 2px; }
body.lb-open { overflow: hidden; }

/* ---------- Split feature (Kilimanjaro / Zanzibar) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); height: 480px; width: 100%; object-fit: cover; }
.split-text .kicker { text-transform: uppercase; letter-spacing: 4px; font-size: .76rem; font-weight: 600; color: var(--gold); margin-bottom: 14px; display: inline-block; }
.split-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--brown); margin-bottom: 18px; }
.section.dark .split-text h2 { color: var(--white); }
.split-text p { color: var(--muted); margin-bottom: 18px; }
.section.dark .split-text p { color: rgba(255,255,255,.78); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.chip { background: var(--cream-2); color: var(--brown-2); padding: 8px 16px; border-radius: 50px; font-size: .84rem; font-weight: 500; }
.section.dark .chip { background: rgba(255,255,255,.1); color: var(--cream); }
/* Chips are usually static labels, but the itineraries page uses them as links
   to each destination — those need to look clickable. */
a.chip { transition: background .2s ease, color .2s ease; }
a.chip:hover { background: var(--gold); color: var(--brown); }

/* ---------- Country flag stripe ---------- */
/* A thin band of the country's flag colours, sitting directly under the hero on
   each destination page. This is the ONLY place a national palette appears —
   everything below it stays brown and gold, so the six pages still read as one
   company. Equal hard-stop bands rather than a reproduction of the flag. */
.flag-bar { height: 6px; width: 100%; }
.flag-tz { background: linear-gradient(to right,
  #1eb53a 0 25%, #fcd116 25% 50%, #000 50% 75%, #00a3dd 75% 100%); }
.flag-ke { background: linear-gradient(to right,
  #000 0 33.34%, #bb0000 33.34% 66.67%, #006600 66.67% 100%); }
.flag-ug { background: linear-gradient(to right,
  #000 0 33.34%, #fcdc04 33.34% 66.67%, #d90000 66.67% 100%); }
.flag-rw { background: linear-gradient(to right,
  #00a1de 0 33.34%, #fad201 33.34% 66.67%, #20603d 66.67% 100%); }
.flag-za { background: linear-gradient(to right,
  #007a4d 0 20%, #ffb612 20% 40%, #de3831 40% 60%, #002395 60% 80%, #000 80% 100%); }
/* Victoria Falls straddles two countries — the colours Zambia and Zimbabwe
   share, rather than picking a side. */
.flag-zmzw { background: linear-gradient(to right,
  #198a00 0 25%, #ffd200 25% 50%, #de2010 50% 75%, #000 75% 100%); }

/* ---------- Payment page ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.bank-card { background: var(--white); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); }
.bank-card h3 { color: var(--brown); font-size: 1.3rem; margin-bottom: 4px; }
.bank-card .bank-sub { color: var(--muted); font-size: .86rem; margin-bottom: 20px; }
.bank-list { display: grid; }
.bank-list div { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--cream-2); }
.bank-list div:last-child { border-bottom: none; }
.bank-list dt { color: var(--muted); font-size: .84rem; flex: 0 0 auto; }
/* Account numbers and SWIFT codes get transcribed by hand into a banking form,
   so they are set in a mono face where 0/O and 1/l cannot be confused. */
.bank-list dd { color: var(--brown); font-weight: 600; font-size: .93rem; text-align: right;
  font-family: ui-monospace, "Cascadia Mono", "Consolas", monospace; word-break: break-word; }
.bank-list dd.plain { font-family: var(--sans); }

.pay-embed { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 38px 30px; text-align: center; }
.pay-embed iframe { border: 0; max-width: 100%; margin: 6px auto 0; display: block; }

/* Payment-fraud warning. Deliberately the loudest thing on the page — invoice
   redirection is the scam this page invites, so it must not read as boilerplate. */
.notice { border-left: 4px solid #b3261e; background: #fdf3f2; border-radius: 0 10px 10px 0;
  padding: 22px 26px; margin-top: 34px; }
.notice b { color: #8c1d18; display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 1.05rem; }
.notice p { color: var(--brown-2); font-size: .93rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: 110px 0; color: var(--white); text-align: center; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: rgba(30,12,8,.78); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; color: rgba(255,255,255,.85); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
.quote { background: var(--white); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold); }
.quote .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.quote p { color: var(--ink); font-style: italic; margin-bottom: 22px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--brown); color: var(--gold-light); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; }
.quote .who b { display: block; color: var(--brown); font-size: .95rem; }
.quote .who span { color: var(--muted); font-size: .82rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { min-height: 56vh; display: flex; align-items: flex-end; position: relative; color: var(--white); background-size: cover; background-position: center; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,12,8,.9), rgba(30,12,8,.35)); }
.page-hero .container { position: relative; z-index: 2; padding-bottom: 60px; padding-top: 170px; }
.page-hero .crumb { font-size: .82rem; letter-spacing: 1px; color: rgba(255,255,255,.8); margin-bottom: 12px; }
.page-hero .crumb a:hover { color: var(--gold-light); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
.page-hero p { max-width: 560px; margin-top: 12px; color: rgba(255,255,255,.9); }

/* ---------- About page values ---------- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 26px; }
.value { background: var(--white); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform .3s ease; }
.value:hover { transform: translateY(-6px); }
.value .ic { width: 58px; height: 58px; border-radius: 14px; background: var(--brown); color: var(--gold-light); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px; }
.value h3 { color: var(--brown); font-size: 1.25rem; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: .93rem; }

/* Review invitations (Tripadvisor / Google), sitting quietly at the foot of the
   parallax .cta-band. Deliberately pills, not cards — boxed panels here competed
   with the gold "Start Planning" button instead of sitting under it. Each pill
   sets its own --review-accent to its platform's brand colour. */
.review-band { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
/* must out-specify .cta-band p, which sets its own colour and bottom margin */
/* Sized to match .cta-band h2 exactly, at the user's request */
.cta-band .review-lede {
  color: var(--white); font-family: var(--serif); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 26px;
}
.review-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.review-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 30px; border-radius: 50px; font-size: 1.02rem; font-weight: 500;
  color: var(--white); border: 1px solid rgba(255,255,255,.3);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.review-pill:hover { background: rgba(255,255,255,.14); border-color: var(--review-accent, var(--gold)); transform: translateY(-3px); }
.review-pill .review-mark { width: 23px; height: 23px; color: var(--review-accent, var(--gold)); }

.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 26px; }
.member { text-align: center; }
.member img, .member .portrait { height: 300px; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.member b { display: block; color: var(--brown); font-family: var(--serif); font-size: 1.15rem; }
.member span { color: var(--gold); font-size: .85rem; }
/* Circular team avatar. Every member now has a photograph (.avatar-photo); the
   initials variant is kept so a new member can be added before their photo lands. */
.member .avatar {
  display: grid; place-items: center; width: 132px; height: 132px; margin: 0 auto 18px;
  border-radius: 50%; background: linear-gradient(145deg, var(--brown-2), var(--brown));
  border: 3px solid var(--gold); color: var(--gold-light);
  font-family: var(--serif); font-size: 2.3rem; font-weight: 700; letter-spacing: 1px;
  box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease;
}
/* Real photograph, framed exactly like the initials avatars above */
.member .avatar-photo { display: block; object-fit: cover; background: none; }
.member:hover .avatar { transform: translateY(-5px); box-shadow: var(--shadow); }

/* ---------- Destination detail block ---------- */
.dest-block { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 90px; }
.dest-block:last-child { margin-bottom: 0; }
.dest-block.rev .dest-block-media { order: 2; }
.dest-block-media { position: relative; }
.dest-block-media img { border-radius: var(--radius); box-shadow: var(--shadow); height: 440px; width: 100%; object-fit: cover; }
.dest-block-media .pin { position: absolute; top: 18px; left: 18px; background: var(--gold); color: var(--brown); padding: 8px 18px; border-radius: 50px; font-weight: 600; font-size: .85rem; }
.dest-block-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--brown); margin-bottom: 8px; }
.dest-block-text .sub { color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: .8rem; margin-bottom: 16px; }
.dest-block-text p { color: var(--muted); margin-bottom: 18px; }
.high-list { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.high-list li { display: flex; gap: 12px; align-items: center; color: var(--ink); font-size: .95rem; }
.high-list li::before { content: '✦'; color: var(--gold); font-size: .9rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info .info-item .ic { flex: 0 0 50px; height: 50px; border-radius: 12px; background: var(--brown); color: var(--gold-light); display: grid; place-items: center; font-size: 1.25rem; }
.contact-info .info-item b { display: block; color: var(--brown); font-family: var(--serif); font-size: 1.1rem; }
.contact-info .info-item p { color: var(--muted); font-size: .94rem; }
.contact-info .info-item a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 10px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; color: var(--brown); transition: .25s; font-weight: 600; }
.socials a:hover { background: var(--gold); transform: translateY(-4px); }

.form-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--brown); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--cream-2); border-radius: 10px;
  font-family: var(--sans); font-size: .95rem; background: var(--cream); color: var(--ink); transition: border .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
.form-success { display: none; background: #eaf6ec; border: 1px solid #b7dcc0; color: #2f6b40; padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: .92rem; }
.form-success.show { display: block; }
.form-error { display: none; background: #fdecea; border: 1px solid #f2b8b0; color: #9a3025; padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: .92rem; }
.form-error.show { display: block; }
.form-error a { color: #9a3025; text-decoration: underline; font-weight: 600; }
#submit-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
/* honeypot — kept out of view and out of the tab order */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 60px; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; background: none; border: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--sans); font-weight: 600; color: var(--brown); font-size: 1rem; }
.faq-q .chev { color: var(--gold); transition: transform .3s ease; }
.faq-q.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: .94rem; }

/* ---------- Footer ---------- */
.site-footer { background: #2a0f0a; color: rgba(255,255,255,.72); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 46px; }
.footer-brand img { height: 82px; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; max-width: 300px; }
.site-footer h4 { color: var(--white); font-family: var(--sans); font-size: .95rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a { font-size: .92rem; transition: color .2s ease, padding .2s ease; }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .92rem; align-items: flex-start; }
.footer-contact .ic { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,.7); transition: transform .25s ease; }
.wa-float:hover { transform: scale(1.1); }
.wa-float .wa-icon { width: 30px; height: 30px; }

/* WhatsApp glyph in the other spots it appears */
.wa-icon { display: block; }
.socials svg { width: 20px; height: 20px; display: block; }
.contact-info .info-item .ic .wa-icon { width: 26px; height: 26px; }
/* footer rows are .92rem and top-aligned — nudge to sit on the text baseline */
.footer-contact .ic .wa-icon { width: 15px; height: 15px; margin-top: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .split, .split.rev .split-media, .contact-grid, .dest-block, .dest-block.rev .dest-block-media, .itinerary-top { grid-template-columns: 1fr; }
  .split.rev .split-media, .dest-block.rev .dest-block-media { order: 0; }
  .dest-hero { grid-template-columns: 1fr 1fr; }
  .about-media img, .split-media img { height: 380px; }
  .about-media .badge { right: 16px; }
}
/* The nav carries 7 links plus a CTA alongside a larger logo, needing ~1160px.
   Collapse to the drawer as soon as the viewport can no longer supply that,
   which is well before the tablet breakpoint. */
@media (max-width: 1240px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--brown); flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 4px; padding: 100px 26px 40px; transform: translateX(100%); transition: transform .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.4); overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a::after { display: none; }
  /* In the drawer both pills go full width and stack under the links. */
  .nav-pay { margin-left: 0; text-align: center; margin-top: 14px; border-bottom: 0 !important; }
  .nav-cta { margin-left: 0; text-align: center; margin-top: 10px; }
  .gallery-grid { columns: 3; }
}
@media (max-width: 820px) {
  .brand img { height: 66px; }
  .scrolled .brand img { height: 54px; }
  .brand-text { font-size: 1.34rem; }
  .brand-text span { font-size: .7rem; letter-spacing: 5px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
  .gallery-grid { columns: 2; }
  .lb-nav { width: 44px; height: 44px; font-size: 2rem; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}
@media (max-width: 520px) {
  .dest-hero { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .day-list { padding-left: 30px; }
  .day-body p { padding-left: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .eyebrow { letter-spacing: 2px; font-size: .66rem; gap: 9px; }
  .eyebrow::before { flex-basis: 26px; }
  .brand { gap: 11px; }
  .brand img { height: 54px; }
  .scrolled .brand img { height: 46px; }
  .brand-text { font-size: 1.05rem; }
  .brand-text span { font-size: .58rem; letter-spacing: 3.5px; }
  .scrolled .brand-text { font-size: 1rem; }
  .itinerary-info, .form-card { padding: 26px; }
}
