/* tour-cultural-tours-hub.css — extracted from bhutan-tour-packages/cultural-tours.php */

/* ============================================================
   CULTURAL TOURS PAGE — FOUND BHUTAN
   Palette: #0e2d45 (deep navy), #ffc21a (gold), #ffffff, #f5f0e8 (warm cream)
   Typography: Playfair Display (editorial display) + Roboto (body)
   ============================================================ */

:root {
  --navy:       #0e2d45;
  --navy-deep:  #07192a;
  --gold:       #ffc21a;
  --gold-light: #ffd24d;
  --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;
  --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);
}

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

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

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

@keyframes ct-kb {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.ct-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(7,25,42,0.94) 0%,
      rgba(7,25,42,0.48) 44%,
      rgba(7,25,42,0.10) 100%),
    linear-gradient(to right,
      rgba(7,25,42,0.38) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 1;
}

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

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

.ct-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);
}

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

@keyframes ct-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.ct-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);
}

.ct-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;
}

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

.ct-hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: rgba(255,255,255,0.60);
  margin: 0 0 36px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

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

.ct-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);
}

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

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

.ct-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);
}
.ct-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy) !important; }

.ct-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.32);
  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);
}
.ct-btn-ghost:hover { border-color: var(--gold); color: var(--gold) !important; background: rgba(255,194,26,0.06); }

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

.ct-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);
}

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

@keyframes ct-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. STICKY TOC + LAYOUT WRAPPER
   ============================================================ */
.ct-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 80px;
  align-items: start;
}

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

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

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

.ct-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;
}

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

.ct-toc__list li { margin: 0; }

.ct-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;
}

.ct-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);
}

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

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

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

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

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

.ct-book-card__price-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 22px;
  font-family: var(--font-body);
}

.ct-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;
}

.ct-book-card__btn:hover { background: var(--gold-light); color: var(--navy) !important; }

.ct-book-card__btn-ghost {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: rgba(255,255,255,0.65) !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);
}

.ct-book-card__btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: var(--white) !important; }

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

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

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

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

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

.ct-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;
}

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

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

/* ============================================================
   4. OVERVIEW META BAR
   ============================================================ */
.ct-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);
}

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

.ct-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;
  color: var(--gold);
}

.ct-overview-icon svg { width: 18px; height: 18px; }

.ct-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);
}

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

/* ============================================================
   5. KEY EXPERIENCES — EDITORIAL GRID
   ============================================================ */
.ct-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ct-exp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(16px);
}

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

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

.ct-exp-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;
}

.ct-exp-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;
}

.ct-exp-card__desc {
  font-size: 0.83rem;
  color: var(--text-body);
  line-height: 1.70;
  margin: 0;
}

/* ============================================================
   6. TOUR HIGHLIGHTS — CHIPS + BEST TIME
   ============================================================ */
.ct-highlights-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.ct-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);
  transition: background var(--transition), border-color var(--transition);
}

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

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

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

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

.ct-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);
}

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

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

.ct-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;
}

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

.ct-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.62rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  z-index: 1;
  line-height: 1;
}

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

.ct-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);
}

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

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

.ct-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);
}

.ct-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);
}

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

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

.ct-day-open .ct-day__body { max-height: 500px; }

.ct-day__body-inner {
  padding: 20px 22px 22px;
  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);
}

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

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

.ct-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);
}

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

.ct-day__access {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,194,26,0.10);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--navy);
  line-height: 1.5;
}

.ct-day__access-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.ct-notice {
  background: var(--cream);
  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;
}

/* ============================================================
   8. CUSTOMISATION OPTIONS
   ============================================================ */
.ct-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ct-custom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

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

.ct-custom-card__icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }

.ct-custom-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.3;
}

.ct-custom-card__desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

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

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

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

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

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

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

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

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

.ct-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;
}

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

.ct-inex-list .ct-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.65rem;
  font-weight: 700;
}

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

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

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

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

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

.ct-cost-table tbody tr:hover { background: var(--cream); }
.ct-cost-table tbody tr:last-child { border-bottom: none; }

.ct-cost-table td { padding: 14px 20px; color: var(--text-body); font-size: 0.88rem; }
.ct-cost-table td:first-child { font-weight: 600; color: var(--navy); }

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

/* ============================================================
   11. PAYMENT / POLICY
   ============================================================ */
.ct-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.76rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  font-family: var(--font-body);
}

.ct-policy-link:hover { background: var(--navy); color: var(--gold) !important; }

/* ============================================================
   12. GALLERY — MASONRY-INSPIRED GRID
   ============================================================ */
.ct-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}

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

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

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

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

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

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

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

/* ============================================================
   13. SIMILAR TOURS
   ============================================================ */
.ct-similar {
  background: var(--cream);
  padding: 80px 0;
  margin-top: 40px;
}

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

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

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

/* ============================================================
   14. RESPONSIVENESS
   ============================================================ */
@media (max-width: 1024px) {
  .ct-layout { grid-template-columns: 1fr; max-width: 800px; }

  .ct-sidebar {
    position: static;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .ct-toc { margin-bottom: 0; }
  .ct-exp-grid { grid-template-columns: 1fr; }
  .ct-custom-grid { grid-template-columns: 1fr 1fr; }
  .ct-inex-grid { grid-template-columns: 1fr; }

  .ct-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

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

@media (max-width: 768px) {
  .ct-hero__title { font-size: clamp(2rem, 4.5vw, 3.6rem); }
  .ct-overview-bar { grid-template-columns: 1fr; }
  .ct-day__focus-row { grid-template-columns: 1fr; }
  .ct-sidebar { grid-template-columns: 1fr; }
  .ct-custom-grid { grid-template-columns: 1fr; }
  .ct-hero__ctas { flex-direction: column; }
  .ct-btn-primary, .ct-btn-ghost { width: 100%; justify-content: center; }

  .ct-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ct-gallery-item:first-child { grid-column: 1/3; }
}

@media (max-width: 480px) {
  .ct-hero { height: 88svh; }
  .ct-hero__meta-pill:nth-child(n+3) { display: none; }
  .ct-gallery-grid { grid-template-columns: 1fr; }
  .ct-gallery-item:first-child { grid-column: 1; }
}
