:root{
  --bg: #F7F2E8;
  --panel: #FFFDF9;
  --ink: #11263D;
  --ink-soft: #52606B;
  --mustard: #D99B31;
  --coral: #D99B31;
  --teal: #6FA883;
  --teal-deep: #47765C;
  --sand: #EEE1C8;
  --palm: #6FA883;

  /* Official Lonely Backpack logo palette */
  --lb-navy: #11263D;
  --lb-deep: #0E2238;
  --lb-sage: #6FA883;
  --lb-gold: #D99B31;
  --lb-cream: #F7F2E8;
  --lb-paper: #FFFDF9;
  --lb-muted: #66736E;
  --lb-line: rgba(17,38,61,.10);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Fraunces', serif;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3, .display{
  font-family: 'Big Shoulders Display', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink);
}

.mono{ font-family: 'Space Mono', monospace; }
a{ color: inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* ---------- NAV ---------- */
.nav{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 24px clamp(20px, 5vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
}
.nav__brand{
  font-family:'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.nav__brand .stamp-dot{
  width: 10px; height:10px; border-radius:50%;
  background: var(--coral);
  display:inline-block;
}
.nav__links{
  display:flex;
  gap: clamp(16px, 3vw, 36px);
  list-style:none;
  padding:0; margin:0;
  font-family:'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav__links a{
  text-decoration:none;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color .2s ease, color .2s ease;
}
.nav__links a:hover, .nav__links a:focus-visible{
  color: var(--coral);
  border-color: var(--coral);
}
.nav__cta{
  font-family:'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--ink);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 3px;
  text-decoration:none;
  font-weight:700;
  box-shadow: 2px 2px 0 var(--coral);
  transition: transform .15s ease, box-shadow .15s ease;
  display:inline-block;
}
.nav__cta:hover, .nav__cta:focus-visible{
  transform: translate(-1px,-1px);
  box-shadow: 3px 3px 0 var(--coral);
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  padding: clamp(30px, 6vw, 60px) clamp(20px, 5vw, 64px) clamp(70px, 8vw, 110px);
  max-width: 1280px;
  margin: 0 auto;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items:center;
}
@media (max-width: 900px){ .hero__inner{ grid-template-columns: 1fr; } }
.hero__eyebrow{
  font-family:'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 18px;
}
.hero h1{
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.98;
  font-weight: 800;
}
.hero h1 em{ font-style: normal; color: var(--coral); }
.hero__sub{
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
}
.hero__actions{
  margin-top: 32px;
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items:center;
}
.btn-primary{
  font-family:'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 700;
  background: var(--coral);
  color: #fff;
  padding: 15px 26px;
  border-radius: 3px;
  text-decoration:none;
  box-shadow: 3px 3px 0 var(--mustard);
  transition: transform .15s ease, box-shadow .15s ease;
  display:inline-block;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.btn-primary:hover, .btn-primary:focus-visible{
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 var(--mustard);
}
.hero__meta{
  font-family:'Space Mono', monospace;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.8;
}
.hero__stats{
  display:flex;
  gap: clamp(20px,4vw,40px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(22,35,46,0.12);
  flex-wrap: wrap;
}
.hero__stat b{
  display:block;
  font-family:'Big Shoulders Display', sans-serif;
  font-size: 32px;
  color: var(--teal-deep);
}
.hero__stat span{
  font-family:'Space Mono', monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  opacity:0.85;
}

/* hero illustration */
.hero__art{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(22,35,46,0.22);
  aspect-ratio: 5 / 4.1;
}
.hero__art svg{ display:block; width:100%; height:100%; }
.hero__chip{
  position:absolute;
  font-family:'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero__chip--loc{
  left: 18px; bottom: 18px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 20px;
  transform: rotate(-2deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.hero__chip--miles{
  right: 18px; top: 18px;
  background: #fff;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 50%;
  width: 74px; height:74px;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
  transform: rotate(4deg);
}

/* ---------- SECTIONS ---------- */
.section{ max-width: 1280px; margin: 0 auto; padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 64px); }
.section__head{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid rgba(22,35,46,0.12);
  padding-bottom: 20px;
}
.section__label{
  font-family:'Space Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
  display:block;
}
.section__head h2{ font-size: clamp(30px, 4vw, 46px); }
.section__note{
  font-family:'Space Mono', monospace;
  font-size: 13px;
  color: var(--ink-soft);
  opacity:0.75;
  max-width: 30ch;
}

/* ---------- CARD GRID ---------- */
.stories{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px){ .stories{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .stories{ grid-template-columns: 1fr; } }

.story-card{
  background: var(--panel);
  color: var(--ink);
  border-radius: 6px;
  padding: 20px 20px 18px;
  position:relative;
  box-shadow: 0 10px 24px rgba(22,35,46,0.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.story-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 34px rgba(22,35,46,0.18); }
.story-card__photo{ height: 150px; border-radius: 4px; margin-bottom: 14px; position:relative; overflow:hidden; }
.story-card__photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.story-card__stamp{
  position:absolute;
  top:10px; right:10px;
  font-family:'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform:uppercase;
  background: rgba(22,35,46,0.85);
  color: #fff;
  border: 1px dashed rgba(255,255,255,0.7);
  padding: 4px 8px;
  border-radius: 20px;
  transform: rotate(-6deg);
}
.story-card__loc{
  font-family:'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.story-card h3{
  font-family:'Big Shoulders Display', sans-serif;
  font-size: 21px;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 10px;
}
.story-card p{ font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 14px; }
.damage{
  font-family:'Space Mono', monospace;
  font-size: 11.5px;
  display:flex;
  justify-content: space-between;
  border-top: 1px dashed rgba(22,35,46,0.18);
  padding-top: 10px;
  color: var(--ink-soft);
}
.damage b{ color: var(--ink); }

/* ---------- APPROACH TAGS ---------- */
.tags{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 780px){ .tags{ grid-template-columns: 1fr; } }
.tag{
  background: #E7F5F3;
  color: var(--ink);
  padding: 26px 24px 24px;
  position:relative;
  border-radius: 4px 16px 16px 4px;
  box-shadow: 0 8px 20px rgba(22,35,46,0.1);
}
.tag::before{
  content:'';
  position:absolute;
  right: 16px; top:50%;
  transform: translateY(-50%);
  width: 16px; height:16px;
  border-radius:50%;
  background: var(--bg);
  box-shadow: inset 0 0 0 3px #E7F5F3;
}
.tag__eyebrow{
  font-family:'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 10px;
}
.tag h3{ font-family:'Big Shoulders Display', sans-serif; font-size: 24px; margin-bottom: 10px; }
.tag p{ font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin:0; padding-right: 20px; }

/* ---------- NEWSLETTER ---------- */
.postbox{
  background: var(--panel);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(30px,5vw,50px);
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 16px 34px rgba(22,35,46,0.14);
}
.postbox h2{ font-size: clamp(26px, 3.4vw, 36px); max-width: 16ch; }
.postbox p{ font-family:'Space Mono', monospace; font-size: 13px; color: var(--ink-soft); margin-top: 10px; max-width: 34ch; }
.postbox form{ display:flex; gap: 10px; flex-wrap: wrap; }
.postbox input[type="email"]{
  font-family:'Space Mono', monospace;
  font-size: 13px;
  padding: 13px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  min-width: 220px;
}
.postbox input::placeholder{ color: var(--ink-soft); opacity: 0.7; }
.postbox button{
  font-family:'Space Mono', monospace;
  text-transform: uppercase;
  font-size: 13px;
  font-weight:700;
  letter-spacing: 0.05em;
  background: var(--coral);
  color: #fff;
  border:none;
  padding: 13px 22px;
  border-radius: 3px;
  cursor:pointer;
  box-shadow: 3px 3px 0 var(--mustard);
  transition: transform .15s ease, box-shadow .15s ease;
}
.postbox button:hover, .postbox button:focus-visible{ transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--mustard); }

/* ---------- FOOTER ---------- */
footer{
  border-top: 1px solid rgba(22,35,46,0.12);
  padding: 40px clamp(20px, 5vw, 64px) 50px;
  max-width: 1280px;
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 18px;
  font-family:'Space Mono', monospace;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.85;
}
.footer__stamps{ display:flex; gap: 12px; }
.footer__stamps span{
  width: 30px; height:30px;
  border: 1.5px dashed var(--ink-soft);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 13px;
  opacity: 0.8;
}

/* ---------- LEGAL BAR ---------- */
.legal{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) 40px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 14px;
  font-family:'Space Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-soft);
  opacity: 0.7;
}
.legal__links{
  display:flex;
  gap: clamp(14px, 3vw, 26px);
  list-style:none;
  padding:0; margin:0;
  flex-wrap: wrap;
}
.legal__links a{
  text-decoration:none;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.legal__links a:hover, .legal__links a:focus-visible{
  color: var(--coral);
  border-color: var(--coral);
}

/* ---------- INTERNAL PAGE HEADER (terms / privacy / contact / sitemap) ---------- */
.page-header{
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 30px) clamp(20px, 5vw, 64px) 0;
}
.page-header__eyebrow{
  font-family:'Space Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
  display:block;
}
.page-header h1{
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}
.page-header__meta{
  font-family:'Space Mono', monospace;
  font-size: 12.5px;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-top: 14px;
}

/* ---------- PROSE (legal / long-form text pages) ---------- */
.prose{
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 50px) clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
  line-height: 1.7;
  font-size: 16px;
  color: var(--ink-soft);
}
.prose h2{
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--ink);
  margin-top: 44px;
  margin-bottom: 14px;
}
.prose h2:first-child{ margin-top: 0; }
.prose p{ margin: 0 0 16px; }
.prose ul, .prose ol{ margin: 0 0 16px; padding-left: 22px; }
.prose li{ margin-bottom: 8px; }
.prose a{ color: var(--coral); text-decoration: underline; }
.prose strong{ color: var(--ink); }
.prose .prose__intro{
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.8;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
  margin-bottom: 36px;
}

/* ---------- ARTICLE PAGES (guides) ---------- */
.article-hero{
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 clamp(20px, 5vw, 64px);
}
.article-hero img{
  width: 100%;
  height: clamp(220px, 38vw, 420px);
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.facts{
  background: var(--panel);
  border: 1px solid rgba(22,35,46,0.08);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 8px 0 32px;
}
.facts__title{
  font-family:'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 12px;
}
.facts__row{
  font-family:'Space Mono', monospace;
  font-size: 12.5px;
  display:flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px dashed rgba(22,35,46,0.15);
  color: var(--ink-soft);
}
.facts__row:first-of-type{ border-top: none; }
.facts__row b{ color: var(--ink); }
.related{
  border-top: 1px solid rgba(22,35,46,0.1);
  margin-top: 20px;
  padding-top: 30px;
}
.related h2{ font-size: clamp(20px, 2.4vw, 24px); margin-bottom: 16px; }
.related__links{ display:flex; flex-direction: column; gap: 10px; }
.related__links a{
  color: var(--coral);
  text-decoration: underline;
  font-size: 15px;
}
.breadcrumb{
  font-family:'Space Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-bottom: 10px;
}
.breadcrumb a{ color: var(--ink-soft); text-decoration: underline; }
.sitemap-groups{
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 50px) clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 640px){ .sitemap-groups{ grid-template-columns: 1fr; } }
.sitemap-group h2{
  font-size: 20px;
  color: var(--teal-deep);
  border-bottom: 1px solid rgba(22,35,46,0.12);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.sitemap-group ul{ list-style:none; margin:0; padding:0; }
.sitemap-group li{ margin-bottom: 10px; }
.sitemap-group a{
  text-decoration:none;
  color: var(--ink-soft);
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.sitemap-group a:hover, .sitemap-group a:focus-visible{
  color: var(--coral);
  border-color: var(--coral);
}

/* ---------- CONTACT FORM ---------- */
.contact-form{
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 30px) clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
}
.contact-form label{
  display:block;
  font-family:'Space Mono', monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.contact-form .field{ margin-bottom: 22px; }
.contact-form input, .contact-form textarea{
  width: 100%;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid rgba(22,35,46,0.25);
  border-radius: 4px;
  background: var(--panel);
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus{
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}
.contact-form textarea{ min-height: 140px; resize: vertical; }
.contact-direct{
  font-family:'Space Mono', monospace;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(22,35,46,0.12);
}
.contact-direct a{ color: var(--coral); }

/* ========================================================================== */
/* THE LONELY BACKPACK — VERSION 3.0                                          */
/* ========================================================================== */
.v3{--v3-ink:#11263D;--v3-forest:#6FA883;--v3-deep:#0E2238;--v3-cream:#F7F2E8;--v3-paper:#FFFDF9;--v3-gold:#D99B31;--v3-line:rgba(17,38,61,.10);font-family:'DM Sans',sans-serif;background:var(--v3-paper);color:var(--v3-ink)}
.v3 h1,.v3 h2,.v3 h3,.v3 strong{font-family:'DM Serif Display',serif;text-transform:none;letter-spacing:0}.v3 a{text-decoration:none}.v3-kicker{display:block;font:600 11px/1.2 'DM Sans',sans-serif;letter-spacing:.19em;text-transform:uppercase;color:#6b746f;margin-bottom:18px}.v3-kicker.light{color:#d7c9ac}
.v3-nav{height:86px;display:flex;align-items:center;justify-content:space-between;padding:0 clamp(22px,5vw,72px);background:var(--v3-paper);position:relative;z-index:20;border-bottom:1px solid var(--v3-line)}
.v3-brand{display:flex;align-items:center;gap:12px;font-weight:700;font-size:15px;letter-spacing:.02em}.v3-brand-mark{width:37px;height:37px;border:1px solid var(--v3-ink);border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font:700 10px/1 'DM Sans',sans-serif;letter-spacing:.08em}.v3-navlinks{display:flex;align-items:center;gap:30px;font-size:13px;font-weight:600}.v3-navlinks>a:not(.v3-nav-cta){padding:32px 0;border-bottom:2px solid transparent}.v3-navlinks>a:hover{border-color:var(--v3-gold)}.v3-nav-cta{background:var(--v3-ink);color:#fff;padding:12px 18px;border-radius:999px}.v3-menu{display:none;border:0;background:none;font:600 12px 'DM Sans';text-transform:uppercase;letter-spacing:.1em}
.v3-hero{height:min(760px,calc(100vh - 86px));min-height:600px;position:relative;overflow:hidden;background:#1b342c}.v3-hero-photo,.v3-hero-shade{position:absolute;inset:0}.v3-hero-photo img{width:100%;height:100%;object-fit:cover;object-position:center 40%;filter:saturate(.85) contrast(1.02)}.v3-hero-shade{background:linear-gradient(90deg,rgba(8,25,21,.82) 0%,rgba(8,25,21,.56) 43%,rgba(8,25,21,.08) 74%),linear-gradient(0deg,rgba(8,25,21,.35),transparent 42%)}
.v3-hero-copy{position:absolute;left:clamp(24px,7vw,110px);top:50%;transform:translateY(-50%);max-width:700px;color:white}.v3-hero-copy .v3-kicker{color:#e7d8b6}.v3-hero h1{color:white;font-size:clamp(58px,7.2vw,108px);line-height:.88;font-weight:400}.v3-hero h1 em{color:#e7d8b6;font-weight:400}.v3-hero-copy p{font:400 clamp(16px,1.5vw,20px)/1.6 'DM Sans',sans-serif;max-width:580px;margin:28px 0 0;color:rgba(255,255,255,.88)}.v3-actions{display:flex;align-items:center;gap:28px;margin-top:34px;flex-wrap:wrap}.v3-btn{display:inline-flex;align-items:center;justify-content:center;padding:15px 22px;border-radius:999px;font:700 12px/1 'DM Sans';letter-spacing:.05em;text-transform:uppercase}.v3-btn-light{background:#fff;color:var(--v3-ink)}.v3-text-link{color:white;font-size:13px;font-weight:700}.v3-text-link span{margin-left:8px}.v3-hero-note{position:absolute;right:clamp(22px,5vw,72px);bottom:28px;color:#fff;font-size:12px;letter-spacing:.08em;text-transform:uppercase}.v3-hero-note span{opacity:.65;margin-left:16px}
.v3-proof{display:grid;grid-template-columns:repeat(4,1fr);border-bottom:1px solid var(--v3-line);background:var(--v3-cream);padding:0 clamp(22px,5vw,72px)}.v3-proof>div{padding:30px 24px;border-right:1px solid var(--v3-line)}.v3-proof>div:last-child{border-right:0}.v3-proof strong{display:block;font-size:27px}.v3-proof span{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:#68716d;margin-top:5px}
.v3-intro{display:grid;grid-template-columns:.9fr 1.1fr;gap:9vw;padding:clamp(80px,11vw,150px) clamp(24px,7vw,110px);max-width:1500px;margin:auto}.v3-intro h2,.v3-section h2,.v3-rewards-band h2,.v3-newsletter h2{font-size:clamp(44px,5.2vw,78px);line-height:.98}.v3-intro-copy{font-size:clamp(18px,2vw,26px);line-height:1.55;max-width:680px}.v3-intro-copy p{margin:0 0 26px}.v3-intro-copy a,.v3-section-head>a{font-size:12px;text-transform:uppercase;letter-spacing:.1em;font-weight:700;border-bottom:1px solid currentColor;padding-bottom:3px}
.v3-feature-grid{display:grid;grid-template-columns:1.4fr 1fr;grid-template-rows:1fr 1fr;min-height:780px}.v3-feature{position:relative;overflow:hidden;min-height:360px}.v3-feature-large{grid-row:1/3}.v3-feature img,.v3-feature-solid,.v3-feature-overlay{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.v3-feature img{transition:transform .6s ease}.v3-feature:hover img{transform:scale(1.025)}.v3-feature-overlay{background:linear-gradient(0deg,rgba(8,25,21,.78),rgba(8,25,21,.04) 65%)}.v3-feature-solid.v3-feature-green{background:#18453b}.v3-feature-solid.v3-feature-sand{background:#d8bf8b}.v3-feature-copy{position:absolute;left:clamp(24px,4vw,56px);right:clamp(24px,4vw,56px);bottom:clamp(28px,4vw,52px);color:white;display:flex;flex-direction:column;gap:14px}.v3-feature-copy.dark{color:var(--v3-ink)}.v3-feature-copy small{font-size:10px;text-transform:uppercase;letter-spacing:.15em}.v3-feature-copy strong{font-size:clamp(27px,3.4vw,48px);line-height:1.05;max-width:12em;font-weight:400}.v3-feature-copy em{font-style:normal;font-size:12px;text-transform:uppercase;letter-spacing:.1em;font-weight:700}
.v3-section{padding:clamp(85px,11vw,150px) clamp(24px,7vw,110px);max-width:1600px;margin:auto}.v3-section-head{display:flex;justify-content:space-between;gap:30px;align-items:flex-end;margin-bottom:55px}.v3-section-head h2{max-width:780px}.v3-destination-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.v3-destination{display:block;color:var(--v3-ink)}.v3-destination img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block}.v3-destination span{display:block;padding-top:16px}.v3-destination small{display:block;font-size:10px;text-transform:uppercase;letter-spacing:.14em;color:#6d746f}.v3-destination strong{display:block;font-size:30px;margin:4px 0}.v3-destination em{display:block;font-style:normal;font-size:13px;line-height:1.45;color:#5f6863}
.v3-rewards-band{background:var(--v3-deep);color:white;display:grid;grid-template-columns:1fr 1fr;gap:7vw;padding:clamp(85px,11vw,150px) clamp(24px,7vw,110px)}.v3-rewards-band h2{color:white}.v3-rewards-copy p{font-size:17px;line-height:1.7;color:rgba(255,255,255,.75);max-width:570px;margin:27px 0 32px}.v3-rewards-list{border-top:1px solid rgba(255,255,255,.22);align-self:center}.v3-rewards-list>a{display:grid;grid-template-columns:45px 1fr 30px;gap:18px;align-items:center;color:white;padding:25px 0;border-bottom:1px solid rgba(255,255,255,.22)}.v3-rewards-list>a>span{font-size:11px;color:#cdb98c}.v3-rewards-list strong{font-family:'DM Sans',sans-serif;font-size:16px}.v3-rewards-list small{display:block;color:rgba(255,255,255,.6);font-size:12px;margin-top:5px}.v3-rewards-list b{font-family:'DM Sans';font-size:18px}
.v3-stories-section{background:var(--v3-cream);max-width:none}.v3-story-row{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-top:1px solid var(--v3-line);border-bottom:1px solid var(--v3-line)}.v3-story-row article{padding:38px 34px;border-right:1px solid var(--v3-line)}.v3-story-row article:last-child{border-right:0}.v3-story-row article>span{font-size:11px;color:#8b7350}.v3-story-row small{display:block;text-transform:uppercase;letter-spacing:.13em;font-size:10px;margin:38px 0 9px;color:#6d746f}.v3-story-row h3{font-size:31px;line-height:1.08}.v3-story-row p{font-size:14px;line-height:1.6;color:#5c6560}
.v3-newsletter{background:#8a563e;color:white;display:grid;grid-template-columns:1fr 1fr;gap:9vw;padding:clamp(80px,10vw,135px) clamp(24px,7vw,110px)}.v3-newsletter h2{color:white}.v3-newsletter>div:nth-child(2){max-width:600px}.v3-newsletter p{font-size:16px;line-height:1.65}.v3-subscribe{display:flex;margin:30px 0 12px;border-bottom:1px solid rgba(255,255,255,.7)}.v3-subscribe input{flex:1;background:none;border:0;color:white;padding:15px 0;font:15px 'DM Sans';outline:none;min-width:0}.v3-subscribe input::placeholder{color:rgba(255,255,255,.62)}.v3-subscribe button{background:none;color:white;border:0;font:700 11px 'DM Sans';text-transform:uppercase;letter-spacing:.1em;cursor:pointer}.v3-newsletter small{color:rgba(255,255,255,.65)}.v3-newsletter small a{color:white;text-decoration:underline}.v3-status{font-size:12px!important;min-height:18px}
.v3-footer{display:grid;grid-template-columns:2fr 1fr 1fr 1.2fr;gap:60px;padding:65px clamp(24px,7vw,110px);background:#0c1714;color:white}.v3-footer-brand>strong{font-family:'DM Sans';font-size:16px;margin-left:10px}.v3-footer-brand p,.v3-footer-note{font-size:12px;line-height:1.6;color:rgba(255,255,255,.55);margin-top:18px}.v3-footer>div:not(:first-child){display:flex;flex-direction:column;gap:10px;font-size:12px}.v3-footer>div:not(:first-child)>strong{font-family:'DM Sans';font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:#cdb98c;margin-bottom:5px}.v3-footer a{color:rgba(255,255,255,.75)}
/* V3 interior helpers */
.v3-page{background:var(--v3-paper)}.v3-page-hero{padding:95px clamp(24px,7vw,110px) 75px;border-bottom:1px solid var(--v3-line);background:var(--v3-cream)}.v3-page-hero h1{font-size:clamp(56px,7vw,98px);line-height:.95;max-width:900px}.v3-page-hero p{max-width:700px;font-size:18px;line-height:1.6;color:#5a645f}.v3-page-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;padding:75px clamp(24px,7vw,110px) 120px;max-width:1600px;margin:auto}.v3-page-card{border:1px solid var(--v3-line);background:white;padding:28px;min-height:300px;display:flex;flex-direction:column}.v3-page-card small{text-transform:uppercase;letter-spacing:.14em;font-size:10px;color:#7b755f}.v3-page-card h2{font-size:35px;line-height:1.08;margin:18px 0 13px}.v3-page-card p{font-size:14px;line-height:1.65;color:#5d6661}.v3-page-card a{margin-top:auto;padding-top:24px;font-size:11px;text-transform:uppercase;letter-spacing:.1em;font-weight:700}
@media(max-width:900px){.v3-navlinks{display:none;position:absolute;top:86px;left:0;right:0;background:var(--v3-paper);padding:22px;flex-direction:column;align-items:flex-start;border-bottom:1px solid var(--v3-line)}.v3-navlinks.open{display:flex}.v3-menu{display:block}.v3-hero{min-height:650px}.v3-hero-shade{background:linear-gradient(90deg,rgba(8,25,21,.74),rgba(8,25,21,.22)),linear-gradient(0deg,rgba(8,25,21,.5),transparent 60%)}.v3-proof{grid-template-columns:repeat(2,1fr)}.v3-proof>div:nth-child(2){border-right:0}.v3-intro,.v3-rewards-band,.v3-newsletter{grid-template-columns:1fr}.v3-feature-grid{grid-template-columns:1fr;grid-template-rows:auto}.v3-feature-large{grid-row:auto}.v3-destination-grid{grid-template-columns:repeat(2,1fr)}.v3-story-row{grid-template-columns:1fr}.v3-story-row article{border-right:0;border-bottom:1px solid var(--v3-line)}.v3-story-row article:last-child{border-bottom:0}.v3-footer{grid-template-columns:1fr 1fr}.v3-page-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.v3-brand span:last-child{font-size:13px}.v3-hero-copy{left:24px;right:24px}.v3-hero h1{font-size:56px}.v3-proof{grid-template-columns:1fr 1fr}.v3-proof>div{padding:22px 12px}.v3-proof strong{font-size:22px}.v3-intro,.v3-section,.v3-rewards-band,.v3-newsletter{padding-left:24px;padding-right:24px}.v3-section-head{align-items:flex-start;flex-direction:column}.v3-destination-grid{grid-template-columns:1fr 1fr;gap:12px}.v3-destination strong{font-size:24px}.v3-destination em{font-size:12px}.v3-footer{grid-template-columns:1fr}.v3-page-grid{grid-template-columns:1fr;padding-left:24px;padding-right:24px}}


/* =========================================================
   THE LONELY BACKPACK — VERSION 3.1 GLOBAL HEADER + FOOTER
   Identical component styles across every page.
   ========================================================= */
.site-header31{
  position:relative;z-index:1000;background:#fbf7ef;border-bottom:1px solid #ded8ca;
  font-family:'DM Sans','Arial',sans-serif;
}
.site-header31__inner{
  max-width:1600px;margin:0 auto;min-height:108px;padding:14px clamp(22px,5vw,72px);
  display:flex;align-items:center;justify-content:space-between;gap:34px;
}
.site-header31__brand{display:block;flex:0 1 520px;min-width:260px;line-height:0}
.site-header31__brand img{display:block;width:min(520px,100%);height:auto;max-height:78px;object-fit:contain;object-position:left center}
.site-header31__nav{display:flex;align-items:center;justify-content:flex-end;gap:clamp(18px,2.1vw,34px);white-space:nowrap}
.site-header31__nav a{color:#11263d;text-decoration:none;font-size:12px;font-weight:700;letter-spacing:.055em;text-transform:uppercase;padding:12px 0;border-bottom:2px solid transparent;transition:border-color .2s ease,color .2s ease}
.site-header31__nav a:hover,.site-header31__nav a:focus-visible{border-bottom-color:#d99b31;color:#284d42}
.site-header31__nav .site-header31__cta{background:#11263d;color:#fff;border:1px solid #11263d;border-radius:999px;padding:13px 19px}
.site-header31__nav .site-header31__cta:hover,.site-header31__nav .site-header31__cta:focus-visible{background:#6fa883;border-color:#6fa883;color:#11263d}
.site-header31__menu{display:none;background:transparent;border:1px solid #11263d;border-radius:999px;color:#11263d;padding:10px 15px;font:700 11px/1 'DM Sans','Arial',sans-serif;letter-spacing:.1em;text-transform:uppercase;cursor:pointer}

.site-footer31{background:#0e2238;color:#fff;font-family:'DM Sans','Arial',sans-serif;padding:0 clamp(22px,5vw,72px)}
.site-footer31__top{max-width:1460px;margin:0 auto;padding:64px 0 52px;display:grid;grid-template-columns:minmax(300px,1.3fr) 1fr;gap:clamp(54px,8vw,130px);align-items:start}
.site-footer31__identity{max-width:520px}.site-footer31__logo{display:block;line-height:0;width:min(390px,100%)}
.site-footer31__logo img{display:block;width:100%;height:auto;border-radius:14px}
.site-footer31__identity p{max-width:440px;margin:22px 0 0;color:rgba(255,255,255,.68);font-size:13px;line-height:1.7}
.site-footer31__links{display:grid;grid-template-columns:repeat(3,minmax(110px,1fr));gap:38px}
.site-footer31__links>div{display:flex;flex-direction:column;align-items:flex-start;gap:11px}
.site-footer31__links strong{color:#d99b31;font-size:10px;letter-spacing:.16em;text-transform:uppercase;margin-bottom:5px}
.site-footer31__links a{color:rgba(255,255,255,.78);text-decoration:none;font-size:12px;line-height:1.4}
.site-footer31__links a:hover,.site-footer31__links a:focus-visible{color:#fff;text-decoration:underline;text-decoration-color:#6fa883;text-underline-offset:4px}
.site-footer31__bottom{max-width:1460px;margin:0 auto;padding:21px 0 25px;border-top:1px solid rgba(255,255,255,.14);display:flex;justify-content:space-between;gap:28px;color:rgba(255,255,255,.52);font-size:10px;letter-spacing:.08em;text-transform:uppercase}

@media(max-width:1080px){
  .site-header31__inner{min-height:92px}.site-header31__brand{flex-basis:410px}.site-header31__brand img{max-height:64px}
  .site-header31__nav{gap:17px}.site-header31__nav a{font-size:10.5px}
}
@media(max-width:860px){
  .site-header31__inner{min-height:84px;position:relative;padding-top:10px;padding-bottom:10px}
  .site-header31__brand{flex-basis:330px;min-width:210px}.site-header31__brand img{max-height:58px}
  .site-header31__menu{display:block;flex:0 0 auto}
  .site-header31__nav{display:none;position:absolute;left:0;right:0;top:100%;background:#fbf7ef;border-top:1px solid #ded8ca;border-bottom:1px solid #ded8ca;padding:19px clamp(22px,5vw,72px) 24px;flex-direction:column;align-items:stretch;gap:2px;white-space:normal;box-shadow:0 16px 24px rgba(17,38,61,.08)}
  .site-header31__nav.is-open{display:flex}.site-header31__nav a{padding:12px 0;font-size:11px}.site-header31__nav .site-header31__cta{text-align:center;margin-top:8px;padding:14px 18px}
  .site-footer31__top{grid-template-columns:1fr;gap:48px}.site-footer31__identity{max-width:620px}.site-footer31__links{max-width:650px}
}
@media(max-width:560px){
  .site-header31__inner{min-height:74px;gap:12px;padding-left:16px;padding-right:16px}.site-header31__brand{min-width:0;flex:1}.site-header31__brand img{width:250px;max-width:100%;max-height:48px}.site-header31__menu{padding:9px 12px;font-size:10px}
  .site-footer31{padding-left:22px;padding-right:22px}.site-footer31__top{padding:46px 0 38px}.site-footer31__logo{width:320px;max-width:100%}.site-footer31__links{grid-template-columns:1fr 1fr;gap:34px 24px}.site-footer31__bottom{flex-direction:column;gap:8px;line-height:1.5}
}


/* =========================================================
   THE LONELY BACKPACK — VERSION 3.1 GLOBAL HEADER + FOOTER
   Identical component styles across every page.
   ========================================================= */
.site-header31{
  position:relative;z-index:1000;background:#fbf7ef;border-bottom:1px solid #ded8ca;
  font-family:'DM Sans','Arial',sans-serif;
}
.site-header31__inner{
  max-width:1600px;margin:0 auto;min-height:108px;padding:14px clamp(22px,5vw,72px);
  display:flex;align-items:center;justify-content:space-between;gap:34px;
}
.site-header31__brand{display:block;flex:0 1 520px;min-width:260px;line-height:0}
.site-header31__brand img{display:block;width:min(520px,100%);height:auto;max-height:78px;object-fit:contain;object-position:left center}
.site-header31__nav{display:flex;align-items:center;justify-content:flex-end;gap:clamp(18px,2.1vw,34px);white-space:nowrap}
.site-header31__nav a{color:#11263d;text-decoration:none;font-size:12px;font-weight:700;letter-spacing:.055em;text-transform:uppercase;padding:12px 0;border-bottom:2px solid transparent;transition:border-color .2s ease,color .2s ease}
.site-header31__nav a:hover,.site-header31__nav a:focus-visible{border-bottom-color:#d99b31;color:#284d42}
.site-header31__nav .site-header31__cta{background:#11263d;color:#fff;border:1px solid #11263d;border-radius:999px;padding:13px 19px}
.site-header31__nav .site-header31__cta:hover,.site-header31__nav .site-header31__cta:focus-visible{background:#6fa883;border-color:#6fa883;color:#11263d}
.site-header31__menu{display:none;background:transparent;border:1px solid #11263d;border-radius:999px;color:#11263d;padding:10px 15px;font:700 11px/1 'DM Sans','Arial',sans-serif;letter-spacing:.1em;text-transform:uppercase;cursor:pointer}

.site-footer31{background:#0e2238;color:#fff;font-family:'DM Sans','Arial',sans-serif;padding:0 clamp(22px,5vw,72px)}
.site-footer31__top{max-width:1460px;margin:0 auto;padding:64px 0 52px;display:grid;grid-template-columns:minmax(300px,1.3fr) 1fr;gap:clamp(54px,8vw,130px);align-items:start}
.site-footer31__identity{max-width:520px}.site-footer31__logo{display:block;line-height:0;width:min(390px,100%)}
.site-footer31__logo img{display:block;width:100%;height:auto;border-radius:14px}
.site-footer31__identity p{max-width:440px;margin:22px 0 0;color:rgba(255,255,255,.68);font-size:13px;line-height:1.7}
.site-footer31__links{display:grid;grid-template-columns:repeat(3,minmax(110px,1fr));gap:38px}
.site-footer31__links>div{display:flex;flex-direction:column;align-items:flex-start;gap:11px}
.site-footer31__links strong{color:#d99b31;font-size:10px;letter-spacing:.16em;text-transform:uppercase;margin-bottom:5px}
.site-footer31__links a{color:rgba(255,255,255,.78);text-decoration:none;font-size:12px;line-height:1.4}
.site-footer31__links a:hover,.site-footer31__links a:focus-visible{color:#fff;text-decoration:underline;text-decoration-color:#6fa883;text-underline-offset:4px}
.site-footer31__bottom{max-width:1460px;margin:0 auto;padding:21px 0 25px;border-top:1px solid rgba(255,255,255,.14);display:flex;justify-content:space-between;gap:28px;color:rgba(255,255,255,.52);font-size:10px;letter-spacing:.08em;text-transform:uppercase}

@media(max-width:1080px){
  .site-header31__inner{min-height:92px}.site-header31__brand{flex-basis:410px}.site-header31__brand img{max-height:64px}
  .site-header31__nav{gap:17px}.site-header31__nav a{font-size:10.5px}
}
@media(max-width:860px){
  .site-header31__inner{min-height:84px;position:relative;padding-top:10px;padding-bottom:10px}
  .site-header31__brand{flex-basis:330px;min-width:210px}.site-header31__brand img{max-height:58px}
  .site-header31__menu{display:block;flex:0 0 auto}
  .site-header31__nav{display:none;position:absolute;left:0;right:0;top:100%;background:#fbf7ef;border-top:1px solid #ded8ca;border-bottom:1px solid #ded8ca;padding:19px clamp(22px,5vw,72px) 24px;flex-direction:column;align-items:stretch;gap:2px;white-space:normal;box-shadow:0 16px 24px rgba(17,38,61,.08)}
  .site-header31__nav.is-open{display:flex}.site-header31__nav a{padding:12px 0;font-size:11px}.site-header31__nav .site-header31__cta{text-align:center;margin-top:8px;padding:14px 18px}
  .site-footer31__top{grid-template-columns:1fr;gap:48px}.site-footer31__identity{max-width:620px}.site-footer31__links{max-width:650px}
}
@media(max-width:560px){
  .site-header31__inner{min-height:74px;gap:12px;padding-left:16px;padding-right:16px}.site-header31__brand{min-width:0;flex:1}.site-header31__brand img{width:250px;max-width:100%;max-height:48px}.site-header31__menu{padding:9px 12px;font-size:10px}
  .site-footer31{padding-left:22px;padding-right:22px}.site-footer31__top{padding:46px 0 38px}.site-footer31__logo{width:320px;max-width:100%}.site-footer31__links{grid-template-columns:1fr 1fr;gap:34px 24px}.site-footer31__bottom{flex-direction:column;gap:8px;line-height:1.5}
}


/* =========================================================
   THE LONELY BACKPACK — VERSION 3.2 HEADER + COMPACT FOOTER
   ========================================================= */
.site-header31__inner{
  min-height:88px;
  padding-top:10px;
  padding-bottom:10px;
}
.site-header31__brand{flex-basis:450px}
.site-header31__brand img{
  width:min(450px,100%);
  max-height:62px;
}

.site-footer31{padding:0 clamp(22px,5vw,72px)}
.site-footer31__top{
  max-width:1460px;
  margin:0 auto;
  padding:30px 0 24px;
  grid-template-columns:minmax(240px,.9fr) 1.1fr;
  gap:clamp(36px,6vw,90px);
  align-items:center;
}
.site-footer31__identity{
  max-width:430px;
  display:grid;
  grid-template-columns:150px 1fr;
  gap:20px;
  align-items:center;
}
.site-footer31__logo{
  width:150px;
  max-width:150px;
}
.site-footer31__logo img{
  width:100%;
  height:auto;
  border-radius:10px;
}
.site-footer31__identity p{
  margin:0;
  max-width:250px;
  font-size:12px;
  line-height:1.55;
}
.site-footer31__links{
  grid-template-columns:repeat(3,minmax(105px,1fr));
  gap:28px;
}
.site-footer31__links>div{gap:7px}
.site-footer31__links strong{margin-bottom:2px}
.site-footer31__links a{font-size:11px}
.site-footer31__bottom{
  padding:14px 0 16px;
  gap:20px;
  font-size:9px;
}

@media(max-width:1080px){
  .site-header31__inner{min-height:82px}
  .site-header31__brand{flex-basis:380px}
  .site-header31__brand img{max-height:56px}
  .site-footer31__identity{grid-template-columns:130px 1fr}
  .site-footer31__logo{width:130px;max-width:130px}
}
@media(max-width:860px){
  .site-header31__inner{min-height:76px}
  .site-footer31__top{
    padding:28px 0 22px;
    grid-template-columns:1fr;
    gap:26px;
  }
  .site-footer31__identity{
    max-width:560px;
    grid-template-columns:120px 1fr;
  }
  .site-footer31__logo{width:120px;max-width:120px}
  .site-footer31__links{max-width:650px;gap:24px}
}
@media(max-width:560px){
  .site-header31__inner{min-height:68px}
  .site-header31__brand img{width:230px;max-height:44px}
  .site-footer31__top{padding:24px 0 20px}
  .site-footer31__identity{
    grid-template-columns:92px 1fr;
    gap:14px;
  }
  .site-footer31__logo{width:92px;max-width:92px}
  .site-footer31__identity p{font-size:11px}
  .site-footer31__links{grid-template-columns:repeat(3,1fr);gap:16px}
  .site-footer31__links a{font-size:10px}
  .site-footer31__bottom{
    padding:12px 0 14px;
    flex-direction:column;
    gap:5px;
  }
}


/* =========================================================
   THE LONELY BACKPACK — VERSION 3.3
   Softer editorial homepage flow
   ========================================================= */

:root{
  --lb-cream-soft:#fbf8f2;
  --lb-sand-soft:#f3eee5;
  --lb-white-soft:#fffdf9;
  --lb-line-soft:rgba(17,38,61,.08);
  --lb-shadow-soft:0 14px 42px rgba(17,38,61,.07);
  --lb-shadow-hover:0 18px 48px rgba(17,38,61,.10);
}

/* Give the entire page a softer editorial canvas */
body{
  background:
    linear-gradient(180deg,var(--lb-white-soft) 0%,var(--lb-cream-soft) 44%,#f7f3ec 100%);
}

/* Reduce the "box after box" feel on the homepage */
.home section,
body.home section,
main > section{
  border-radius:0;
}

/* Generic content bands become open, airy and less boxed */
.section,
.content-section,
.feature-section,
.story-section,
.rewards-section,
.destination-section,
.newsletter-section{
  border:0 !important;
  box-shadow:none !important;
}

/* Alternate backgrounds subtly rather than hard-edged cards */
main > section:nth-of-type(odd){
  background:transparent;
}
main > section:nth-of-type(even){
  background:linear-gradient(180deg,rgba(243,238,229,.58),rgba(255,253,249,.18));
}

/* More breathing room between major homepage sections */
main > section{
  padding-top:clamp(64px,8vw,112px);
  padding-bottom:clamp(64px,8vw,112px);
  position:relative;
}

/* Add a soft editorial divider instead of a hard block edge */
main > section + section:before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:min(74%,980px);
  height:1px;
  background:linear-gradient(90deg,transparent,var(--lb-line-soft),transparent);
}

/* Cards should feel like paper sitting on the page */
.card,
.guide-card,
.story-card,
.destination-card,
.reward-card,
.feature-card,
.article-card{
  border:1px solid rgba(17,38,61,.06) !important;
  box-shadow:var(--lb-shadow-soft) !important;
  border-radius:22px !important;
  background:rgba(255,253,249,.90) !important;
  overflow:hidden;
  transition:transform .22s ease,box-shadow .22s ease;
}
.card:hover,
.guide-card:hover,
.story-card:hover,
.destination-card:hover,
.reward-card:hover,
.feature-card:hover,
.article-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--lb-shadow-hover) !important;
}

/* Soften image treatment */
.card img,
.guide-card img,
.story-card img,
.destination-card img,
.reward-card img,
.feature-card img,
.article-card img{
  border-radius:18px;
}

/* Introduce editorial asymmetry on desktop */
@media(min-width:900px){
  main > section:nth-of-type(3n+2) .container,
  main > section:nth-of-type(3n+2) .section-inner,
  main > section:nth-of-type(3n+2) .wrap{
    transform:translateX(-1.5%);
  }
  main > section:nth-of-type(3n+3) .container,
  main > section:nth-of-type(3n+3) .section-inner,
  main > section:nth-of-type(3n+3) .wrap{
    transform:translateX(1.5%);
  }
}

/* Keep hero and newsletter visually distinctive without becoming giant blocks */
.hero,
.home-hero{
  border-radius:0 0 34px 34px !important;
  overflow:hidden;
  box-shadow:0 18px 60px rgba(17,38,61,.08);
}

.newsletter,
.newsletter-section,
#newsletter{
  border-radius:30px !important;
  width:min(92%,1240px);
  margin-left:auto !important;
  margin-right:auto !important;
  box-shadow:var(--lb-shadow-soft) !important;
}

/* Credibility/stat row: softer pills, not boxes */
.stats,
.credibility,
.proof,
.numbers,
.v33-proof-strip{
  display:flex;
  justify-content:center;
  align-items:stretch;
  flex-wrap:wrap;
  gap:12px;
  width:min(94%,1180px);
  margin:0 auto;
  padding:24px clamp(18px,3vw,34px);
  background:rgba(255,253,249,.82);
  border:1px solid rgba(17,38,61,.06);
  border-radius:24px;
  box-shadow:0 10px 32px rgba(17,38,61,.055);
  backdrop-filter:blur(10px);
}

.stats > *,
.credibility > *,
.proof > *,
.numbers > *,
.v33-proof-item{
  flex:1 1 180px;
  min-width:150px;
  padding:12px 18px;
  text-align:center;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  position:relative;
}

.stats > * + *:before,
.credibility > * + *:before,
.proof > * + *:before,
.numbers > * + *:before,
.v33-proof-item + .v33-proof-item:before{
  content:"";
  position:absolute;
  left:0;
  top:18%;
  bottom:18%;
  width:1px;
  background:rgba(17,38,61,.10);
}

.stats strong,
.credibility strong,
.proof strong,
.numbers strong,
.v33-proof-item strong{
  display:block;
  font-size:clamp(20px,2vw,28px);
  line-height:1.05;
  color:#11263D;
  margin-bottom:5px;
}

.stats span,
.credibility span,
.proof span,
.numbers span,
.v33-proof-item span{
  display:block;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6f7b72;
}

@media(max-width:700px){
  main > section{
    padding-top:54px;
    padding-bottom:54px;
  }
  .stats > *,
  .credibility > *,
  .proof > *,
  .numbers > *,
  .v33-proof-item{
    flex-basis:46%;
  }
  .stats > * + *:before,
  .credibility > * + *:before,
  .proof > * + *:before,
  .numbers > * + *:before,
  .v33-proof-item + .v33-proof-item:before{
    display:none;
  }
}


/* =========================================================
   THE LONELY BACKPACK — VERSION 3.4
   Logo-palette refresh + corrected credibility strip
   ========================================================= */

/* --- Brand palette across legacy/interior pages --- */
body{
  background:#FFFDF9;
  color:#11263D;
}
h1,h2,h3,.display{color:#11263D}
.nav__links a{color:#52606B}
.nav__links a:hover,.nav__links a:focus-visible{color:#47765C;border-color:#D99B31}
.nav__cta{background:#11263D;color:#FFFDF9;box-shadow:2px 2px 0 #D99B31}
.nav__cta:hover,.nav__cta:focus-visible{box-shadow:3px 3px 0 #D99B31}

/* --- Consistent branded header --- */
.site-header31{
  background:#FFFDF9;
  border-bottom:1px solid rgba(17,38,61,.09);
}
.site-header31__nav a{color:#11263D}
.site-header31__nav a:hover,.site-header31__nav a:focus-visible{
  border-bottom-color:#D99B31;
  color:#47765C;
}
.site-header31__nav .site-header31__cta{
  background:#11263D;
  border-color:#11263D;
  color:#fff;
}
.site-header31__nav .site-header31__cta:hover,
.site-header31__nav .site-header31__cta:focus-visible{
  background:#6FA883;
  border-color:#6FA883;
  color:#11263D;
}

/* --- Homepage canvas --- */
.v3{
  background:#FFFDF9;
  color:#11263D;
}
.v3-kicker{color:#47765C}
.v3-kicker.light{color:#E8D6AE}

/* Hero uses navy rather than the older dark green */
.v3-hero{
  background:#0E2238;
  border-radius:0 0 34px 34px !important;
}
.v3-hero-photo img{
  filter:saturate(.88) contrast(1.03);
}
.v3-hero-shade{
  background:
    linear-gradient(90deg,rgba(14,34,56,.86) 0%,rgba(14,34,56,.58) 43%,rgba(14,34,56,.10) 74%),
    linear-gradient(0deg,rgba(14,34,56,.38),transparent 42%);
}
.v3-hero-copy .v3-kicker{color:#EEE1C8}
.v3-hero h1 em{color:#E4B75F}
.v3-btn-light{background:#FFFDF9;color:#11263D}
.v3-btn-light:hover{background:#F7F2E8}

/* Corrected proof strip: compact, soft and floating */
.v3-proof{
  width:min(92%,1280px);
  margin:-34px auto 34px;
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:0;
  overflow:hidden;
  background:rgba(255,253,249,.97);
  border:1px solid rgba(17,38,61,.08);
  border-radius:24px;
  box-shadow:0 18px 52px rgba(17,38,61,.10);
}
.v3-proof>div{
  min-width:0;
  padding:26px clamp(18px,2.2vw,32px);
  border-right:1px solid rgba(17,38,61,.08);
  background:transparent;
}
.v3-proof>div:nth-child(3){
  background:rgba(111,168,131,.09);
}
.v3-proof>div:nth-child(4){
  background:rgba(217,155,49,.08);
}
.v3-proof>div:last-child{border-right:0}
.v3-proof strong{
  display:block;
  color:#11263D;
  font-size:clamp(23px,2vw,30px);
  line-height:1.05;
}
.v3-proof span{
  display:block;
  color:#66736E;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-top:8px;
}

/* Open editorial sections; less block-after-block */
.v3-intro{
  padding-top:clamp(58px,7vw,96px);
  padding-bottom:clamp(78px,9vw,125px);
}
.v3-intro-copy a,
.v3-section-head>a{
  color:#47765C;
  border-bottom-color:#D99B31;
}
.v3-intro-copy a:hover,
.v3-section-head>a:hover{color:#11263D}

.v3-feature-grid{
  width:min(94%,1480px);
  margin:0 auto;
  border-radius:30px;
  overflow:hidden;
  min-height:720px;
  box-shadow:0 20px 60px rgba(17,38,61,.08);
}
.v3-feature-overlay{
  background:linear-gradient(0deg,rgba(14,34,56,.80),rgba(14,34,56,.03) 67%);
}
.v3-feature-solid.v3-feature-green{background:#6FA883}
.v3-feature-solid.v3-feature-sand{background:#E6C47E}
.v3-feature-copy.dark{color:#11263D}

/* Destination section */
.v3-section{
  padding-top:clamp(78px,9vw,125px);
  padding-bottom:clamp(78px,9vw,125px);
}
.v3-destination img{
  border-radius:22px;
  box-shadow:0 12px 34px rgba(17,38,61,.06);
}
.v3-destination small{color:#47765C}
.v3-destination em{color:#66736E}

/* Rewards: flagship navy band with sage + gold detail */
.v3-rewards-band{
  width:min(94%,1480px);
  margin:0 auto;
  border-radius:30px;
  background:#0E2238;
  box-shadow:0 20px 60px rgba(17,38,61,.10);
}
.v3-rewards-list>a>span{color:#E4B75F}
.v3-rewards-list>a:hover strong{color:#B7D2C0}

/* Stories use warm cream, not a hard rectangle */
.v3-stories-section{
  background:linear-gradient(180deg,#F7F2E8 0%,#FBF7EF 100%) !important;
  margin-top:clamp(70px,8vw,110px) !important;
  margin-bottom:clamp(70px,8vw,110px) !important;
  padding-top:clamp(70px,8vw,110px) !important;
  padding-bottom:clamp(70px,8vw,110px) !important;
  border-radius:30px !important;
  width:min(94%,1480px) !important;
}
.v3-story-row{
  border-color:rgba(17,38,61,.09);
}
.v3-story-row article{border-color:rgba(17,38,61,.09)}
.v3-story-row article>span{color:#D99B31}
.v3-story-row small{color:#47765C}
.v3-story-row p{color:#66736E}

/* Newsletter: sage with navy type and gold detail */
.v3-newsletter,
.newsletter-section,
#newsletter{
  background:#6FA883 !important;
  color:#11263D !important;
  width:min(92%,1280px);
  margin:0 auto clamp(72px,8vw,110px) !important;
  border-radius:30px !important;
  box-shadow:0 18px 50px rgba(17,38,61,.09) !important;
}
.v3-newsletter h2{color:#11263D}
.v3-newsletter p{color:#11263D}
.v3-subscribe{border-bottom-color:rgba(17,38,61,.42)}
.v3-subscribe input{color:#11263D}
.v3-subscribe input::placeholder{color:rgba(17,38,61,.58)}
.v3-subscribe button{color:#11263D}
.v3-newsletter small{color:rgba(17,38,61,.68)}
.v3-newsletter small a{color:#11263D}

/* Interior V3 pages */
.v3-page{background:#FFFDF9}
.v3-page-hero{
  background:linear-gradient(135deg,#F7F2E8 0%,#FBF7EF 68%,rgba(111,168,131,.13) 100%);
  border-bottom-color:rgba(17,38,61,.08);
}
.v3-page-hero p{color:#66736E}
.v3-page-card{
  background:#FFFDF9;
  border:1px solid rgba(17,38,61,.08);
  border-radius:22px;
  box-shadow:0 12px 38px rgba(17,38,61,.055);
}
.v3-page-card small{color:#47765C}
.v3-page-card p{color:#66736E}
.v3-page-card a{color:#47765C}

/* Footer uses the dark logo navy with gold headings */
.site-footer31{background:#0E2238}
.site-footer31__links strong{color:#D99B31}
.site-footer31__links a:hover,
.site-footer31__links a:focus-visible{
  text-decoration-color:#6FA883;
}

/* Mobile proof strip remains compact and balanced */
@media(max-width:900px){
  .v3-proof{
    grid-template-columns:repeat(2,1fr);
    margin-top:-24px;
  }
  .v3-proof>div:nth-child(2){border-right:0}
  .v3-proof>div:nth-child(-n+2){border-bottom:1px solid rgba(17,38,61,.08)}
  .v3-feature-grid,
  .v3-rewards-band,
  .v3-stories-section{width:min(94%,1480px)}
}
@media(max-width:560px){
  .v3-proof{
    width:calc(100% - 30px);
    border-radius:18px;
  }
  .v3-proof>div{
    padding:20px 15px;
  }
  .v3-proof strong{font-size:21px}
  .v3-proof span{font-size:9px;line-height:1.45}
}

/* =========================================================
   THE LONELY BACKPACK — V4.0 CINEMATIC HOME
   ========================================================= */
body.v3{background:#fffdf9}
body.v3 .site-header31{
  position:absolute;top:0;left:0;right:0;z-index:50;
  background:linear-gradient(180deg,rgba(5,16,28,.78),rgba(5,16,28,0));
  border:0;box-shadow:none;
}
body.v3 .site-header31__inner{height:116px;max-width:none;padding:0 clamp(38px,4.7vw,78px)}
body.v3 .site-header31__brand img{filter:none;max-height:82px;width:auto}
body.v3 .site-header31__nav a{color:#fff;opacity:.94}
body.v3 .site-header31__nav a:not(.site-header31__cta):hover{color:#E9B74F}
body.v3 .site-header31__cta{background:#E9B74F!important;color:#10253b!important;border:0!important;padding:14px 26px!important}

.v4-hero{
  position:relative;height:min(790px,100vh);min-height:690px;overflow:hidden;background:#0d2238;color:#fff;
}
.v4-hero-slides,.v4-hero-shade,.v4-hero-slide{position:absolute;inset:0}
.v4-hero-slide{margin:0;opacity:0;transition:opacity 2.2s cubic-bezier(.4,0,.2,1);z-index:0;pointer-events:none}
.v4-hero-slide.is-active{opacity:1;z-index:1}
.v4-hero-slide img{width:100%;height:100%;display:block;object-fit:cover;object-position:center 45%;transform:scale(1.015)}
.v4-hero-slide.is-active img{animation:v4CinematicPush 10.8s ease-out forwards}
@keyframes v4CinematicPush{from{transform:scale(1.015)}to{transform:scale(1.065)}}
.v4-hero-shade{z-index:2;background:
  linear-gradient(90deg,rgba(4,16,29,.82) 0%,rgba(4,16,29,.58) 37%,rgba(4,16,29,.16) 68%,rgba(4,16,29,.13) 100%),
  linear-gradient(0deg,rgba(4,16,29,.43) 0%,transparent 48%),
  linear-gradient(180deg,rgba(4,16,29,.28) 0%,transparent 25%)}
.v4-hero-copy{position:absolute;z-index:4;left:clamp(42px,5.7vw,92px);top:55%;transform:translateY(-50%);width:min(630px,47vw)}
.v4-kicker{font:700 12px/1.2 'DM Sans',sans-serif;text-transform:uppercase;letter-spacing:.12em;color:#E9B74F}
.v4-hero h1{font-family:'DM Serif Display',Georgia,serif;font-size:clamp(63px,5.4vw,91px);font-weight:400;line-height:.89;letter-spacing:-.025em;margin:24px 0 0;color:#fff}
.v4-hero h1 em{font-style:italic;color:#E9B74F;font-weight:400}
.v4-gold-rule{display:block;width:67px;height:2px;background:#E9B74F;margin:27px 0 21px}
.v4-hero-copy p{font:400 clamp(16px,1.12vw,19px)/1.53 'DM Sans',sans-serif;color:rgba(255,255,255,.92);max-width:560px;margin:0}
.v4-actions{display:flex;gap:14px;margin-top:33px;flex-wrap:wrap}
.v4-btn{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 31px;border-radius:999px;font:700 12px/1 'DM Sans',sans-serif;letter-spacing:.04em;text-transform:uppercase;transition:.2s ease}
.v4-btn-gold{background:#E9B74F;color:#10253b}.v4-btn-gold:hover{transform:translateY(-2px);background:#f0c56c}
.v4-btn-outline{border:1.5px solid rgba(255,255,255,.85);color:#fff}.v4-btn-outline:hover{background:#fff;color:#10253b}
.v4-place{position:absolute;z-index:4;right:clamp(34px,5vw,82px);bottom:73px;text-align:right;text-shadow:0 2px 18px rgba(0,0,0,.35)}
.v4-place>strong{display:block;font:700 15px/1.2 'DM Sans';letter-spacing:.025em}.v4-place>span{display:block;margin-top:9px;font:500 13px/1.2 'DM Sans';color:#E9B74F}
.v4-place>div{display:flex;justify-content:flex-end;align-items:center;gap:12px;margin-top:14px}.v4-place i{display:block;width:37px;height:2px;background:#E9B74F}.v4-place b{font:500 14px/1 'DM Sans';letter-spacing:.08em}
.v4-dots{position:absolute;z-index:5;left:50%;bottom:54px;transform:translateX(-50%);display:flex;gap:14px}
.v4-dots button{width:10px;height:10px;border-radius:50%;padding:0;border:0;background:rgba(255,255,255,.65);cursor:pointer;box-shadow:0 0 0 1px rgba(0,0,0,.12)}
.v4-dots button.is-active{background:#E9B74F;transform:scale(1.08)}
.v4-scroll{position:absolute;z-index:5;left:50%;bottom:8px;transform:translateX(-50%);font:300 42px/1 'DM Sans';color:#fff;text-decoration:none}

.v4-proof{position:relative;z-index:10;display:grid;grid-template-columns:repeat(4,1fr);width:100%;margin:0;background:#fffdf9;border-bottom:1px solid rgba(16,37,59,.08);box-shadow:0 11px 34px rgba(16,37,59,.035)}
.v4-proof-item{display:flex;align-items:center;justify-content:center;gap:21px;min-height:131px;padding:25px 34px;position:relative}
.v4-proof-item+ .v4-proof-item:before{content:"";position:absolute;left:0;top:31px;bottom:31px;width:1px;background:rgba(16,37,59,.10)}
.v4-proof-icon{font:400 41px/1 Georgia,serif;color:#E0A63C;min-width:40px;text-align:center}
.v4-proof-item strong{display:block;font:400 clamp(28px,2.1vw,39px)/1 'DM Serif Display',Georgia,serif;color:#10253b;white-space:nowrap}
.v4-proof-item div>span{display:block;margin-top:10px;font:500 11px/1.2 'DM Sans';text-transform:uppercase;letter-spacing:.09em;color:#65716f;white-space:nowrap}

/* The approved hierarchy: content begins only after the hero + proof bar. */
.v3-intro{padding-top:clamp(75px,7vw,110px)!important}

@media(max-width:1000px){
  body.v3 .site-header31__inner{height:90px;padding:0 26px}
  body.v3 .site-header31__brand img{max-height:64px}
  .v4-hero{min-height:700px;height:86vh}
  .v4-hero-copy{left:32px;width:min(610px,65vw);top:55%}
  .v4-hero h1{font-size:clamp(57px,8vw,78px)}
  .v4-place{right:30px;bottom:72px}
  .v4-proof{grid-template-columns:repeat(2,1fr)}
  .v4-proof-item:nth-child(3):before{display:none}
  .v4-proof-item:nth-child(-n+2){border-bottom:1px solid rgba(16,37,59,.08)}
}
@media(max-width:700px){
  body.v3 .site-header31{background:linear-gradient(180deg,rgba(5,16,28,.88),rgba(5,16,28,.08))}
  body.v3 .site-header31__menu{color:#fff;border-color:rgba(255,255,255,.5)}
  body.v3 .site-header31__nav{top:82px;background:#0d2238}
  .v4-hero{height:770px;min-height:770px}
  .v4-hero-slide img{object-position:center center}
  .v4-hero-shade{background:linear-gradient(90deg,rgba(4,16,29,.78),rgba(4,16,29,.28)),linear-gradient(0deg,rgba(4,16,29,.55),transparent 55%)}
  .v4-hero-copy{left:23px;right:23px;width:auto;top:52%}
  .v4-kicker{font-size:10px}.v4-hero h1{font-size:clamp(49px,14vw,67px);line-height:.92}.v4-hero-copy p{font-size:15px;line-height:1.55;max-width:95%}
  .v4-actions{gap:10px}.v4-btn{padding:0 20px;min-height:44px;font-size:10.5px}
  .v4-place{left:23px;right:auto;bottom:56px;text-align:left}.v4-place>div{justify-content:flex-start}
  .v4-dots{left:auto;right:23px;bottom:65px;transform:none;gap:10px}.v4-dots button{width:8px;height:8px}
  .v4-scroll{display:none}
  .v4-proof-item{gap:12px;min-height:105px;padding:20px 14px}.v4-proof-icon{font-size:30px;min-width:30px}.v4-proof-item strong{font-size:25px}.v4-proof-item div>span{font-size:9px;white-space:normal}
}
@media(max-width:430px){.v4-proof{grid-template-columns:1fr 1fr}.v4-proof-item strong{font-size:22px}.v4-proof-icon{display:none}}
@media(prefers-reduced-motion:reduce){.v4-hero-slide{transition:none}.v4-hero-slide.is-active img{animation:none}}
