/* ═══════════════════════════════════════════════════
   CHOKII ADVENTURES — LUXURY DESIGN SYSTEM
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

:root {
  --ink:    #0C2416;
  --dark:   #163620;
  --mid:    #4D6A58;
  --muted:  #8FA898;
  --border: #D8D3C8;
  --bg:     #F4F0E8;
  --ivory:  #FDFAF6;
  --gold:   #C9A96E;
  --sand:   #EAE3D5;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.15;
  color: var(--ink); margin-bottom: 20px;
}
.section-desc {
  font-size: 15px; font-weight: 300;
  line-height: 1.9; color: var(--mid);
  margin-bottom: 16px; letter-spacing: .01em;
}

/* ─── BUTTONS ─── */
.btn-dark {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--dark); color: var(--dark); background: transparent;
  transition: background .25s, color .25s;
}
.btn-dark:hover { background: var(--dark); color: #fff; }

.btn-white {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,.7); color: #fff; background: transparent;
  transition: background .25s, border-color .25s;
}
.btn-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-gold {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold); color: var(--gold); background: transparent;
  transition: background .25s, color .25s;
}
.btn-gold:hover { background: var(--gold); color: #fff; }

/* WhatsApp button */
.btn-wa {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid #25D366; color: #25D366; background: transparent;
  transition: background .25s, color .25s;
}
.btn-wa:hover { background: #25D366; color: #fff; }

/* Enquiry bar on itinerary pages */
.itin-enquiry-bar {
  grid-column: 1 / -1;
  background: var(--ink); padding: 32px 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 0;
}
.itin-enquiry-text {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.75);
  line-height: 1.7; flex: 1; min-width: 200px;
}
.itin-enquiry-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── NAV ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent; border-bottom: 1px solid transparent;
  padding: 0 52px; height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
/* Scrolled nav = deep forest green, stays dark and luxurious */
#nav.scrolled {
  background: var(--ink);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 2px 32px rgba(0,0,0,.35);
}

.nav-logo {
  display: flex; align-items: center; gap: 0; flex-shrink: 0;
}

/* Logo mark — big and prominent, no text */
.nav-logo-mark {
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.2);
}
#nav.scrolled .nav-logo-mark img {
  mix-blend-mode: screen;
  filter: brightness(1.2);
}

/* Hide brand text — logo image only */
.nav-logo-text { display: none; }
.nav-brand     { display: none; }
.nav-sub       { display: none; }

/* Nav links centered via flex on the inner wrapper */
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-item > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  padding: 0 18px; line-height: 88px; display: block;
  white-space: nowrap; transition: color .2s;
}
.nav-item > a:hover { color: #fff; }
/* Keep links white on scrolled dark nav */
#nav.scrolled .nav-item > a { color: rgba(255,255,255,.85); }
#nav.scrolled .nav-item > a:hover { color: var(--gold); }

.dropdown {
  display: none; position: absolute; top: 88px; left: 0;
  background: var(--ink); min-width: 280px;
  padding: 12px 0; z-index: 1000;
  border-top: 1px solid var(--gold);
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block; font-size: 10px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.55); padding: 11px 28px;
  transition: color .2s, background .2s; line-height: 1;
}
.dropdown a:hover { color: #fff; background: rgba(255,255,255,.04); }

.nav-get-started {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; padding: 14px 36px;
  border: 2px solid #fff; background: #fff; color: var(--ink);
  transition: background .25s, color .25s, border-color .25s; white-space: nowrap;
}
.nav-get-started:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
#nav.scrolled .nav-get-started { border-color: #fff; background: transparent; color: #fff; }
#nav.scrolled .nav-get-started:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border: none; background: none;
}
.hamburger span { width: 22px; height: 1px; background: #fff; display: block; transition: background .4s; }
#nav.scrolled .hamburger span { background: #fff; }

#mobileMenu {
  display: none; flex-direction: column; background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 28px; gap: 2px;
  position: fixed; top: 88px; left: 0; right: 0; z-index: 899;
  max-height: calc(100vh - 88px); overflow-y: auto;
}
#mobileMenu.open { display: flex; }
.mob-link {
  font-size: 10px; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.mob-link:last-of-type { border: none; }
.mob-cta {
  margin-top: 16px; font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 15px; text-align: center;
  border: 1px solid var(--gold); color: var(--gold); display: block;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-get-started { display: none; }
  #nav { padding: 0 24px; }
  .hamburger { display: flex; }
}

/* ─── HERO (homepage) ─── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroBgZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroBgZoom 2.4s cubic-bezier(.25,.46,.45,.94) both;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.3) 0%,
    rgba(0,0,0,.05) 45%,
    rgba(0,0,0,.65) 100%);
  pointer-events: none;
}
.hero-body {
  position: relative; z-index: 1; text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%;
}
/* All hero captions centred by default */
.hero-eyebrow, .hero-headline,
.page-eyebrow, .page-hero-title, .page-hero-sub, .breadcrumb {
  text-align: center; width: 100%;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: .65em;
  text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 16px;
  opacity: 0; animation: heroFadeUp .8s ease forwards; animation-delay: .4s;
}
.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 7vw, 7.5rem);
  font-weight: 900; font-style: normal;
  line-height: 1; color: #fff;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0; animation: heroFadeUp .9s ease forwards; animation-delay: .65s;
}
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 300; letter-spacing: .05em;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px; margin-top: -12px;
  max-width: 540px;
  opacity: 0; animation: heroFadeUp .8s ease forwards; animation-delay: .85s;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50%       { transform: translateY(8px); opacity: 1; }
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  opacity: 0; animation: heroFadeUp .8s ease forwards; animation-delay: 1.4s;
}
.hero-scroll span {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.7));
  animation: scrollBounce 1.8s ease-in-out infinite;
}
.hero-badge { display: none; }
.hero-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; padding: 14px 36px;
  border: 2px solid #fff; color: var(--ink);
  background: #fff; transition: background .25s, border-color .25s, color .25s;
  display: inline-block; margin-top: 16px;
  opacity: 0; animation: heroFadeUp .8s ease forwards; animation-delay: .9s;
}
.hero-cta:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ─── HERO REVIEW CARD ─── */
.hero-review {
  position: absolute; bottom: 36px; left: 48px; z-index: 2;
  background: #fff; padding: 16px 20px; max-width: 320px;
  border-radius: 4px; box-shadow: 0 8px 32px rgba(0,0,0,.25);
  opacity: 0; animation: heroFadeUp .8s ease forwards; animation-delay: 1.2s;
}
.hero-review-text strong {
  display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px;
}
.hero-review-text span {
  display: block; font-size: 12px; font-weight: 300; color: var(--mid);
  line-height: 1.5; margin-bottom: 10px;
}
.hero-review-stars {
  display: flex; align-items: center; gap: 8px;
}
.hero-review-google {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500; color: var(--mid);
}
@media (max-width: 600px) {
  .hero-review { display: none; }
  .hero-headline { letter-spacing: .02em; }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--ink);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroBgZoom 2.4s cubic-bezier(.25,.46,.45,.94) both;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.35) 0%, rgba(0,0,0,.05) 42%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}
.page-hero-body {
  position: relative; z-index: 1; text-align: center;
  padding: 0 24px; display: flex; flex-direction: column;
  align-items: center; width: 100%;
}
.breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: .4em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  opacity: 0; animation: heroFadeUp .7s ease forwards; animation-delay: .2s;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 10px; color: rgba(255,255,255,.25); }
.page-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: .45em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: heroFadeUp .8s ease forwards; animation-delay: .4s;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 300; color: #fff; line-height: 1;
  opacity: 0; animation: heroFadeUp .9s ease forwards; animation-delay: .65s;
  letter-spacing: .02em;
}
.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 300; letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: 20px;
  opacity: 0; animation: heroFadeUp .8s ease forwards; animation-delay: .85s;
}

/* ─── INTRO STRIP ─── */
.intro-strip { background: #fff; padding: 100px 52px; text-align: center; border-top: 3px solid var(--gold); }
.intro-inner { max-width: 640px; margin: 0 auto; }

/* ─── WHY US ─── */
.why-section { background: var(--bg); padding: 96px 52px; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 64px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.why-grid-4 { grid-template-columns: repeat(4, 1fr); }
.why-card {
  background: #fff; text-align: center; padding: 52px 32px;
  transition: background .3s, transform .3s;
}
.why-card:hover { background: var(--ivory); transform: translateY(-4px); }
.why-icon-wrap {
  width: 64px; height: 64px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--gold);
  transition: border-color .3s, background .3s;
}
.why-card:hover .why-icon-wrap { border-color: var(--gold); background: var(--bg); }
.why-icon { display: none; }
.why-icon-num { display: none; }
.why-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--dark); margin-bottom: 14px;
}
.why-card-text { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--mid); }
@media (max-width: 960px) {
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .why-grid, .why-grid-4 { grid-template-columns: 1fr; }
  .why-section { padding: 72px 24px; }
}

/* ─── DESTINATIONS OVERLAY GRID (Ubuntu-style) ─── */
.dest-overlay-section { background: #fff; }
.dest-overlay-header { text-align: center; padding: 80px 52px 52px; }
.dest-overlay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 320px 260px;
  gap: 3px;
}
.dest-overlay-card {
  position: relative; overflow: hidden; display: block;
  background: var(--ink);
}
.dest-overlay-card.dest-overlay-large { grid-column: span 2; }
.dest-overlay-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
  filter: brightness(.75);
}
.dest-overlay-card:hover img { transform: scale(1.07); filter: brightness(.5); }
.dest-overlay-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 60%);
}
.dest-overlay-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400; font-style: italic;
  color: #fff; line-height: 1; margin-bottom: 8px; display: block;
}
.dest-overlay-explore {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 500; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(255,255,255,0);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  display: block; transition: color .3s, border-color .3s;
}
.dest-overlay-card:hover .dest-overlay-explore {
  color: var(--gold); border-bottom-color: var(--gold);
}
@media (max-width: 960px) {
  .dest-overlay-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 200px 200px;
  }
  .dest-overlay-card.dest-overlay-large { grid-column: span 1; }
}
@media (max-width: 600px) {
  .dest-overlay-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(5, 180px); }
  .dest-overlay-header { padding: 64px 24px 40px; }
}

/* ─── ITINERARIES ─── */
.itin-section { background: #fff; padding: 96px 52px 112px; }
.itin-inner { max-width: 1240px; margin: 0 auto; }
.itin-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}

.filters { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  padding: 13px 22px; border: none; background: transparent; color: var(--muted);
  border-bottom: 1px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.filter-btn.active { color: var(--dark); border-bottom-color: var(--gold); }
.filter-btn:hover:not(.active) { color: var(--dark); }

.itin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.itin-card { background: #fff; display: flex; flex-direction: column; }
.itin-card.hidden { display: none; }

.itin-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.itin-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.itin-card:hover .itin-card-img img { transform: scale(1.04); }
.itin-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(0,0,0,.65); color: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
}

.itin-card-body { padding: 28px 28px 20px; flex: 1; display: flex; flex-direction: column; }
.itin-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400;
  color: var(--dark); margin-bottom: 12px; line-height: 1.3;
}
.itin-meta { display: flex; gap: 18px; margin-bottom: 14px; flex-wrap: wrap; }
.itin-meta span {
  font-size: 10px; font-weight: 400; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted);
}
.itin-desc { font-size: 13.5px; font-weight: 300; line-height: 1.75; color: var(--mid); flex: 1; }

.itin-card-footer { display: flex; align-items: stretch; border-top: 1px solid var(--border); }
.itin-wa {
  width: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  background: #fff; transition: background .2s;
}
.itin-wa:hover { background: var(--dark); }
.itin-wa:hover svg path { fill: #fff; }
.itin-wa svg { width: 18px; height: 18px; }
.itin-wa svg path { fill: #25D366; transition: fill .2s; }
.itin-view-btn {
  flex: 1; padding: 15px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  background: #fff; color: var(--dark); border: none;
  transition: background .25s, color .25s; text-align: center;
  display: flex; align-items: center; justify-content: center;
}
.itin-view-btn:hover { background: var(--dark); color: #fff; }

.load-more-wrap { text-align: center; margin-top: 52px; }

@media (max-width: 900px) { .itin-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) {
  .itin-grid { grid-template-columns: 1fr; }
  .itin-section { padding: 60px 16px 80px; }
  .filters { overflow-x: auto; }
}

/* ─── CTA BAND (formerly plan-band) ─── */
.plan-band { background: var(--ink); padding: 88px 52px; text-align: center; }
.plan-band-inner { max-width: 600px; margin: 0 auto; }
.plan-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.plan-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: #fff; margin-bottom: 18px; line-height: 1.2;
}
.plan-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.6); margin-bottom: 36px; line-height: 1.8; }
@media (max-width: 768px) { .plan-band { padding: 64px 24px; } }

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--bg); padding: 96px 52px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 64px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.how-step { background: #fff; padding: 48px 32px; text-align: center; }
.how-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 2.8rem; font-weight: 300;
  color: var(--gold); opacity: .5; line-height: 1; margin-bottom: 18px;
}
.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--dark); margin-bottom: 14px;
}
.how-text { font-size: 13.5px; font-weight: 300; line-height: 1.8; color: var(--mid); }
@media (max-width: 900px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-section { padding: 64px 24px; }
}

/* ─── TESTIMONIALS ─── */
.testi-section { background: #fff; padding: 96px 52px; }
.testi-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.testi-header { margin-bottom: 56px; }
.testi-slider-wrap { position: relative; overflow: hidden; margin-bottom: 36px; }
.testi-slide { display: none; animation: fadeIn .5s ease; }
.testi-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 300; font-style: italic; line-height: 1.75;
  color: var(--dark); margin-bottom: 28px;
}
.testi-quote::before { content: '\201C'; }
.testi-quote::after  { content: '\201D'; }
.testi-author {
  font-size: 10px; font-weight: 400; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted);
}
.testi-stars { color: var(--gold); font-size: 12px; margin-bottom: 18px; letter-spacing: 3px; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.testi-arrow {
  width: 44px; height: 44px; border: 1px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--dark); transition: background .2s, border-color .2s;
}
.testi-arrow:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 6px; height: 6px; border: 1px solid var(--muted); background: transparent;
  border-radius: 50%; transition: background .2s, border-color .2s;
}
.testi-dot.active { background: var(--gold); border-color: var(--gold); }
@media (max-width: 768px) { .testi-section { padding: 64px 24px; } }

/* ─── CONTACT SECTION ─── */
.contact-section { background: var(--bg); padding: 96px 52px; }
.contact-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start;
}
.contact-info { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; display: none; }
.contact-info-label {
  font-size: 9px; font-weight: 500; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-info-val { font-size: 14px; font-weight: 300; color: var(--dark); line-height: 1.6; }
.contact-info-item-inner { display: flex; flex-direction: column; }
.contact-form-block { background: #fff; padding: 44px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 24px; }
.form-group label {
  font-size: 9px; font-weight: 500; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', inherit; font-size: 14px; font-weight: 300; color: var(--dark);
  border: none; border-bottom: 1px solid var(--border); background: transparent;
  padding: 10px 0; outline: none; transition: border-color .2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: none; min-height: 90px; }
.form-btns { display: flex; gap: 12px; margin-top: 32px; }
.whatsapp-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; background: var(--dark); color: #fff; border: 1px solid var(--dark);
  transition: background .2s, border-color .2s;
}
.whatsapp-btn:hover { background: #333; border-color: #333; }
.email-btn {
  flex: 1; padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--border); background: transparent; color: var(--dark);
  transition: background .2s, color .2s, border-color .2s;
}
.email-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-section { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-block { padding: 28px 20px; }
  .form-btns { flex-direction: column; }
}

/* ─── ABOUT PAGE ─── */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 1200px; margin: 0 auto; padding: 96px 52px; align-items: center;
}
.about-intro-text { padding-right: 72px; }
.about-intro-img { position: relative; }
.about-intro-img img { width: 100%; height: 560px; object-fit: cover; }
.about-badge { display: none; }
@media (max-width: 860px) {
  .about-intro { grid-template-columns: 1fr; padding: 64px 24px; }
  .about-intro-text { padding-right: 0; margin-bottom: 44px; }
}

.stats-band { background: var(--ink); padding: 72px 52px; }
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.06);
}
.stat-item { background: var(--ink); padding: 44px 24px; text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 300; font-style: italic;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 9px; font-weight: 400; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
@media (max-width: 700px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-band { padding: 56px 24px; }
}

.values-section { background: var(--bg); padding: 96px 52px; }
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 56px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.value-card { background: #fff; padding: 48px 40px; }
.value-icon { display: none; }
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--dark); margin-bottom: 14px;
}
.value-text { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--mid); }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; font-style: italic;
  color: var(--gold); opacity: .5; margin-bottom: 18px; display: block;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .values-section { padding: 64px 24px; }
}

.team-section { background: #fff; padding: 96px 52px; }
.team-inner { max-width: 1100px; margin: 0 auto; }
.team-header { margin-bottom: 56px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.team-card { background: #fff; }
.team-card-img { aspect-ratio: 3/4; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-body { padding: 24px 28px 28px; border-top: 1px solid var(--border); }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--dark); margin-bottom: 4px;
}
.team-role {
  font-size: 9px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.team-bio { font-size: 13.5px; font-weight: 300; line-height: 1.75; color: var(--mid); }
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-section { padding: 64px 24px; }
}

/* ─── DESTINATIONS ─── */
.dest-section { padding: 96px 52px 112px; background: #fff; }
.dest-inner { max-width: 1200px; margin: 0 auto; }
.dest-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-bottom: 1px; }
.dest-feature.reverse { direction: rtl; }
.dest-feature.reverse > * { direction: ltr; }
.dest-img { overflow: hidden; aspect-ratio: 4/3; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.dest-feature:hover .dest-img img { transform: scale(1.04); }
.dest-body { background: #fff; padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
.dest-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 400; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.dest-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; color: var(--dark); margin-bottom: 16px; line-height: 1.15;
}
.dest-desc { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 24px; }
.dest-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.dest-chip {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 400; letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--border); color: var(--mid);
}
@media (max-width: 860px) {
  .dest-feature, .dest-feature.reverse { grid-template-columns: 1fr; direction: ltr; }
  .dest-body { padding: 40px 28px; }
  .dest-section { padding: 64px 24px 80px; }
}

/* ─── TRIP TYPES ─── */
.trip-section { background: #fff; padding: 96px 52px 112px; }
.trip-inner { max-width: 1100px; margin: 0 auto; }
.trip-header { margin-bottom: 56px; }
.trip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.trip-card { background: #fff; }
.trip-card-img { overflow: hidden; aspect-ratio: 3/2; }
.trip-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.trip-card:hover .trip-card-img img { transform: scale(1.04); }
.trip-card-body { padding: 28px; border-top: 1px solid var(--border); }
.trip-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.trip-text { font-size: 13.5px; font-weight: 300; line-height: 1.75; color: var(--mid); margin-bottom: 18px; }
@media (max-width: 768px) {
  .trip-grid { grid-template-columns: 1fr; }
  .trip-section { padding: 64px 24px 80px; }
}

/* ─── HOW IT WORKS PAGE ─── */
.process-section { background: var(--bg); padding: 96px 52px; }
.process-inner { max-width: 900px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 72px; }
.process-steps { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.process-step { background: #fff; display: grid; grid-template-columns: 100px 1fr; gap: 0; }
.process-num-col {
  padding: 44px 32px; display: flex; align-items: flex-start; justify-content: center;
  border-right: 1px solid var(--border);
}
.process-step-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 2.6rem; font-weight: 300; color: var(--gold); opacity: .6; line-height: 1;
}
.process-step-body { padding: 44px 48px; }
.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400; color: var(--dark); margin-bottom: 12px;
}
.process-step-text { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--mid); }
@media (max-width: 600px) {
  .process-section { padding: 64px 24px; }
  .process-step { grid-template-columns: 1fr; }
  .process-num-col { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 28px; justify-content: flex-start; }
  .process-step-body { padding: 24px 28px; }
}

/* ─── GET STARTED / FORM PAGE ─── */
.get-started-section { background: var(--bg); padding: 96px 52px; }
.get-started-inner { max-width: 860px; margin: 0 auto; }
.get-started-header { margin-bottom: 52px; }
.form-card { background: #fff; padding: 56px; border: 1px solid var(--border); }
@media (max-width: 600px) {
  .form-card { padding: 28px 20px; }
  .get-started-section { padding: 64px 24px; }
}

/* ─── ITINERARY DETAIL PAGES ─── */
.itin-detail-hero { /* inherits .page-hero */ }
.itin-overview { background: #fff; padding: 80px 52px 60px; }
.itin-overview-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }
.itin-overview-text .section-desc { margin-bottom: 10px; }
.itin-stats-list { list-style: none; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.itin-stat { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--border); }
.itin-stat:last-child { border-bottom: none; }
.itin-stat-label { font-size: 9px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.itin-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--dark); }
.itin-days { background: var(--bg); padding: 80px 52px; }
.itin-days-inner { max-width: 800px; margin: 0 auto; }
.day-item { display: grid; grid-template-columns: 80px 1fr; gap: 0; margin-bottom: 1px; background: var(--border); }
.day-num-col { background: var(--ink); padding: 32px 20px; display: flex; align-items: flex-start; justify-content: center; }
.day-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.4rem; font-weight: 300; color: var(--gold); line-height: 1; text-align: center;
}
.day-body { background: #fff; padding: 32px 36px; }
.day-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 10px; }
.day-text { font-size: 14px; font-weight: 300; line-height: 1.82; color: var(--mid); }
@media (max-width: 860px) {
  .itin-overview-inner { grid-template-columns: 1fr; gap: 44px; }
  .itin-overview { padding: 64px 24px 48px; }
  .itin-days { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .day-item { grid-template-columns: 60px 1fr; }
  .day-num-col { padding: 24px 12px; }
  .day-body { padding: 24px 20px; }
}

/* ─── ITINERARY DETAIL — HERO META BAR ─── */
.hero-meta {
  display: flex; gap: 0; margin-top: 32px; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(4px);
  background: rgba(0,0,0,.25);
}
.hero-meta-item {
  padding: 16px 28px; border-right: 1px solid rgba(255,255,255,.15);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-label {
  font-size: 9px; font-weight: 400; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.hero-meta-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 400; color: #fff;
}
@media (max-width: 600px) {
  .hero-meta { flex-direction: column; }
  .hero-meta-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-meta-item:last-child { border-bottom: none; }
}

/* ─── ITINERARY DETAIL — LAYOUT ─── */
.itin-layout {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 0; align-items: start;
  padding: 0 72px 100px;
}
.itin-main { padding: 80px 80px 0 0; }
.overview-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; color: var(--dark);
  margin-bottom: 20px;
}
.overview-text {
  font-size: 16px; font-weight: 300; line-height: 2;
  color: var(--mid); margin-bottom: 48px;
}
.section-label {
  font-size: 10px; font-weight: 500; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; display: block;
}
.divider {
  border: none; border-top: 1px solid var(--border);
  margin: 56px 0;
}

/* Highlights */
.highlights { margin-bottom: 48px; }
.highlights-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.highlight-item {
  font-size: 14px; font-weight: 300; color: var(--dark);
  padding: 14px 20px; background: var(--bg);
  border-left: 3px solid var(--gold);
  line-height: 1.6;
}

/* Day blocks */
.day-block {
  padding: 36px 0; border-bottom: 1px solid var(--border);
}
.day-block:last-of-type { border-bottom: none; }
.day-label {
  font-size: 10px; font-weight: 500; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: block;
}
.day-block .day-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 400; color: var(--dark);
  margin-bottom: 12px;
}
.day-block .day-text {
  font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--mid);
}

/* Included / Excluded */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.incl-col-title {
  font-size: 10px; font-weight: 500; letter-spacing: .25em;
  text-transform: uppercase; margin-bottom: 14px; display: block;
}
.incl-col-title.yes { color: #2e7d32; }
.incl-col-title.no  { color: #b71c1c; }
.incl-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.incl-list li {
  font-size: 13.5px; font-weight: 300; color: var(--mid);
  padding-left: 18px; position: relative; line-height: 1.5;
}
.incl-list.yes li::before { content: '✓'; position: absolute; left: 0; color: #2e7d32; font-weight: 600; }
.incl-list.no  li::before { content: '✕'; position: absolute; left: 0; color: #b71c1c; font-weight: 500; }

/* Sidebar */
.sidebar { padding: 80px 0 0; position: sticky; top: 100px; }
.sidebar-card {
  background: #fff; border: 1px solid var(--border);
  margin-bottom: 16px;
}
.sidebar-detail {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
}
.sidebar-detail:last-child { border-bottom: none; }
.sidebar-detail-label {
  font-size: 9px; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.sidebar-detail-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 400; color: var(--dark);
}
.btn-block {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background .2s, color .2s;
  margin-bottom: 10px;
}
.btn-block-wa { background: #25D366; color: #fff; }
.btn-block-wa:hover { background: #1dbc5a; }
.btn-block-outline {
  background: transparent; color: var(--dark);
  border: 1px solid var(--border);
}
.btn-block-outline:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

@media (max-width: 960px) {
  .itin-layout { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .itin-main { padding: 48px 0 0; }
  .sidebar { position: static; padding: 32px 0 48px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── PRIVACY / TERMS / SIMPLE CONTENT ─── */
.content-section { background: #fff; padding: 80px 52px; }
.content-inner { max-width: 760px; margin: 0 auto; }
.content-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--dark);
  margin-top: 40px; margin-bottom: 12px;
}
.content-inner h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; margin-bottom: 8px; }
.content-inner p { font-size: 14.5px; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 14px; }
.content-inner ul { padding-left: 20px; margin-bottom: 14px; }
.content-inner ul li { font-size: 14.5px; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 6px; }
@media (max-width: 600px) { .content-section { padding: 64px 24px; } }

/* ─── FOOTER ─── */
.footer { background: var(--ink); padding: 72px 52px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }

.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo-mark {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 400; letter-spacing: .06em; color: #fff; line-height: 1;
}
.footer-brand-sub {
  font-size: 8px; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 4px;
}
.footer-desc { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.footer-col-title {
  font-size: 9px; font-weight: 400; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-award-badge { display: none; }
.footer-award-text { display: none; }
.footer-est {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 2.6rem; font-weight: 300; color: rgba(255,255,255,.12); line-height: 1;
  margin-bottom: 10px;
}
.footer-trust {
  font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.35);
}

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.fsoc {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: border-color .2s, color .2s;
}
.fsoc:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.fsoc svg { width: 13px; height: 13px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.footer-social a svg { width: 13px; height: 13px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 10px; font-weight: 400; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.25); transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 52px 24px 32px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── FAB ─── */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 52px; height: 52px; border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.15);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.fab-wa:hover { transform: scale(1.08); border-color: var(--gold); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.fab-wa svg { width: 24px; height: 24px; fill: #fff; }

/* ─── IMAGE OBJECT-POSITION FIXES ─────────────────────────────
   Portrait photos need the subject pulled down into frame.
   Each rule targets a specific image by filename fragment.
   ─────────────────────────────────────────────────────────── */

/* Warthog — subject in lower half of portrait */
img[src*="SaveVid.Net_536957554"] { object-position: center 68%; }

/* Hippo — subject lower-center of portrait */
img[src*="SaveVid.Net_474852617"] { object-position: center 55%; }

/* Walking lion at sunset — subject bottom-left of portrait */
img[src*="SaveVid.Net_519496112"] { object-position: 40% 62%; }

/* Resting lion + tree — subject bottom-left of portrait */
img[src*="SaveVid.Net_520296731"] { object-position: 35% 68%; }

/* Wildebeest plains — subject fills middle, pull slightly down */
img[src*="SaveVid.Net_625377565"] { object-position: center 55%; }

/* Rhino + calf — subjects lower-center of portrait */
img[src*="SaveVid.Net_649237347"] { object-position: center 58%; }

/* Gorillas — subjects fill portrait well, top of frame */
img[src*="SaveVid.Net_641759841"] { object-position: center 25%; }

/* Wildebeest river crossing — action in upper portion of portrait */
img[src*="wildbeast.jpeg"] { object-position: center 30%; }

/* Wildebeest stampede — running animals in lower portion */
img[src*="SaveVid.Net_123546094"] { object-position: center 60%; }

/* Giraffe silhouette sunset — giraffe is left-center */
img[src*="giraffe on the sunset"] { object-position: 38% center; }

/* ─── HOME STATS BAND ─── */
.stats-band-home {
  background: var(--ink); padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-home-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.06);
}
.stat-home-item {
  background: var(--ink); padding: 44px 24px; text-align: center;
  transition: background .3s;
}
.stat-home-item:hover { background: #1a3d28; }
.stat-home-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 3rem; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 8px; display: block;
}
.stat-home-label {
  font-size: 9px; font-weight: 400; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
@media (max-width: 700px) {
  .stats-home-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }

/* ─── PROPOSAL BUILDER ─── */
.proposal-section { background: var(--bg); padding: 80px 52px; min-height: 80vh; }
.proposal-inner { max-width: 900px; margin: 0 auto; }
.proposal-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400; margin-bottom: 8px; color: var(--dark);
}
.proposal-inner p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 20px; }
.proposal-inner label { font-size: 9px; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.proposal-inner input,
.proposal-inner select,
.proposal-inner textarea {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; color: var(--dark);
  border: none; border-bottom: 1px solid var(--border); background: transparent;
  padding: 10px 0; outline: none; transition: border-color .2s; width: 100%; margin-bottom: 24px;
}
.proposal-inner input:focus,
.proposal-inner select:focus,
.proposal-inner textarea:focus { border-bottom-color: var(--gold); }
@media (max-width: 600px) { .proposal-section { padding: 64px 24px; } }

/* ═══════════════════════════════════════════════════
   GET STARTED PAGE
   ═══════════════════════════════════════════════════ */

/* ─── HERO ─── */
.gs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: 80px;
}
.gs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gs-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.55);
}
.gs-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,.72) 0%, rgba(15,15,15,.35) 60%, rgba(15,15,15,.15) 100%);
}
.gs-hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: 80px 52px 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.gs-hero-text { color: #fff; }
.gs-eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase;
  color: #B89A6A; margin-bottom: 20px; display: block;
}
.gs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  color: #fff; margin-bottom: 24px;
}
.gs-desc {
  font-size: 16px; font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,.85);
  margin-bottom: 36px; max-width: 440px;
}
.gs-promises { display: flex; flex-direction: column; gap: 12px; }
.gs-promise {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.9);
}
.gs-promise-dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: #B89A6A;
  flex-shrink: 0;
}

/* ─── FORM PANEL ─── */
.gs-panel {
  background: #FDFAF6;
  padding: 40px 36px;
  border-radius: 2px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  scrollbar-width: thin;
  scrollbar-color: #DDD7CE transparent;
}
.gs-panel::-webkit-scrollbar { width: 4px; }
.gs-panel::-webkit-scrollbar-track { background: transparent; }
.gs-panel::-webkit-scrollbar-thumb { background: #DDD7CE; border-radius: 2px; }

.gs-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 400;
  color: #0F0F0F; margin-bottom: 8px;
}
.gs-panel-sub {
  font-size: 13px; font-weight: 300;
  line-height: 1.7; color: #9A8E84;
  margin-bottom: 28px;
}

/* ─── FORM ELEMENTS ─── */
.form-section-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase;
  color: #B89A6A; margin: 24px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #EDE8DF;
}
.form-section-note {
  font-size: 12px; color: #9A8E84;
  margin-bottom: 10px; font-weight: 300;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 9px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: #9A8E84; margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300;
  color: #1A1A1A;
  background: transparent;
  border: none;
  border-bottom: 1px solid #DDD7CE;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: #B89A6A; }
.field textarea { min-height: 90px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239A8E84' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── CHECKBOX GRID ─── */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.check-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 300; color: #1A1A1A;
  cursor: pointer; padding: 6px 0;
}
.check-item input[type="checkbox"] {
  width: 14px; height: 14px;
  flex-shrink: 0;
  border: 1px solid #DDD7CE;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background .15s, border-color .15s;
}
.check-item input[type="checkbox"]:checked {
  background: #B89A6A;
  border-color: #B89A6A;
}
.check-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px; left: 3px;
  width: 5px; height: 8px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

/* ─── SUBMIT BUTTON ─── */
.btn-submit-full {
  width: 100%; margin-top: 24px;
  padding: 16px;
  background: #1A1A1A; color: #fff;
  border: none; border-radius: 1px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .15s;
}
.btn-submit-full:hover {
  background: #B89A6A;
  transform: translateY(-1px);
}

/* ─── SUCCESS STATE ─── */
.success-state {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.success-state.visible { display: block; }
.success-icon {
  width: 56px; height: 56px;
  border: 2px solid #B89A6A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg {
  width: 22px; height: 22px;
  stroke: #B89A6A; stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: #0F0F0F; margin-bottom: 12px;
}
.success-text {
  font-size: 14px; font-weight: 300;
  line-height: 1.7; color: #5A5047;
  margin-bottom: 20px;
}
.success-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 12px 28px; border-radius: 2px;
  font-size: 13px; font-weight: 500;
  transition: background .2s;
}
.success-wa:hover { background: #1ebe5b; }
.success-wa svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: #0F0F0F;
  padding: 20px 52px;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 32px;
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-icon { font-size: 16px; color: #B89A6A; }
.trust-text {
  font-size: 11px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* ─── HOW IT WORKS MINI ─── */
.how-mini { background: #F7F4EF; padding: 100px 52px; }
.how-mini-inner { max-width: 1100px; margin: 0 auto; }
.how-mini-header { text-align: center; margin-bottom: 60px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.how-card { position: relative; }
.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: #EDE8DF; line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}
.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: #0F0F0F; margin-bottom: 12px;
}
.how-text {
  font-size: 14px; font-weight: 300;
  line-height: 1.8; color: #5A5047;
}

/* ─── GET STARTED RESPONSIVE ─── */
@media (max-width: 960px) {
  .gs-hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 40px;
  }
  .gs-panel { max-height: none; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .gs-hero-inner { padding: 48px 20px; }
  .gs-panel { padding: 28px 20px; }
  .gs-title { font-size: 2.8rem; }
  .field-group { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .how-mini { padding: 64px 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar { padding: 20px 24px; }
  .trust-inner { gap: 20px; }
}

/* ─── MISSING BASE CLASSES ─── */
.footer-col { }
.footer-brand-col { }
.contact-text-block { }

/* btn base (used in itinerary enquiry bar) */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  padding: 14px 28px; transition: background .25s, color .25s, border-color .25s;
}

/* highlights-box (itinerary pages) */
.highlights-box {
  background: var(--bg); border-left: 3px solid var(--gold);
  padding: 24px 28px; margin-bottom: 32px;
}
.highlights-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.highlights-box li {
  font-size: 14px; font-weight: 300; color: var(--mid);
  padding-left: 16px; position: relative;
}
.highlights-box li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* ─── HOW IT WORKS PAGE ─── */
.promise-section { background: #fff; padding: 96px 52px; }
.promise-inner { max-width: 1100px; margin: 0 auto; }
.promise-header { text-align: center; margin-bottom: 60px; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.promise-card { background: #fff; padding: 44px 36px; }
.promise-icon {
  font-size: 28px; margin-bottom: 16px; display: block;
  color: var(--gold);
}
.promise-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.promise-text { font-size: 14px; font-weight: 300; line-height: 1.82; color: var(--mid); }
@media (max-width: 768px) {
  .promise-grid { grid-template-columns: 1fr; }
  .promise-section { padding: 64px 24px; }
}

/* Process steps (how-it-works alternate layout) */
.process-num { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:2.6rem; font-weight:300; color:var(--gold); opacity:.6; }
.process-title { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:400; color:var(--dark); margin-bottom:10px; }
.process-body { padding:40px 48px; }
.process-desc { font-size:14px; font-weight:300; line-height:1.85; color:var(--mid); }
.process-detail { display:flex; gap:12px; align-items:flex-start; font-size:13px; font-weight:300; color:var(--mid); margin-bottom:8px; }

/* ─── TRIP TYPES PAGE ─── */
.types-section { background: #fff; padding: 96px 52px 112px; }
.types-inner { max-width: 1200px; margin: 0 auto; }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.type-card { background: #fff; display: flex; flex-direction: column; }
.type-card-img { overflow: hidden; aspect-ratio: 4/3; }
.type-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.type-card:hover .type-card-img img { transform: scale(1.04); }
.type-card-body { padding: 28px 28px 16px; flex: 1; }
.type-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.type-card-desc { font-size: 13.5px; font-weight: 300; line-height: 1.75; color: var(--mid); }
.type-card-footer { border-top: 1px solid var(--border); }
.type-view-btn {
  display: block; padding: 14px 20px; text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 500; letter-spacing: .25em; text-transform: uppercase;
  color: var(--dark); background: #fff; transition: background .2s, color .2s;
}
.type-view-btn:hover { background: var(--dark); color: #fff; }
@media (max-width: 900px) { .types-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) {
  .types-grid { grid-template-columns: 1fr; }
  .types-section { padding: 64px 16px 80px; }
}

/* ─── PRIVACY / TERMS ─── */
.policy-wrap { max-width: 760px; margin: 0 auto; padding: 80px 52px; }
.policy-meta {
  font-size: 11px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 48px; display: block;
}
@media (max-width: 600px) { .policy-wrap { padding: 64px 24px; } }

.hero-review-text {}

/* ─── WILDLIFE GALLERY ─── */
.wildlife-gallery { padding: 80px 0 88px; background: var(--ink); }
.wildlife-gallery .wg-header { text-align: center; margin-bottom: 48px; padding: 0 24px; }
.wildlife-gallery .wg-eyebrow {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 10px;
}
.wildlife-gallery .wg-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,2.8rem);
  font-weight: 400; color: #fff; line-height: 1.15;
}
.wildlife-gallery .wg-title em { font-style: italic; color: var(--gold); }
.wg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 5px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.wg-item { position: relative; overflow: hidden; }
.wg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; display: block; }
.wg-item:hover img { transform: scale(1.06); }
.wg-item.wg-tall { grid-row: span 2; }
.wg-item.wg-wide { grid-column: span 2; }
@media (max-width: 1024px) {
  .wg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .wg-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .wg-item.wg-wide { grid-column: span 2; }
  .wg-item.wg-tall { grid-row: span 1; }
}

/* ═══════════════════════════════════════════════════
   ELEGANT LAYOUT — eg-* components
   ═══════════════════════════════════════════════════ */

/* ─── EG HERO ─── */
.eg-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eg-hero-img {
  position: absolute;
  inset: 0;
}
.eg-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.eg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.72) 100%);
}
.eg-hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 860px;
}
.eg-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
  display: block;
}
.eg-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
}
.eg-hero-title em {
  font-style: italic;
  color: #C4973A;
}
.eg-hero-rule {
  width: 56px;
  height: 1px;
  background: #C4973A;
  margin: 0 auto 22px;
}
.eg-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.6;
}
.eg-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.eg-btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: #C4973A;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .25s, transform .2s;
}
.eg-btn-primary:hover { background: #a67c2a; transform: translateY(-2px); }
.eg-btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color .25s, background .25s, transform .2s;
}
.eg-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }
.eg-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.eg-hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollBob 1.6s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: .3; transform: translateY(8px); }
}

/* ─── EG MARQUEE ─── */
.eg-marquee {
  background: #0C2416;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.eg-marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marqueeScroll 28s linear infinite;
}
.eg-marquee-track span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.eg-dot {
  color: #C4973A !important;
  letter-spacing: 0 !important;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SHARED HEADING HELPERS ─── */
.eg-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: #C4973A;
  display: block;
  margin-bottom: 14px;
}
.eg-eyebrow-light { color: rgba(196,151,58,.8); }
.eg-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: #0C2416;
  margin-bottom: 20px;
}
.eg-heading-light { color: #fff; }
.eg-rule-gold {
  width: 48px;
  height: 1px;
  background: #C4973A;
  margin-bottom: 24px;
}
.eg-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 32px;
}
.eg-link-arrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C4973A;
  border-bottom: 1px solid #C4973A;
  padding-bottom: 2px;
  transition: opacity .2s;
}
.eg-link-arrow:hover { opacity: .7; }

/* ─── EG ABOUT ─── */
.eg-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.eg-about-img {
  overflow: hidden;
}
.eg-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eg-about-text {
  background: #faf8f3;
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eg-stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.eg-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eg-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #C4973A;
  line-height: 1;
}
.eg-stat-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #666;
}

/* ─── EG DESTINATIONS ─── */
.eg-dest-section {
  background: #0C2416;
  padding: clamp(56px, 6vw, 96px) 0;
}
.eg-dest-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}
.eg-dest-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 0 clamp(16px, 3vw, 40px);
  max-width: 1440px;
  margin: 0 auto;
}
.eg-dest-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  border-radius: 2px;
}
.eg-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.eg-dest-card:hover img { transform: scale(1.08); }
.eg-dest-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 16px;
}
.eg-dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.eg-dest-arrow {
  font-size: 1.2rem;
  color: #C4973A;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s;
}
.eg-dest-card:hover .eg-dest-arrow { opacity: 1; transform: translateX(0); }

/* ─── EG WHY ─── */
.eg-why {
  background: #faf8f3;
  padding: clamp(64px, 7vw, 112px) 24px;
}
.eg-why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.eg-why-header {
  text-align: center;
  margin-bottom: 56px;
}
.eg-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.eg-why-item {
  border-top: 1px solid #D8D3C8;
  padding-top: 28px;
}
.eg-why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #C4973A;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.eg-why-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0C2416;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.eg-why-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}

/* ─── EG RESPONSIVE ─── */
@media (max-width: 960px) {
  .eg-about { grid-template-columns: 1fr; }
  .eg-about-img { height: 400px; }
  .eg-dest-row { grid-template-columns: repeat(3, 1fr); }
  .eg-dest-row .eg-dest-card:nth-child(4),
  .eg-dest-row .eg-dest-card:nth-child(5) { display: none; }
  .eg-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .eg-hero-btns { flex-direction: column; align-items: center; }
  .eg-about-img { height: 280px; }
  .eg-dest-row { grid-template-columns: repeat(2, 1fr); }
  .eg-dest-row .eg-dest-card:nth-child(3),
  .eg-dest-row .eg-dest-card:nth-child(4),
  .eg-dest-row .eg-dest-card:nth-child(5) { display: none; }
  .eg-why-grid { grid-template-columns: 1fr; }
  .eg-stats-row { gap: 20px; }
}
