/* tour-mystery.css — extracted from bhutan-tour-packages/mystery-tour.php */

/* ============================================================
   MYSTERY TOUR PAGE — FOUND BHUTAN
   Palette: #0e2d45 navy · #ffc21a gold · #07192a deep navy · #f5f0e8 cream
   Typography: Playfair Display (dramatic serif) + Roboto (clean body)
   Aesthetic: Dark, cinematic, enigmatic — like a luxury thriller novel
   ============================================================ */

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

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

/* ============================================================
   1. HERO — full-bleed dark cinematic
   ============================================================ */
.mt-hero {
  position: relative;
  height: 95svh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
}

.mt-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.9);
  transform: scale(1.06);
  animation: mt-kb 18s ease-out forwards;
  will-change: transform;
}

@keyframes mt-kb {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

/* Deep vignette overlay */
.mt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(7,25,42,0.72) 100%),
    linear-gradient(to top, rgba(7,25,42,0.95) 0%, rgba(7,25,42,0.30) 60%, rgba(7,25,42,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.mt-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  width: 90%;
  padding: 0 20px;
  animation: mt-rise 1s ease both 0.2s;
}

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

/* Question mark motif */
.mt-hero__motif {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255,194,26,0.45);
  border-radius: 50%;
  margin-bottom: 28px;
  animation: mt-spin-slow 12s linear infinite;
}

@keyframes mt-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.mt-hero__motif span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  animation: mt-spin-slow 12s linear infinite reverse;
  display: block;
  line-height: 1;
}

/* Eyebrow */
.mt-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

/* Main h1 */
.mt-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

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

.mt-hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: rgba(255,255,255,0.52);
  margin: 0 0 42px;
  font-weight: 400;
}

/* Meta pills */
.mt-hero__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.mt-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 40px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.mt-hero__pill svg { opacity: 0.65; flex-shrink: 0; }

/* Hero CTAs */
.mt-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shared button base */
.mt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: var(--gold);
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.mt-btn-primary:hover { background: #ffd24d; transform: translateY(-2px); color: var(--navy) !important; }

.mt-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: rgba(255,255,255,0.78) !important;
  border: 1.5px solid rgba(255,255,255,0.28);
  text-decoration: none !important;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.mt-btn-ghost:hover { border-color: var(--gold); color: var(--gold) !important; background: rgba(255,194,26,0.06); }

/* Scroll indicator */
.mt-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  animation: mt-rise 1s ease both 1.2s;
}

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

@keyframes mt-scroll {
  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 — sidebar + main
   ============================================================ */
.mt-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 80px;
  align-items: start;
}

/* ---- Sidebar ---- */
.mt-sidebar {
  position: sticky;
  top: 90px;
  padding-right: 32px;
}

.mt-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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

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

.mt-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;
  border-left: 2px solid transparent;
  transition: color 0.22s, background 0.22s, border-color 0.22s;
  line-height: 1.4;
}

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

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

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

/* Book card */
.mt-book-card {
  margin-top: 18px;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,194,26,0.12);
}

.mt-book-card__mystery {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

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

.mt-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 0.22s;
  margin-bottom: 10px;
}
.mt-book-card__btn:hover { background: #ffd24d; color: var(--navy) !important; }

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

/* ---- Main column ---- */
.mt-main {
  min-width: 0;
  padding-top: 60px;
}

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

/* Eyebrow */
.mt-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

.mt-overview-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

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

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

/* ============================================================
   4. WHY MYSTERY — dark feature strip
   ============================================================ */
.mt-why-strip {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-radius: 14px;
  padding: 44px 40px;
  margin-bottom: 72px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Decorative background question marks */
.mt-why-strip::before {
  content: '?';
  position: absolute;
  right: -20px;
  top: -30px;
  font-family: var(--font-display);
  font-size: 18rem;
  font-style: italic;
  font-weight: 900;
  color: rgba(255,194,26,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.mt-why-strip__eyebrow { margin-bottom: 10px; }
.mt-why-strip__eyebrow::before { background: var(--gold); }

.mt-why-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.mt-why-strip__heading em { font-style: italic; color: var(--gold); }

.mt-why-strip__body {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin: 0 0 16px;
  font-family: var(--font-body);
  max-width: 680px;
}

/* Feature trio */
.mt-why-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.mt-why-trio__item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mt-why-trio__item.mt-visible { opacity: 1; transform: translateY(0); }

.mt-why-trio__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.mt-why-trio__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.mt-why-trio__desc {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin: 0;
  font-family: var(--font-body);
}

/* ============================================================
   5. HIGHLIGHTS
   ============================================================ */
.mt-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.mt-highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, box-shadow 0.25s;
}

.mt-highlight-card.mt-visible { opacity: 1; transform: translateY(0); }
.mt-highlight-card:hover { border-color: rgba(255,194,26,0.40); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.mt-highlight-card__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt-highlight-card__text {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

/* Best time banner */
.mt-best-time {
  background: linear-gradient(135deg, var(--navy) 0%, #143d59 100%);
  border-radius: 10px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-md);
}

.mt-best-time__icon { font-size: 1.8rem; flex-shrink: 0; }

.mt-best-time__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);
}

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

/* ============================================================
   6. ITINERARY — enigmatic reveal timeline
   ============================================================ */
.mt-timeline { position: relative; }

.mt-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.06) 100%);
  border-radius: 2px;
}

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

.mt-day__num {
  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-muted);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  z-index: 1;
  line-height: 1;
  text-align: center;
}

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

.mt-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;
  font-family: var(--font-body);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}

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

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

.mt-day__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
}

.mt-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 0.25s, transform 0.30s;
}

.mt-day-open .mt-day__chevron {
  background: var(--gold);
  transform: rotate(180deg);
}

.mt-day__chevron svg { width: 14px; height: 14px; }
.mt-day-open .mt-day__chevron svg { color: var(--navy); }

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

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

.mt-day__body-inner {
  padding: 22px 24px;
  border: 1px solid rgba(255,194,26,0.18);
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: rgba(255,194,26,0.02);
  font-size: 0.90rem;
  color: var(--text-body);
  line-height: 1.80;
}

.mt-day__body-inner p { margin: 0 0 14px; }
.mt-day__body-inner p:last-child { margin: 0; }

/* Redacted mystery bar */
.mt-redacted {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-deep);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 18px 0 0;
}

.mt-redacted__bar {
  flex: 1;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,194,26,0.22) 0px,
    rgba(255,194,26,0.22) 40px,
    transparent 40px,
    transparent 48px
  );
  border-radius: 4px;
}

.mt-redacted__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,194,26,0.55);
  font-family: var(--font-body);
  white-space: nowrap;
}

/* Notice */
.mt-notice {
  background: #f5f0e8;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.65;
  font-style: italic;
}

/* ============================================================
   7. INCLUSIONS & EXCLUSIONS
   ============================================================ */
.mt-inex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mt-inex-card { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }

.mt-inex-card__header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mt-inex-card--include .mt-inex-card__header { background: var(--navy-deep); }
.mt-inex-card--exclude .mt-inex-card__header { background: #e8f0f7; }

.mt-inex-card__header h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.mt-inex-card--include .mt-inex-card__header h3 { color: var(--gold); }
.mt-inex-card--exclude .mt-inex-card__header h3 { color: var(--text-body); }

.mt-inex-card__body {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 20px 24px;
}

.mt-inex-list { list-style: none; padding: 0; margin: 0; }

.mt-inex-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.5;
}

.mt-inex-list li:last-child { border-bottom: none; }

.mt-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 0.63rem;
  font-weight: 700;
}

.mt-inex-card--include .mt-check { background: rgba(34,197,94,0.15); color: #16a34a; }
.mt-inex-card--exclude .mt-check { background: rgba(239,68,68,0.12); color: #dc2626; }

/* ============================================================
   8. TOUR COST
   ============================================================ */
.mt-cost-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
}

.mt-cost-table thead tr { background: var(--navy-deep); }

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

.mt-cost-table tbody tr {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.22s;
}

.mt-cost-table tbody tr:hover { background: #f5f0e8; }
.mt-cost-table tbody tr:last-child { border-bottom: none; }

.mt-cost-table td {
  padding: 14px 20px;
  color: var(--text-body);
}

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

.mt-cost-note {
  margin-top: 14px;
  font-size: 0.80rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  padding: 12px 18px;
  background: #f5f0e8;
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
}

/* ============================================================
   9. POLICY
   ============================================================ */
.mt-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  text-decoration: none !important;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  font-family: var(--font-body);
  transition: background 0.22s, color 0.22s;
}
.mt-policy-link:hover { background: var(--navy); color: var(--gold) !important; }

/* ============================================================
   10. GALLERY
   ============================================================ */
.mt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.mt-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--navy-deep);
}

.mt-gallery-item:first-child { grid-column: 1/2; grid-row: 1/3; }

.mt-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), filter 0.55s;
}

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

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

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

.mt-gallery-item__label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
}

/* ============================================================
   11. SIMILAR TOURS
   ============================================================ */
.mt-similar {
  background: #f5f0e8;
  padding: 80px 0;
}

.mt-similar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.mt-similar__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  margin: 8px 0 0;
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mt-layout { grid-template-columns: 1fr; max-width: 800px; }
  .mt-sidebar { position: static; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .mt-why-trio { grid-template-columns: 1fr 1fr; }
  .mt-highlights-grid { grid-template-columns: 1fr 1fr; }
  .mt-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .mt-gallery-item:first-child { grid-column: 1/3; grid-row: 1/2; }
  .mt-inex-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mt-hero__title { font-size: clamp(2rem, 4.5vw, 3.6rem); }
  .mt-overview-bar { grid-template-columns: 1fr; }
  .mt-why-strip { padding: 32px 24px; }
  .mt-why-trio { grid-template-columns: 1fr; }
  .mt-highlights-grid { grid-template-columns: 1fr; }
  .mt-sidebar { grid-template-columns: 1fr; }
  .mt-hero__ctas { flex-direction: column; align-items: center; }
  .mt-btn-primary, .mt-btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .mt-hero { height: 88svh; }
  .mt-gallery-grid { grid-template-columns: 1fr; }
  .mt-gallery-item:first-child { grid-column: 1; grid-row: auto; }
}
