/* =====================================================================
   COSMIC HIMALAYA — "SURVEY CHART" REDESIGN
   A cartographic / expedition-blueprint identity: corner-bracket
   "viewfinder" cards, ruler-tick dividers instead of plain underlines,
   contour-ring watermarks instead of giant background words, and a
   monospace data face for altitude/date/grade readouts set against
   the serif display type. Grounded in what this brand actually does —
   route mapping — rather than a generic blue SaaS palette.
   All class names & CSS variables kept identical — HTML is untouched.
   ===================================================================== */

:root {
  /* Primary dark */
  --navy: #0b1c3d;
  --navy2: #12274f;
  --navy-light: #16305e;      /* renamed from --teal */

  /* Accent colours (previously misnamed as --gold, --gold2, --gold3) */
  --accent: #2f6fed;
  --accent-dark: #1d4ed8;
  --accent-light: #93c5fd;

  /* Neutrals */
  --white: #fff;
  --light: #f5f8fd;
  --bg: #f7faff;
  --border: #dbe6f5;
  --text: #10203a;
  --muted: #5b6b82;

  /* type roles */
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "JetBrains Mono", Menlo, Consolas, monospace;

  /* fluid spacing tokens */
  --section-y: clamp(40px, 7vw, 80px);
  --section-x: clamp(20px, 5vw, 60px);
  --radius: 10px;
}

html,
body {
  overflow-x: clip;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Navbar logo layout */
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo { height: 140px; width: auto; flex-shrink: 0; display: block; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
@media (max-width: 600px) { .nav-logo { height: 84px; } }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img {
  z-index: 1;
  animation: kenburns 22s ease-in-out infinite alternate;
  transform-origin: 60% 40%;
  filter: grayscale(0.4) saturate(0.7) sepia(0.15) hue-rotate(175deg) brightness(0.85);
}
.hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.is-ready { opacity: 1; }

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

/* scrim: navy wash for text legibility, no matter the frame */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(105deg, rgba(11,28,61,0.82) 0%, rgba(11,28,61,0.4) 42%, rgba(11,28,61,0) 70%),
    linear-gradient(to top, rgba(11,28,61,0.7) 0%, rgba(11,28,61,0) 45%);
}

.bg-word {
  position: absolute;
  right: 4%;
  top: 14%;
  z-index: 4;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(70px, 16vw, 230px);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.14);
  text-stroke: 1.5px rgba(255, 255, 255, 0.14);
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: absolute;
  z-index: 5;
  left: clamp(20px, 6vw, 90px);
  bottom: clamp(48px, 8vw, 96px);
  max-width: 620px;
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: clamp(28px, 4vw, 48px);
  height: 1.5px;
  background: var(--accent);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(40px, 7vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero-title .accent {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 34px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  min-height: 44px;                    /* touch target */
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.hero-cta:hover {
  transform: translateY(-3px);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 36px rgba(47, 111, 237, 0.4);
}
.hero-cta .arrow { transition: transform 0.3s ease; }
.hero-cta:hover .arrow { transform: translateX(4px); }

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  animation: heroUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.d1 { animation-delay: 0.15s; }
.d2 { animation-delay: 0.30s; }
.d3 { animation-delay: 0.45s; }
.d4 { animation-delay: 0.60s; }
@keyframes heroUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-content { left: 22px; right: 22px; max-width: none; }
  .bg-word { top: 9%; }
  .hero-logo {
    transform: translateY(60px);
    filter: brightness(0) invert(1);
    max-width: 130px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; }
  .hero-video { transition: none; }
  .reveal-up { animation: none; opacity: 1; transform: none; }
}

/* ══════════ CATEGORY STRIP ══════════ */
.cat-strip {
  display: flex;
  overflow-x: auto;
  gap: 0;
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-item {
  flex: 1;
  min-width: 180px;
  height: 180px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.cat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) saturate(0.8) brightness(0.92);
  transition: transform 0.4s, filter 0.4s;
}
.cat-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0) saturate(1) brightness(1);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 28, 61, 0.78) 40%,
    transparent 100%
  );
}
.cat-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

@media (max-width: 768px) {
  .cat-item { min-width: 150px; height: 150px; }
}

/* ══════════ ROUTE / ALTITUDE PROFILE — signature strip ══════════ */
.route-strip {
  background: var(--navy);
  padding: 32px var(--section-x) 40px;
  overflow: hidden;
}
.route-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.route-strip-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.route-strip-svg {
  width: 100%;
  height: 70px;
  display: block;
}
.route-strip-line {
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 2;
  opacity: 0.55;
}
.route-strip-peaks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}
.rs-peak { display: flex; flex-direction: column; gap: 2px; }
.rs-alt {
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
  font-family: "Playfair Display", serif;
}
.rs-name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .route-strip-peaks { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
}

/* ══════════ SECTION EYEBROW LABEL ══════════ */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ══════════ PLAN YOUR TREK ══════════ */
.plan-section {
  padding: var(--section-y) var(--section-x) 20px;
  background: var(--white);
}
.plan-section h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 6px;
}
.plan-section p {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.plan-underline {
  width: 120px;
  height: 10px;
  margin: 0 auto 28px;
  background:
    linear-gradient(var(--accent) 0 2px) bottom / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, var(--accent) 0 2px, transparent 2px 12px) bottom / 100% 8px no-repeat;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.filter-row::-webkit-scrollbar { display: none; }
.ftab {
  padding: 10px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: all 0.2s;
  width: auto;
  min-height: 44px;
  cursor: pointer;
}
.ftab:hover { border-color: var(--accent); }
.ftab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 700;
}

/* ══════════ TREK CARDS ══════════ */
.treks-section { padding: 1rem var(--section-x) var(--section-y); }
.treks-section h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800; color: var(--navy);
  text-align: center; margin: 10px auto 4px;
}

.treks-slider-wrap {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}
.treks-slider-wrap::-webkit-scrollbar { display: none; }

.treks-slider {
  display: flex;
  gap: 20px;
  padding: 0 var(--section-x);
  width: max-content;
}

.trek-card {
  flex: 0 0 auto;
  width: clamp(260px, 80vw, 300px);
  min-width: 0;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.trek-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(11, 28, 61, 0.12);
  border-color: var(--accent);
}

.treks-slider .reveal { opacity: 1 !important; transform: none !important; }

.tk-img { height: clamp(160px, 45vw, 200px); overflow: hidden; position: relative; }
.tk-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.55) saturate(0.8) brightness(0.9);
  transition: transform 0.4s, filter 0.4s;
}
.trek-card:hover .tk-img img { transform: scale(1.06); filter: grayscale(0) saturate(1) brightness(1); }
.tk-loc {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(11, 28, 61, 0.88); color: #fff;
  font-size: 11px; padding: 4px 10px; border-radius: 20px;
}
.tk-body { padding: 16px; }
.tk-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.tk-meta span {
  display: block; font-size: 11px; color: var(--muted);
  font-weight: 600; text-transform: uppercase; margin-bottom: 2px;
}
.tk-meta strong { color: var(--navy); }
.tk-btn {
  width: 100%; margin-top: 14px; padding: 10px;
  border: 1.5px solid var(--navy); color: var(--navy);
  font-size: 13px; font-weight: 700; border-radius: 6px;
  transition: 0.2s; background: transparent; min-height: 44px; cursor: pointer;
}
.tk-btn:hover { background: var(--navy); color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  .treks-slider-wrap { scroll-behavior: auto; }
  .trek-card, .tk-img img { transition: none; }
}

/* ══════════ STATS BAR ══════════ */
.stat-container {
  padding: var(--section-y) var(--section-x);
  background: var(--bg);
}

.stats-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 auto;
  display: flex;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(11, 28, 61, 0.05);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: clamp(28px, 4vw, 40px) clamp(15px, 2vw, 24px);
  border-right: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover {
  background: rgba(47, 111, 237, 0.05);
  transform: translateY(-5px);
}
.stat-item.highlighted { background: rgba(47, 111, 237, 0.04); }

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.stat-label { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.stat-sub { font-size: 13px; color: var(--muted); line-height: 1.4; }

@media (max-width: 768px) {
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:last-child { flex: 0 0 100%; border-bottom: none; border-right: none; }
}
@media (max-width: 480px) {
  .stat-item { flex: 0 0 100%; border-right: none; }
}

/* ================= GALLERY ================= */
.gallery {
  padding: var(--section-y) var(--section-x);
  background:
    repeating-linear-gradient(0deg, rgba(11, 28, 61, 0.02) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(11, 28, 61, 0.02) 0 1px, transparent 1px 32px),
    var(--bg);
}
.gallery h2 { text-align: center; margin-bottom: 40px; font-size: clamp(24px, 4vw, 36px); color: var(--navy); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}
.g-item { overflow: hidden; border-radius: var(--radius); }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.4) saturate(0.85);
  transition: 0.4s;
}
.g-item:hover img { transform: scale(1.08); filter: grayscale(0) saturate(1); }
.g-item.large { grid-column: span 2; grid-row: span 2; }
.g-item.wide { grid-column: span 2; }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-item.large, .g-item.wide { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}

/* ══════════ TRUST TABS ══════════ */
.trust-section {
  padding: var(--section-y) 0;
  background:
    repeating-linear-gradient(0deg, rgba(11, 28, 61, 0.02) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(11, 28, 61, 0.02) 0 1px, transparent 1px 32px),
    linear-gradient(to bottom, #fff, var(--bg));
}
.trust-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 1rem;
}
.trust-tabs {
  display: flex;
  gap: 8px;
  background: rgba(11, 28, 61, 0.05);
  padding: 8px;
  border-radius: 100px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.trust-tabs::-webkit-scrollbar { display: none; }
.tr-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  border: none;
  background: none;
  border-radius: 100px;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
  min-height: 44px;
}
.tr-tab.active {
  color: white;
  background: var(--navy);
  box-shadow: 0 8px 16px rgba(11, 28, 61, 0.18);
}

.trust-panel { display: none; animation: fadeIn 0.5s; }
.trust-panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 var(--section-x);
  max-width: 1200px;
  margin: 0 auto;
}
.award-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.award-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(11, 28, 61, 0.08);
}
.award-icon {
  font-size: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) sepia(0.4) hue-rotate(175deg) saturate(4);
}
.award-info h4 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.award-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.award-info p { font-size: 14px; color: var(--muted); line-height: 1.5; }

.trust-panel-content { text-align: center; max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.tpc-icon { font-size: 64px; margin-bottom: 20px; }
.tpc-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 15px;
}
.tpc-text { font-size: 18px; line-height: 1.8; color: var(--muted); }

@media (max-width: 900px) {
  .awards-grid { grid-template-columns: 1fr; }
}

/* Google Reviews */
.reviews-row {
  display: flex;
  gap: 30px;
  padding: 0 var(--section-x);
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}
.google-score {
  min-width: 280px;
  padding: 40px 30px;
  background: white;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(11, 28, 61, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gs-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #5f6368;
  font-size: 18px;
}
.gs-logo-img { height: 24px; width: auto; }
.gs-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: 5px;
}
.gs-stars { color: #fbbc05; font-size: 24px; margin: 10px 0; }
.gs-count { font-size: 14px; color: var(--muted); margin-bottom: 25px; }
.gs-write-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 111, 237, 0.3);
  min-height: 44px;
}
.gs-write-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 111, 237, 0.4);
  color: white;
}

.rev-container { flex: 1; overflow: hidden; padding: 10px 0; }
.rev-cards {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 15px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.rev-cards::-webkit-scrollbar { height: 6px; }
.rev-cards::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.rev-cards::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }
.rev-card {
  min-width: 350px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(11, 28, 61, 0.03);
}
.rev-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(11, 28, 61, 0.1);
}
.rc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.rc-user { display: flex; align-items: center; gap: 12px; }
.rc-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: white; font-size: 18px;
  box-shadow: 0 4px 10px rgba(11, 28, 61, 0.15);
}
.rc-name { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.rc-date { font-size: 12px; color: var(--muted); font-weight: 500; }
.rc-verify {
  font-size: 11px; font-weight: 700; color: #1d7a3d;
  background: #e6f6ea; padding: 4px 10px; border-radius: 20px;
}
.rc-stars { color: #fbbc05; font-size: 16px; margin-bottom: 12px; }
.rc-text {
  font-size: 15px; line-height: 1.7; color: var(--text); font-style: normal;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

@media (max-width: 768px) {
  .reviews-row { flex-direction: column; align-items: center; gap: 40px; }
  .google-score { width: 100%; min-width: 0; }
  .rev-card { min-width: 280px; padding: 24px; }
}

/* ══════════ VIDEO GRID ══════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 var(--section-x);
}
.vid-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--navy);
  cursor: pointer;
}
.vid-card video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-card h4 {
  position: absolute; bottom: 0; left: 0; right: 0; margin: 0; padding: 8px;
  background: rgba(11, 28, 61, 0.7); color: white; font-size: 0.9rem; text-align: center;
  font-family: 'Inter', sans-serif; font-weight: 600; backdrop-filter: blur(4px);
  pointer-events: none; z-index: 1;
}

@media (max-width: 1024px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .video-grid { grid-template-columns: 1fr; } }

/* ══════════ TRAVELER STORIES ══════════ */
.stories-section {
  padding: var(--section-y) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.stories-section::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  max-width: 150vw;
  max-height: 150vw;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 34px,
    rgba(11, 28, 61, 0.05) 34px 36px,
    transparent 36px 70px
  );
  z-index: 0;
  pointer-events: none;
}
.stories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px var(--section-x);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.story-card {
  min-width: 320px;
  flex: 1;
  max-width: 420px;
  background: white;
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 15px 40px rgba(11, 28, 61, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  position: relative;
}
.story-card::after {
  content: "\201C";
  position: absolute;
  top: 20px; right: 30px;
  font-size: 80px;
  font-family: serif;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(11, 28, 61, 0.12);
  border-color: var(--accent);
}
.story-text {
  font-size: 16px; line-height: 1.8; color: var(--text); font-style: italic;
  margin-bottom: 30px; flex-grow: 1; position: relative; z-index: 1;
}
.story-author { display: flex; align-items: center; gap: 18px; border-top: 1px solid var(--border); padding-top: 25px; }
.story-author .rc-av {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
  box-shadow: 0 5px 15px rgba(11, 28, 61, 0.2);
}
.story-author-info .rc-name { font-weight: 800; color: var(--navy); font-size: 17px; margin-bottom: 2px; }
.story-author-info .rc-trek {
  font-size: 13px; color: var(--accent-dark); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .story-card { min-width: 100%; }
}

/* ══════════ FAQ ══════════ */
.faq-section {
  padding: var(--section-y) var(--section-x);
  background:
    repeating-linear-gradient(0deg, rgba(11, 28, 61, 0.02) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(11, 28, 61, 0.02) 0 1px, transparent 1px 32px),
    var(--bg);
  text-align: center;
}
.faq-section h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.faq-underline {
  width: 120px;
  height: 10px;
  margin: 0 auto 50px;
  background:
    linear-gradient(var(--accent) 0 2px) bottom / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, var(--accent) 0 2px, transparent 2px 12px) bottom / 100% 8px no-repeat;
}
.faq-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.faq-tab {
  background: white;
  border: 1.5px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  min-height: 44px;
  justify-content: center;
}
.faq-tab.active { background: var(--navy); border-color: var(--navy); color: white; }
.faq-list { max-width: 850px; margin: 0 auto; text-align: left; }
.faq-group { display: none; }
.faq-group.active { display: block; animation: fadeIn 0.4s; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
}
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%; padding: 20px 25px; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 700; color: var(--navy);
  cursor: pointer; text-align: left; min-height: 44px;
}
.faq-a {
  max-height: 0; overflow: hidden; transition: all 0.35s ease;
  font-size: 15px; line-height: 1.8; color: var(--muted); padding: 0 25px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 25px 25px; }

@media (max-width: 768px) {
  .faq-tab { min-width: 110px; padding: 12px 15px; font-size: 12px; }
}

/* ================= CONFIRM MODAL ================= */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 61, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  padding: 20px;
}
.confirm-overlay.open { opacity: 1; visibility: visible; }
.confirm-modal {
  background: white;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(11, 28, 61, 0.22);
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.confirm-overlay.open .confirm-modal { transform: scale(1) translateY(0); }
.confirm-icon { font-size: 60px; margin-bottom: 20px; }
.confirm-modal h3 { font-family: "Playfair Display", serif; font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.confirm-modal p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 32px; }
.confirm-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.confirm-btn {
  padding: 14px; border-radius: 8px; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: all 0.2s; border: none; min-height: 44px;
}
.confirm-btn.cancel { background: var(--light); color: var(--navy); }
.confirm-btn.cancel:hover { background: var(--border); }
.confirm-btn.danger { background: var(--navy); color: white; }
.confirm-btn.danger:hover { background: #b91c1c; box-shadow: 0 8px 20px rgba(185, 28, 28, 0.3); }

/* ================= VIDEO MODAL ================= */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 61, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-overlay.open { opacity: 1; visibility: visible; }
.video-modal {
  width: 90%;
  max-width: 400px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-overlay.open .video-modal { transform: scale(1) translateY(0); }
.video-container {
  width: 100%;
  aspect-ratio: 9/16;
  background: black;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.video-container iframe { width: 100%; height: 100%; }
.video-close {
  position: absolute;
  top: -50px; right: 0;
  background: white;
  color: var(--navy);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 20px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: 0.3s;
}
.video-close:hover { transform: rotate(90deg) scale(1.1); background: var(--accent); color: #fff; }

@media (max-width: 480px) {
  .video-modal { width: 85%; }
  .video-close { top: -60px; right: 50%; transform: translateX(50%); }
}

/* GALLERY BRAND */
.gallery-logo { text-align: center; margin-top: 80px; padding: 60px 0; border-top: 1px solid var(--border); }
.g-logo-img {
  max-height: 160px; width: auto; margin: 0 auto; opacity: 0.95;
  filter: drop-shadow(0 5px 15px rgba(11, 28, 61, 0.1));
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.g-logo-img:hover {
  opacity: 1; transform: scale(1.1);
  filter: drop-shadow(0 10px 25px rgba(11, 28, 61, 0.15));
}
@media (max-width: 768px) { .g-logo-img { max-height: 100px; } }

/* ─── CONTACT BAR ─── */
.camp-contact-bar {
  background: var(--white);
  padding: clamp(30px, 4vw, 40px) var(--section-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.ccb-q { font-size: 20px; font-weight: 800; color: var(--navy); }
.ccb-right { display: flex; align-items: center; gap: 28px; }
.ccb-contact { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--navy); }
.ccb-contact .ico { font-size: 18px; }
@media (max-width: 768px) {
  .camp-contact-bar { flex-direction: column; text-align: center; }
  .ccb-right { flex-direction: column; gap: 15px; }
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.wa-floating {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  min-height: 44px;                    /* touch target */
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(11, 28, 61, 0.3);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-floating:hover { transform: scale(1.1); background: #20ba5a; }

/* ─── BOOK NOW FLOATING BUTTON ─── */
.book-now-floating {
  position: fixed;
  bottom: 105px; right: 30px;
  background: var(--accent-dark);
  color: white;
  padding: 12px 24px;
  min-height: 44px;                    /* touch target */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.35);
  z-index: 1000;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
  border: 2px solid white;
}
.book-now-floating:hover { transform: scale(1.05); background: var(--navy); color: white; }

@media (max-width: 768px) {
  .wa-floating { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .book-now-floating { bottom: 85px; right: 20px; padding: 10px 20px; font-size: 12px; }
}

/* ─── ACCESSIBILITY: reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ══════════ WHY CHOOSE US ══════════ */
.why-choose { padding: 80px 20px; max-width: 1200px; margin: 0 auto; text-align: center; }
.wc-title { font-family: "Playfair Display", serif; font-size: 38px; font-weight: 800; color: var(--navy); }
.wc-title span { color: var(--accent); }
.wc-underline {
  width: 120px;
  height: 10px;
  margin: 16px auto 50px;
  background:
    linear-gradient(var(--accent) 0 2px) bottom / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, var(--accent) 0 2px, transparent 2px 12px) bottom / 100% 8px no-repeat;
}
.wc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.wc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 28, 61, 0.12);
  border-color: var(--accent);
}
.wc-ico { font-size: 44px; margin-bottom: 16px; line-height: 1; filter: grayscale(1) sepia(0.4) hue-rotate(175deg) saturate(4); }
.wc-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.wc-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .wc-grid { grid-template-columns: repeat(2, 1fr); } .wc-title { font-size: 30px; } }
@media (max-width: 560px) { .wc-grid { grid-template-columns: 1fr; } .why-choose { padding: 60px 16px; } }

/* =====================================================================
   SURVEY-CHART SIGNATURE LAYER
   Corner-bracket "viewfinder" frames on cards, faint graph-paper
   texture on light sections, and monospace treatment for every
   altitude / date / grade readout — the recurring cartographic motif
   that ties the whole site together.
   ===================================================================== */

/* ── corner brackets: plain data cards get both corners ── */
.wc-card,
.award-item,
.rev-card,
.google-score,
.stats-bar {
  position: relative;
}
.wc-card::before,
.award-item::before,
.rev-card::before,
.google-score::before,
.stats-bar::before,
.wc-card::after,
.award-item::after,
.rev-card::after,
.google-score::after,
.stats-bar::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 2;
}
.wc-card::before,
.award-item::before,
.rev-card::before,
.google-score::before,
.stats-bar::before {
  top: 8px;
  left: 8px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.wc-card::after,
.award-item::after,
.rev-card::after,
.google-score::after,
.stats-bar::after {
  bottom: 8px;
  right: 8px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

/* ── corner brackets: photo/content cards get a single top-left mark ── */
.trek-card,
.story-card {
  position: relative;
}
.trek-card::before,
.story-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  pointer-events: none;
  z-index: 2;
}

/* ── faq items: quiet border-colored tick, lights up in accent when open ── */
.faq-item { position: relative; }
.faq-item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--border);
  border-left: 2px solid var(--border);
  pointer-events: none;
  transition: border-color 0.2s;
}
.faq-item.open::before { border-color: var(--accent); }

/* ── monospace data type: every altitude / date / grade / count reads
   like an instrument readout, contrasted against the serif display type ── */
.section-eyebrow,
.route-strip-label,
.rs-alt,
.rs-name,
.tk-meta span,
.award-year,
.rc-date,
.gs-count,
.stat-sub,
.story-author-info .rc-trek {
  font-family: var(--font-mono);
}
.rs-alt { letter-spacing: 0.3px; }
