/* ============================================================
   EXPEDITION DETAIL PAGE (Everest)
   ============================================================ */

.det-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: #14110E url('https://images.unsplash.com/photo-1454496522488-7a8e488e8606?w=2400&q=85') center/cover;
  color: var(--off-white);
  overflow: hidden;
}
.det-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.6) 0%, rgba(20,17,14,0.2) 30%, rgba(20,17,14,0.8) 100%);
}
.det-hero-content {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 140px var(--gutter) 48px;
  z-index: 2;
}
.det-hero-top {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.det-hero-center {
  align-self: end;
  max-width: 1300px;
}
.det-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 24px;
}
.det-tag .saffron-dot { display:inline-block; width:8px; height:8px; background:var(--saffron); border-radius:50%; margin-right:10px; vertical-align: middle; }
.det-hero h1 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(96px, 16vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.det-hero h1 i { font-style: var(--italic-style); color: var(--emph-color); font-weight: var(--emph-weight); }

.det-hero-bottom {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(245,241,234,0.2);
}
.det-keystat .v {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}
.det-keystat .v i { font-style: var(--italic-style); color: var(--emph-color); font-weight: var(--emph-weight); }
.det-keystat .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 8px;
}

/* ---- Overview ---- */
.det-overview {
  background: var(--off-white);
  padding: clamp(80px, 10vw, 140px) 0;
}
.det-ov-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.det-ov-left { position: sticky; top: 100px; }
.det-ov-title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 24px;
}
.det-ov-title i { font-style: var(--italic-style); color: var(--emph-color-alt, var(--burgundy)); font-weight: var(--emph-weight); }
.det-ov-body { font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 600px; }
.det-ov-body p + p { margin-top: 18px; }

.det-ov-quick {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.det-ov-quick dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}
.det-ov-quick dd {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* ---- Route profile ---- */
.route {
  background: var(--ink);
  color: var(--off-white);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.route-stage {
  margin-top: 56px;
  position: relative;
  height: 540px;
  background: linear-gradient(180deg, #1a1612 0%, #14110E 100%);
  border: 1px solid var(--hairline-dark);
}
.route-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.route-mountain { fill: rgba(232,163,61,0.06); stroke: rgba(232,163,61,0.4); stroke-width: 1; }
.route-mountain-shadow { fill: rgba(20,17,14,0.5); }
.route-grid {
  fill: none; stroke: rgba(245,241,234,0.06); stroke-width: 1;
}
.route-altline {
  stroke: rgba(245,241,234,0.18);
  stroke-width: 1;
  stroke-dasharray: 4 8;
}
.route-altlabel {
  fill: var(--stone-light);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
}
.route-path { fill: none; stroke: var(--saffron); stroke-width: 2; stroke-dasharray: 6 4; opacity: 0.7; }

.camp {
  cursor: pointer;
}
.camp circle.dot {
  fill: var(--saffron);
  transition: r 0.3s, fill 0.3s, transform 0.3s var(--ease-out);
  transform-box: fill-box;
  transform-origin: center;
}
.camp:hover circle.dot { transform: scale(1.4); }
.camp circle.outer { fill: none; stroke: var(--saffron); opacity: 0; transition: opacity 0.3s; }
.camp:hover circle.outer, .camp.is-active circle.outer { opacity: 0.5; }
.camp:hover circle.dot, .camp.is-active circle.dot { fill: var(--burgundy); r: 7; }
.camp text {
  fill: var(--off-white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.camp text.alt {
  fill: var(--stone-light);
  font-size: 10px;
}

.camp-detail {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 320px;
  background: rgba(20,17,14,0.94);
  backdrop-filter: blur(20px);
  border: 1px solid var(--hairline-dark);
  padding: 24px;
}
.camp-detail .nm {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 6px;
}
.camp-detail .sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
}
.camp-detail .body {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.85;
  margin-bottom: 16px;
}
.camp-detail dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.camp-detail dt {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.camp-detail dd {
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ---- Itinerary ---- */
.itin {
  background: var(--off-white);
  padding: clamp(80px, 10vw, 140px) 0;
}
.itin-list {
  margin-top: 56px;
  border-top: 1px solid var(--hairline-strong);
}
.itin-block {
  display: grid;
  grid-template-columns: 140px 1fr 220px 100px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.itin-block .days {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.itin-block .days strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 52px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 400;
}
.itin-block .ttl {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.itin-block .ttl i { font-style: var(--italic-style); color: var(--emph-color-alt, var(--burgundy)); font-weight: var(--emph-weight); }
.itin-block .desc { font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 540px; }
.itin-block .alt-pill {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bone);
  border: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  align-self: center;
}
.itin-block .num {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--stone);
  padding-top: 10px;
}

/* ---- Pricing / inclusions ---- */
.pricing {
  background: var(--bone);
  padding: clamp(80px, 10vw, 140px) 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  padding: 40px;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing-card .price small {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-top: 12px;
}
.pricing-card .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 13px;
}
.pricing-card .row span:last-child { color: var(--stone); }
.pricing-cta {
  display: block;
  margin-top: 32px;
  text-align: center;
  padding: 18px;
}

.inclusions h3 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.inclusions h3 i { font-style: var(--italic-style); color: var(--emph-color-alt, var(--burgundy)); font-weight: var(--emph-weight); }
.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.inc-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline-strong);
}
.inc-col ul { list-style: none; }
.inc-col li {
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
}
.inc-col li::before {
  content: '✓';
  font-family: var(--font-mono);
  color: var(--burgundy);
  font-weight: 500;
}
.inc-col.no li::before { content: '−'; color: var(--stone); }

/* ---- Sticky bottom CTA ---- */
.det-cta {
  background: var(--burgundy);
  color: var(--off-white);
  padding: 80px 0;
  display: flex; align-items: center;
}
.det-cta-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.det-cta h2 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.det-cta h2 i { font-style: var(--italic-style); color: var(--emph-color); font-weight: var(--emph-weight); }
.det-cta-side {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.8;
  opacity: 0.9;
}
.det-cta-side strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 36px;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 12px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .det-hero-bottom { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; }
  .det-ov-grid, .pricing-grid, .det-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .itin-block { grid-template-columns: 1fr; gap: 12px; }
  .itin-block .num { text-align: left; }
  .inc-grid { grid-template-columns: 1fr; }
  .camp-detail { position: relative; bottom: auto; right: auto; width: auto; margin: 16px; }
}
