/* ═══════════════════════════════════════════════
   TOUR PAGES — Design System Extension
   Matches course-page patterns; BEM naming
   ═══════════════════════════════════════════════ */

/* ── Layout ── */
.tour-page {
  --tour-container: 960px;
  --tour-container-wide: 1080px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  padding-bottom: var(--space-2xl);
}

.tour-section {
  max-width: var(--tour-container);
  margin: var(--space-2xl) auto 0;
}
.tour-section--narrow { max-width: 720px; }
.tour-section--immersion { max-width: 720px; }
.tour-section--route  { max-width: var(--tour-container-wide); }
.tour-section--leaders { max-width: var(--tour-container-wide); }
.tour-section--pricing { max-width: var(--tour-container); }
.tour-section--requirements { max-width: var(--tour-container); }
.tour-section--faq { max-width: var(--tour-container); }
.tour-section--cta { max-width: var(--tour-container-wide); }

.tour-section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tour-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--highlight);
}

.tour-section-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 60ch;
}
@media (min-width: 640px) {
  .tour-section-lead { font-size: 1.066rem; }
}

/* ── 1. HERO ── */
.tour-hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--space-xl) 0 var(--space-2xl);
}
@media (min-width: 768px) {
  .tour-hero {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
  }
}
@media (min-width: 1024px) {
  .tour-hero {
    gap: 80px;
    padding: 80px 0;
  }
}

.tour-hero-text { min-width: 0; }

.tour-hero-status {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}
.tour-hero-status--closed {
  color: var(--text-muted);
  background: rgba(132, 148, 160, 0.1);
  border: 1px solid rgba(132, 148, 160, 0.2);
}
.tour-hero-status--open {
  color: var(--accent);
  background: rgba(26, 123, 123, 0.08);
  border: 1px solid rgba(26, 123, 123, 0.15);
}

.tour-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: var(--space-md);
}
@media (min-width: 768px) {
  .tour-hero-title { font-size: 4rem; }
}
@media (min-width: 1024px) {
  .tour-hero-title { font-size: 4.75rem; }
}

.tour-hero-title-accent {
  color: var(--highlight);
  font-style: italic;
}

.tour-hero-tagline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
@media (min-width: 768px) {
  .tour-hero-tagline { font-size: 1.6rem; margin-bottom: 36px; }
}

.tour-hero-dates {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.933rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}
@media (min-width: 768px) {
  .tour-hero-dates { margin-bottom: 40px; }
}

.tour-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.933rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
}
.tour-hero-cta:hover { gap: 14px; opacity: 1; }
.tour-hero-cta .arrow { transition: transform 0.25s ease; }
.tour-hero-cta:hover .arrow { transform: translateY(3px); }

.tour-hero-media {
  flex-shrink: 0;
}
.tour-hero-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hero-border);
}
@media (min-width: 768px) {
  .tour-hero-photo { width: 380px; aspect-ratio: 3 / 4; }
}
@media (min-width: 1024px) {
  .tour-hero-photo { width: 440px; }
}

/* ── 2. HIGHLIGHT (Год Огненной Лошади) ── */
.tour-section--highlight {
  max-width: var(--tour-container);
}

.tour-highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--highlight);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
@media (min-width: 640px) {
  .tour-highlight-card { padding: 40px 36px; }
}

.tour-highlight-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--highlight);
  margin-bottom: var(--space-sm);
}

.tour-highlight-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--space-lg);
}
@media (min-width: 640px) {
  .tour-highlight-title { font-size: 1.8rem; }
}

.tour-highlight-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-md);
  max-width: 60ch;
}
@media (min-width: 640px) {
  .tour-highlight-body { font-size: 1.066rem; }
}

.tour-highlight-accent {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--highlight);
  margin-top: var(--space-lg);
  margin-bottom: 0;
}

/* ── 3. СУТЬ / Prose ── */
.tour-prose { max-width: 640px; }
.tour-prose p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-lg);
}
@media (min-width: 640px) {
  .tour-prose p { font-size: 1.133rem; }
}

.tour-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
@media (min-width: 768px) {
  .tour-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.tour-pillar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
@media (min-width: 640px) {
  .tour-pillar { padding: 28px 24px; }
}

.tour-pillar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.tour-pillar-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.933rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── 4. МАРШРУТ ── */
.tour-map {
  margin-bottom: var(--space-xl);
}
.tour-map-placeholder {
  aspect-ratio: 21 / 9;
  background: var(--card-bg);
  border: 1px dashed var(--card-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.866rem;
}
@media (max-width: 640px) {
  .tour-map-placeholder { aspect-ratio: 16 / 9; }
}

.tour-acts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tour-act {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding: 32px 0;
  border-bottom: 1px solid var(--card-border);
}
.tour-act:first-child { padding-top: 0; }
.tour-act:last-child { border-bottom: none; padding-bottom: 0; }

@media (min-width: 640px) {
  .tour-act {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
  }
}

.tour-act-header {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.tour-act-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--highlight);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.tour-act-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 4px;
}
@media (min-width: 640px) {
  .tour-act-title { font-size: 1.375rem; }
}

.tour-act-meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin: 0;
}

.tour-act-body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.933rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 55ch;
}
@media (min-width: 640px) {
  .tour-act-body p { font-size: 1rem; }
}

/* Climax act — subtle emphasis */
.tour-act--climax {
  background: rgba(184, 150, 62, 0.03);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: var(--radius-md);
}
@media (min-width: 640px) {
  .tour-act--climax {
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
  }
}

/* ── 5. ВЕДУЩИЕ ── */
.tour-leaders {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.tour-leader {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .tour-leader {
    flex-direction: row;
    gap: var(--space-xl);
    align-items: flex-start;
  }
}

.tour-leader-portrait {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(184, 150, 62, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .tour-leader-portrait { width: 200px; }
}

.tour-leader-body { min-width: 0; }

.tour-leader-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text);
  margin-bottom: 4px;
}

.tour-leader-role {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.866rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.tour-leader-quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  border-left: 2px solid var(--highlight);
  padding-left: var(--space-lg);
  margin: 0 0 var(--space-lg);
  max-width: 50ch;
}

.tour-leader-facts {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tour-leader-facts li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.866rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.tour-leader-facts li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--highlight);
  font-weight: 700;
}

/* ── 6. ЧЕСТНЫЕ ТРЕБОВАНИЯ ── */
.tour-requirements {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tour-req {
  padding: 28px 0;
  border-bottom: 1px solid var(--card-border);
}
.tour-req:first-child { padding-top: 0; }
.tour-req:last-child { border-bottom: none; padding-bottom: 0; }

.tour-req-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.tour-req-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.933rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 60ch;
}
@media (min-width: 640px) {
  .tour-req-desc { font-size: 1rem; }
}

/* ── 7. ЦЕНА ── */
.tour-pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
}
@media (min-width: 640px) {
  .tour-pricing-card { padding: 40px 36px; }
}

.tour-pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--card-border);
}

.tour-pricing-status {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.tour-pricing-range {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 4px;
}
@media (min-width: 640px) {
  .tour-pricing-range { font-size: 2.5rem; }
}

.tour-pricing-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.866rem;
  color: var(--text-muted);
  margin: 0;
}

/* Price table */
.tour-pricing-table {
  margin-bottom: var(--space-xl);
}

.tour-pricing-table table {
  width: 100%;
  max-width: 320px;
  margin: 0 auto var(--space-md);
  border-collapse: collapse;
}
.tour-pricing-table th {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid var(--card-border);
}
.tour-pricing-table td {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.933rem;
  color: var(--text);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(42, 48, 56, 0.03);
}

.tour-pricing-extra {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* Included / Excluded columns */
.tour-pricing-columns {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--card-border);
}
@media (min-width: 640px) {
  .tour-pricing-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.tour-pricing-included h4,
.tour-pricing-excluded h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.tour-pricing-included ul,
.tour-pricing-excluded ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-pricing-included li,
.tour-pricing-excluded li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.866rem;
  line-height: 1.5;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}

.tour-pricing-included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.8rem;
}
.tour-pricing-excluded li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

/* ── 8. CTA ── */
.tour-bottom-cta {
  text-align: center;
  padding: var(--space-xl) 0;
}
.tour-bottom-cta h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}
.tour-bottom-cta p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto var(--space-lg);
}

.tour-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.tour-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.933rem;
  color: #fff;
  background: var(--accent);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, gap 0.2s ease;
}
.tour-cta-primary:hover {
  background: var(--accent-light);
  gap: 14px;
  opacity: 1;
}

/* Cross-sell card */
.tour-cross-sell {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top: var(--space-xl);
  text-align: center;
}
@media (min-width: 640px) {
  .tour-cross-sell { padding: 36px 32px; }
}

.tour-cross-sell-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.tour-cross-sell h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
}

.tour-cross-sell p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.933rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.tour-cross-sell-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.933rem;
  color: var(--accent);
}
.tour-cross-sell-link:hover { opacity: 1; }
.tour-cross-sell-link .arrow { transition: transform 0.2s ease; display: inline-block; }
.tour-cross-sell-link:hover .arrow { transform: translateX(4px); }

/* ── Photo images ── */
.tour-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-leader-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ── Full-width photo break ── */
.tour-photo-break {
  max-width: var(--tour-container-wide);
  margin: var(--space-2xl) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.tour-photo-break img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 768px) {
  .tour-photo-break {
    margin-left: calc(-1 * var(--content-padding));
    margin-right: calc(-1 * var(--content-padding));
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* ── Shared: photo placeholders (fallback) ── */
.tour-page .photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 123, 123, 0.06), rgba(184, 150, 62, 0.06));
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   BHUTAN 2026 — Enhanced Components
   ═══════════════════════════════════════════════ */

/* ── Hero lead (strong variant) ── */
.tour-hero-lead--strong {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: var(--space-lg);
  max-width: 420px;
}
@media (min-width: 768px) {
  .tour-hero-lead--strong {
    font-size: 1.5rem;
    margin-bottom: 36px;
  }
}

/* ── Social proof ── */
.tour-social-proof {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-md) 0;
  text-align: center;
}
.tour-social-proof p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.tour-social-proof strong {
  font-weight: 500;
  color: var(--text-muted);
}

/* ── Hook line (Суть) ── */
.tour-prose-hook {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: var(--space-lg);
}
@media (min-width: 640px) {
  .tour-prose-hook {
    font-size: 1.5rem;
  }
}

/* ── Immersion section ── */
.tour-immersion-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.133rem;
  color: var(--text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tour-immersion-heading::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--highlight);
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .tour-immersion-heading { font-size: 1.25rem; }
}

/* ── Pullquote ── */
.tour-pullquote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.45;
  color: var(--highlight);
  margin: var(--space-xl) 0;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(184, 150, 62, 0.15);
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
  text-align: center;
  max-width: 520px;
}
@media (min-width: 640px) {
  .tour-pullquote {
    font-size: 1.625rem;
    padding: var(--space-xl) var(--space-lg);
  }
}

/* ── Requirements: filter cards ── */
.tour-req-filter {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
@media (min-width: 640px) {
  .tour-req-filter {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}
.tour-req-filter .tour-req {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border-bottom: none;
}
@media (min-width: 640px) {
  .tour-req-filter .tour-req { padding: 28px 24px; }
}

/* Green accent for "for you" */
.tour-req-filter .tour-req:first-child {
  border-left: 3px solid var(--accent);
}
/* Muted for "not for you" */
.tour-req-filter .tour-req:last-child {
  border-left: 3px solid var(--rock);
}

/* Details section — compact */
.tour-req-details .tour-req {
  padding: 20px 0;
}
.tour-req-details .tour-req:first-child { padding-top: 0; }

/* ── Pricing: gift highlight ── */
.tour-pricing-gift {
  text-align: center;
  padding: var(--space-lg) 0;
  margin: var(--space-lg) 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(184, 150, 62, 0.03);
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 640px) {
  .tour-pricing-gift {
    margin-left: -36px;
    margin-right: -36px;
    padding-left: 36px;
    padding-right: 36px;
  }
}

.tour-pricing-gift-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--highlight);
  margin-bottom: 4px;
}

.tour-pricing-gift-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 4px;
}

.tour-pricing-gift-value {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.866rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Pricing: inline CTA ── */
.tour-pricing-cta {
  text-align: center;
  padding-top: var(--space-xl);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--card-border);
}

/* ── FAQ ── */
.tour-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tour-faq-item {
  border-bottom: 1px solid var(--card-border);
}
.tour-faq-item:last-child { border-bottom: none; }

.tour-faq-q {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}
.tour-faq-q::-webkit-details-marker { display: none; }
.tour-faq-q::marker { display: none; content: ''; }

/* Plus/minus indicator */
.tour-faq-q::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.tour-faq-item[open] .tour-faq-q::after {
  content: '−';
  color: var(--accent);
}

@media (min-width: 640px) {
  .tour-faq-q { font-size: 1.066rem; }
}

.tour-faq-a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.933rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 0 0 20px;
  margin: 0;
  max-width: 60ch;
}

/* ── Sticky CTA (mobile only) ── */
.tour-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .tour-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 12px var(--content-padding);
    background: rgba(244, 247, 249, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(42, 48, 56, 0.08);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  }
  .tour-sticky-cta a {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.933rem;
    color: #fff;
    background: var(--accent);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
  }
  .tour-sticky-cta a:hover {
    background: var(--accent-light);
    opacity: 1;
  }

  /* Compensate for sticky bar */
  .tour-page--bhutan {
    padding-bottom: 80px;
  }
}

/* ═══════════════════════════════════════════════
   TOURS HUB — /travel/ (Photo cards grid)
   ═══════════════════════════════════════════════ */

.tour-cards {
  padding: 0 var(--content-padding) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .tour-cards {
    flex-direction: row;
    gap: 28px;
    padding-bottom: 28px;
  }
}

.tour-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tour-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  opacity: 1;
}

/* Photo area */
.tour-card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.tour-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-photo img {
  transform: scale(1.04);
}

/* Status tag on photo */
.tour-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.666rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tour-card-tag--open {
  background: rgba(26, 123, 123, 0.85);
  color: #fff;
}
.tour-card-tag--closed {
  background: rgba(42, 48, 56, 0.7);
  color: rgba(255, 255, 255, 0.8);
}

/* Card body */
.tour-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 24px;
  border-top: 3px solid var(--highlight);
}

.tour-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .tour-card-body h3 { font-size: 1.375rem; }
}

.tour-card-desc {
  font-weight: 300;
  font-size: 0.866rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tour-card-meta {
  font-size: 0.733rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  display: flex;
  gap: var(--space-sm);
}
.tour-card-meta .dot { color: var(--accent-light); }

.tour-card-price {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
}

.tour-card-link {
  margin-top: auto;
  font-weight: 400;
  font-size: 0.866rem;
  color: var(--accent);
  display: inline-block;
  transition: transform 0.2s ease;
}
.tour-card:hover .tour-card-link {
  transform: translateX(4px);
}
