/* tour-jambay-lhakhang-drup.css — extracted from bhutan-tour-packages/festival-tours/jambay-lhakhang-drup.php */

/* ============================================================
   JAMBAY LHAKHANG DRUP PAGE — FOUND BHUTAN
   Design system: mirrors thimphu-tshechu.php / photography-tour.php
   Prefix: jl-  (Jambay Lhakhang)
   ============================================================ */

:root {
  --navy:         #0e2d45;
  --navy-deep:    #07192a;
  --navy-mid:     #143d59;
  --gold:         #ffc21a;
  --gold-light:   #ffd24d;
  --gold-dim:     rgba(255,194,26,0.14);
  --cream:        #f5f0e8;
  --cream-dark:   #ede5d4;
  --white:        #ffffff;
  --text-body:    #3d4a58;
  --text-light:   #6b7a8d;
  --border:       rgba(14,45,69,0.10);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Roboto', sans-serif;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow-sm:    0 2px 12px rgba(14,45,69,0.08);
  --shadow-md:    0 8px 32px rgba(14,45,69,0.12);
  --shadow-lg:    0 20px 60px rgba(14,45,69,0.16);
  --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.jl-page * { box-sizing: border-box; }
.jl-page { font-family: var(--font-body); color: var(--text-body); }

/* ============================================================
   1. HERO
   ============================================================ */
.jl-hero {
  position: relative;
  height: 92svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
}

.jl-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.50) saturate(1.18);
  transform: scale(1.05);
  animation: jl-kb 16s ease-out forwards;
  will-change: transform;
}

@keyframes jl-kb {
  from { transform: scale(1.07); }
  to   { transform: scale(1.00); }
}

.jl-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(7,25,42,0.96) 0%,
      rgba(7,25,42,0.55) 42%,
      rgba(7,25,42,0.08) 100%),
    linear-gradient(to right,
      rgba(7,25,42,0.45) 0%,
      transparent 58%);
  pointer-events: none;
  z-index: 1;
}

.jl-hero__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
  animation: jl-rise 0.9s ease both 0.1s;
}

@keyframes jl-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.jl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,194,26,0.15);
  border: 1px solid rgba(255,194,26,0.35);
  border-radius: 40px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.jl-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: jl-pulse 2.2s ease infinite;
}

@keyframes jl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.jl-hero__badge span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.jl-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.jl-hero__title em { font-style: italic; color: var(--gold); }

.jl-hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.65rem);
  font-style: italic;
  color: rgba(255,255,255,0.56);
  margin: 0 0 36px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.jl-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.jl-hero__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
}

.jl-hero__meta-pill svg { flex-shrink: 0; opacity: 0.75; }

.jl-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.jl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font-body);
}
.jl-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy) !important; }

.jl-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: rgba(255,255,255,0.82) !important;
  border: 1.5px solid rgba(255,255,255,0.30);
  text-decoration: none !important;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  font-family: var(--font-body);
}
.jl-btn-ghost:hover { border-color: var(--gold); color: var(--gold) !important; background: rgba(255,194,26,0.06); }

.jl-hero__scroll {
  position: absolute;
  bottom: 28px;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.52;
  animation: jl-rise 1s ease both 1s;
}

.jl-hero__scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
  font-family: var(--font-body);
}

.jl-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: jl-scroll-line 2.2s ease infinite;
}

@keyframes jl-scroll-line {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   2. LAYOUT: STICKY SIDEBAR + MAIN
   ============================================================ */
.jl-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 80px;
  align-items: start;
}

.jl-sidebar {
  position: sticky;
  top: 90px;
  padding: 0 32px 0 0;
}

/* TOC */
.jl-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.jl-toc__header {
  background: var(--navy);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.jl-toc__header h2 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.jl-toc__list {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.jl-toc__list li { margin: 0; }

.jl-toc__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  border-left: 2px solid transparent;
  line-height: 1.4;
  font-family: var(--font-body);
}

.jl-toc__list a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.jl-toc__list a:hover,
.jl-toc__list a.jl-toc-active {
  color: var(--navy);
  background: rgba(14,45,69,0.04);
  border-left-color: var(--gold);
}

.jl-toc__list a:hover::before,
.jl-toc__list a.jl-toc-active::before { opacity: 1; }

/* Book-now card */
.jl-book-card {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.jl-book-card__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.jl-book-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.jl-book-card__note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
  font-family: var(--font-body);
}

.jl-book-card__btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.jl-book-card__btn:hover { background: var(--gold-light); color: var(--navy) !important; }

.jl-book-card__btn-ghost {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: rgba(255,255,255,0.62) !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
  font-family: var(--font-body);
}
.jl-book-card__btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: var(--white) !important; }

/* Festival alert card */
.jl-alert-card {
  margin-top: 14px;
  background: rgba(255,194,26,0.10);
  border: 1px solid rgba(255,194,26,0.30);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.jl-alert-card__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.jl-alert-card__label {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.jl-alert-card__text {
  font-size: 0.80rem;
  color: var(--navy);
  line-height: 1.55;
  font-weight: 600;
  font-family: var(--font-body);
}

/* ============================================================
   3. MAIN CONTENT
   ============================================================ */
.jl-main {
  min-width: 0;
  padding-top: 56px;
}

.jl-section {
  margin-bottom: 72px;
  scroll-margin-top: 100px;
}

.jl-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.jl-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.jl-eyebrow span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}

.jl-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.jl-section-heading em { font-style: italic; color: var(--gold); }

.jl-body {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.88;
  margin: 0 0 18px;
}

/* ============================================================
   4. OVERVIEW META BAR
   ============================================================ */
.jl-overview-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.jl-overview-item {
  background: var(--white);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.jl-overview-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,194,26,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.jl-overview-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
  font-family: var(--font-body);
}

.jl-overview-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  font-family: var(--font-body);
}

/* ============================================================
   5. WHY ATTEND — CARDS
   ============================================================ */
.jl-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.jl-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(16px);
}

.jl-why-card.jl-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color var(--transition), box-shadow var(--transition);
}

.jl-why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,194,26,0.40);
}

.jl-why-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255,194,26,0.18), rgba(255,194,26,0.06));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.jl-why-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.3;
}

.jl-why-card__desc {
  font-size: 0.83rem;
  color: var(--text-body);
  line-height: 1.72;
  margin: 0;
  font-family: var(--font-body);
}

/* ============================================================
   6. HIGHLIGHTS — CHIPS + BEST TIME NOTICE
   ============================================================ */
.jl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.jl-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  font-family: var(--font-body);
  transition: background var(--transition), border-color var(--transition);
}

.jl-chip:hover { background: rgba(255,194,26,0.15); border-color: rgba(255,194,26,0.50); }

.jl-chip::before {
  content: '◈';
  color: var(--gold);
  font-size: 0.7rem;
}

.jl-best-time {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-md);
}

.jl-best-time__icon { font-size: 2rem; flex-shrink: 0; }

.jl-best-time__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.jl-best-time__text {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin: 0;
  font-family: var(--font-body);
}

/* ============================================================
   7. TIMELINE ACCORDION ITINERARY
   ============================================================ */
.jl-timeline { position: relative; }

.jl-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(255,194,26,0.08) 100%);
  border-radius: 2px;
}

.jl-day {
  position: relative;
  padding-left: 56px;
  margin-bottom: 8px;
}

.jl-day::before {
  content: attr(data-day);
  position: absolute;
  left: 0;
  top: 14px;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.60rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  z-index: 1;
  line-height: 1;
}

.jl-day.jl-day-open::before {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.jl-day__btn {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
  box-shadow: var(--shadow-sm);
}

.jl-day__btn:hover,
.jl-day-open .jl-day__btn {
  border-color: rgba(255,194,26,0.45);
  box-shadow: 0 4px 18px rgba(14,45,69,0.10);
}

.jl-day__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.jl-day__location {
  font-size: 0.70rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
}

/* Special badge for festival days */
.jl-day__badge {
  display: inline-block;
  background: rgba(255,194,26,0.18);
  border: 1px solid rgba(255,194,26,0.40);
  color: #b8860b;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 5px;
  font-family: var(--font-body);
  display: block;
  width: fit-content;
}

.jl-day__chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(14,45,69,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.jl-day-open .jl-day__chevron { background: var(--gold); transform: rotate(180deg); }
.jl-day__chevron svg { width: 14px; height: 14px; }
.jl-day-open .jl-day__chevron svg { color: var(--navy); }

.jl-day__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.jl-day-open .jl-day__body { max-height: 600px; }

.jl-day__body-inner {
  padding: 20px 22px 24px;
  border: 1px solid rgba(255,194,26,0.20);
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: rgba(255,194,26,0.03);
}

.jl-day__focus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.jl-day__focus {
  background: var(--white);
  border-radius: 6px;
  padding: 14px 16px;
  border: 1px solid var(--border);
}

.jl-day__focus-label {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.jl-day__focus-text {
  font-size: 0.83rem;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  font-family: var(--font-body);
}

.jl-day__desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.78;
  margin: 0;
  font-family: var(--font-body);
}

/* Festival night — special callout inside body */
.jl-day__festival-callout {
  margin-top: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(255,194,26,0.12), rgba(255,194,26,0.05));
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.jl-day__festival-callout-icon { font-size: 1.2rem; flex-shrink: 0; }

.jl-day__festival-callout-text {
  font-size: 0.83rem;
  color: var(--navy);
  line-height: 1.62;
  font-weight: 500;
  font-family: var(--font-body);
  margin: 0;
}

.jl-note {
  padding: 16px 20px;
  background: rgba(255,194,26,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-size: 0.84rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.68;
  font-family: var(--font-body);
}

/* ============================================================
   8. INCLUSIONS / EXCLUSIONS
   ============================================================ */
.jl-inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 8px;
}

.jl-inc-card {
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--border);
}

.jl-inc-card--yes { background: #f0fdf4; border-color: rgba(34,197,94,0.20); }
.jl-inc-card--no  { background: #fff7ed; border-color: rgba(249,115,22,0.20); }

.jl-inc-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.jl-inc-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.jl-inc-card--yes .jl-inc-card__dot { background: #22c55e; }
.jl-inc-card--no  .jl-inc-card__dot { background: #f97316; }

.jl-inc-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.jl-inc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jl-inc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.62;
  padding: 5px 0;
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(14,45,69,0.05);
}

.jl-inc-list li:last-child { border-bottom: none; }
.jl-inc-list__icon { flex-shrink: 0; margin-top: 3px; font-size: 0.85rem; }
.jl-inc-card--yes .jl-inc-list__icon { color: #22c55e; }
.jl-inc-card--no  .jl-inc-list__icon { color: #f97316; }

/* ============================================================
   9. COST TABLE
   ============================================================ */
.jl-cost-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.jl-cost-table thead { background: var(--navy); }

.jl-cost-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.jl-cost-table tbody tr { border-bottom: 1px solid var(--border); }
.jl-cost-table tbody tr:last-child { border-bottom: none; }
.jl-cost-table tbody tr:nth-child(even) { background: rgba(245,240,232,0.50); }
.jl-cost-table tbody tr:hover { background: rgba(255,194,26,0.06); }

.jl-cost-table tbody td {
  padding: 14px 20px;
  color: var(--text-body);
  vertical-align: top;
}

.jl-cost-table tbody td:first-child { font-weight: 600; color: var(--navy); }

.jl-cost-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.70;
  font-style: italic;
  font-family: var(--font-body);
}

.jl-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white) !important;
  text-decoration: none !important;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font-body);
  margin-top: 8px;
}
.jl-policy-link:hover { background: var(--gold); color: var(--navy) !important; transform: translateY(-2px); }
.jl-policy-link svg { transition: transform var(--transition); }
.jl-policy-link:hover svg { transform: translateX(4px); }

/* ============================================================
   10. GALLERY
   ============================================================ */
.jl-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.jl-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
}

.jl-gallery-item:first-child { grid-row: 1 / 3; }

.jl-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.45s ease;
  min-height: 180px;
}

.jl-gallery-item:first-child img { min-height: 360px; }

.jl-gallery-item:hover img { transform: scale(1.06); filter: brightness(1.05); }

.jl-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,25,42,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.jl-gallery-item:hover .jl-gallery-item__overlay { opacity: 1; }

.jl-gallery-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ============================================================
   11. SIMILAR TOURS
   ============================================================ */
.jl-similar {
  background: var(--cream);
  padding: 80px 0;
}

.jl-similar__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.jl-similar__header {
  text-align: center;
  margin-bottom: 48px;
}

.jl-similar__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .jl-layout { grid-template-columns: 1fr; padding: 0 20px 60px; }
  .jl-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 0 0;
  }
  .jl-book-card { margin-top: 0; }
  .jl-alert-card { margin-top: 0; }
  .jl-toc { display: none; }
}

@media (max-width: 768px) {
  .jl-hero__title { font-size: clamp(2rem, 4.5vw, 3.6rem); }
  .jl-hero__ctas { flex-direction: column; }
  .jl-btn-primary, .jl-btn-ghost { width: 100%; justify-content: center; }

  .jl-sidebar { grid-template-columns: 1fr; }
  .jl-overview-bar { grid-template-columns: 1fr; }
  .jl-why-grid { grid-template-columns: 1fr; }
  .jl-inc-grid { grid-template-columns: 1fr; }
  .jl-day__focus-row { grid-template-columns: 1fr; }

  .jl-gallery-grid { grid-template-columns: 1fr; }
  .jl-gallery-item:first-child { grid-row: auto; }
}

@media (max-width: 480px) {
  .jl-hero__meta-pill:nth-child(n+4) { display: none; }
}
