/* ==========================================================
   WildGrid Adventures — design system
   ========================================================== */
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Caveat Brush"; src: url("../fonts/caveat-brush-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
:root {
  --night: #0b1a31;
  --navy: #132d52;
  --summit: #1f5fa6;
  --glacier: #dbe8f6;
  --sunset: #f0601d;
  --sunset-dark: #d24c10;
  --sun: #f8b523;
  --snow: #f4f7fb;
  --card: #ffffff;
  --ink: #0e1c30;
  --muted: #56677d;
  --line: rgba(19, 45, 82, 0.12);
  --shadow: 0 18px 44px rgba(11, 26, 49, 0.09);
  --shadow-lg: 0 28px 70px rgba(11, 26, 49, 0.16);
  --radius: 18px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hand: "Caveat Brush", "Segoe Print", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(31, 95, 166, 0.10), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(240, 96, 29, 0.07), transparent 26rem),
    var(--snow);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.lock { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.02; margin: 0; letter-spacing: 0.005em; }
p, figure { margin: 0; }
::selection { background: rgba(240, 96, 29, 0.25); }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; border-radius: 6px; }
.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.narrow { width: min(820px, 100% - 2.5rem); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.6rem; border-radius: 12px; font-weight: 700; font-size: 1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--sunset), var(--sunset-dark)); color: #fff; box-shadow: 0 14px 34px rgba(240, 96, 29, 0.3); }
.btn-primary:hover { box-shadow: 0 18px 40px rgba(240, 96, 29, 0.4); }
.btn-light { background: #fff; color: var(--navy); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--navy); background: #fff; }
.btn-ghost:hover { background: var(--glacier); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.9rem; border-radius: 10px; }
.btn-block { width: 100%; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--night);
  display: grid; place-items: center; transition: opacity 0.45s, visibility 0.45s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { display: grid; justify-items: center; gap: 1.3rem; }
.loader img { width: 190px; height: auto; }
.loader-bar { width: 200px; height: 4px; border-radius: 99px; background: rgba(255,255,255,0.15); overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--sun), var(--sunset)); animation: load 1s var(--ease) forwards; }
@keyframes load { to { width: 100%; } }

/* ---------- Navbar ---------- */
.nav { position: fixed; top: 14px; left: 0; right: 0; z-index: 60; padding-inline: 12px; }
.nav-bar {
  max-width: 1180px; margin-inline: auto; height: 74px; padding: 0 10px 0 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 10px 34px rgba(11, 26, 49, 0.12); transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled .nav-bar { background: rgba(255,255,255,0.96); box-shadow: 0 16px 44px rgba(11, 26, 49, 0.18); }
.nav-logo img { height: 62px; width: auto; transition: transform 0.3s var(--ease); }
.nav-logo:hover img { transform: translateY(-2px); }
.nav-links { display: flex; gap: 2px; padding: 4px; border-radius: 999px; background: rgba(19, 45, 82, 0.05); }
.nav-links a { padding: 0.45rem 0.85rem; border-radius: 999px; font-size: 0.92rem; font-weight: 600; color: var(--navy); transition: background 0.25s, color 0.25s; }
.nav-links a:hover, .nav-links a.active { background: var(--navy); color: #fff; }
.nav-progress { max-width: 1156px; margin: 6px auto 0; height: 3px; border-radius: 99px; overflow: hidden; background: rgba(19,45,82,0.08); }
.nav-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--sun), var(--sunset)); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; place-items: center; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--night); color: #fff;
  display: flex; flex-direction: column; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu .top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu .top img { height: 54px; width: auto; }
.mobile-menu nav { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.4rem; }
.mobile-menu nav a { font-family: var(--display); font-size: 2.3rem; font-weight: 700; }
.mobile-menu nav a:hover { color: var(--sun); }
.mobile-menu .call { text-align: center; color: var(--sun); font-weight: 700; padding-bottom: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 700px; color: #fff; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,26,49,0.88) 0%, rgba(11,26,49,0.55) 48%, rgba(11,26,49,0.15) 100%),
    linear-gradient(180deg, rgba(11,26,49,0.25) 0%, transparent 55%, var(--snow) 100%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: center; padding: 130px 0 90px; }
.hero-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px); font-weight: 600; font-size: 0.95rem; }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(248,181,35,0.25); }
.hero h1 { font-size: clamp(3.4rem, 8vw, 7rem); font-weight: 800; margin-top: 1.1rem; text-transform: uppercase; line-height: 0.9; text-shadow: 0 10px 34px rgba(0,0,0,0.35); }
.hero h1 .line-2 { color: var(--sun); }
.hero-note { font-family: var(--hand); font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: #fff; margin-top: 0.9rem; transform: rotate(-2deg); display: inline-block; }
.hero-note::after { content: ""; display: block; height: 4px; margin-top: 2px; border-radius: 99px; background: var(--sunset); transform: rotate(-1deg); }
.hero-sub { max-width: 34rem; margin-top: 1.1rem; font-size: 1.12rem; color: rgba(255,255,255,0.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }

/* departure ticket in hero */
.ticket {
  justify-self: end; width: 100%; max-width: 320px; color: var(--ink); background: #fff; border-radius: 20px;
  box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(2deg);
}
.ticket-head { background: var(--navy); color: #fff; padding: 1rem 1.2rem; display: flex; justify-content: space-between; align-items: center; }
.ticket-head span { font-size: 0.85rem; opacity: 0.85; }
.ticket-head strong { font-family: var(--display); font-size: 1.4rem; }
.ticket-body { padding: 1.1rem 1.2rem 1.2rem; display: grid; gap: 0.8rem; }
.ticket-route { display: flex; align-items: center; justify-content: space-between; font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.ticket-route .path { flex: 1; margin: 0 0.6rem; border-top: 2px dashed var(--sunset); position: relative; }
.ticket-row { display: flex; justify-content: space-between; font-size: 0.95rem; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 0.7rem; }
.ticket-row b { color: var(--ink); }
.ticket .price { font-family: var(--display); font-size: 2.2rem; font-weight: 800; color: var(--sunset); line-height: 1; }

/* ---------- Facts strip ---------- */
.facts { position: relative; z-index: 5; margin-top: -48px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.fact { display: flex; gap: 0.8rem; align-items: center; padding: 1.3rem 1.4rem; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--glacier); color: var(--summit); flex-shrink: 0; }
.fact strong { display: block; font-family: var(--display); font-size: 1.3rem; color: var(--navy); line-height: 1.1; }
.fact span { font-size: 0.9rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.heading { text-align: center; margin-bottom: 2.6rem; }
.heading.left { text-align: left; }
.heading h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; color: var(--navy); }
.heading .bar { width: 56px; height: 4px; border-radius: 99px; background: var(--sunset); margin: 0.8rem auto 1rem; }
.heading.left .bar { margin-left: 0; }
.heading p { color: var(--muted); font-size: 1.1rem; max-width: 40rem; margin-inline: auto; }
.heading.left p { margin-left: 0; }

/* ---------- Trip filters + cards ---------- */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.4rem; }
.filter { padding: 0.55rem 1.3rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; background: #fff; border: 1px solid var(--line); color: var(--muted); transition: all 0.25s; }
.filter:hover { color: var(--navy); border-color: rgba(19,45,82,0.3); }
.filter.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.trip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.trip-card {
  background: var(--card); border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s, opacity 0.3s;
}
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trip-card.hide { display: none; }
.trip-media { position: relative; height: 240px; overflow: hidden; }
.trip-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.trip-card:hover .trip-media img { transform: scale(1.06); }
.trip-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,26,49,0.55), transparent 55%); }
.chip { position: absolute; z-index: 2; top: 14px; padding: 0.3rem 0.8rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
.chip-left { left: 14px; background: rgba(255,255,255,0.92); color: var(--navy); }
.chip-right { right: 14px; background: var(--sun); color: var(--night); }
.trip-media .when { position: absolute; z-index: 2; left: 16px; bottom: 12px; color: #fff; font-weight: 600; font-size: 0.92rem; display: flex; gap: 0.4rem; align-items: center; }
.trip-body { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.trip-body h3 { font-size: 1.75rem; font-weight: 700; color: var(--navy); }
.trip-body .sub { color: var(--sunset); font-weight: 600; font-size: 0.95rem; margin-top: -0.35rem; }
.trip-body p.desc { color: var(--muted); font-size: 0.97rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.trip-foot { margin-top: auto; padding-top: 0.9rem; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; }
.price-big { font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--sunset); line-height: 1; }
.price-note { font-size: 0.82rem; color: var(--muted); }
.link-btn { font-weight: 700; color: var(--summit); display: inline-flex; align-items: center; gap: 0.3rem; }
.link-btn:hover { color: var(--sunset); }

/* ---------- Group trip section (the special one) ---------- */
.group { position: relative; background: var(--night); color: #fff; overflow: hidden; }
.group::before {
  content: ""; position: absolute; inset: 0; opacity: 0.16;
  background: url("../images/hero.webp") center 30% / cover no-repeat;
}
.group::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: var(--snow);
  clip-path: polygon(0 100%, 0 70%, 8% 40%, 15% 62%, 24% 18%, 33% 58%, 41% 36%, 50% 70%, 58% 30%, 66% 55%, 75% 10%, 84% 52%, 92% 34%, 100% 60%, 100% 100%);
}
.group .container { position: relative; z-index: 2; }
.group-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.group .hand { font-family: var(--hand); color: var(--sun); font-size: 1.9rem; display: inline-block; transform: rotate(-2deg); }
.group h2 { font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 800; text-transform: uppercase; line-height: 0.92; margin-top: 0.4rem; }
.group h2 span { display: block; color: var(--sun); }
.group-lead { color: rgba(255,255,255,0.85); font-size: 1.12rem; margin-top: 1.2rem; max-width: 34rem; }
.group-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.group-meta span { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.45rem 0.9rem; border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); font-weight: 600; font-size: 0.93rem; }
.group-meta .icon { color: var(--sun); }

.depart-card { background: #fff; color: var(--ink); border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden; }
.depart-head { padding: 1.2rem 1.4rem; background: linear-gradient(135deg, var(--sunset), var(--sunset-dark)); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.depart-head h3 { font-size: 1.6rem; font-weight: 700; }
.depart-head .price { font-family: var(--display); font-size: 2.3rem; font-weight: 800; line-height: 1; text-align: right; }
.depart-head .price small { display: block; font-family: var(--body); font-size: 0.78rem; font-weight: 600; opacity: 0.9; }
.depart-body { padding: 1.3rem 1.4rem 1.4rem; }
.countdown { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1rem; border-radius: 14px; background: var(--glacier); color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.countdown .cd { display: flex; gap: 0.4rem; margin-left: auto; }
.countdown .cd div { background: var(--navy); color: #fff; border-radius: 8px; padding: 0.25rem 0.5rem; text-align: center; min-width: 46px; }
.countdown .cd b { display: block; font-family: var(--display); font-size: 1.3rem; line-height: 1; }
.countdown .cd small { font-size: 0.66rem; opacity: 0.8; }
.date-label { font-weight: 700; color: var(--navy); margin: 1.1rem 0 0.6rem; font-size: 0.98rem; }
.dates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.date-chip { border: 1.5px solid var(--line); border-radius: 12px; padding: 0.55rem 0.4rem; text-align: center; background: #fff; transition: all 0.2s; }
.date-chip b { display: block; font-family: var(--display); font-size: 1.35rem; color: var(--navy); line-height: 1.05; }
.date-chip small { color: var(--muted); font-size: 0.78rem; }
.date-chip .tag { display: block; font-size: 0.7rem; font-weight: 700; color: var(--sunset); }
.date-chip:hover { border-color: var(--summit); }
.date-chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); }
.date-chip[aria-pressed="true"] b, .date-chip[aria-pressed="true"] small { color: #fff; }
.date-chip[aria-pressed="true"] .tag { color: var(--sun); }
.seats-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; gap: 1rem; }
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; }
.stepper button { width: 40px; height: 40px; font-size: 1.3rem; color: var(--navy); }
.stepper button:hover { background: var(--glacier); }
.stepper output { min-width: 36px; text-align: center; font-weight: 700; }
.total { text-align: right; font-size: 0.85rem; color: var(--muted); }
.total b { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--navy); }
.depart-body .btn { margin-top: 1rem; }
.fine { font-size: 0.82rem; color: var(--muted); margin-top: 0.7rem; text-align: center; }

.places { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; margin-top: 3.6rem; }
.polaroid { background: #fff; color: var(--ink); padding: 0.55rem 0.55rem 0.8rem; border-radius: 6px; box-shadow: 0 16px 34px rgba(0,0,0,0.35); transition: transform 0.35s var(--ease); }
.polaroid:nth-child(odd) { transform: rotate(-2.5deg); }
.polaroid:nth-child(even) { transform: rotate(2deg) translateY(10px); }
.polaroid:hover { transform: rotate(0) translateY(-6px); }
.polaroid .ph { aspect-ratio: 4 / 3; border-radius: 3px; background-size: cover; background-position: center; }
.polaroid h4 { font-family: var(--hand); font-size: 1.35rem; font-weight: 400; margin-top: 0.5rem; color: var(--navy); display: flex; gap: 0.3rem; align-items: center; }
.polaroid h4 .icon { color: var(--sunset); width: 0.9em; }
.polaroid p { font-size: 0.8rem; color: var(--muted); line-height: 1.35; }

.group-bottom { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; margin-top: 4.5rem; padding-bottom: 60px; align-items: center; }
.reel { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 9 / 16; max-height: 560px; margin-inline: auto; background: #000; box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,0.12); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.for-you h3 { font-size: 2.3rem; font-weight: 800; }
.for-you ul { list-style: none; padding: 0; margin: 1.3rem 0 1.6rem; display: grid; gap: 0.9rem; }
.for-you li { display: flex; gap: 0.9rem; align-items: flex-start; color: rgba(255,255,255,0.88); }
.for-you li .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(248,181,35,0.14); color: var(--sun); display: grid; place-items: center; flex-shrink: 0; }
.for-you li b { color: #fff; display: block; }
.for-you .actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.poster-link { color: var(--sun); font-weight: 700; display: inline-flex; gap: 0.4rem; align-items: center; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 1040px; margin-inline: auto; }
.why-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow); transition: transform 0.35s var(--ease), border-color 0.3s; }
.why-card:hover { transform: translateY(-4px); border-color: rgba(240,96,29,0.45); }
.why-card .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--glacier); color: var(--summit); margin-bottom: 1.2rem; }
.why-card .ic .icon { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.why-card p { color: var(--muted); }
.why-card::after { content: ""; position: absolute; right: -30px; bottom: -30px; width: 130px; height: 130px; border-radius: 50%; background: rgba(31,95,166,0.05); }

/* ---------- Services band ---------- */
.services { background: var(--navy); color: #fff; border-radius: 28px; padding: 3rem 2rem; position: relative; overflow: hidden; }
.services h2 { color: #fff; }
.services .heading p { color: rgba(255,255,255,0.75); }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.service { text-align: center; padding: 0.6rem 1rem; }
.service + .service { border-left: 1px solid rgba(255,255,255,0.14); }
.service .icon { width: 44px; height: 44px; color: #fff; margin: 0 auto 0.9rem; }
.service h3 { font-size: 1.3rem; font-weight: 700; }
.service p { color: var(--sun); font-size: 0.9rem; font-weight: 600; margin-top: 0.3rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 1rem; }
.g-item:first-child { grid-column: span 2; grid-row: span 2; }
.g-item { position: relative; border-radius: 18px; overflow: hidden; cursor: zoom-in; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1rem 0.8rem; color: #fff; font-size: 0.9rem; font-weight: 600; background: linear-gradient(0deg, rgba(11,26,49,0.92) 0%, rgba(11,26,49,0.6) 55%, transparent); opacity: 0; transition: opacity 0.3s; }
.g-item:hover figcaption, .g-item:focus-visible figcaption { opacity: 1; }
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(6, 13, 26, 0.94); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 82vh; object-fit: contain; border-radius: 12px; }
.lb-btn { position: absolute; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.25); }
.lb-btn:hover { background: rgba(255,255,255,0.25); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ---------- Marquee (taglines) ---------- */
.marquee-wrap { overflow: hidden; padding: 24px 0; }
.marquee { overflow: hidden; padding: 1.1rem 0; background: var(--sun); color: var(--night); transform: rotate(-1.2deg) scaleX(1.02); }
.marquee-track { display: flex; gap: 2.4rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee span { font-family: var(--display); font-size: 1.7rem; font-weight: 800; text-transform: uppercase; white-space: nowrap; display: inline-flex; align-items: center; gap: 2.4rem; }
.marquee span::after { content: ""; width: 14px; height: 14px; background: var(--sunset); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 0.8rem; overflow: hidden; box-shadow: 0 8px 22px rgba(11,26,49,0.04); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 1.3rem; text-align: left; font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.faq-q:hover { background: #fbfcfe; }
.faq-q .icon { transition: transform 0.3s; color: var(--muted); }
.faq-item.open .faq-q .icon { transform: rotate(180deg); color: var(--sunset); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---------- CTA / newsletter ---------- */
.cta { position: relative; border-radius: 28px; overflow: hidden; color: #fff; padding: 4rem 2rem; text-align: center; background: var(--night); }
.cta::before { content: ""; position: absolute; inset: 0; background: url("../images/himalayan-trail.webp") center 35% / cover; opacity: 0.35; }
.cta > * { position: relative; }
.cta .hand { font-family: var(--hand); color: var(--sun); font-size: 2rem; }
.cta h2 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; margin: 0.3rem 0 0.8rem; }
.cta p { color: rgba(255,255,255,0.85); max-width: 32rem; margin-inline: auto; }
.news-form { display: flex; gap: 0.7rem; max-width: 520px; margin: 1.8rem auto 0; }
.news-form input { flex: 1; padding: 0.95rem 1.2rem; border-radius: 12px; border: 0; font: inherit; }
.form-msg { margin-top: 1rem; font-weight: 600; color: var(--sun); min-height: 1.5em; }

/* ---------- Footer ---------- */
.footer { background: var(--night); color: rgba(255,255,255,0.8); padding: 64px 0 28px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr; gap: 2.4rem; }
.footer img.flogo { height: 96px; width: auto; margin-bottom: 1rem; }
.footer .hand { font-family: var(--hand); color: var(--sun); font-size: 1.5rem; line-height: 1.2; }
.footer h4 { font-family: var(--display); color: #fff; font-size: 1.35rem; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer a:hover { color: #fff; }
.footer .contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer .contact .icon { color: var(--sun); margin-top: 0.25rem; }
.socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); transition: all 0.3s; }
.socials a:hover { background: var(--sunset); border-color: var(--sunset); transform: translateY(-2px); }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.88rem; }

/* ---------- Floating buttons ---------- */
.fab-wa { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(20,100,50,0.35); border: 4px solid #fff; transition: transform 0.3s var(--ease); }
.fab-wa:hover { transform: translateY(-3px) scale(1.05); }
.fab-wa .icon { width: 32px; height: 32px; }
.to-top { position: fixed; left: 22px; bottom: 22px; z-index: 70; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--navy); display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; transform: scale(0.6); pointer-events: none; transition: all 0.3s var(--ease); }
.to-top.show { opacity: 1; transform: scale(1); pointer-events: auto; }
.cursor-glow { position: fixed; top: 0; left: 0; width: 300px; height: 300px; border-radius: 50%; pointer-events: none; z-index: 45; background: radial-gradient(circle, rgba(31,95,166,0.08), rgba(240,96,29,0.035) 40%, transparent 70%); transform: translate3d(-999px,-999px,0); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 110; background: rgba(11,26,49,0.78); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal.open { display: flex; animation: fade 0.25s ease; }
@keyframes fade { from { opacity: 0; } }
.modal-box { position: relative; width: min(1000px, 100%); max-height: 90vh; overflow: hidden; border-radius: 26px; background: #fff; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 0.85fr 1.15fr; animation: rise 0.4s var(--ease); }
@keyframes rise { from { transform: translateY(24px) scale(0.97); opacity: 0; } }
.modal-media { position: relative; min-height: 280px; }
.modal-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,26,49,0.85), transparent 60%); }
.modal-media .cap { position: absolute; z-index: 2; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; color: #fff; }
.modal-media .cap span { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 99px; background: var(--sun); color: var(--night); font-size: 0.8rem; font-weight: 700; margin-bottom: 0.6rem; }
.modal-media h2 { font-size: 2.4rem; font-weight: 800; }
.modal-body { overflow-y: auto; max-height: 90vh; padding: 1.8rem; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--navy); display: grid; place-items: center; box-shadow: var(--shadow); }
.modal-close:hover { background: var(--sunset); color: #fff; }
.m-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.m-stats div { background: var(--glacier); border-radius: 14px; padding: 0.7rem; text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.m-stats .icon { display: block; margin: 0 auto 0.2rem; color: var(--sunset); }
.modal-body h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.7rem; }
.modal-body p.lead { color: var(--muted); margin-top: 1.1rem; }
.pill-list { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.pill-list span { padding: 0.35rem 0.8rem; border-radius: 99px; border: 1px solid var(--line); font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.price-table { display: grid; gap: 0.4rem; }
.price-table div { display: flex; justify-content: space-between; padding: 0.6rem 0.9rem; border-radius: 10px; background: #f6f9fd; font-weight: 600; }
.price-table b { color: var(--sunset); font-family: var(--display); font-size: 1.25rem; }
.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px dashed rgba(240,96,29,0.4); padding-left: 1.2rem; display: grid; gap: 1rem; }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: calc(-1.2rem - 7px); top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--sunset); box-shadow: 0 0 0 4px #fff; }
.timeline b { color: var(--navy); }
.timeline p { color: var(--muted); font-size: 0.95rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; font-size: 0.93rem; color: var(--muted); }
.check-list li { display: flex; gap: 0.5rem; }
.check-list .icon { margin-top: 0.2rem; }
.check-list.yes .icon { color: #1c9a55; }
.check-list.no .icon { color: #d23b3b; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.poster-view img { max-height: 86vh; width: auto; border-radius: 12px; }

/* ---------- Inner pages ---------- */
.page-hero { position: relative; background: var(--night); color: #fff; padding: 170px 0 90px; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; opacity: 0.28; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; }
.page-hero .hand { font-family: var(--hand); color: var(--sun); font-size: 1.8rem; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.6rem); font-weight: 800; text-transform: uppercase; line-height: 0.92; margin-top: 0.3rem; }
.page-hero p { max-width: 38rem; margin-top: 1.2rem; font-size: 1.12rem; color: rgba(255,255,255,0.86); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.about-copy p { color: var(--muted); margin-bottom: 1rem; font-size: 1.07rem; }
.about-copy .quote { font-family: var(--hand); font-size: 2rem; color: var(--navy); line-height: 1.2; margin: 1.5rem 0; border-left: 4px solid var(--sunset); padding-left: 1rem; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.sign { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem; box-shadow: var(--shadow); }
.sign .icon { width: 30px; height: 30px; color: var(--sunset); margin-bottom: 0.8rem; }
.sign h3 { font-size: 1.45rem; color: var(--navy); }
.sign p { color: var(--muted); font-size: 0.95rem; margin-top: 0.4rem; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2rem; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.6rem; box-shadow: var(--shadow); }
.panel + .panel { margin-top: 1.2rem; }
.panel h2 { font-size: 2rem; color: var(--navy); }
.panel > p { color: var(--muted); margin-top: 0.5rem; }
.contact-rows { display: grid; gap: 0.7rem; margin-top: 1.2rem; }
.contact-rows a, .contact-rows div { display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1rem; border-radius: 14px; background: #f3f7fc; font-weight: 600; color: var(--navy); word-break: break-word; }
.contact-rows a:hover { background: var(--glacier); }
.contact-rows .icon { color: var(--sunset); }
.contact-rows small { display: block; font-weight: 500; color: var(--muted); font-size: 0.8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.field input, .field select, .field textarea { width: 100%; padding: 0.8rem 1rem; border-radius: 12px; border: 1.5px solid var(--line); background: #f6f9fd; font: inherit; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sunset); box-shadow: 0 0 0 4px rgba(240,96,29,0.12); }
.field textarea { resize: vertical; min-height: 110px; }
.form-status { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 12px; font-weight: 600; display: none; }
.form-status.ok { display: block; background: #e9f8ef; color: #17693c; }
.form-status.info { display: block; background: var(--glacier); color: var(--navy); }

.terms-list { display: grid; gap: 1rem; }
.term { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem; box-shadow: 0 8px 22px rgba(11,26,49,0.04); }
.term h2 { font-size: 1.6rem; color: var(--navy); }
.term p { color: var(--muted); margin-top: 0.5rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links a { padding: 0.45rem 0.6rem; font-size: 0.86rem; }
  .places { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .service:nth-child(4) { border-left: 0; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  .hero-inner { grid-template-columns: 1fr; padding: 130px 0 100px; }
  .ticket { justify-self: start; transform: rotate(0); }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
  .trip-grid { grid-template-columns: 1fr 1fr; }
  .group-top, .group-bottom, .about-split, .contact-grid { grid-template-columns: 1fr; }
  .modal-box { grid-template-columns: 1fr; overflow-y: auto; }
  .modal-body { max-height: none; overflow: visible; }
  .modal-media { min-height: 230px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .nav-bar { height: 64px; }
  .nav-logo img { height: 52px; }
  .hero { min-height: 0; }
  .facts-grid, .trip-grid, .why-grid, .gallery-grid, .two-col, .form-grid, .footer-grid, .values { grid-template-columns: 1fr; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .places { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service { border-left: 0 !important; }
  .dates { grid-template-columns: repeat(2, 1fr); }
  .countdown { flex-wrap: wrap; }
  .countdown .cd { margin-left: 0; }
  .news-form { flex-direction: column; }
  .services { padding: 2.4rem 1rem; }
  .fab-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .to-top { left: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
