/* ===========================================================
   AURA SNOW TRIPS — shared stylesheet
   =========================================================== */

:root {
  --bg: #0b0f14;
  --bg-alt: #0f151b;
  --panel: #121a21;
  --panel-border: #232f38;
  --panel-highlight: #13232c;
  --text: #f3f5f6;
  --text-dim: #9aa7ad;
  --text-dimmer: #6d7a80;
  --accent: #5ee6d9;
  --accent-2: #3b82f6;
  --accent-gradient: linear-gradient(135deg, var(--accent-2), var(--accent));
  --light-bg: #f4f5f3;
  --light-panel: #ffffff;
  --light-text: #10151a;
  --light-text-dim: #5b6670;
  --radius: 2px;
  --maxw: 1240px;
  --font-head: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.light-page {
  background: var(--light-bg);
  color: var(--light-text);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.light-page .eyebrow { color: var(--accent-2); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 20px;
}

p { color: var(--text-dim); margin: 0 0 16px; }
.light-page p { color: var(--light-text-dim); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent-gradient);
  color: #06131a;
}
.btn-outline {
  border-color: var(--accent);
  color: var(--text);
}
.light-page .btn-outline { border-color: var(--accent-2); color: var(--light-text); }
.btn-outline:hover { background: rgba(94,230,217,0.1); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11,15,20,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-border);
}
.light-page .site-header {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid #e6e8e6;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 15px;
}
.brand img { height: 34px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.main-nav a { color: var(--text-dim); transition: color .2s ease; }
.light-page .main-nav a { color: var(--light-text-dim); }
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.light-page .main-nav a:hover, .light-page .main-nav a.active { color: var(--accent-2); }

.nav-cta {
  border: 1px solid var(--accent);
  padding: 10px 20px;
  border-radius: var(--radius);
  color: var(--text) !important;
}
.light-page .nav-cta { border-color: var(--accent-2); color: var(--light-text) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); }
.light-page .nav-toggle span { background: var(--light-text); }

/* ---------------- Nav dropdown (Trips) ---------------- */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translate(-50%, -6px);
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius);
  min-width: 170px; padding: 8px; opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}
.light-page .nav-dropdown-menu { background: var(--light-panel); border-color: #e6e8e6; box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: var(--radius);
  white-space: nowrap; font-size: 12px;
}
.nav-dropdown-menu a:hover { background: var(--panel-highlight); color: var(--accent); }
.light-page .nav-dropdown-menu a:hover { background: #eef0ec; color: var(--accent-2); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,15,20,0.15) 0%, rgba(11,15,20,0.55) 55%, rgba(11,15,20,0.95) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
  width: 100%;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 84px);
  margin-bottom: 14px;
}
.hero .sub { font-size: 18px; color: #dfe6e8; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.hero-small {
  min-height: 46vh;
  align-items: center;
}
.hero-small .hero-inner { padding-bottom: 0; text-align: left; }

/* ---------------- Hero (full-bleed slideshow: photo -> video cross-fade) ---------------- */
.hero-slideshow .hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover; background-position: center;
}
.hero-slideshow .hero-slide.active { opacity: 1; }
.hero-slideshow .hero-slide video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

/* Homepage two-slide hero: each slide carries its own text, so it cross-fades
   in sync with its background photo instead of a single fixed headline. */
.home-hero .hero-slide { display: flex; align-items: flex-end; }
.home-hero::after { z-index: 2; }
.home-hero .hero-slide .hero-inner { z-index: 3; }

/* Push hero text to one side, with a soft dark glow feathered behind it —
   not a bordered card. The glow has no hard edge, so nothing ever reads as
   a "box" pasted on the photo; it just guarantees contrast no matter what
   the moving photo/video behind it happens to show at that spot. */
.hero-align-left { align-items: flex-end; }
.hero-align-left .hero-inner {
  margin-right: auto; margin-left: 0;
  max-width: 580px; width: auto;
  text-align: left; padding: 40px 36px;
  position: relative;
}
.hero-align-left .hero-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -90px -260px -90px -60px;
  background: radial-gradient(ellipse 58% 72% at 34% 52%, rgba(5,9,13,0.82) 0%, rgba(5,9,13,0.6) 38%, rgba(5,9,13,0.3) 60%, rgba(5,9,13,0.08) 82%, rgba(5,9,13,0) 100%);
  filter: blur(16px);
}
.hero-align-left .hero-inner > * { position: relative; }
.hero-align-left h1,
.hero-align-left .sub,
.hero-align-left .eyebrow { text-shadow: 0 2px 20px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.8); }
.hero-align-left .hero-cta { justify-content: flex-start; }
.hero-align-left h1 { font-size: clamp(32px, 4vw, 48px); }

@media (max-width: 860px) {
  .hero-align-left { align-items: flex-end; }
  .hero-align-left .hero-inner {
    margin: 0; max-width: 100%;
    padding: 130px 26px 34px;
  }
  .hero-align-left .hero-inner::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(5,9,13,0) 0%, rgba(5,9,13,0.5) 32%, rgba(5,9,13,0.86) 62%, rgba(5,9,13,0.94) 100%);
    filter: none;
  }
  .hero-align-left h1 { font-size: clamp(28px, 7.5vw, 38px); }
  /* Re-center the crop so the narrow mobile window shows clear mountain
     rather than whatever happened to be centered in the wide desktop photo. */
  .hero-align-left.hero-slideshow .hero-slide { background-position: 85% center; }
}

/* ---------------- Sections ---------------- */
section { padding: 110px 0; }
.section-tight { padding: 70px 0; }
.section-alt { background: var(--bg-alt); }
.light-page section.section-alt { background: #eef0ec; }

.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 52px); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.experience-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.experience-photos img, .experience-photos .img-placeholder {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--panel-border);
}
@media (max-width: 700px) {
  .experience-photos { grid-template-columns: 1fr; gap: 16px; }
  .experience-photos img, .experience-photos .img-placeholder { height: 300px; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 42px 32px;
  text-align: center;
}
.card.highlight {
  background: var(--panel-highlight);
  border-color: var(--accent);
}
.card .icon { font-size: 34px; margin-bottom: 18px; }
.card h3 {
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---------------- Trip cards ---------------- */
.trip-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--panel-border);
}
.trip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,15,20,0.05) 30%, rgba(11,15,20,0.92) 100%);
}
.trip-card-body { position: relative; z-index: 2; padding: 30px; width: 100%; }
.trip-card .eyebrow { margin-bottom: 8px; }
.trip-card h3 { font-size: 24px; margin-bottom: 6px; }
.trip-card p { color: #d7dee0; font-size: 14px; margin-bottom: 18px; }
.trip-card .learn { font-family: var(--font-head); font-size: 12px; letter-spacing: 0.15em; color: var(--accent); }

.trip-list-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}
.trip-list-card img { height: 100%; object-fit: cover; min-height: 260px; }
.trip-list-body { padding: 36px; display: flex; flex-direction: column; }
.trip-price { font-family: var(--font-head); font-size: 26px; color: var(--accent); margin-bottom: 4px; }
.trip-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.trip-meta span {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--panel-border); border-radius: var(--radius);
  padding: 6px 12px; color: var(--text-dim);
}

/* ---------------- Team ---------------- */
.team-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.team-photo { border-radius: var(--radius); overflow: hidden; }
.team-photo img { width: 100%; }
.team-quote { font-size: 22px; font-style: italic; color: var(--text); margin-bottom: 20px; }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.badge {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--accent); color: var(--accent);
  padding: 8px 14px; border-radius: var(--radius);
}

/* ---------------- Contact / forms ---------------- */
.light-page .panel {
  background: var(--light-panel);
  border: 1px solid #e6e8e6;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 40px;
}

form .field { margin-bottom: 18px; }
form label {
  display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 8px; font-family: var(--font-head);
}
.light-page form label { color: var(--light-text-dim); }
form input, form select, form textarea {
  width: 100%; padding: 13px 14px; background: var(--bg);
  border: 1px solid var(--panel-border); color: var(--text);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 15px;
}
.light-page form input, .light-page form select, .light-page form textarea {
  background: #f6f7f5; border-color: #dee1dc; color: var(--light-text);
}
form textarea { min-height: 120px; resize: vertical; }
form button { width: 100%; justify-content: center; border: none; }
.form-note { font-size: 13px; color: var(--text-dimmer); margin-top: 12px; }

.contact-info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info-row .ic { font-size: 20px; }
.contact-info-row h4 { margin: 0 0 4px; font-size: 15px; text-transform: none; letter-spacing: 0; }

/* ---------------- Itinerary ---------------- */
.day-item {
  border-bottom: 1px solid var(--panel-border);
  padding: 26px 0;
}
.day-item:last-child { border-bottom: none; }
.day-label {
  font-family: var(--font-head); color: var(--accent); font-size: 13px;
  letter-spacing: 0.15em; margin-bottom: 8px;
}
.day-item h4 { font-size: 20px; margin-bottom: 10px; text-transform: none; }
.day-time { display: flex; gap: 16px; margin-bottom: 10px; }
.day-time .t { font-family: var(--font-head); font-size: 12px; color: var(--text-dimmer); min-width: 54px; }

/* ---------------- Accordion (itinerary / FAQ as <details>) ---------------- */
details.day-item { padding: 0; }
details.day-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 24px 42px 24px 0; margin: 0;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 16px;
  transition: color .15s ease;
}
details.day-item summary::-webkit-details-marker { display: none; }
details.day-item summary::marker { content: ""; }
details.day-item summary:hover { color: var(--accent); }
details.day-item summary .day-label { margin-bottom: 0; flex-shrink: 0; }
details.day-item summary .day-title {
  font-family: var(--font-head); font-size: 18px; color: var(--text);
}
details.day-item summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-head); font-size: 22px; color: var(--accent);
  width: 26px; height: 26px; text-align: center; line-height: 24px;
  border: 1px solid var(--panel-border); border-radius: 50%; transition: all .2s ease;
}
details.day-item[open] summary::after { content: "–"; border-color: var(--accent); }
details.day-item summary:hover::after { border-color: var(--accent); }
details.day-item .day-body {
  margin: 0; padding: 0 42px 26px 0; max-width: 760px;
  color: var(--text-dim); font-size: 15px; line-height: 1.65;
}
@keyframes day-body-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
details.day-item[open] .day-body { animation: day-body-in .2s ease; }

.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.included-grid > div {
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius);
  padding: 32px 30px;
}
.light-page .included-grid > div { background: var(--light-panel); border-color: #e6e8e6; }
.included-grid ul { list-style: none; margin: 0; padding: 0; }
.included-grid li {
  position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--panel-border); font-size: 14px;
}
.light-page .included-grid li { border-color: #e6e8e6; }
.included-grid li:last-child { border-bottom: none; }
.included-grid li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #06131a;
  background: var(--accent-gradient);
}
.included-grid > div:last-child li::before {
  content: "✕"; color: var(--text-dimmer); background: transparent;
  border: 1px solid var(--panel-border);
}
.light-page .included-grid > div:last-child li::before { border-color: #d7dad4; }
.included-grid h3 { font-size: 15px; letter-spacing: 0.1em; margin-bottom: 20px; }

.stat-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin: 40px 0; }
.stat-strip.stat-strip-6 { grid-template-columns: repeat(3, 1fr); }
.stat-strip.stat-strip-4 { grid-template-columns: repeat(4, 1fr); }
.stat-strip div {
  text-align: center; padding: 24px 10px 20px; background: var(--panel);
  border: 1px solid var(--panel-border); border-top: 2px solid var(--accent);
  border-radius: var(--radius); transition: transform .18s ease, border-color .18s ease;
}
.stat-strip div:hover { transform: translateY(-3px); border-color: var(--accent); }
.stat-strip .stat-icon { display: block; font-size: 22px; margin-bottom: 10px; line-height: 1; }
.stat-strip .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dimmer); margin-bottom: 8px; }
.stat-strip .value { font-family: var(--font-head); font-size: 17px; color: var(--accent); }

.booking-box {
  background: var(--panel-highlight); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 36px; text-align: center;
}
.booking-box .price { font-family: var(--font-head); font-size: 34px; color: var(--accent); margin: 10px 0 22px; }

/* ---------------- Footer ---------------- */
footer.site-footer {
  background: #070a0d; border-top: 1px solid var(--panel-border);
  padding: 70px 0 30px;
}
.light-page footer.site-footer { background: #10151a; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { font-size: 13px; letter-spacing: 0.12em; color: var(--text); margin-bottom: 18px; }
.footer-grid a, .footer-grid p { color: var(--text-dimmer); font-size: 14px; display: block; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--panel-border); padding-top: 26px;
  display: flex; justify-content: space-between; color: var(--text-dimmer); font-size: 13px;
  flex-wrap: wrap; gap: 10px;
}

/* ---------------- Utilities ---------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------------- WhatsApp float ---------------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35); font-size: 26px;
}

/* ---------------- Mobile nav panel ---------------- */
.mobile-nav {
  display: none;
  position: fixed; inset: 84px 0 0 0; z-index: 199;
  background: rgba(11,15,20,0.98); backdrop-filter: blur(10px);
  padding: 30px 32px; flex-direction: column; gap: 24px;
  font-family: var(--font-head); font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase;
  overflow-y: auto;
}
.light-page .mobile-nav { background: rgba(244,245,243,0.98); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-dim); padding: 8px 0; border-bottom: 1px solid var(--panel-border); }
.light-page .mobile-nav a { color: var(--light-text-dim); border-color: #e6e8e6; }
.mobile-nav a.active { color: var(--accent); }
.mobile-subnav { display: flex; flex-direction: column; margin: -12px 0 4px; padding-left: 18px; }
.mobile-subnav a { font-size: 13px; text-transform: none; letter-spacing: 0.04em; opacity: 0.8; }

/* ---------------- Logo mark ---------------- */
.logo-mark { height: 30px; width: 30px; flex: none; }
.brand span.word { display: inline-block; }

/* ---------------- Image placeholder (pending real photo) ---------------- */
.img-placeholder {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #16222a 0%, #0f171d 100%);
  border: 1px dashed var(--panel-border);
  color: var(--text-dimmer);
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  min-height: 260px;
  width: 100%;
  height: 100%;
}
.light-page .img-placeholder {
  background: linear-gradient(135deg, #eceeea 0%, #e2e4df 100%);
  border-color: #d7dad3; color: var(--light-text-dim);
}
.hero .img-placeholder, .hero-small .img-placeholder { position: absolute; inset: 0; min-height: 0; border: none; border-radius: 0; }

/* ---------------- Gallery / lightbox ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid a { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--panel-border); position: relative; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; transition: transform .3s ease; }
.gallery-grid a:hover img { transform: scale(1.05); }
.gallery-grid .play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(11,15,20,0.25);
}
.gallery-grid .play-badge span {
  width: 54px; height: 54px; border-radius: 50%; background: rgba(11,15,20,0.6);
  border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 18px;
}

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(4,6,8,0.94); align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img, .lightbox video { max-width: 100%; max-height: 86vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px; font-size: 30px; color: var(--text);
  background: none; border: none; cursor: pointer; line-height: 1;
}

/* ---------------- Real logo image ---------------- */
.brand img.logo-img { height: 52px; width: auto; display: block; }
.footer-brand img.logo-img { height: 84px; width: auto; margin-bottom: 10px; }

/* ---------------- Funding banner ---------------- */
.funding-banner {
  border-top: 1px solid var(--panel-border);
  padding: 28px 0;
  text-align: center;
}
.light-page .funding-banner { border-color: #e2e4df; }
.funding-banner img { max-height: 54px; width: auto; margin: 0 auto; }

/* ---------------- Instagram banner ---------------- */
.instagram-banner { padding: 60px 0 0; }
.instagram-banner-inner {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 34px 38px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(94,230,217,0.07), rgba(59,130,246,0.05));
}
.instagram-banner-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  border: 1px solid var(--panel-border); border-radius: 50%;
}
.instagram-banner-icon svg { width: 24px; height: 24px; }
.instagram-banner-text { display: flex; flex-direction: column; gap: 4px; margin-right: auto; }
.instagram-banner-eyebrow {
  font-family: var(--font-head); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
}
.instagram-banner-handle { font-size: 21px; font-weight: 700; color: var(--text); }
.instagram-banner-btn { white-space: nowrap; }

.light-page .instagram-banner-inner { border-color: #e6e8e6; background: linear-gradient(135deg, rgba(59,130,246,0.07), rgba(59,130,246,0.03)); }
.light-page .instagram-banner-icon { color: var(--accent-2); border-color: #e6e8e6; }
.light-page .instagram-banner-eyebrow { color: var(--light-text-dim); }
.light-page .instagram-banner-handle { color: var(--light-text); }

@media (max-width: 560px) {
  .instagram-banner-inner { padding: 26px 22px; }
  .instagram-banner-text { margin-right: 0; width: 100%; }
  .instagram-banner-btn { width: 100%; justify-content: center; }
}
.instagram-link:hover strong { text-decoration: underline; }

/* ---------------- Language switcher ---------------- */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 12px; letter-spacing: 0.08em;
  margin-left: 18px;
}
.lang-switch button {
  background: none; border: 1px solid var(--panel-border); color: var(--text-dim);
  padding: 4px 9px; border-radius: var(--radius); cursor: pointer;
  font-family: inherit; font-size: inherit; letter-spacing: inherit;
}
.lang-switch button.active { color: var(--accent); border-color: var(--accent); }
.light-page .lang-switch button { color: var(--light-text-dim); border-color: #d7dad3; }
.light-page .lang-switch button.active { color: var(--accent-2); border-color: var(--accent-2); }
.mobile-nav .lang-switch { margin: 10px 0 0; }

/* ---------------- Trips sub-nav ---------------- */
.trips-subnav {
  display: flex; gap: 30px; border-bottom: 1px solid var(--panel-border);
  font-family: var(--font-head); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
}
.trips-subnav a { padding: 18px 4px; color: var(--text-dim); border-bottom: 2px solid transparent; }
.trips-subnav a:hover, .trips-subnav a.active { color: var(--accent); border-color: var(--accent); }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .team-block { grid-template-columns: 1fr; }
  .trip-list-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip.stat-strip-6, .stat-strip.stat-strip-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trips-subnav { overflow-x: auto; gap: 20px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip.stat-strip-6 { grid-template-columns: 1fr; }
  .stat-strip.stat-strip-4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  details.day-item summary { padding-right: 38px; }
  details.day-item summary .day-title { font-size: 16px; }
}
