/* HSJ-v27 tour detail page — brand-consistent (navy #1A4B89 / amber #FBA504). */
.hsj-tp-hero {
  position: relative;
  height: 56vh;
  min-height: 340px;
  overflow: hidden;
}
.hsj-tp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hsj-tp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.6));
}
.hsj-tp-hero-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px;
  color: #fff;
}
.hsj-tp-crumbs {
  font-size: 13px;
  opacity: 0.9;
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.hsj-tp-crumbs a {
  color: #fff;
  text-decoration: none;
}
.hsj-tp-crumbs a:hover {
  color: var(--hsj-amber);
}
.hsj-tp-title {
  font-family: var(--font-playfair), serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 18ch;
}
.hsj-tp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 14px;
}

.hsj-tp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
}
@media (max-width: 900px) {
  .hsj-tp-wrap {
    grid-template-columns: 1fr;
  }
}

.hsj-tp-section {
  margin-bottom: 36px;
}
.hsj-tp-section > h2 {
  font-family: var(--font-playfair), serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hsj-navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}
.hsj-rte {
  line-height: 1.7;
  color: #333;
}
.hsj-rte :where(h2, h3) {
  color: var(--hsj-navy);
  font-weight: 600;
  margin: 18px 0 8px;
}
.hsj-rte ul {
  padding-left: 20px;
  list-style: disc;
}
.hsj-rte p {
  margin: 0 0 12px;
}
.hsj-rte a {
  color: var(--hsj-navy);
  text-decoration: underline;
}

/* Itinerary */
.hsj-tp-itin {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hsj-tp-itin > li {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  position: relative;
}
.hsj-tp-itin > li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: #eee;
}
.hsj-tp-itin-num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hsj-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  z-index: 1;
}
.hsj-tp-itin-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 4px 0 4px;
}
.hsj-tp-itin-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

/* Includes / excludes */
.hsj-tp-incl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 620px) {
  .hsj-tp-incl {
    grid-template-columns: 1fr;
  }
}
.hsj-tp-incl ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hsj-tp-incl li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  line-height: 1.5;
  font-size: 14px;
}
.hsj-tp-incl-yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a9d54;
  font-weight: 700;
}
.hsj-tp-incl-no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #d23b3b;
  font-weight: 700;
}

/* Equipment */
.hsj-tp-equip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.hsj-tp-equip h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hsj-navy);
  text-transform: capitalize;
  margin-bottom: 6px;
}
.hsj-tp-equip ul {
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #444;
}

/* Gallery */
.hsj-tp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 620px) {
  .hsj-tp-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hsj-tp-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

/* FAQ */
.hsj-tp-faqs details {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 0 16px;
}
.hsj-tp-faqs summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  color: #1a1a1a;
  list-style: none;
}
.hsj-tp-faqs summary::-webkit-details-marker {
  display: none;
}
.hsj-tp-faqs details[open] summary {
  color: var(--hsj-navy);
}
.hsj-tp-faqs details > .hsj-rte {
  padding-bottom: 14px;
  font-size: 14px;
}

/* Sidebar */
.hsj-tp-card {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  padding: 22px;
}
.hsj-tp-price {
  text-align: center;
  margin-bottom: 16px;
}
.hsj-tp-price-old {
  display: inline-block;
  color: #aaa;
  text-decoration: line-through;
  font-size: 16px;
  margin-right: 8px;
}
.hsj-tp-price-now {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--hsj-navy);
}
.hsj-tp-price-unit {
  font-size: 13px;
  color: #888;
}
.hsj-inq-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hsj-inq-form input,
.hsj-inq-form textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  width: 100%;
}
.hsj-inq-form input:focus,
.hsj-inq-form textarea:focus {
  outline: none;
  border-color: var(--hsj-navy);
  box-shadow: 0 0 0 2px rgba(26, 75, 137, 0.15);
}
.hsj-inq-form button {
  background: var(--hsj-navy);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.hsj-inq-form button:hover {
  background: #153d70;
}
.hsj-inq-form button:disabled {
  opacity: 0.6;
  cursor: default;
}
.hsj-inq-err {
  color: #d23b3b;
  font-size: 13px;
}
.hsj-inq-success {
  text-align: center;
  padding: 12px 0;
}
.hsj-inq-success strong {
  color: var(--hsj-navy);
  font-size: 1.1rem;
}
.hsj-tp-wa {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 11px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* ---- Tour cards + listing grids ---- */
.hsj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
/* NOTE: the tour-card design now lives in /public/site/blocks.css (.hsj-card*),
   ported 1:1 from the live hsj.com.np site. The old v27 card rules were
   removed so the live card wins the cascade. */

/* ---- Listing / search page shell ---- */
.hsj-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 20px 64px;
}
.hsj-list-head {
  margin-bottom: 24px;
}
.hsj-list-head h1 {
  font-family: var(--font-playfair), serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--hsj-navy);
}
.hsj-list-head p {
  color: #777;
  margin-top: 4px;
}
.hsj-search-bar {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 18px 0 28px;
}
.hsj-search-bar input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 11px 14px;
  font: inherit;
}
.hsj-search-bar input:focus {
  outline: none;
  border-color: var(--hsj-navy);
  box-shadow: 0 0 0 2px rgba(26, 75, 137, 0.15);
}
.hsj-search-bar button {
  background: var(--hsj-navy);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 0 22px;
  font-weight: 600;
  cursor: pointer;
}
.hsj-empty {
  color: #777;
  padding: 40px 0;
}

/* ---- Homepage hero + sections ---- */
.hsj-home-hero {
  position: relative;
  background: linear-gradient(135deg, var(--hsj-navy), #0f2f59);
  color: #fff;
  text-align: center;
  padding: 92px 20px;
  overflow: hidden;
}
.hsj-home-hero-eyebrow {
  color: var(--hsj-amber);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  margin-bottom: 14px;
}
.hsj-home-hero h1 {
  font-family: var(--font-playfair), serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
}
.hsj-home-hero p {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
  opacity: 0.9;
}
.hsj-btn-amber {
  display: inline-block;
  background: var(--hsj-amber);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.hsj-btn-amber:hover {
  background: #e6940a;
}
.hsj-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px;
}
.hsj-section-head {
  margin-bottom: 26px;
}
.hsj-section-head h2 {
  font-family: var(--font-playfair), serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--hsj-navy);
}
.hsj-section-head p {
  color: #777;
  margin-top: 4px;
}
.hsj-section-cta {
  text-align: center;
  margin-top: 34px;
}
.hsj-btn-outline {
  display: inline-block;
  border: 2px solid var(--hsj-navy);
  color: var(--hsj-navy);
  padding: 11px 30px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hsj-btn-outline:hover {
  background: var(--hsj-navy);
  color: #fff;
}

/* ===== Homepage ===== */
.hsj-hp-hero {
  text-align: center;
  padding: 64px 20px 40px;
  max-width: 920px;
  margin: 0 auto;
}
.hsj-hp-badge {
  display: inline-block;
  background: #eef0fb;
  color: var(--hsj-navy);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hsj-hp-title {
  font-family: var(--font-playfair), serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #1a1a1a;
}
.hsj-hp-sub {
  font-size: 1.1rem;
  color: #666;
  margin-top: 16px;
}
.hsj-hp-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hsj-hp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.hsj-hp-feature {
  background: #f7f8fc;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.hsj-hp-feature h3 {
  font-family: var(--font-playfair), serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hsj-navy);
  margin-bottom: 8px;
}
.hsj-hp-feature p {
  font-size: 14px;
  color: #666;
  line-height: 1.55;
}

/* Home section (tour rows) */
.hsj-home-sec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}
.hsj-home-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  gap: 16px;
}
.hsj-home-sec-title {
  font-family: var(--font-playfair), serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--hsj-navy);
}
.hsj-home-sec-sub {
  color: #777;
  margin-top: 4px;
}
.hsj-home-sec-all {
  flex-shrink: 0;
  color: var(--hsj-navy);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.hsj-home-sec-all:hover {
  color: var(--hsj-amber);
}

/* Reviews */
.hsj-hp-reviews {
  background: #f7f8fc;
  padding: 56px 20px;
  margin-top: 24px;
}
.hsj-hp-reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.hsj-hp-review {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.hsj-stars {
  color: var(--hsj-amber);
  font-size: 16px;
  letter-spacing: 2px;
}
.hsj-hp-review-text {
  margin: 12px 0;
  color: #333;
  line-height: 1.65;
  font-size: 15px;
}
.hsj-hp-review-name {
  font-weight: 600;
  color: var(--hsj-navy);
  font-size: 14px;
}
.hsj-hp-review-name span {
  color: #999;
  font-weight: 400;
}

/* CTA band */
.hsj-hp-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--hsj-navy), #0f2f59);
  color: #fff;
  padding: 60px 20px;
}
.hsj-hp-cta h2 {
  font-family: var(--font-playfair), serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.hsj-hp-cta p {
  opacity: 0.9;
  margin-bottom: 24px;
}

/* CMS page (/page/[slug]) */
.hsj-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}
.hsj-page-title {
  font-family: var(--font-playfair), serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--hsj-navy);
  margin-bottom: 24px;
}
.hsj-page .hsj-rte {
  font-size: 15px;
}
.hsj-page .hsj-rte img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
