/* ==========================================================================
   Tour detail pages — shared page-specific styles.
   Shares tokens/nav/footer/hero/faq/final-cta with ../main/style.css
   ========================================================================== */

.overview {
  padding: clamp(70px, 9vw, 110px) 0 40px;
  background: var(--paper);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.overview-lead h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin: 14px 0 20px;
}
.overview-lead p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.trip-facts {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}
.trip-fact { padding: 16px 0; border-top: 1px solid rgba(20,22,28,0.1); }
.trip-fact:first-child { border-top: none; padding-top: 0; }
.trip-fact .stat-label { text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; margin-bottom: 6px; }
.trip-fact .stat-value { font-family: var(--font-display); font-size: 19px; color: var(--ink); line-height: 1.4; }
.trip-facts .btn-brass { width: 100%; margin-top: 20px; }

/* Included / not included */
.inclusions {
  padding: 30px 0 clamp(70px, 8vw, 110px);
  background: var(--paper);
}
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.inclusion-card {
  border-radius: var(--radius-md);
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid rgba(20,22,28,0.08);
}
.inclusion-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--ink);
}
.inclusion-card.excluded h3 { color: var(--text-muted); }
.inclusion-card ul { display: flex; flex-direction: column; gap: 12px; }
.inclusion-card li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.inclusion-card li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal-mist);
  position: relative;
}
.inclusion-card.excluded li::before { background: var(--stone-deep); }

/* Locations */
.locations-section { padding: 0 0 clamp(70px, 8vw, 110px); background: var(--paper); }
.locations-list { counter-reset: loc; margin-top: 40px; }
.locations-list li {
  counter-increment: loc;
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(20,22,28,0.1);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.locations-list li:last-child { border-bottom: 1px solid rgba(20,22,28,0.1); }
.locations-list li::before {
  content: counter(loc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brass);
  flex-shrink: 0;
  width: 2.4em;
}

/* Gallery (reused masonry pattern, page-scoped) */
.tour-gallery { padding: 0 0 clamp(70px, 8vw, 110px); background: var(--paper); }
.masonry {
  columns: 3 220px;
  column-gap: 20px;
  margin-top: 40px;
}
.masonry-item {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 20px;
  border: none;
  padding: 0;
  background: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.8s var(--ease); }
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,22,28,0) 60%, rgba(20,22,28,0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item:hover::after { opacity: 1; }
.masonry-item .zoom-hint {
  position: absolute; right: 14px; bottom: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(250,248,244,0.5); color: var(--text-inverse);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.masonry-item:hover .zoom-hint { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 22, 28, 0.94);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: min(1100px, 100%); max-height: 86vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 28px; right: 32px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(250,248,244,0.3); background: transparent;
  color: var(--text-inverse); font-size: 22px; line-height: 1; cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.lightbox-close:hover { border-color: var(--brass); transform: rotate(90deg); }

@media (max-width: 900px) {
  .masonry { columns: 2 160px; }
}

/* Related */
.related-tours { padding: clamp(50px, 6vw, 80px) 0; background: var(--stone); }
.related-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.related-grid a {
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(20,22,28,0.1);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.3s ease, transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease;
}
.related-grid a:hover { background: var(--ink); color: var(--text-inverse); border-color: var(--ink); transform: translateY(-2px); }

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