@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Syne:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ═══════════════════════════════════════════════
   DROP EVERYTHING AND GO — THE DISPATCH
   Aesthetic: Expedition Journal × Luxury Editorial
   ═══════════════════════════════════════════════ */

:root {
  /* Deep ocean navy — trust, reliability, credibility */
  --ink:       #0B1728;
  --ink-2:     #112038;
  --ink-3:     #1A2E4A;
  /* Warm parchment — calm, clarity, lets colour pop */
  --parchment: #F6EEE0;
  --cream:     #FBF8F2;
  --white:     #FFFFFF;
  /* Amber-gold — sunshine, warmth, luxury, happiness */
  --gold:      #E09420;
  --gold-lt:   #F0B840;
  --gold-dk:   #B87418;
  /* Teal — eco, adventure, freshness */
  --teal:      #0EBFB8;
  --teal-dk:   #0A9590;
  /* Coral-orange — energy, urgency, adventure, excitement */
  --coral:     #E86030;
  --coral-lt:  #F07848;
  /* Sky blue — trust, calm, reliability, open skies */
  --sky:       #2E88D0;
  --sky-lt:    #4AA0E4;
  --smoke:     #8A9AAE;
  --mist:      #B8C8DC;
  --border:    rgba(224,148,32,0.18);

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-ui:      'Syne', sans-serif;
  --ff-mono:    'JetBrains Mono', monospace;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-sine:   cubic-bezier(0.37, 0, 0.63, 1);

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;

  --section-pad: clamp(3.5rem, 7vw, 6rem);
  --gutter: clamp(1.5rem, 5vw, 5rem);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-ui); background: var(--ink); color: var(--parchment); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: var(--ff-ui); }
button { cursor: pointer; }

/* ── SCROLL PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%;
  background: linear-gradient(to right, var(--gold), var(--teal));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── ANNOUNCEMENT BANNER ── */
.ann-bar {
  background: linear-gradient(90deg, #0A2040, #112850, #0A2040);
  border-bottom: 1px solid rgba(14,191,184,0.25);
  padding: 0.7rem var(--gutter);
  text-align: center;
  position: relative; z-index: 901;
}
.ann-bar a {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--ff-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--parchment); transition: color 0.2s;
}
.ann-bar a:hover { color: var(--teal); }
.ann-badge {
  background: var(--teal); color: var(--ink);
  border-radius: 100px; padding: 0.18rem 0.6rem;
  font-weight: 800; letter-spacing: 0.1em;
}
.ann-arr { color: var(--teal); font-size: 0.8rem; }
@media (max-width: 768px) {
  .ann-bar { padding: 0.6rem 1rem; }
  .ann-bar a { font-size: 0.56rem; gap: 0.5rem; }
}

/* ── NAV ── */
#nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 900;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease-expo), border-color 0.5s, backdrop-filter 0.5s;
}
#nav.scrolled {
  background: rgba(11,23,40,0.9);
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--parchment);
  display: flex; flex-direction: column; gap: 3px;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo-sub {
  font-family: var(--ff-mono);
  font-size: 0.5rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 400;
}
.nav-links { list-style: none; display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,239,224,0.55);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.35s var(--ease-expo);
}
.nav-links a:hover, .nav-links a.active { color: var(--parchment); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--sky) !important; color: var(--white) !important;
  padding: 0.58rem 1.3rem !important; border-radius: var(--r-xs) !important;
  font-weight: 700 !important; letter-spacing: 0.1em !important;
  transition: background 0.3s, transform 0.3s var(--ease-spring) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--sky-lt) !important; transform: translateY(-1px) !important; }

.nav-ham { display: none; background: none; border: none; width: 28px; height: 18px;
           position: relative; flex-direction: column; justify-content: space-between; }
.nav-ham span { display: block; width: 100%; height: 1.5px; background: var(--parchment);
                transform-origin: left; transition: transform 0.35s var(--ease-expo), opacity 0.3s; }
.nav-ham.open span:nth-child(1) { transform: rotate(39deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: rotate(-39deg); }

.nav-mob {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 880; background: var(--ink);
  list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
  visibility: hidden;
}
.nav-mob.open { opacity: 1; pointer-events: all; visibility: visible; }
.nav-mob a {
  font-family: var(--ff-display); font-size: clamp(2rem, 7vw, 3.8rem);
  font-weight: 700; color: var(--parchment); letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nav-mob a:hover { color: var(--gold); }
.mob-cta-btn {
  background: var(--sky); color: var(--white) !important;
  padding: 0.9rem 2.5rem !important; border-radius: var(--r-xs) !important;
  font-family: var(--ff-ui) !important; font-size: 0.75rem !important;
  font-weight: 800 !important; letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

/* ── REVEAL ANIMATIONS ── */
.js-ready .rv { opacity: 0; transform: translateY(32px);
      transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); }
.js-ready .rv.vis { opacity: 1; transform: none; }
.rv1 { transition-delay: 0.1s; } .rv2 { transition-delay: 0.2s; }
.rv3 { transition-delay: 0.3s; } .rv4 { transition-delay: 0.4s; }
.rv5 { transition-delay: 0.5s; }

/* ── EYEBROW LABEL ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--ff-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before { content: '//'; color: var(--gold-dk); }
.eyebrow.light::before { color: var(--gold-dk); }
.eyebrow.teal { color: var(--teal); }
.eyebrow.teal::before { color: var(--teal-dk); }

/* ── HEADINGS ── */
.h-display {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.025em;
  color: var(--parchment);
}
.h-display em {
  font-style: italic; font-weight: 300; color: var(--gold-lt);
  font-variation-settings: 'opsz' 72;
}
.h-display.on-light { color: var(--ink); }
.h-display.on-light em { color: var(--gold-dk); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-ui); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.88rem 2rem; border-radius: var(--r-sm); border: none;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-110%) skewX(-12deg);
  transition: transform 0.5s var(--ease-expo);
}
.btn:hover::after { transform: translateX(110%) skewX(-12deg); }
.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 4px 24px rgba(200,145,42,0.28); }
.btn-gold:hover { box-shadow: 0 8px 36px rgba(200,145,42,0.42); }
.btn-wire { background: transparent; color: var(--parchment); border: 1px solid rgba(245,239,224,0.28); }
.btn-wire:hover { border-color: var(--gold); color: var(--gold); }
.btn-wire-dark { background: transparent; color: var(--ink); border: 1px solid rgba(11,13,16,0.22); }
.btn-wire-dark:hover { border-color: var(--gold-dk); color: var(--gold-dk); }
.btn-teal { background: transparent; color: var(--teal); border: 1px solid rgba(14,191,184,0.35); }
.btn-teal:hover { background: rgba(14,191,184,0.08); border-color: var(--teal); }

.btn-coral { background: var(--coral); color: var(--white); box-shadow: 0 4px 24px rgba(232,96,48,0.28); }
.btn-coral:hover { background: var(--coral-lt); box-shadow: 0 8px 36px rgba(232,96,48,0.42); }
.btn-sky { background: var(--sky); color: var(--white); box-shadow: 0 4px 24px rgba(46,136,208,0.28); }
.btn-sky:hover { background: var(--sky-lt); box-shadow: 0 8px 36px rgba(46,136,208,0.42); }
.btn-arr::after { content: '→'; font-size: 0.85em; transition: transform 0.3s; background: none; transform: none; position: static; }
.btn-arr:hover::after { transform: translateX(4px) !important; }

/* ── FORMS ── */
.f-label { font-family: var(--ff-mono); font-size: 0.58rem; font-weight: 500;
            letter-spacing: 0.2em; text-transform: uppercase; color: var(--smoke); display: block; margin-bottom: 0.5rem; }
.f-input, .f-select, .f-textarea {
  width: 100%; background: rgba(245,239,224,0.06); border: 1px solid rgba(245,239,224,0.12);
  border-radius: var(--r-sm); padding: 0.88rem 1.1rem;
  font-family: var(--ff-ui); font-size: 0.88rem; color: var(--parchment); outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.f-input:focus, .f-select:focus, .f-textarea:focus { border-color: var(--gold); background: rgba(245,239,224,0.09); }
.f-input::placeholder, .f-textarea::placeholder { color: rgba(245,239,224,0.22); }
.f-select option { background: var(--ink-2); color: var(--parchment); }
.f-select { appearance: none; }
.f-textarea { resize: vertical; min-height: 130px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.f-group { display: flex; flex-direction: column; gap: 0.45rem; }

/* ── COOKIE ── */
.ck {
  position: fixed; bottom: 1.5rem; left: 50%; z-index: 9997;
  transform: translateX(-50%) translateY(140px);
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.2rem 1.8rem;
  display: flex; align-items: center; gap: 2rem;
  max-width: 660px; width: calc(100% - 3rem);
  box-shadow: 0 20px 70px rgba(0,0,0,0.55); backdrop-filter: blur(16px);
  transition: transform 0.6s var(--ease-expo);
}
.ck.vis { transform: translateX(-50%) translateY(0); }
.ck-text { font-size: 0.8rem; color: var(--mist); line-height: 1.65; }
.ck-text a { color: var(--gold); }
.ck-btns { display: flex; gap: 0.65rem; flex-shrink: 0; }
.ck-acc { background: var(--sky); color: var(--white); border: none;
          border-radius: var(--r-xs); padding: 0.52rem 1.1rem;
          font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.ck-dec { background: rgba(255,255,255,0.06); color: var(--smoke); border: 1px solid rgba(255,255,255,0.1);
          border-radius: var(--r-xs); padding: 0.52rem 1rem;
          font-size: 0.7rem; font-weight: 600; }

/* ── PAGE HERO (inner pages) ── */
.pg-hero {
  min-height: 56vh; display: flex; align-items: flex-end;
  padding: 9rem var(--gutter) 5rem;
  position: relative; overflow: hidden; background: var(--ink);
}
.pg-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, var(--ink-2) 0%, var(--ink) 60%);
}
.pg-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(200,145,42,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 70% at 20% 50%, black 20%, transparent 80%);
}
.pg-hero-content { position: relative; z-index: 2; width: 100%; max-width: 1300px; margin: 0 auto; }
.pg-eyebrow { font-family: var(--ff-mono); font-size: 0.6rem; font-weight: 500;
               letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
               margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.pg-eyebrow::before { content: '→'; }
.pg-title {
  font-family: var(--ff-display); font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 0.9;
  color: var(--parchment);
}
.pg-title em { font-style: italic; font-weight: 300; color: var(--gold-lt); font-variation-settings: 'opsz' 72; }
.pg-subtitle { font-size: 1rem; color: var(--smoke); margin-top: 1.5rem; max-width: 500px; line-height: 1.72; }
.pg-hero-rule { position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
                 background: linear-gradient(to right, var(--gold), transparent 60%); opacity: 0.4; }

/* ── SECTION ── */
.s { padding: var(--section-pad) var(--gutter); position: relative; }
.s-inner { max-width: 1300px; margin: 0 auto; }
.s-top { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }

/* ── DIAGONAL CLIP ── */
.clip-top { clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); margin-top: -3%; padding-top: calc(var(--section-pad) + 4%); }
.clip-bottom { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); padding-bottom: calc(var(--section-pad) + 4%); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.ft-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 4rem; padding: 5rem var(--gutter) 4rem;
  max-width: 1300px; margin: 0 auto;
}
.ft-brand > p { font-size: 0.85rem; color: var(--smoke); line-height: 1.78; margin: 1.2rem 0 1.8rem; max-width: 270px; }
.ft-social { display: flex; gap: 0.75rem; }
.ft-soc-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(245,239,224,0.05); border: 1px solid rgba(245,239,224,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease-spring);
}
.ft-soc-btn:hover { background: rgba(200,145,42,0.12); border-color: var(--gold); transform: translateY(-2px); }
.ft-col h5 { font-family: var(--ff-mono); font-size: 0.55rem; font-weight: 500;
              letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.ft-col a { font-size: 0.83rem; color: var(--smoke); transition: color 0.2s; }
.ft-col a:hover { color: var(--parchment); }
.ft-badges { max-width: 1300px; margin: 0 auto; padding: 1.5rem var(--gutter);
              border-top: 1px solid rgba(245,239,224,0.05); display: flex; gap: 2rem; flex-wrap: wrap; }
.ft-badge { font-family: var(--ff-mono); font-size: 0.6rem; color: rgba(138,143,158,0.45); display: flex; align-items: center; gap: 0.5rem; }
.ft-bottom { max-width: 1300px; margin: 0 auto; padding: 1.5rem var(--gutter);
              border-top: 1px solid rgba(245,239,224,0.05);
              display: flex; align-items: center; justify-content: space-between; }
.ft-bottom p { font-size: 0.73rem; color: rgba(138,143,158,0.45); }
.ft-bottom-links { display: flex; gap: 2rem; }
.ft-bottom-links a { font-size: 0.7rem; color: rgba(138,143,158,0.4); transition: color 0.2s; }
.ft-bottom-links a:hover { color: var(--smoke); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ft-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .ann-bar a { font-size: 0.5rem; gap: 0.35rem; letter-spacing: 0.1em; }
  .ann-badge { display: none; }
  #nav { padding: 0 1.2rem; top: 32px; height: 60px; }
  #nav.scrolled { top: 32px; }
  .nav-logo { font-size: 0.88rem; }
  .nav-logo-sub { display: none; }
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .nav-mob { top: 0; }
  .ft-top { grid-template-columns: 1fr; gap: 2rem; }
  .ft-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .ck { flex-direction: column; gap: 1rem; padding: 1.2rem; }
  .f-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ann-bar { padding: 0.5rem 1rem; }
  .ann-bar a { font-size: 0.48rem; }
}
@media (max-width: 480px) {
  .pg-title { font-size: clamp(3rem, 15vw, 5rem); }
  .ann-bar { padding: 0.5rem 1rem; }
  .ann-bar a { font-size: 0.48rem; }
}

/* ═══════════════════════════════════════════════════════════
   DESTINATION PAGES — WHERE TO BASE YOURSELF
   ═══════════════════════════════════════════════════════════ */

.areas-s {
  background: var(--ink-2);
}
.areas-s .s-inner {
  max-width: 1240px;
}
.areas-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.areas-intro p {
  color: var(--smoke);
  font-size: 0.95rem;
  line-height: 1.78;
  margin-top: 0.8rem;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
.area-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, background 0.3s;
}
.area-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,145,42,0.3);
  background: rgba(255,255,255,0.05);
}
.area-top {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.area-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.area-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.area-best {
  font-family: var(--ff-mono);
  font-size: 0.52rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35rem;
  line-height: 1.55;
}
.area-desc {
  font-size: 0.875rem;
  color: var(--smoke);
  line-height: 1.82;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   DESTINATION PAGES — INSIDER TIPS
   ═══════════════════════════════════════════════════════════ */

.insider-s {
  background: var(--parchment);
}
.insider-s .s-inner {
  max-width: 820px;
}
.insider-s .eyebrow {
  color: var(--gold-dk) !important;
}
.insider-s .h-display {
  color: var(--ink);
}
.tips-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}




/* ═══════════════════════════════════════════════════════════
   BACKPACKER GUIDES — REGIONAL BREAKDOWN
   ═══════════════════════════════════════════════════════════ */

.bp-regions-s {
  background: var(--ink);
  border-top: 1px solid rgba(14,191,184,0.12);
}
.bp-regions-s .s-inner {
  max-width: 1240px;
}
.bp-regions-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.bp-regions-intro p {
  color: var(--smoke);
  font-size: 0.92rem;
  line-height: 1.78;
  margin-top: 0.7rem;
}
.bp-regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}
.bp-region-card {
  display: flex;
  flex-direction: column;
  background: rgba(14,191,184,0.04);
  border: 1px solid rgba(14,191,184,0.1);
  border-radius: var(--r-md);
  padding: 1.6rem;
  transition: border-color 0.3s, transform 0.35s var(--ease-spring), background 0.3s;
}
.bp-region-card:hover {
  border-color: rgba(14,191,184,0.3);
  transform: translateY(-3px);
  background: rgba(14,191,184,0.07);
}
.bp-region-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.bp-region-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.bp-region-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--parchment);
  line-height: 1.2;
}
.bp-region-desc {
  font-size: 0.875rem;
  color: var(--smoke);
  line-height: 1.78;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   BACKPACKER GUIDES — MONEY BREAKDOWN
   ═══════════════════════════════════════════════════════════ */

.bp-money-s {
  background: var(--parchment);
  border-top: 1px solid rgba(11,23,40,0.08);
}
.bp-money-s .s-inner {
  max-width: 960px;
}
.bp-money-s .h-display {
  color: var(--ink);
}
.bp-money-s .eyebrow {
  color: var(--gold-dk) !important;
}
.bp-money-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}
.bp-money-item {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.4rem;
  background: rgba(11,23,40,0.05);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
}
.bp-money-item strong {
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: block;
  margin-bottom: 0.45rem;
}
.bp-money-item p {
  font-size: 0.875rem;
  color: #3d4758;
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   BACKPACKER GUIDES — ECO & COMMUNITY TIPS
   ═══════════════════════════════════════════════════════════ */

.bp-eco-s {
  background: var(--ink-2);
  border-top: 1px solid rgba(14,191,184,0.1);
}
.bp-eco-s .s-inner {
  max-width: 820px;
}
.bp-eco-box h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.bp-eco-box p {
  font-size: 0.92rem;
  color: var(--smoke);
  line-height: 1.88;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .areas-grid,
  .bp-regions-grid,
  .bp-money-grid {
    grid-template-columns: 1fr;
  }
  .areas-intro,
  .bp-regions-intro {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .area-card,
  .bp-region-card {
    padding: 1.3rem;
  }
  .bp-money-item {
    padding: 1rem 1.2rem;
  }
}

/* ── Insider Tips — light list style ── */
.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(11,23,40,0.07);
}
.tip-item:last-child { border-bottom: none; }
.tip-bullet {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--gold-dk);
  flex-shrink: 0;
  font-weight: 500;
  opacity: 0.5;
  margin-top: 0.18rem;
}
.tip-item p {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.75;
  margin: 0;
}

/* ── Plan CTA Banner ── */
.plan-s {
  background: linear-gradient(140deg, #112038, #0D2040);
  text-align: center;
  padding: 3rem var(--gutter);
}
.plan-s h2 {
  font-family: var(--ff-ui);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--parchment);
  letter-spacing: -0.02em;
}
.plan-s p {
  color: var(--smoke);
  max-width: 420px;
  margin: 0.7rem auto 1.8rem;
  line-height: 1.7;
  font-size: 0.88rem;
}
.plan-btns {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   BACKPACKER GUIDE — REVAMPED INTRO
   ═══════════════════════════════════════════════ */
.bp-intro-s { background: var(--ink); border-bottom: 1px solid rgba(14,191,184,0.15); }
.bp-intro-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start;
}
.bp-intro-body { }
.bp-vibe-tags {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.4rem;
}
.bp-vibe-tag {
  font-family: var(--ff-mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  background: rgba(14,191,184,0.1); color: var(--teal);
  border: 1px solid rgba(14,191,184,0.2);
}
.bp-intro-body h2 {
  font-family: var(--ff-display); font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--parchment); margin-bottom: 1rem;
}
.bp-intro-body h2 em { font-style: italic; font-weight: 300; color: var(--teal); font-variation-settings: 'opsz' 48; }
.bp-intro-body p {
  font-size: 0.95rem; color: var(--smoke); line-height: 1.85; margin-bottom: 1.4rem;
}
.bp-budget-bar {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(232,96,48,0.12); border: 1px solid rgba(232,96,48,0.25);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.bp-budget-bar-num { font-size: 0.85rem; font-weight: 700; color: var(--coral); }
.bp-budget-bar-label { color: var(--smoke); }
.bp-essentials-card {
  background: rgba(14,191,184,0.06); border: 1px solid rgba(14,191,184,0.15);
  border-radius: var(--r-lg); padding: 1.75rem; position: sticky; top: 90px;
}
.bp-essentials-card h4 {
  font-family: var(--ff-mono); font-size: 0.55rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.4rem;
}
.bpe-row {
  display: flex; align-items: flex-start; gap: 0.85rem;
  margin-bottom: 1.2rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(14,191,184,0.1);
}
.bpe-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.bpe-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.bpe-label {
  font-family: var(--ff-mono); font-size: 0.5rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal); opacity: 0.7; margin-bottom: 0.2rem;
}
.bpe-val { font-size: 0.82rem; color: var(--smoke); line-height: 1.55; }
.bpe-val strong { color: var(--parchment); font-weight: 600; }
@media (max-width: 900px) {
  .bp-intro-grid { grid-template-columns: 1fr; }
  .bp-essentials-card { position: static; }
}

/* ═══════════════════════════════════════════════
   DESTINATION INFO STRIP
   ═══════════════════════════════════════════════ */
.info-strip {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1.5fr 1.1fr 0.75fr;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11,23,40,0.08);
}
.iw {
  border-radius: 12px;
  padding: 1rem 1.1rem;
  min-width: 0;
}
.iw-key       { background: var(--ink); color: var(--parchment); }
.iw-weather   { background: #FFF3D6; }
.iw-health    { background: #EDF7ED; }
.iw-transport { background: #fff; border: 1px solid rgba(11,23,40,0.08); }
.iw-emergency { background: #F3F4F6; }
.iw-title {
  font-family: var(--ff-mono); font-size: 0.49rem; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 0.7rem;
  color: rgba(11,23,40,0.38);
}
.iw-key .iw-title { color: rgba(246,238,224,0.38); }
.iw-tags { display: flex; flex-wrap: wrap; gap: 0.28rem; margin-bottom: 0.5rem; }
.iw-pill {
  font-size: 0.59rem; font-weight: 600; padding: 0.2rem 0.55rem;
  border-radius: 100px; white-space: nowrap; line-height: 1.4;
}
.iw-key       .iw-pill { background: rgba(246,238,224,0.13); color: var(--parchment); }
.iw-weather   .iw-pill { background: #E09420; color: #fff; }
.iw-health    .iw-pill { background: var(--ink); color: #fff; }
.iw-transport .iw-pill { background: var(--ink); color: #fff; }
.iw-note { font-size: 0.69rem; line-height: 1.5; color: rgba(11,23,40,0.62); }
.iw-key .iw-note { color: rgba(246,238,224,0.62); }
.iw-peak {
  background: rgba(255,255,255,0.65); border-radius: 8px;
  padding: 0.4rem 0.6rem; margin: 0.45rem 0;
  font-size: 0.65rem; line-height: 1.4; color: var(--ink);
}
.iw-peak strong { display: block; font-weight: 700; font-size: 0.63rem; margin-bottom: 0.1rem; color: var(--ink); }
.iw-water { display: flex; align-items: flex-start; gap: 0.35rem; margin-bottom: 0.45rem; }
.iw-water-icon { font-size: 0.85rem; flex-shrink: 0; margin-top: 0.05rem; }
.iw-water-text { font-size: 0.67rem; line-height: 1.4; color: rgba(11,23,40,0.72); }
.iw-water-text strong { color: rgba(11,23,40,0.9); }
.iw-vax { display: flex; flex-direction: column; gap: 0.2rem; }
.iw-vax-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.62rem; padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(11,23,40,0.05); gap: 0.4rem;
}
.iw-vax-row:last-child { border-bottom: none; padding-bottom: 0; }
.iw-vax-name { color: rgba(11,23,40,0.78); }
.iw-badge {
  font-size: 0.48rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.13rem 0.42rem; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.iw-badge.required    { background: #FEE2E2; color: #DC2626; }
.iw-badge.recommended { background: #DCFCE7; color: #16A34A; }
.iw-badge.consider    { background: #FEF9C3; color: #CA8A04; }
/* Emergency — compact */
.iw-emerg-list { display: flex; flex-direction: column; gap: 0.35rem; }
.iw-emerg-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.62rem; padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(11,23,40,0.07);
}
.iw-emerg-row:last-child { border-bottom: none; padding-bottom: 0; }
.iw-emerg-label { color: rgba(11,23,40,0.5); font-size: 0.59rem; }
.iw-emerg-num { font-family: var(--ff-mono); font-weight: 700; font-size: 0.8rem; color: var(--ink); }
@media (max-width: 1100px) {
  .info-strip { grid-template-columns: 1fr 1fr; }
  .iw-emergency { grid-column: span 2; }
  .iw-emerg-list { flex-direction: row; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .info-strip { grid-template-columns: 1fr; }
  .iw-emergency { grid-column: 1; }
  .iw-emerg-list { flex-direction: column; }
}

/* Intro wrap — full width container */
.intro-wrap { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.intro-body { margin-bottom: 0; }
.intro-body h2 { font-family: var(--ff-display); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight:700; letter-spacing:-0.02em; line-height:1.1; color:var(--ink); margin-bottom:0.8rem; }
.intro-body h2 em { font-style:italic; font-weight:300; color:var(--gold-dk); }
.intro-body p { font-size:1rem; line-height:1.85; color:#4A5060; max-width:800px; }

/* ═══════════════════════════════════════════════
   WHO IT'S PERFECT FOR — AUDIENCE CARDS
   ═══════════════════════════════════════════════ */
.aud-s { background: var(--parchment); padding: 3.5rem 2rem; }
.aud-s-inner { max-width: 1240px; margin: 0 auto; }
.aud-s .eyebrow { justify-content: center; color: var(--gold-dk); margin-bottom: 2rem; }
.aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.aud-c {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
  border-top: 3px solid transparent;
}
.aud-c:nth-child(1) { border-top-color: var(--gold); }
.aud-c:nth-child(2) { border-top-color: var(--teal); }
.aud-c:nth-child(3) { border-top-color: var(--coral); }
.aud-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.aud-title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.aud-desc { font-size: 0.82rem; color: #4A5060; line-height: 1.7; }
@media (max-width: 800px) { .aud-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   SCENE STRIP — mid-page photo break
   ═══════════════════════════════════════════════ */
.scene-strip {
  height: 360px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.scene-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,23,40,0.15), rgba(11,23,40,0.35));
}
@media (max-width: 768px) {
  .scene-strip { background-attachment: scroll; height: 260px; }
}

/* ── Intro photo pair ── */
.intro-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.8rem;
}
.intro-photos img {
  width: 100%; height: 220px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 640px) {
  .intro-photos { grid-template-columns: 1fr; }
  .intro-photos img {
  width: 100%; height: 220px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
}
