/* ═══════════════════════════════════════════════════════════
   AUSANGATE TREK — styles.css
   Alpine expedition design: deep navy + amber + white
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --c-navy:    #0B1E2D;
  --c-navy2:   #132839;
  --c-blue:    #1A3A52;
  --c-ice:     #4A8FA8;
  --c-amber:   #D4900A;
  --c-amber-l: #E8A820;
  --c-sand:    #C8B89A;
  --c-snow:    #F4F2EE;
  --c-white:   #FFFFFF;
  --c-stone:   #6B7A85;
  --c-dark:    #070F16;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'Space Mono', monospace;

  --sp-1: 0.5rem; --sp-2: 1rem;  --sp-3: 1.5rem; --sp-4: 2rem;
  --sp-5: 2.5rem; --sp-6: 3rem;  --sp-8: 4rem;   --sp-12: 6rem;
  --sp-16: 8rem;

  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sh: 0 4px 24px rgba(7,15,22,0.15), 0 1px 4px rgba(7,15,22,0.1);
  --sh-lift: 0 16px 48px rgba(7,15,22,0.28), 0 4px 12px rgba(7,15,22,0.12);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--f-body); background: var(--c-snow); color: var(--c-navy); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--sp-4); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--sp-2);
}
.eyebrow.light { color: var(--c-sand); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}
.section-title em { font-style: italic; font-weight: 400; color: var(--c-blue); }

.section-body { font-size: 1rem; color: var(--c-stone); line-height: 1.8; max-width: 520px; margin-bottom: var(--sp-4); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-amber); color: var(--c-white);
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 0.85rem 2rem; border-radius: var(--r-xl);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--c-amber-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,144,10,0.4); }
.btn-primary.btn-lg { font-size: 1rem; padding: 1rem 2.5rem; }

.btn-outline-dark {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--c-navy);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.85rem 2rem; border-radius: var(--r-xl);
  border: 1.5px solid rgba(11,30,45,0.25);
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn-outline-dark:hover { background: var(--c-navy); color: var(--c-white); border-color: var(--c-navy); transform: translateY(-2px); }
.btn-outline-dark.btn-lg { font-size: 1rem; padding: 1rem 2.5rem; }

.btn-book {
  display: inline-flex; align-items: center;
  background: var(--c-navy); color: var(--c-white);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.65rem 1.2rem; border-radius: var(--r-xl);
  transition: background 0.25s var(--ease), transform 0.2s;
  white-space: nowrap;
}
.btn-book:hover { background: var(--c-amber); transform: translateY(-2px); }

.btn-wa-header {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #25D366; color: white;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa-header:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(37,211,102,0.4); }

.btn-wa-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: white;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 1rem 2.5rem; border-radius: var(--r-xl);
  transition: background 0.25s, transform 0.25s;
}
.btn-wa-cta:hover { background: #22c55e; transform: translateY(-2px); }

.btn-wa-large {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  font-size: 0.9rem; font-weight: 600;
  padding: 0.85rem 1.75rem; border-radius: var(--r-xl);
  transition: background 0.25s, transform 0.25s;
}
.btn-wa-large:hover { background: #22c55e; transform: translateY(-2px); }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal-up  { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-fade{ opacity: 0; transition: opacity 0.9s var(--ease); }
.reveal-up.visible, .reveal-fade.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--sp-3) 0;
  /* Always visible — dark background from the start */
  background: rgba(7,15,22,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(7,15,22,0.98);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.header-inner {
  max-width: 1280px; margin-inline: auto; padding-inline: var(--sp-4);
  display: flex; align-items: center; gap: var(--sp-4);
}

.logo { display: flex; align-items: center; gap: 10px; color: white; flex-shrink: 0; }
.logo-icon { display: flex; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-top  { font-family: var(--f-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.logo-bottom { font-family: var(--f-body); font-size: 0.62rem; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-sand); }

.nav { flex: 1; display: flex; justify-content: center; }
.nav ul { display: flex; gap: var(--sp-5); }
.nav a {
  color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--c-amber-l); transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: white; }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: var(--sp-2); }

.burger { display: none; flex-direction: column; gap: 5px; padding: var(--sp-1); margin-left: auto; }
.burger span { display: block; width: 22px; height: 1.5px; background: white; transition: transform 0.3s var(--ease), opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO — SPLIT SCREEN
══════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  padding-top: 70px;
}

/* LEFT panel */
.hero-img-panel {
  position: relative; overflow: hidden;
  background: var(--c-navy);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; animation: none; }
.hero-slide.active img { animation: kb 9s ease-in-out forwards; }
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.07); } }

.hero-slide-dots {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 28px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.4);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.35s, width 0.4s var(--ease);
}
.dot.active { background: var(--c-amber-l); width: 52px; }
.dot:hover  { background: rgba(255,255,255,0.7); }

/* Bottom gradient for dot readability */
.hero-img-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(7,15,22,0.55) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Slide counter label — bottom right */
.hero-img-label {
  position: absolute; bottom: var(--sp-2); right: var(--sp-3); z-index: 5;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.hil-line { width: 20px; height: 1px; background: rgba(255,255,255,0.35); }

/* Prev/Next arrows — no circle, just large clean arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: auto; height: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 2.8rem;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px;
  letter-spacing: -2px;
  transition: color 0.2s, transform 0.2s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  user-select: none;
}
.hero-arrow:hover {
  color: var(--c-amber-l);
  transform: translateY(-50%) scale(1.15);
}
.hero-arrow-prev { left: 8px; }
.hero-arrow-next { right: 8px; }
.hero-arrow svg  { display: none; }  /* hide SVG, use text chars instead */

/* RIGHT panel */
.hero-text-panel {
  background: var(--c-snow);
  display: flex; align-items: center;
}
.hero-text-inner {
  padding: var(--sp-8) var(--sp-8);
  max-width: 560px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,144,10,0.1); border: 1px solid rgba(212,144,10,0.2);
  border-radius: var(--r-xl); padding: 0.35rem 1rem;
  font-size: 0.78rem; font-weight: 500; color: var(--c-amber);
  margin-bottom: var(--sp-3);
}
.badge-star { letter-spacing: 1px; }

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--c-navy); margin-bottom: var(--sp-3);
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--c-blue); }

.hero-sub { font-size: 1rem; color: var(--c-stone); line-height: 1.75; margin-bottom: var(--sp-4); }

.hero-stats {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-4); padding: var(--sp-3);
  background: white; border-radius: var(--r-md);
  border: 1px solid rgba(11,30,45,0.07);
  box-shadow: var(--sh);
}
.hs-item { text-align: center; }
.hs-item strong { display: block; font-family: var(--f-display); font-size: 1.4rem; font-weight: 500; color: var(--c-navy); line-height: 1; }
.hs-item span   { font-size: 0.7rem; font-family: var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-stone); }
.hs-div { width: 1px; height: 32px; background: rgba(11,30,45,0.1); }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.ht-badge {
  font-size: 0.72rem; font-weight: 500; color: var(--c-stone);
  background: rgba(11,30,45,0.05); border: 1px solid rgba(11,30,45,0.1);
  padding: 0.3rem 0.75rem; border-radius: var(--r-xl);
}

/* ══════════════════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--c-amber); overflow: hidden; padding: 10px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: var(--sp-4);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--f-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: white;
}
.marquee-track .mx { color: rgba(255,255,255,0.4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════ */
.why { padding: var(--sp-16) 0; background: white; }

.why-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-12); align-items: start;
}
.why-text { position: sticky; top: 120px; }
.why-text .section-title { font-size: clamp(2rem, 3.5vw, 3rem); }
.why-text .btn-primary { margin-top: var(--sp-2); }

.why-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.why-card {
  padding: var(--sp-4);
  border: 1px solid rgba(11,30,45,0.08);
  border-radius: var(--r-lg);
  background: var(--c-snow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lift); border-color: rgba(11,30,45,0.15); }

.wc-num {
  font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.16em;
  color: var(--c-amber); margin-bottom: var(--sp-2);
}
.why-card h3 { font-family: var(--f-display); font-size: 1.2rem; font-weight: 500; color: var(--c-navy); margin-bottom: 8px; }
.why-card p  { font-size: 0.87rem; color: var(--c-stone); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   TOURS SLIDER
══════════════════════════════════════════════════════════ */
.tours { padding: var(--sp-16) 0; background: var(--c-navy); }
.tours .section-title { color: var(--c-snow); }
.tours .section-title em { color: var(--c-ice); }
.tours .eyebrow { color: var(--c-amber-l); }
.tours .section-body { color: rgba(200,184,154,0.7); }

.tours-header { margin-bottom: var(--sp-6); }

.tours-slider-wrap { overflow: hidden; padding-bottom: var(--sp-4); }
.tours-slider {
  display: flex; gap: 20px; padding: 0 var(--sp-4) var(--sp-2);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; cursor: grab;
}
.tours-slider::-webkit-scrollbar { display: none; }
.tours-slider.grabbing { cursor: grabbing; }

.tour-card {
  flex: 0 0 300px; width: 300px;
  background: var(--c-navy2);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  scroll-snap-align: start;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.45); }

.tc-img { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; background: var(--c-navy); }
.tc-img img { transition: transform 0.6s var(--ease); }
.tour-card:hover .tc-img img { transform: scale(1.06); }

.tc-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: var(--r-xl);
}
.tc-badge.popular { background: var(--c-amber); color: white; }

.tc-meta {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: space-between; padding: 10px 12px;
  background: linear-gradient(to top, rgba(7,15,22,0.8) 0%, transparent 100%);
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.tc-body { padding: var(--sp-3); display: flex; flex-direction: column; flex: 1; gap: 8px; }
.tc-body h3 { font-family: var(--f-display); font-size: 1.3rem; font-weight: 500; color: var(--c-snow); line-height: 1.2; }
.tc-route { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.06em; color: rgba(200,184,154,0.6); }
.tc-desc  { font-size: 0.82rem; color: rgba(200,184,154,0.7); line-height: 1.65; flex: 1; }

.tc-list {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(0,0,0,0.2); border-radius: var(--r-sm);
  padding: var(--sp-2); border: 1px solid rgba(255,255,255,0.05);
}
.tc-list li { font-size: 0.75rem; color: rgba(200,184,154,0.65); padding-left: 12px; position: relative; }
.tc-list li::before { content: '·'; position: absolute; left: 0; color: var(--c-amber-l); }

.tc-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: var(--sp-2); border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto; gap: 8px;
}
.tc-price { line-height: 1; }
.tc-price span { display: block; font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(200,184,154,0.5); margin-bottom: 3px; }
.tc-price { font-size: 0.85rem; color: rgba(200,184,154,0.7); }
.tc-price strong { font-family: var(--f-display); font-size: 1.8rem; font-weight: 400; color: var(--c-amber-l); line-height: 1; }

.tours-controls {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4) 0; max-width: 1280px; margin: 0 auto;
}
.tc-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: var(--c-snow);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s; flex-shrink: 0;
}
.tc-btn:hover { background: var(--c-amber); border-color: var(--c-amber); transform: scale(1.08); }
.tc-progress { flex: 1; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.tc-bar { height: 100%; background: var(--c-amber-l); border-radius: 2px; transition: width 0.4s var(--ease); width: 14.28%; }
.tc-counter { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.12em; color: rgba(200,184,154,0.5); white-space: nowrap; min-width: 36px; text-align: right; }

/* ══════════════════════════════════════════════════════════
   CULTURE SECTION
══════════════════════════════════════════════════════════ */
.culture {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.culture-img {
  position: relative; overflow: hidden;
  background: var(--c-navy);
}
.culture-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s var(--ease); }
.culture-img:hover img { transform: scale(1.04); }

.culture-text {
  background: var(--c-navy); padding: var(--sp-12) var(--sp-8);
  display: flex; flex-direction: column; justify-content: center;
}
.culture-text .section-title { color: var(--c-snow); }
.culture-text .section-title em { color: var(--c-ice); }
.culture-text .eyebrow { color: var(--c-amber-l); }

.culture-quote {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 400;
  color: var(--c-sand); line-height: 1.6;
  border-left: 2px solid var(--c-amber); padding-left: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.culture-text .section-body { color: rgba(200,184,154,0.7); }

.culture-stats { display: flex; gap: var(--sp-5); }
.cs-item strong { display: block; font-family: var(--f-display); font-size: 1.8rem; font-weight: 400; color: var(--c-snow); line-height: 1; margin-bottom: 4px; }
.cs-item span   { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(200,184,154,0.5); }

/* ══════════════════════════════════════════════════════════
   ITINERARY — FIXED
══════════════════════════════════════════════════════════ */
.itinerary { padding: var(--sp-16) 0; background: var(--c-snow); }

.itin-header { margin-bottom: var(--sp-5); }

/* ── Tabs ── */
.itin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: var(--sp-5);
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
  padding-bottom: 6px;
}
.itin-tabs::-webkit-scrollbar { display: none; }

.itin-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(11,30,45,0.12);
  background: rgba(11,30,45,0.04);
  color: var(--c-stone);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}
.itin-tab:hover { border-color: rgba(212,144,10,0.5); color: var(--c-amber); }
.itin-tab.active {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: white;
  box-shadow: 0 4px 16px rgba(212,144,10,0.35);
}
.it-num  { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.14em; opacity: 0.8; }
.it-name { font-size: 0.82rem; font-weight: 500; }

/* ── Panels ── */
.itin-panel { display: none; }
.itin-panel.active {
  display: block;
  animation: ipIn 0.4s var(--ease);
}
@keyframes ipIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ── Two-column grid ── */
.ip-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding-top: var(--sp-3);
}

/* ── Left: image + stats ── */
.ip-img {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  width: 100%;
}

.ip-img > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: var(--sh-lift);
  flex-shrink: 0;
}

.ip-stats {
  background: white;
  border-radius: var(--r-md);
  border: 1px solid rgba(11,30,45,0.08);
  padding: var(--sp-2) var(--sp-3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  box-shadow: var(--sh);
}
.ips { display: flex; flex-direction: column; gap: 3px; }
.ips span   { font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-stone); }
.ips strong { font-size: 0.85rem; font-weight: 600; color: var(--c-navy); }

/* ── Right: content ── */
.ip-content { min-width: 0; }

.ip-daynum {
  font-family: var(--f-mono); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-amber); margin-bottom: 8px;
}
.ip-title {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500; color: var(--c-navy);
  line-height: 1.2; margin-bottom: var(--sp-3);
}

/* ── Timeline steps ── */
.ip-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: var(--sp-3);
}

/* Vertical line: pinned to center of the dot column (col 2) */
/* col1 = 52px (time), col2 = 20px (dot), gap = 0 */
/* Line center = 52px + 10px (half of dot col) = 62px from left */
.ip-steps::before {
  content: '';
  position: absolute;
  left: 62px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(212,144,10,0.35) 5%,
    rgba(212,144,10,0.35) 95%,
    transparent 100%);
  pointer-events: none;
}

.ip-step {
  display: grid;
  grid-template-columns: 52px 20px 1fr;
  /* col1=time(52px) col2=dot(20px) col3=text */
  gap: 0;
  align-items: flex-start;
  padding: 14px 0;
  min-width: 0;
}

.ip-time {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--c-amber);
  line-height: 1;
  padding-top: 2px;
  text-align: right;
  padding-right: 0;
  flex-shrink: 0;
  /* Vertically align with dot center: dot is 10px, text ~10px → same baseline */
}

.ip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--c-amber);
  background: var(--c-snow);
  flex-shrink: 0;
  margin-top: 1px;
  /* Center the dot in the 20px column */
  margin-left: 5px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  z-index: 1;
}
.ip-step:hover .ip-dot {
  background: var(--c-amber);
  transform: scale(1.25);
}

.ip-text {
  min-width: 0;
  padding-left: 14px;
}
.ip-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 4px;
  line-height: 1.35;
}
.ip-text p {
  font-size: 0.82rem;
  color: var(--c-stone);
  line-height: 1.7;
  margin: 0;
}

/* ── Includes pills ── */
.ip-includes {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: var(--sp-3);
}
.ip-includes span {
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.06em;
  color: var(--c-stone); background: rgba(11,30,45,0.05);
  border: 1px solid rgba(11,30,45,0.1);
  padding: 0.22rem 0.65rem; border-radius: var(--r-xl);
}

/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */
.gallery { padding: var(--sp-16) 0; background: white; }
.gallery .container { margin-bottom: var(--sp-5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px; padding-inline: var(--sp-4);
  max-width: 1280px; margin-inline: auto;
}
.gal-item { position: relative; border-radius: var(--r-md); overflow: hidden; cursor: pointer; background: var(--c-navy); }
.gal-item:nth-child(1) { grid-column: 1 / 5;  grid-row: 1 / 3; }
.gal-item:nth-child(2) { grid-column: 5 / 9;  grid-row: 1 / 2; }
.gal-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gal-item:nth-child(4) { grid-column: 5 / 10; grid-row: 2 / 3; }
.gal-item:nth-child(5) { grid-column: 10 / 13; grid-row: 2 / 3; }

.gal-item img { transition: transform 0.6s var(--ease); will-change: transform; }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,15,22,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: var(--sp-2);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: white; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,15,22,0.95); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
  backdrop-filter: blur(12px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-wrap { max-width: 90vw; max-height: 85vh; display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.lb-wrap img { width: auto; height: auto; max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--r-sm); }
.lb-cap { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,184,154,0.6); }
.lb-close, .lb-prev, .lb-next { position: absolute; color: white; transition: color 0.2s, transform 0.2s; }
.lb-close { top: var(--sp-3); right: var(--sp-3); font-size: 1.2rem; padding: var(--sp-2); }
.lb-prev  { left: var(--sp-3); font-size: 2rem; padding: var(--sp-2); }
.lb-next  { right: var(--sp-3); font-size: 2rem; padding: var(--sp-2); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--c-amber-l); transform: scale(1.15); }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testi { padding: var(--sp-16) 0; background: var(--c-snow); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); margin-top: var(--sp-6); }
.testi-card {
  background: white; border-radius: var(--r-lg); padding: var(--sp-4);
  border: 1px solid rgba(11,30,45,0.07); box-shadow: var(--sh);
  display: flex; flex-direction: column; gap: var(--sp-3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lift); }
.testi-stars { font-size: 0.85rem; letter-spacing: 2px; color: var(--c-amber); }
.testi-card blockquote { font-family: var(--f-display); font-style: italic; font-size: 1.05rem; font-weight: 400; color: var(--c-blue); line-height: 1.6; flex: 1; }
.testi-author { display: flex; align-items: center; gap: var(--sp-2); }
.ta-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--c-navy); color: white; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--c-navy); margin-bottom: 2px; }
.testi-author span   { font-size: 0.72rem; color: var(--c-stone); font-family: var(--f-mono); letter-spacing: 0.02em; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq { padding: var(--sp-16) 0; background: white; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--sp-12); align-items: start; }
.faq-left { position: sticky; top: 120px; }
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid rgba(11,30,45,0.08); }
.faq-q {
  width: 100%; text-align: left; padding: var(--sp-3) 0;
  font-family: var(--f-display); font-size: 1.1rem; font-weight: 500;
  color: var(--c-navy); display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3);
  transition: color 0.2s; line-height: 1.3;
}
.faq-q::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--c-amber); flex-shrink: 0; transition: transform 0.35s var(--ease); line-height: 1; }
.faq-q[aria-expanded="true"] { color: var(--c-blue); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease), padding 0.3s; }
.faq-a.open { max-height: 400px; padding-bottom: var(--sp-3); }
.faq-a p { font-size: 0.88rem; color: var(--c-stone); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════ */
.cta-sec {
  position: relative; min-height: 75vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(7,15,22,0.72) 0%, rgba(7,15,22,0.55) 50%, rgba(7,15,22,0.72) 100%); }
.cta-content { position: relative; z-index: 2; text-align: center; padding: var(--sp-8) var(--sp-4); max-width: 600px; }
.cta-title { font-family: var(--f-display); font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 500; color: white; line-height: 1.1; margin-bottom: var(--sp-3); letter-spacing: -0.02em; }
.cta-title em { font-style: italic; font-weight: 400; color: var(--c-sand); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: var(--sp-5); }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.cta-trust { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.12em; color: rgba(200,184,154,0.55); text-transform: uppercase; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer { background: var(--c-dark); padding: var(--sp-12) 0 var(--sp-4); border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: var(--sp-8); margin-bottom: var(--sp-8); }
.footer-brand .logo { margin-bottom: var(--sp-3); }
.footer-brand p { font-size: 0.85rem; color: rgba(200,184,154,0.55); line-height: 1.7; margin-bottom: var(--sp-1); }
.footer-lic { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(200,184,154,0.3) !important; margin-top: var(--sp-2) !important; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); }
.footer-col h4 { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-sand); margin-bottom: var(--sp-2); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a, .footer-col span { font-size: 0.83rem; color: rgba(200,184,154,0.45); transition: color 0.2s; line-height: 1.5; }
.footer-col a:hover { color: var(--c-sand); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--sp-4); border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bottom p { font-size: 0.75rem; color: rgba(200,184,154,0.3); font-family: var(--f-mono); }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 28px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2); }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: wap 2.5s ease-out infinite;
}
@keyframes wap { 0% { transform: scale(1); opacity: 0.7; } 70% { transform: scale(1.4); opacity: 0; } 100% { transform: scale(1.4); opacity: 0; } }

/* ══════════════════════════════════════════════════════════
   MOBILE STICKY CTA
══════════════════════════════════════════════════════════ */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: var(--sp-2) var(--sp-3);
  background: linear-gradient(to top, var(--c-dark) 70%, transparent);
}
.mobile-cta .btn-primary { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .why-inner { grid-template-columns: 1fr 1.2fr; gap: var(--sp-8); }
  .ip-grid   { grid-template-columns: 300px 1fr; gap: var(--sp-5); }
  .faq-inner { grid-template-columns: 1fr 1.5fr; gap: var(--sp-8); }
}

@media (max-width: 900px) {
  .hero    { grid-template-columns: 1fr; min-height: auto; }
  .hero-img-panel { height: 60vw; min-height: 300px; max-height: 520px; }
  .hero-text-inner { padding: var(--sp-8) var(--sp-4); }
  .why-inner  { grid-template-columns: 1fr; }
  .why-text   { position: static; }
  .why-cards  { grid-template-columns: 1fr 1fr; }
  .culture    { grid-template-columns: 1fr; }
  .culture-img { height: 50vw; min-height: 280px; }
  .culture-text { padding: var(--sp-8) var(--sp-4); }
  .ip-grid    { grid-template-columns: 1fr; }
  .ip-img     { position: static; }
  .ip-img > img { aspect-ratio: 16/9; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-inner  { grid-template-columns: 1fr; }
  .faq-left   { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gal-item:nth-child(1) { grid-column: 1/2; grid-row: 1/3; }
  .gal-item:nth-child(2) { grid-column: 2/3; grid-row: 1/2; }
  .gal-item:nth-child(3) { grid-column: 2/3; grid-row: 2/3; }
  .gal-item:nth-child(4) { grid-column: 1/3; grid-row: 3/4; }
  .gal-item:nth-child(5) { display: none; }
}

@media (max-width: 768px) {
  .nav, .header-actions .btn-primary { display: none; }
  .burger { display: flex; }
  .nav.open {
    display: flex; position: fixed; inset: 0; background: var(--c-dark);
    flex-direction: column; align-items: center; justify-content: center; z-index: 99;
  }
  .nav.open ul { flex-direction: column; align-items: center; gap: var(--sp-4); }
  .nav.open a { font-size: 1.4rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .hs-div { width: 100%; height: 1px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }
  .wa-float { bottom: 82px; }
}

@media (max-width: 480px) {
  .hero-text-inner { padding: var(--sp-6) var(--sp-3); }
  .why-cards { grid-template-columns: 1fr; }
  .culture-stats { flex-direction: column; gap: var(--sp-3); }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--sp-1); text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-item:nth-child(n) { grid-column: auto; grid-row: auto; height: 220px; }
  .gal-item:nth-child(5) { display: block; }
  .tour-card { flex: 0 0 270px; width: 270px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════════════════
   NOTICE BOX — How the trek ends (Salkantay-specific)
══════════════════════════════════════════════════════════ */
.notice {
  padding: var(--sp-6) 0;
  background: var(--c-snow);
}

.notice-box {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: white;
  border: 1.5px solid rgba(212,144,10,0.25);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--sh);
}

.notice-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,144,10,0.1);
  color: var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-text h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 8px;
}

.notice-text p {
  font-size: 0.88rem;
  color: var(--c-stone);
  line-height: 1.75;
}

@media (max-width: 600px) {
  .notice-box { flex-direction: column; gap: var(--sp-2); }
}
