@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,700&display=swap');

/* ═══════════════════════════════════════════════════════════════
   UNIQUE GAP YEARS — Design System v2
   Dark editorial. Inspired by ugap.binodaryal21.workers.dev
   ═══════════════════════════════════════════════════════════════ */



/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:        #101820;
  --bg-1:      #161e28;
  --bg-2:      #1c2630;
  --bg-3:      #232e3a;
  --surface:   #1c2630;
  --surface-2: #223040;
  --border:    rgba(255,255,255,.08);
  --border-2:  rgba(255,255,255,.13);

  --text:      #f0ece4;
  --text-2:    rgba(240,236,228,.65);
  --text-3:    rgba(240,236,228,.38);

  --accent:    #e8440a;          /* orange */
  --accent-h:  #ff5722;
  --accent-lt: rgba(232,68,10,.15);

  --ink:       #101820;          /* for light surfaces */

  --font: 'Inter', system-ui, sans-serif;
  --r:    6px;
  --tr:   .2s ease;
  --max:  1140px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  line-height: 1.12;
  letter-spacing: -.022em;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); letter-spacing: -.03em; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: .95rem; font-weight: 600; letter-spacing: -.01em; }

h1 em, h2 em { font-style: italic; color: var(--text-2); font-weight: inherit; }

p { color: var(--text-2); line-height: 1.8; }

.eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .75rem;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 560px;
}

.section-num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.2rem;
  display: block;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.wrap  { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.sec   { padding: 96px 0; }
.sec-sm { padding: 56px 0; }
.sec-lg { padding: 128px 0; }

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 64px;
  background: rgba(16,24,32,.92);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.nav-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  flex-shrink: 0;
}
.nav-logo em { color: var(--accent); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-2);
  padding: .45rem .9rem;
  border-radius: 4px;
  transition: color var(--tr), background var(--tr);
}
.nav-link:hover { color: var(--text); background: var(--bg-2); }
.nav-link.active { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.nav-cta {
  font-size: .78rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  padding: .45rem 1.1rem;
  border-radius: var(--r);
  transition: background var(--tr);
}
.nav-cta:hover { background: var(--accent-h); }

/* Mobile nav toggle */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* Hide mobile nav by default on all screen sizes — only shown when .open is toggled */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: var(--bg-1);
  z-index: 899;
  overflow-y: auto;
  padding: 1.5rem;
}
.nav-mobile.open { display: block; }


/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-2);
  padding: .45rem .9rem;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--tr), background var(--tr);
}
.nav-dropdown-toggle::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .5;
}
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--text); background: var(--bg-2); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: .6rem;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  display: block;
  padding: .65rem 1rem;
  border-radius: 6px;
  font-size: .82rem;
  color: var(--text-2);
  transition: background var(--tr), color var(--tr);
}
.nav-dropdown-panel a:hover { background: var(--bg-3); color: var(--text); }
.nav-dropdown-panel a strong { display: block; color: var(--text); font-weight: 600; font-size: .84rem; }
.nav-dropdown-panel a span  { font-size: .74rem; color: var(--text-3); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16,24,32,.15) 0%,
    rgba(16,24,32,.3) 40%,
    rgba(16,24,32,.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}
.hero h1 { color: #fff; max-width: 760px; margin-bottom: 1.2rem; }
.hero p  { color: rgba(255,255,255,.75); max-width: 520px; font-size: 1.05rem; margin-bottom: 2rem; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.6rem;
}
.hero-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .28rem .85rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}
.hero-stat-val em { color: var(--accent); font-style: normal; }
.hero-stat-lbl { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: .3rem; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .75rem 1.6rem;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  transition: all var(--tr);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-outline:hover { background: var(--bg-2); border-color: var(--border-2); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--text); background: var(--bg-2); }

.btn-sm { padding: .5rem 1rem; font-size: .76rem; }
.btn-lg { padding: .9rem 2rem; font-size: .88rem; }

.btn-arrow::after { content: '→'; }

/* ── TRIP CARDS ─────────────────────────────────────────────── */
.trip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}
.trip-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.trip-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-3);
}
.trip-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.trip-card:hover .trip-card-img img { transform: scale(1.05); }

.trip-card-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: 100px;
  background: rgba(16,24,32,.75);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}
.badge-accent { background: var(--accent); color: #fff; border-color: var(--accent); }

.trip-card-dur {
  position: absolute;
  bottom: 12px; right: 12px;
  font-size: .7rem;
  font-weight: 600;
  background: rgba(16,24,32,.8);
  color: rgba(255,255,255,.8);
  padding: .28rem .75rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.trip-card-body {
  padding: 1.4rem 1.4rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trip-card-body h3 { font-size: 1rem; color: var(--text); margin-bottom: .4rem; font-weight: 600; }
.trip-card-body p  { font-size: .82rem; color: var(--text-2); line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.trip-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: .8rem 0;
}
.trip-tag {
  font-size: .65rem;
  font-weight: 500;
  color: var(--text-3);
  background: var(--bg-3);
  border-radius: 4px;
  padding: .18rem .55rem;
}

.trip-card-foot {
  padding: .9rem 1.4rem 1.1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.trip-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1;
}
.trip-price-sub {
  font-size: .7rem;
  color: var(--text-3);
  margin-top: .2rem;
}

/* Trip grid */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media(max-width:900px){ .trips-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px){ .trips-grid { grid-template-columns: 1fr; } }

/* ── DESTINATION CARDS ──────────────────────────────────────── */
.dest-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  transition: transform var(--tr), box-shadow var(--tr);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,.4); }
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,24,32,.9) 0%, rgba(16,24,32,.1) 60%);
}
.dest-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem;
}
.dest-card-body h3 { font-size: 1.15rem; color: #fff; margin-bottom: .25rem; }
.dest-card-body p  { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: .7rem; }
.dest-card-meta { font-size: .72rem; color: rgba(255,255,255,.45); }
.dest-card-meta strong { color: rgba(255,255,255,.75); }

.dest-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(16,24,32,.6);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .22rem .7rem;
  backdrop-filter: blur(4px);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media(max-width:900px){ .dest-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .dest-grid { grid-template-columns: 1fr 1fr; gap:.6rem; } }

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item { text-align: center; }
.trust-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1;
}
.trust-val em { color: var(--accent); font-style: normal; }
.trust-lbl { font-size: .72rem; color: var(--text-3); margin-top: .25rem; }

/* ── INLINE STAT ROW (why us section) ──────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3rem;
}
.stat-cell {
  background: var(--bg-1);
  padding: 1.8rem 1.4rem;
  text-align: center;
}
.stat-cell-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-cell-val em { color: var(--accent); font-style: normal; }
.stat-cell-lbl { font-size: .72rem; color: var(--text-3); margin-top: .3rem; }
@media(max-width:680px){ .stat-row { grid-template-columns: 1fr 1fr; } }

/* ── WHY US PILLARS ─────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.pillar {
  background: var(--bg-1);
  padding: 2rem 2rem 2.2rem;
}
.pillar-icon { font-size: 1.4rem; margin-bottom: 1rem; }
.pillar h4 { font-size: .92rem; color: var(--text); margin-bottom: .5rem; }
.pillar p  { font-size: .83rem; color: var(--text-2); line-height: 1.7; }
@media(max-width:580px){ .pillars-grid { grid-template-columns: 1fr; } }

/* ── WHO SECTION ────────────────────────────────────────────── */
.who-list { display: flex; flex-direction: column; gap: 0; }
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.who-item:last-child { border-bottom: none; }
.who-num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-3);
  padding-top: .2rem;
  min-width: 28px;
}
.who-item h4 { font-size: .95rem; color: var(--text); margin-bottom: .3rem; }
.who-item p  { font-size: .82rem; color: var(--text-2); line-height: 1.65; }
.who-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: .5rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.who-link::after { content: '→'; }
.who-link:hover { color: var(--accent-h); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
}
.testimonial blockquote {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testimonial blockquote::before { content: '"'; color: var(--accent); font-size: 1.4rem; line-height: 0; vertical-align: -.3em; margin-right: .1rem; }
.testimonial cite {
  font-style: normal;
  font-size: .75rem;
  color: var(--text-3);
  display: block;
}
.testimonial cite strong { color: var(--text-2); font-weight: 600; }
@media(max-width:780px){ .testimonials-grid { grid-template-columns: 1fr; } }

/* ── STEPS (how booking works) ──────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-lt);
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.step h4 { font-size: .95rem; color: var(--text); margin-bottom: .4rem; }
.step p  { font-size: .83rem; color: var(--text-2); }

/* ── SECTION DIVIDER ────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── TOUR PAGE HERO (shorter) ───────────────────────────────── */
.tour-hero {
  position: relative;
  height: 68vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.tour-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .6;
}
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,24,32,.1) 0%, rgba(16,24,32,.85) 100%);
}
.tour-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
  width: 100%;
}
.tour-hero-content .breadcrumb {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tour-hero-content .breadcrumb a { color: rgba(255,255,255,.55); }
.tour-hero-content .breadcrumb a:hover { color: rgba(255,255,255,.85); }
.tour-hero-content .breadcrumb span { opacity: .4; }
.tour-hero-content h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); color: #fff; }

/* ── TOUR LAYOUT ────────────────────────────────────────────── */
.tour-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: 6rem;
}
@media(max-width:900px){ .tour-body { grid-template-columns: 1fr; } }

/* Stat pills */
.tour-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tour-stat-label { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: .3rem; }
.tour-stat-val   { font-size: .95rem; font-weight: 600; color: var(--text); }

/* Itinerary */
.itinerary { margin-top: 2.5rem; }
.itinerary h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.itinerary-note { font-size: .8rem; color: var(--text-3); margin-bottom: 2rem; }

.itin-day {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.itin-day-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.itin-day-num {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--accent);
  background: var(--accent-lt);
  border-radius: 4px;
  padding: .3rem .6rem;
  white-space: nowrap;
  margin-top: .15rem;
}
.itin-day-loc {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .4rem;
}
.itin-day h3 { font-size: 1.05rem; color: var(--text); }
.itin-day-sub { font-size: .78rem; color: var(--text-3); margin-top: .2rem; }
.itin-day-body p { font-size: .87rem; color: var(--text-2); margin-bottom: 1rem; }

.itin-day-img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-top: 1.2rem;
  opacity: .9;
}

.itin-day-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.itin-day-list li {
  font-size: .82rem;
  color: var(--text-2);
  padding-left: 1.1rem;
  position: relative;
}
.itin-day-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-3);
}

.itin-overnight {
  font-size: .75rem;
  color: var(--text-3);
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.itin-overnight::before { content: '🏨'; font-size: .85rem; }

/* Includes / excludes */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.includes-box { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 1.4rem; }
.includes-box h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem; }
.includes-list { display: flex; flex-direction: column; gap: .5rem; }
.includes-list li { font-size: .83rem; color: var(--text-2); padding-left: 1.2rem; position: relative; }
.includes-list li::before { position: absolute; left: 0; }
.includes-list.yes li::before { content: '✓'; color: #4ade80; }
.includes-list.no  li::before { content: '✗'; color: var(--text-3); }
@media(max-width:580px){ .includes-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 1.3rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
}
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--text-3); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; color: var(--accent); }
.faq-a {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-top: .8rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── PRICE SIDEBAR ──────────────────────────────────────────── */
.price-sidebar {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  overflow: hidden;
}
.price-sidebar-top {
  padding: 1.6rem;
  border-bottom: 1px solid var(--border);
}
.price-sidebar-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
}
.price-sidebar-sub {
  font-size: .75rem;
  color: var(--text-3);
  margin-top: .3rem;
}
.price-sidebar-body { padding: 1.4rem 1.6rem; }
.price-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.price-sidebar-row:last-of-type { border-bottom: none; }
.price-sidebar-row span:first-child { color: var(--text-3); }
.price-sidebar-row span:last-child  { color: var(--text); font-weight: 600; }
.price-sidebar-actions {
  padding: 1.2rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.price-sidebar-contact {
  font-size: .75rem;
  color: var(--text-3);
  text-align: center;
  margin-top: .3rem;
}
.price-sidebar-contact a { color: var(--text-2); text-decoration: underline; }

/* Sticky mobile bar */
.price-bar-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--bg-1);
  border-top: 1px solid var(--border-2);
  padding: .8rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.price-bar-mobile-price { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; }
.price-bar-mobile-sub   { font-size: .68rem; color: var(--text-3); }
@media(max-width:900px){
  .price-bar-mobile { display: flex; }
  body { padding-bottom: 72px; }
}

/* ── DESTINATION HUB ────────────────────────────────────────── */
.hub-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hub-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
}
.hub-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(16,24,32,.1) 0%, rgba(16,24,32,.88) 100%);
}
.hub-hero-content { position: relative; z-index: 2; padding-bottom: 2.5rem; width: 100%; }
.hub-hero-content h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); color: #fff; }
.hub-hero-content p  { color: rgba(255,255,255,.65); max-width: 560px; margin-top: .8rem; }

/* ── FORMS ──────────────────────────────────────────────────── */
.ugap-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media(max-width:580px){ .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .04em;
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font: inherit;
  font-size: .85rem;
  padding: .7rem 1rem;
  transition: border-color var(--tr);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-select { cursor: pointer; }
option { background: var(--bg-1); }
.form-textarea { resize: vertical; min-height: 110px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media(max-width:580px){ .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-brand { grid-column: 1; }
@media(max-width:900px){ .footer-brand { grid-column: 1 / -1; } }

.footer-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.025em;
  margin-bottom: .8rem;
  display: block;
}
.footer-logo em { color: var(--accent); font-style: italic; }
.footer-tagline { font-size: .82rem; color: var(--text-3); line-height: 1.7; max-width: 280px; }
.footer-email { font-size: .82rem; color: var(--text-2); margin-top: 1rem; text-decoration: underline; text-underline-offset: 3px; }
.footer-email:hover { color: var(--accent); }

.footer-col h5 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a {
  font-size: .82rem;
  color: var(--text-2);
  transition: color var(--tr);
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .75rem; color: var(--text-3); }
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { font-size: .75rem; color: var(--text-3); transition: color var(--tr); }
.footer-links a:hover { color: var(--text-2); }

/* ── HOMEPAGE SPECIFIC ──────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: .8rem; }
.section-header p  { font-size: .95rem; color: var(--text-2); line-height: 1.8; }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Scrolling destination marquee */
.dest-marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.dest-marquee-inner {
  display: flex;
  gap: 2.5rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.dest-marquee-inner span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.dest-marquee-inner span.accent { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb-bar {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  color: var(--text-3);
}
.breadcrumb a { color: var(--text-2); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { opacity: .35; }

/* ── RESPONSIBLE BANNER ─────────────────────────────────────── */
.responsible-banner {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.responsible-banner p { font-size: .87rem; color: var(--text-2); line-height: 1.7; flex: 1; }
.responsible-banner ul { flex: 1; min-width: 220px; }
.responsible-banner ul li { font-size: .82rem; color: var(--text-2); padding-left: 1.1rem; position: relative; margin-bottom: .4rem; }
.responsible-banner ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* ── SEARCH / FILTER ────────────────────────────────────────── */
.filter-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-bar .form-select { flex: 1; min-width: 140px; }

/* ── CONTACT / CTA SECTION ──────────────────────────────────── */
.cta-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media(max-width:780px){ .cta-inner { grid-template-columns: 1fr; } }

/* ── RESPONSIVE NAV ─────────────────────────────────────────── */
@media(max-width:780px){
  .nav-links, .nav-dropdown { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile {
    display: none;
    position: fixed;
    inset: 64px 0 0;
    background: var(--bg-1);
    z-index: 899;
    overflow-y: auto;
    padding: 1.5rem;
  }
  .nav-mobile.open { display: block; }
  .nav-mobile a {
    display: block;
    padding: .9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
    color: var(--text-2);
  }
  .nav-mobile a:hover { color: var(--text); }
  .nav-mobile-section { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-3); padding: 1.2rem 0 .5rem; }
}

@media(max-width:780px){
  .sec { padding: 64px 0; }
  .sec-lg { padding: 80px 0; }
  .tour-body { grid-template-columns: 1fr; }
  .price-sidebar { position: static; }
}

/* ── UTILITIES ──────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-2); }
.text-dim    { color: var(--text-3); }
.fw-800 { font-weight: 800; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Override old inline styles that conflict */
.site-nav     { background: rgba(16,24,32,.92) !important; }
.site-footer  { background: var(--bg-1) !important; color: var(--text) !important; }



/* ═══════════════════════════════════════════════════════════════
   READABILITY FIXES — override all inherited light-theme inline styles
   ═══════════════════════════════════════════════════════════════ */

/* Force all text to be readable on dark background */
body, body * {
  color: var(--text);
}

/* Paragraphs and body copy — readable warm off-white */
p, li, td, th, label, span, div {
  color: var(--text-2);
}

/* Headings — full brightness */
h1, h2, h3, h4, h5, h6 {
  color: var(--text) !important;
}

/* Links */
a { color: var(--text-2); }
a:hover { color: var(--text); }

/* Override hardcoded dark text colours left from old theme */
[style*="color:#1a1a1a"],
[style*="color: #1a1a1a"],
[style*="color:#333"],
[style*="color:#444"],
[style*="color:#555"],
[style*="color:#222"],
[style*="color:#111"] {
  color: var(--text) !important;
}

/* Override hardcoded light backgrounds */
[style*="background:#fff"],
[style*="background: #fff"],
[style*="background-color:#fff"],
[style*="background:#fafafa"],
[style*="background:#f8f8f8"],
[style*="background:#f9f3ee"],
[style*="background:#f5ede4"],
[style*="background:#eaf4ee"],
[style*="background:#e8f2fa"],
[style*="background:#fdf4e3"],
[style*="background:white"],
[style*="background: white"] {
  background: var(--bg-1) !important;
}

/* Sections and containers */
section, main, article, aside, div.sec, div.sec-sm {
  background: inherit;
}

/* Overview strip / stat bars */
.overview-strip, .ov-item {
  background: var(--bg-1) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}
.ov-label { color: var(--text-3) !important; }
.ov-value { color: var(--text) !important; font-weight: 700; }

/* Cards */
.card, .card-body {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
.card-body h3, .card-body h4 { color: var(--text) !important; }
.card-body p { color: var(--text-2) !important; }

/* Price elements */
.price, .th-price { color: var(--text) !important; }
.price-dur, .price-note { color: var(--text-3) !important; }

/* Forms */
input, select, textarea, .form-input, .form-select, .form-textarea {
  background: var(--bg-2) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}
input::placeholder, textarea::placeholder { color: var(--text-3) !important; }

/* Tables */
table { border-color: var(--border) !important; }
th, td {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text-2) !important;
}
th { color: var(--text) !important; font-weight: 600; }
tr:nth-child(even) td { background: var(--bg-1) !important; }

/* Itinerary day items */
.itin-day, .day-item, .itinerary-day {
  border-color: var(--border) !important;
  background: transparent !important;
}
.itin-day h3, .day-title { color: var(--text) !important; }
.itin-day p, .day-desc   { color: var(--text-2) !important; }
.itin-day-img             { opacity: .9; border-radius: 8px; }

/* Includes / excludes boxes */
.included-box, .what-included, [class*="include"] {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}

/* Buttons */
.btn-orange, .btn-primary, [style*="background:#E8440A"], [style*="background:#e8440a"],
[style*="background:var(--orange)"] {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}
.btn-white, .btn-outline {
  background: transparent !important;
  color: var(--text) !important;
  border-color: var(--border-2) !important;
}

/* Badges */
.card-badge, .badge-type, .tour-type-badge {
  background: rgba(16,24,32,.75) !important;
  color: rgba(255,255,255,.85) !important;
  border-color: rgba(255,255,255,.1) !important;
}

/* Hero sections — always dark overlay, white text */
.hero *, .tour-hero *, .hub-hero * {
  position: relative;
}
.hero h1, .tour-hero h1, .hub-hero h1,
.hero-content h1, .tour-hero-content h1 {
  color: #fff !important;
}
.hero p, .tour-hero p, .hub-hero p {
  color: rgba(255,255,255,.75) !important;
}

/* Eyebrow labels */
.eyebrow { color: var(--accent) !important; }

/* Muted text helpers */
.muted, .text-muted, [style*="color:#999"], [style*="color:#888"],
[style*="color:#aaa"], [style*="color:#bbb"] {
  color: var(--text-3) !important;
}

/* Horizontal rules */
hr { border-color: var(--border) !important; }

/* Blockquotes */
blockquote { color: var(--text-2) !important; border-color: var(--accent) !important; }

/* Nav override (belt and braces) */
.site-nav { background: rgba(16,24,32,.92) !important; border-bottom-color: var(--border) !important; }
.nav-logo  { color: var(--text) !important; }
.nav-link, .nav-dropdown-toggle { color: var(--text-2) !important; }

/* Footer */
.site-footer, .foot-inner { background: var(--bg-1) !important; }
.foot-copy, .footer-copy  { color: var(--text-3) !important; }
.footer-col h5            { color: var(--text-3) !important; }
.footer-col ul li a       { color: var(--text-2) !important; }
.footer-col ul li a:hover { color: var(--text) !important; }
.footer-logo              { color: var(--text) !important; }
.footer-tagline           { color: var(--text-3) !important; }

/* ═══════════════════════════════════════════════════════════════
   LEGACY TOUR PAGE COMPATIBILITY
   Old tour pages use different class names — mapped here
   ═══════════════════════════════════════════════════════════════ */

/* Tour page layout */
.tour-wrap, .page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 24px 5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media(max-width:900px){ .tour-wrap, .page-wrap { grid-template-columns: 1fr; } }

/* Sidebar */
.sidebar {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  overflow: hidden;
}
.sidebar-header {
  background: var(--bg-3);
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-header h3 {
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .25rem;
}
.sidebar-header p { font-size: .78rem; color: var(--text-3); }
.sidebar-body { padding: 1.4rem 1.6rem; }
.price-display {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .3rem;
}
.price-note { font-size: .75rem; color: var(--text-3); margin-bottom: 1.2rem; }
.sidebar-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .85rem 1.4rem;
  background: var(--accent);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--tr);
  margin-bottom: .7rem;
}
.sidebar-book-btn:hover { background: var(--accent-h); }
.sidebar-contact { font-size: .75rem; color: var(--text-3); text-align: center; }
.sidebar-contact a { color: var(--text-2); text-decoration: underline; }

/* What's included */
.inc-list, .exc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.inc-list li, .exc-list li {
  font-size: .83rem;
  color: var(--text-2);
  padding-left: 1.4rem;
  position: relative;
}
.inc-list li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.exc-list li::before { content: '✗'; position: absolute; left: 0; color: var(--text-3); }

/* Highlights grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
@media(max-width:600px){ .highlights-grid { grid-template-columns: 1fr 1fr; } }
.hl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem;
}
.hl-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.hl-card h4 { font-size: .85rem; color: var(--text); margin-bottom: .3rem; }
.hl-card p  { font-size: .78rem; color: var(--text-2); }

/* Overview strip */
.overview-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
  margin-bottom: 2rem;
}
.ov-item { display: flex; flex-direction: column; }
.ov-label { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: .3rem; }
.ov-value { font-size: .95rem; font-weight: 600; color: var(--text); }

/* Day itinerary */
.itin-day {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.day-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.day-num {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--accent);
  background: var(--accent-lt);
  border-radius: 4px;
  padding: .3rem .6rem;
  white-space: nowrap;
  margin-top: .1rem;
  flex-shrink: 0;
}
.day-loc { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: .3rem; }
.day-title-block h3, .day-header h3 { font-size: 1.05rem; color: var(--text); }
.day-body p, .day-desc { font-size: .87rem; color: var(--text-2); margin-bottom: 1rem; line-height: 1.75; }
.day-photo img, .day-photo-single img, .day-photo-grid img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-top: 1rem;
  opacity: .9;
}
.day-overnight {
  font-size: .75rem;
  color: var(--text-3);
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}
.day-activities { margin-top: .8rem; }
.day-activities li { font-size: .82rem; color: var(--text-2); padding-left: 1.1rem; position: relative; margin-bottom: .3rem; }
.day-activities li::before { content: '—'; position: absolute; left: 0; color: var(--text-3); }

/* Section headers */
.sec-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .75rem;
}
.sec-title { font-size: clamp(1.4rem, 2.5vw, 2.2rem); color: var(--text); margin-bottom: 1rem; }
.rule { width: 40px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 1.2rem; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .5rem;
  margin: 1.5rem 0;
}
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; }

/* Contact mini */
.contact-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin-top: 2rem;
}

/* Hero for old tour pages */
.hero-section {
  position: relative;
  height: 65vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero-section .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .6;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(16,24,32,.1) 0%, rgba(16,24,32,.88) 100%); }
.hero-content { position: relative; z-index: 2; padding-bottom: 2.5rem; width: 100%; }
.hero-content h1 { color: #fff !important; }
.hero-content p  { color: rgba(255,255,255,.7) !important; }
.hero-tag {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6); background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15); border-radius: 100px; padding: .28rem .85rem;
  display: inline-block; margin-right: .4rem; margin-bottom: .4rem;
}
.hero-tags { margin-bottom: 1rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: rgba(255,255,255,.45); margin-bottom: .8rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .35; }

/* ═══════════════════════════════════════════════════════════════
   NEPAL SITE — additional tokens
   ═══════════════════════════════════════════════════════════════ */
:root {
  --teal:    #1A7A6E;   /* secondary — nature/eco */
  --teal-lt: rgba(26,122,110,.15);
  --gold:    #C5831A;   /* tertiary — culture/heritage */
  --gold-lt: rgba(197,131,26,.15);
}

/* Section type badges */
.type-trek    { background: var(--accent-lt); color: var(--accent); }
.type-vol     { background: var(--teal-lt);   color: var(--teal); }
.type-school  { background: var(--gold-lt);   color: var(--gold); }

/* Difficulty bar */
.diff-bar {
  display: flex; gap: 4px; align-items: center; margin-top: .4rem;
}
.diff-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-2);
}
.diff-dot.on { background: var(--accent); }

/* Duration pill */
.duration-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 600;
  background: var(--bg-3); color: var(--text-2);
  border-radius: 100px; padding: .22rem .75rem;
}

/* Month availability strip */
.months-strip {
  display: flex; gap: 4px; flex-wrap: wrap; margin-top: .6rem;
}
.month-tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--bg-3); color: var(--text-3);
  border-radius: 3px; padding: .15rem .4rem;
}
.month-tag.best { background: var(--teal-lt); color: var(--teal); }

/* Trek stats row */
.trek-stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1.5rem 0 2rem;
}
.trek-stat-label { font-size:.62rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--text-3); margin-bottom:.25rem; }
.trek-stat-val   { font-size:.95rem; font-weight:700; color:var(--text); }

/* Volunteer pricing table */
.vol-pricing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 1.5rem 0;
}
.vol-pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
}
.vol-pricing-row:last-child { border-bottom: none; }
.vol-pricing-row span:first-child { color: var(--text-2); }
.vol-pricing-row span:last-child  { font-weight: 700; color: var(--text); }
.vol-pricing-row.highlight        { background: var(--teal-lt); }
.vol-pricing-row.highlight span   { color: var(--teal); }

/* School trip features */
.school-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.5rem 0;
}
.school-feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 1rem 1.2rem;
  display: flex; gap: .8rem; align-items: flex-start;
}
.school-feature-icon { font-size: 1.1rem; flex-shrink: 0; }
.school-feature h4   { font-size: .82rem; color: var(--text); margin-bottom: .2rem; }
.school-feature p    { font-size: .76rem; color: var(--text-2); line-height: 1.6; }
@media(max-width:560px){ .school-features { grid-template-columns: 1fr; } }

/* Itinerary accordion */
.itin-accordion { margin-top: 2rem; }
.itin-item {
  border-top: 1px solid var(--border);
}
.itin-item:last-child { border-bottom: 1px solid var(--border); }
.itin-toggle {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.2rem 0; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
}
.itin-toggle-num {
  font-size: .62rem; font-weight: 800; letter-spacing: .12em;
  color: var(--accent); background: var(--accent-lt);
  border-radius: 4px; padding: .25rem .55rem; flex-shrink: 0;
}
.itin-toggle-title { font-size: .95rem; font-weight: 600; color: var(--text); flex: 1; text-align:left; }
.itin-toggle-loc   { font-size: .72rem; color: var(--text-3); }
.itin-toggle-arrow { color: var(--text-3); font-size: .9rem; flex-shrink:0; transition: transform .2s; }
.itin-item.open .itin-toggle-arrow { transform: rotate(90deg); color: var(--accent); }
.itin-body {
  padding: 0 0 1.4rem 3.2rem;
  display: none;
}
.itin-item.open .itin-body { display: block; }
.itin-body p   { font-size: .87rem; color: var(--text-2); line-height: 1.8; margin-bottom: .8rem; }
.itin-body img { width:100%; border-radius:8px; aspect-ratio:16/9; object-fit:cover; margin-top:.8rem; opacity:.9; }
.itin-overnight { font-size:.74rem; color:var(--text-3); margin-top:.8rem; }

