/* ============================================================
   Big World Explorers — styles.css
   Cinematic adventure look. FunParrots architecture.
   build: 2026-06-09
   ============================================================ */

:root {
  --bg:          #faf7f1;
  --surface:     #ffffff;
  --surface-alt: #f1ece1;
  --ink:         #211f1b;
  --muted:       #6f675b;
  --border:      #e4ddcf;
  --forest:      #2f4a3c;
  --forest-dk:   #1c2e25;
  --accent:      #e06a2c;   /* punchier terracotta/sunset */
  --accent-dk:   #c0531c;
  --gold:        #f0b429;
  --max-w:       1140px;
  --radius:      16px;
  --shadow:      0 2px 10px rgba(33,31,27,.08);
  --shadow-lg:   0 22px 50px rgba(33,31,27,.22);
  --heading:     'Sora', sans-serif;
  --body:        'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 88px; scroll-behavior: smooth; }
body { font-family: var(--body); font-size: 16px; color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--heading); line-height: 1.1; color: var(--ink); letter-spacing: -0.02em; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.bg-alt { background: var(--surface-alt); }
.bg-dark { background: var(--forest-dk); color: #fff; }
.tm { font-size: 0.5em; vertical-align: super; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 70px;
  background: transparent; transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled { background: rgba(250,247,241,.95); backdrop-filter: blur(10px); border-bottom-color: var(--border); box-shadow: 0 2px 16px rgba(33,31,27,.07); }
.nav-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--heading); font-weight: 800; font-size: 1.05rem; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.nav-brand:hover { text-decoration: none; }
.site-nav.scrolled .nav-brand { color: var(--forest); text-shadow: none; }
.nav-logo { height: 40px; width: auto; filter: drop-shadow(0 1px 4px rgba(0,0,0,.3)); }
.site-nav.scrolled .nav-logo { filter: none; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 1.4rem; }
.nav-links a { color: #fff; font-weight: 600; font-size: 0.95rem; text-shadow: 0 1px 6px rgba(0,0,0,.45); }
.site-nav.scrolled .nav-links a { color: var(--ink); text-shadow: none; }
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.site-nav.scrolled .nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--gold); }
.site-nav.scrolled .nav-links a.active { color: var(--forest); }
.nav-cta { background: var(--accent); color: #fff; font-weight: 700; font-size: 0.92rem; padding: 0.6rem 1.2rem; border-radius: 999px; box-shadow: 0 4px 14px rgba(224,106,44,.4); }
.nav-cta:hover { background: var(--accent-dk); text-decoration: none; }

.nav-more-wrap { position: relative; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,.4); }
.site-nav.scrolled .burger span { background: var(--ink); box-shadow: none; }
.nav-more { display: none; position: absolute; right: 0; top: calc(100% + 12px); background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg); min-width: 210px; padding: 0.5rem; flex-direction: column; }
.nav-more.open { display: flex; }
.nav-more a { color: var(--ink); padding: 0.6rem 0.85rem; border-radius: 8px; font-size: 0.95rem; font-weight: 500; }
.nav-more a:hover { background: var(--surface-alt); text-decoration: none; }
.nav-more-mobile { display: none; }
.nav-divider { height: 1px; background: var(--border); margin: 0.4rem 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; font-family: var(--heading); font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; padding: 0.85rem 1.6rem; border-radius: 999px; border: none; cursor: pointer; text-align: center; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(224,106,44,.4); }
.btn-primary:hover { background: var(--accent-dk); box-shadow: 0 10px 26px rgba(224,106,44,.5); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-dk); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--forest); border-color: #fff; }
.btn-lg { font-size: 1.08rem; padding: 1rem 2.1rem; }

/* ---------- Cinematic hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: #fff; padding: 7rem 1.5rem 3rem; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(20,30,24,.45) 0%, rgba(20,30,24,.35) 40%, rgba(20,30,24,.82) 100%), var(--hero-img, none);
  background-size: cover; background-position: center; z-index: 0;
  transform: scale(1.05); animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow { font-family: var(--heading); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.78rem; font-weight: 700; color: var(--gold); margin-bottom: 1.1rem; animation: fadeUp .8s ease both; }
.hero h1 { font-size: clamp(2.8rem, 8.5vw, 6rem); font-weight: 800; color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,.5); text-wrap: balance; animation: fadeUp .8s .1s ease both; }
.hero .hero-sub { font-size: clamp(1.1rem, 2.3vw, 1.45rem); color: rgba(255,255,255,.95); margin: 1.4rem auto 2.2rem; max-width: 660px; text-shadow: 0 2px 14px rgba(0,0,0,.5); text-wrap: balance; animation: fadeUp .8s .2s ease both; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp .8s .3s ease both; }
.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: 1.6rem; z-index: 1; animation: bob 2s ease-in-out infinite; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

.hero-sm { min-height: 56vh; }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--forest-dk); color: #fff; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 2.2rem 0; text-align: center; }
.stats-row.stats-3 { grid-template-columns: repeat(3, 1fr); }
.stat .num { font-family: var(--heading); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--gold); line-height: 1; }
.stat .lbl { font-size: 0.85rem; color: rgba(255,255,255,.75); margin-top: 0.4rem; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-head .eyebrow { font-family: var(--heading); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.76rem; font-weight: 700; color: var(--accent); margin-bottom: 0.8rem; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
.section-head p { color: var(--muted); margin-top: 0.9rem; font-size: 1.08rem; }

/* ---------- Trip grid + photo cards ---------- */
.trip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.8rem; }
.trip-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trip-card-media { height: 230px; position: relative; overflow: hidden; }
.trip-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.trip-card:hover .trip-card-media img { transform: scale(1.08); }
.trip-card-media .fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.4rem; }
.trip-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.55)); }
.trip-card-media .badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700; font-family: var(--heading); text-transform: uppercase; letter-spacing: 0.05em; padding: 0.35rem 0.7rem; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.trip-card-media .media-loc { position: absolute; left: 16px; bottom: 12px; z-index: 2; color: #fff; font-size: 0.82rem; font-weight: 600; text-shadow: 0 1px 6px rgba(0,0,0,.6); display: flex; align-items: center; gap: 0.35rem; }
.trip-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.trip-card-body h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.55rem; }
.trip-card-blurb { color: var(--muted); font-size: 0.96rem; flex: 1; margin-bottom: 1.1rem; }
.trip-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; font-size: 0.85rem; color: var(--muted); margin-bottom: 1.3rem; }
.trip-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.trip-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.trip-price { font-family: var(--heading); font-weight: 800; color: var(--ink); font-size: 1.15rem; }
.trip-price .from { font-weight: 500; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.trip-price small { font-weight: 400; color: var(--muted); font-size: 0.78rem; }

/* ---------- Trip detail ---------- */
.trip-hero { position: relative; color: #fff; padding: 8rem 1.5rem 3rem; text-align: center; min-height: 62vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.trip-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(20,30,24,.4), rgba(20,30,24,.82)), var(--hero-img, none); background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 14s ease-out forwards; }
.trip-hero > * { position: relative; z-index: 1; }
.trip-hero .badge { display: inline-block; background: var(--accent); color: #fff; font-family: var(--heading); font-weight: 700; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1rem; }
.trip-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); color: #fff; text-shadow: 0 3px 24px rgba(0,0,0,.5); text-wrap: balance; }
.trip-hero .trip-hero-loc { color: rgba(255,255,255,.95); font-size: 1.15rem; margin-top: 0.8rem; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.trip-layout { display: grid; grid-template-columns: 1fr 350px; gap: 3.5rem; align-items: start; padding: 4rem 0; }
.trip-body h2 { font-size: 1.7rem; margin: 2.2rem 0 1rem; }
.trip-body h2:first-child { margin-top: 0; }
.trip-body p { margin-bottom: 1.1rem; color: #3c382f; font-size: 1.05rem; }
ul.feature-list { list-style: none; margin: 0.5rem 0 1.5rem; padding: 0; }
ul.feature-list li { padding: 0.55rem 0 0.55rem 1.9rem; position: relative; border-bottom: 1px solid var(--border); }
ul.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--forest); font-weight: 800; }
.trip-aside { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-lg); position: sticky; top: 92px; }
.trip-aside .price-big { font-family: var(--heading); font-size: 2.3rem; font-weight: 800; color: var(--forest); }
.trip-aside .price-big .from { font-size: 0.72rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.trip-aside .price-big small { font-size: 0.85rem; font-weight: 400; color: var(--muted); }
.trip-aside .aside-status { display: inline-block; background: #fdeee4; color: var(--accent-dk); font-size: 0.82rem; font-weight: 700; padding: 0.35rem 0.8rem; border-radius: 999px; margin: 0.9rem 0 1.3rem; }
.trip-aside dl { margin: 1.3rem 0; font-size: 0.95rem; }
.trip-aside dl div { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.trip-aside dt { color: var(--muted); }
.trip-aside dd { font-weight: 700; text-align: right; }
.trip-aside .btn { width: 100%; margin-top: 0.6rem; }
.trip-aside .aside-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }
.trip-nav-wrap { padding-top: 3rem; padding-bottom: 3rem; }
.trip-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem 1.5rem; flex-wrap: wrap; }
.back-link { display: inline-block; color: var(--forest); font-weight: 700; }
.next-link { display: inline-block; color: var(--accent); font-weight: 700; margin-left: auto; text-align: right; }
.next-link:hover { color: var(--accent-dk); }

/* ---------- Gallery ---------- */
.gallery { padding: 0 0 1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.9rem; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; cursor: zoom-in; transition: transform .25s ease, filter .25s ease; }
.gallery-grid img:hover { transform: scale(1.02); filter: brightness(1.05); }

/* ---------- Value cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.value-card { background: var(--surface); border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow); transition: transform .2s ease; }
.value-card:hover { transform: translateY(-4px); }
.value-card .v-icon { font-size: 2.6rem; margin-bottom: 0.9rem; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.value-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.quote-card { background: var(--surface); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.quote-card .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.quote-card p { font-size: 1.02rem; color: #3c382f; font-style: italic; margin-bottom: 1rem; }
.quote-card .who { font-weight: 700; font-family: var(--heading); font-size: 0.95rem; }
.quote-card .who span { display: block; font-weight: 400; font-family: var(--body); color: var(--muted); font-size: 0.85rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; padding: 6rem 1.5rem; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--forest), var(--forest-dk)); z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.9rem; text-wrap: balance; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ---------- About / founders ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose p { margin-bottom: 1.15rem; color: #3c382f; font-size: 1.08rem; }
.prose h2 { font-size: 1.8rem; margin: 2.4rem 0 1rem; }
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-top: 1.5rem; }
.founder-card { background: var(--surface); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.founder-card h3 { font-size: 1.3rem; }
.founder-card .role { color: var(--accent); font-size: 0.9rem; font-weight: 600; margin: 0.25rem 0 0.9rem; }
.founder-card ul { list-style: none; }
.founder-card li { padding: 0.35rem 0 0.35rem 1.4rem; position: relative; font-size: 0.95rem; color: var(--muted); }
.founder-card li::before { content: "›"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Legal / page-wrap ---------- */
.page-wrap { max-width: 780px; margin: 0 auto; padding: 8rem 1.5rem 3rem; }
.page-wrap h1 { font-size: 2.4rem; margin-bottom: 0.4rem; }
.page-wrap .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.page-wrap h2 { font-size: 1.4rem; margin: 2rem 0 0.7rem; }
.page-wrap p, .page-wrap li { color: #3c382f; margin-bottom: 0.9rem; }
.page-wrap ul { padding-left: 1.3rem; }

/* ---------- Contact form ---------- */
.form-card { background: var(--surface); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-lg); max-width: 660px; margin: 0 auto; }
.form-field { margin-bottom: 1.15rem; }
.form-field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.4rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 0.8rem 0.9rem; border: 1px solid var(--border); border-radius: 10px; font-family: var(--body); font-size: 0.98rem; background: var(--bg); color: var(--ink); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,106,44,.15); }
.form-success { background: #e7f3ec; border: 1px solid #b9ddc6; color: #1f5135; padding: 0.85rem 1rem; border-radius: 10px; margin-bottom: 1rem; }

/* ---------- Waitlist modal ---------- */
.wl-overlay { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(20,30,24,.7); backdrop-filter: blur(4px); padding: 1.5rem; overflow-y: auto; }
.wl-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.wl-modal { background: var(--surface); border-radius: var(--radius); max-width: 540px; width: 100%; margin: 5vh auto; padding: 2rem; box-shadow: var(--shadow-lg); animation: fadeUp .3s ease both; }
.wl-modal-header { display: flex; justify-content: space-between; align-items: center; }
.wl-modal-header h2 { font-size: 1.7rem; }
.wl-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); line-height: 1; }
.wl-sub { color: var(--muted); font-size: 0.96rem; margin: 0.6rem 0 0.3rem; }
.wl-trip-line { font-weight: 700; color: var(--forest); margin: 0.7rem 0 1.2rem; display: none; font-family: var(--heading); }
.wl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wl-field { margin-bottom: 1rem; }
.wl-field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.35rem; }
.wl-field input, .wl-field select, .wl-field textarea { width: 100%; padding: 0.7rem 0.85rem; border: 1px solid var(--border); border-radius: 10px; font-family: var(--body); font-size: 0.95rem; background: var(--bg); color: var(--ink); }
.wl-field input:focus, .wl-field select:focus, .wl-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,106,44,.15); }
.wl-req { color: var(--accent); }
.wl-opt { color: var(--muted); font-weight: 400; font-size: 0.82rem; }
.wl-success { background: #e7f3ec; border: 1px solid #b9ddc6; color: #1f5135; padding: 0.85rem 1rem; border-radius: 10px; margin-bottom: 1rem; }
.wl-actions { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.wl-submit { background: var(--accent); color: #fff; border: none; font-family: var(--heading); font-weight: 700; padding: 0.8rem 1.5rem; border-radius: 999px; cursor: pointer; font-size: 0.98rem; box-shadow: 0 6px 18px rgba(224,106,44,.4); }
.wl-submit:hover { background: var(--accent-dk); }
.wl-submit:disabled { opacity: 0.7; cursor: default; }
.wl-cancel { background: transparent; border: 1.5px solid var(--border); color: var(--muted); padding: 0.8rem 1.5rem; border-radius: 999px; cursor: pointer; font-size: 0.98rem; }

/* ---------- Lightbox ---------- */
.lb-overlay { display: none; position: fixed; inset: 0; z-index: 120; background: rgba(0,0,0,.92); align-items: center; justify-content: center; padding: 2rem; cursor: zoom-out; }
.lb-overlay.open { display: flex; }
/* width/height auto => the image never renders larger than its native pixels; max-* only shrinks. No upscaling, so no pixelation. */
.lb-overlay img#lb-img { width: auto; height: auto; max-width: 70vw; max-height: 80vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 999px; border: none; background: rgba(255,255,255,.15); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background .15s ease; }
.lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-prev { left: 2.5vw; }
.lb-next { right: 2.5vw; }
.lb-close { position: absolute; top: 4vh; right: 4vw; width: 44px; height: 44px; border-radius: 999px; border: none; background: rgba(255,255,255,.15); color: #fff; font-size: 1.2rem; cursor: pointer; backdrop-filter: blur(4px); }
.lb-close:hover { background: rgba(255,255,255,.3); }
@media (max-width: 768px) { .lb-nav { width: 44px; height: 44px; font-size: 1.5rem; } .lb-prev { left: 1vw; } .lb-next { right: 1vw; } .lb-overlay img#lb-img { max-width: 92vw; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-dk); color: rgba(255,255,255,.8); padding: 3.5rem 1.5rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-logo { height: 46px; width: auto; }
.footer-tag { font-family: var(--heading); font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-links a { color: rgba(255,255,255,.8); font-size: 0.93rem; }
.footer-links a:hover { color: var(--gold); text-decoration: none; }
.footer-social { display: flex; justify-content: center; margin-top: 1.8rem; }
.footer-ig { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); transition: color .15s ease, border-color .15s ease, background .15s ease; }
.footer-ig:hover { color: var(--forest-dk); background: var(--gold); border-color: var(--gold); }
.footer-copy { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,.5); margin-top: 2.2rem; }

.loading { text-align: center; padding: 5rem 1.5rem; color: var(--muted); grid-column: 1 / -1; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) { .nav-brand-text { display: none; } }
@media (max-width: 860px) {
  .trip-layout { grid-template-columns: 1fr; gap: 2rem; }
  .trip-aside { position: static; }
  .quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-more-mobile { display: flex; flex-direction: column; }
  .value-grid { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; }
  .wl-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .stats-row.stats-3 { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .stats-row.stats-3 .lbl { font-size: 0.72rem; }
  .hero { min-height: 0; padding: 6rem 1.2rem 2.5rem; }
  .hero-sm { min-height: 0; padding: 5.5rem 1.2rem 2rem; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-scroll { display: none; }
  .trip-hero { min-height: 0; padding: 6rem 1.2rem 2.5rem; }
}
