/* NK Travel — tours pages v2 */

/* ─── LIGHT-BG PAGE: force header into scrolled state ─── */
body.page-light .site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-color: rgba(0,0,0,.07);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
body.page-light .site-header .site-logo { color: var(--green); }
body.page-light .site-header .site-logo-mark { background: var(--green); color: white; border-color: var(--green); }
body.page-light .site-header .site-nav a { color: var(--ink-soft); }
body.page-light .site-header .site-nav a:hover { color: var(--green); }
body.page-light .site-header .language-toggle { color: var(--stone); border-color: #ddd; }
body.page-light .site-header .language-toggle:hover { color: var(--green); border-color: var(--green); }
body.page-light .site-header .mobile-menu-btn { color: var(--ink); }

/* ─── SHARED ANIMATIONS ────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ─── CATALOG INDEX — PAGE HEADER ─────────────── */
.catalog-page-head {
  background: var(--cream);
  padding: 120px 60px 60px;
  border-bottom: 1px solid var(--cream-mid);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.catalog-page-head-inner { max-width: 640px; position: relative; z-index: 1; }
.catalog-head-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 14px;
}
.catalog-head-title {
  font-family: var(--serif); font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400; line-height: 1.1; color: var(--ink); margin-bottom: 18px;
}
.catalog-head-title em { font-style: italic; color: var(--green); }
.catalog-head-sub {
  font-size: 16px; color: var(--stone); line-height: 1.7; max-width: 480px;
}
.catalog-head-deco {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  opacity: 0.06; user-select: none; flex-shrink: 0;
}
.catalog-head-deco-num {
  font-family: var(--serif); font-size: 120px; font-weight: 600; color: var(--green); line-height: 1;
}
.catalog-head-deco-label {
  font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--green); letter-spacing: 0.15em;
}

/* ─── FILTER STRIP ─────────────────────────────── */
.catalog-filter {
  background: white; padding: 14px 60px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--cream-mid);
  overflow-x: auto; gap: 0;
}
.filter-label {
  font-size: 11px; font-weight: 600; color: var(--stone); letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
  padding-right: 20px; border-right: 1px solid #ddd; margin-right: 20px; flex-shrink: 0;
}
.filter-tags { display: flex; gap: 8px; flex-wrap: nowrap; }
.filter-tag {
  font-size: 13px; font-weight: 500; color: var(--green); background: white;
  border: 1.5px solid rgba(45,74,62,0.2); border-radius: 100px;
  padding: 6px 16px; white-space: nowrap; cursor: pointer; transition: all 0.2s;
}
.filter-tag:hover, .filter-tag.is-active { background: var(--green); color: white; border-color: var(--green); }

/* ─── CATALOG GRID ─────────────────────────────── */
.catalog-section { padding: 60px 60px 72px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.catalog-card {
  border-radius: var(--radius); overflow: hidden; background: white;
  box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.catalog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.catalog-card-media {
  position: relative; overflow: hidden; display: block; height: 230px; background: var(--cream-mid);
}
.catalog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.catalog-card:hover .catalog-card-media img { transform: scale(1.06); }
.catalog-card-media-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--stone);
}
.catalog-card-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 100px; background: var(--amber); color: white;
}
.catalog-card-season {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 500; padding: 5px 12px; border-radius: 100px;
  background: rgba(0,0,0,0.42); backdrop-filter: blur(6px); color: rgba(255,255,255,0.92);
}
.catalog-card-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.catalog-card-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: 8px;
}
.catalog-card-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--ink); margin-bottom: 10px; line-height: 1.25;
}
.catalog-card-title a { color: inherit; transition: color 0.2s; }
.catalog-card-title a:hover { color: var(--green); }
.catalog-card-desc { font-size: 13px; color: var(--stone); line-height: 1.6; flex: 1; margin-bottom: 4px; }
.catalog-card-review {
  background: var(--cream); border-radius: 8px; padding: 12px 14px; margin: 12px 0 0;
  border-left: 3px solid var(--green);
}
.catalog-card-review-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: 5px;
}
.catalog-card-review-text {
  font-family: var(--serif); font-size: 13px; font-style: italic;
  color: var(--ink-soft); line-height: 1.5; margin-bottom: 5px;
}
.catalog-card-review-author { font-size: 12px; font-weight: 600; color: var(--ink); }
.catalog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; margin-top: 14px; border-top: 1px solid var(--cream-mid);
}
.catalog-card-price { display: flex; flex-direction: column; }
.catalog-card-price-label { font-size: 10px; color: var(--stone); margin-bottom: 2px; }
.catalog-card-price-num { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.catalog-card-meta { display: flex; align-items: center; gap: 10px; }
.catalog-card-days { font-size: 12px; color: var(--stone); display: flex; align-items: center; gap: 4px; }
.btn-card-sm {
  background: var(--green); color: white; font-size: 12px; font-weight: 600;
  padding: 9px 18px; border-radius: 8px; transition: all 0.2s; display: inline-flex;
}
.btn-card-sm:hover { background: var(--green-dark); transform: translateY(-1px); }

.catalog-empty { grid-column: 1 / -1; text-align: center; padding: 80px 20px; }
.catalog-empty-title { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.catalog-empty-text { font-size: 15px; color: var(--stone); }

/* ─── CTA BAND (catalog) ───────────────────────── */
.catalog-cta-band {
  margin: 0 60px 72px;
  background: var(--green); border-radius: 20px;
  padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.catalog-cta-band-text {}
.catalog-cta-eyebrow {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 8px;
}
.catalog-cta-title {
  font-family: var(--serif); font-size: 28px; font-weight: 400; color: white;
  line-height: 1.25; margin-bottom: 6px;
}
.catalog-cta-sub { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.catalog-cta-band .btn-primary { white-space: nowrap; }

/* ─── TOUR DETAIL — HERO ───────────────────────── */
.td-hero {
  position: relative; height: 92vh; min-height: 600px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.td-hero-img { position: absolute; inset: 0; }
.td-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  animation: tdHeroZoom 12s ease-out both;
}
@keyframes tdHeroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.td-hero-img-placeholder { background: var(--green); }
.td-hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.04) 35%,
    rgba(15,30,22,0.52) 65%,
    rgba(15,30,22,0.88) 100%
  );
}
.td-hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 60px 160px;
}
.td-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px;
}
.td-breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.td-breadcrumb a:hover { color: white; }
.td-breadcrumb span { opacity: 0.5; }
.td-breadcrumb span:last-child { opacity: 0.65; }
.td-hero-title {
  font-family: var(--serif); font-size: clamp(40px, 6vw, 78px);
  font-weight: 600; color: white; line-height: 1.1; margin-bottom: 10px;
}
.td-hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 580px; }
.td-hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.td-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); color: white; border-radius: 100px;
  padding: 10px 18px; font-size: 13px; font-weight: 500;
}
.td-badge svg { opacity: 0.75; flex-shrink: 0; }
.td-badge-price { background: var(--amber); border-color: transparent; font-weight: 600; font-size: 14px; }

/* ─── TAB BAR ──────────────────────────────────── */
.td-tabs {
  position: sticky; top: 72px; z-index: 100;
  background: white; border-bottom: 1px solid var(--cream-mid);
  display: flex; align-items: center; padding: 0 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.td-tabs.is-visible { transform: translateY(0); }
.td-tab {
  font-size: 13px; font-weight: 500; color: var(--stone);
  padding: 18px 20px; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.td-tab:hover { color: var(--green); }
.td-tab.is-active { color: var(--green); border-bottom-color: var(--green); }
.td-tabs-book {
  margin-left: auto;
  background: var(--amber); color: white;
  font-size: 13px; font-weight: 600; padding: 9px 22px;
  border-radius: 8px; border: none; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.td-tabs-book:hover { background: var(--amber-dark); }

/* ─── LAYOUT ───────────────────────────────────── */
.td-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  max-width: 1200px; margin: 0 auto;
  padding: 56px 40px 80px;
  align-items: start;
}
.td-main { min-width: 0; }
.td-section {
  margin-bottom: 64px;
  scroll-margin-top: 140px;
}
.td-section-title {
  font-family: var(--serif); font-size: 30px; font-weight: 600;
  color: var(--ink); margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 2px solid var(--cream-mid);
}
.td-rich-text { font-size: 15px; color: var(--ink-soft); line-height: 1.8; }

/* Gallery grid */
.td-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.td-gallery-item {
  overflow: hidden; border-radius: 12px; cursor: pointer; position: relative;
}
.td-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease; display: block;
}
.td-gallery-item:hover img { transform: scale(1.04); }
.td-gallery-main {
  grid-column: 1 / 2; grid-row: 1 / 3; height: 420px;
}
.td-gallery-item:not(.td-gallery-main) { height: 200px; }
.td-gallery-count {
  position: absolute; inset: 0;
  background: rgba(20,30,22,0.55);
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--serif); font-size: 20px; font-weight: 600;
  border-radius: 12px; border: none; cursor: pointer; width: 100%;
}

/* Program timeline */
.td-program-list { display: flex; flex-direction: column; }
.td-program-day {
  display: grid; grid-template-columns: 56px 1fr; gap: 0 20px; cursor: pointer;
}
.td-program-day-line {
  display: flex; flex-direction: column; align-items: center; padding-top: 4px;
}
.td-program-day-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream-mid); color: var(--green);
  font-family: var(--serif); font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.25s, color 0.25s;
  border: 2px solid var(--cream-mid);
}
.td-program-day.is-open .td-program-day-num { background: var(--amber); color: white; border-color: var(--amber); }
.td-program-day-connector {
  width: 2px; flex: 1; background: var(--cream-mid); margin: 6px 0; min-height: 20px;
}
.td-program-day:last-child .td-program-day-connector { display: none; }
.td-program-day-body { padding-bottom: 24px; }
.td-program-day-header {
  display: flex; align-items: center; justify-content: space-between; padding: 4px 0 10px;
}
.td-program-day-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 2px;
}
.td-program-day-title { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink); }
.td-program-day-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--cream-mid); background: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; flex-shrink: 0; color: var(--stone);
}
.td-program-day.is-open .td-program-day-toggle { background: var(--cream-mid); border-color: transparent; color: var(--ink); }
.td-program-day-toggle svg { transition: transform 0.25s; }
.td-program-day.is-open .td-program-day-toggle svg { transform: rotate(180deg); }

/* Included / excluded */
.td-included-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.td-included-card { border-radius: 14px; padding: 28px; }
.td-included-yes { background: rgba(45,74,62,0.05); border: 1.5px solid rgba(45,74,62,0.12); }
.td-included-no  { background: rgba(140,136,128,0.06); border: 1.5px solid rgba(140,136,128,0.14); }
.td-included-title {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.td-included-yes .td-included-title { color: var(--green); }
.td-included-no  .td-included-title { color: var(--stone); }
.td-included-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.td-included-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.5; color: var(--ink-soft);
}
.td-included-list li svg { flex-shrink: 0; margin-top: 1px; }

/* ─── SIDEBAR ──────────────────────────────────── */
.td-sidebar { position: sticky; top: 148px; }
.td-booking-card {
  background: white; border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
  border: 1.5px solid var(--cream-mid); overflow: hidden;
}
.td-booking-head { background: var(--green); padding: 24px 28px; }
.td-booking-price-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.td-booking-price {
  font-family: var(--serif); font-size: 36px; font-weight: 600; color: white; line-height: 1.1;
}
.td-booking-price-unit { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.7); }
.td-booking-body { padding: 24px 28px; }
.td-booking-facts { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.td-booking-fact {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; padding: 12px 0;
  border-bottom: 1px solid var(--cream-mid);
}
.td-booking-fact:last-child { border-bottom: none; }
.td-booking-fact-label { color: var(--stone); display: flex; align-items: center; gap: 7px; }
.td-booking-fact-value { font-weight: 600; color: var(--ink); }
.td-btn-book {
  width: 100%; padding: 16px; border-radius: 12px;
  background: var(--amber); color: white;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px; display: block;
}
.td-btn-book:hover { background: var(--amber-dark); transform: translateY(-1px); }
.td-booking-note { font-size: 12px; color: var(--stone); text-align: center; line-height: 1.5; }

/* ─── CTA BAND (detail) ────────────────────────── */
.td-cta-band {
  margin: 0 60px 72px;
  background: var(--green); border-radius: 20px;
  padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.td-cta-band-title {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: white; line-height: 1.3;
}
.td-cta-band-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 6px; }
.td-btn-cta-amber {
  background: var(--amber); color: white;
  font-size: 15px; font-weight: 600; padding: 16px 32px;
  border-radius: 12px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.td-btn-cta-amber:hover { background: var(--amber-dark); transform: translateY(-2px); }

/* ─── MODAL ────────────────────────────────────── */
.td-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(20,30,25,0.6); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.td-modal-overlay.is-open,
.td-modal-overlay:not([hidden]) { opacity: 1; pointer-events: auto; }
.td-modal-overlay[hidden] { display: none !important; }
.td-modal {
  background: var(--cream); border-radius: 20px; width: 100%; max-width: 560px;
  transform: scale(0.95) translateY(12px);
  transition: transform 0.3s cubic-bezier(.34,1.2,.64,1);
  overflow: hidden; max-height: 90vh; overflow-y: auto;
}
.td-modal-overlay.is-open .td-modal { transform: scale(1) translateY(0); }
.td-modal-header {
  background: var(--green); padding: 28px 32px 24px; position: relative;
}
.td-modal-title { font-family: var(--serif); font-size: 22px; color: white; font-weight: 600; }
.td-modal-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.td-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none; cursor: pointer;
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background 0.2s;
}
.td-modal-close:hover { background: rgba(255,255,255,0.25); }
.td-modal-body { padding: 28px 32px 32px; }
.td-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.td-form-group { margin-bottom: 14px; }
.td-form-label { display: block; font-size: 12px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; letter-spacing: 0.04em; }
.td-form-input {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--cream-mid); background: white;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  transition: border-color 0.2s; outline: none;
}
.td-form-input:focus { border-color: var(--green); }
.td-form-textarea { resize: vertical; min-height: 80px; }
.td-form-submit {
  width: 100%; padding: 15px; border-radius: 12px;
  background: var(--amber); color: white;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.td-form-submit:hover { background: var(--amber-dark); }
.td-form-note { font-size: 12px; color: var(--stone); text-align: center; margin-top: 12px; line-height: 1.5; }
.td-form-alert { border-radius: 8px; padding: 12px 16px; margin-bottom: 14px; font-size: 14px; }
.td-form-alert-success { background: rgba(45,74,62,0.1); color: var(--green); }
.td-form-alert-danger  { background: rgba(200,50,50,0.08); color: #c0392b; }

/* ─── LIGHTBOX ─────────────────────────────────── */
.td-lightbox { position: fixed; inset: 0; z-index: 600; display: flex; align-items: center; justify-content: center; }
.td-lightbox[hidden] { display: none; }
.td-lightbox-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.9); }
.td-lightbox-panel {
  position: relative; z-index: 1; display: flex; align-items: center; gap: 16px;
  max-width: 90vw; max-height: 90vh;
}
.td-lightbox-panel img { max-width: 80vw; max-height: 85vh; object-fit: contain; border-radius: 8px; display: block; }
.td-lightbox-close {
  position: fixed; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white; font-size: 18px; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.td-lightbox-close:hover { background: rgba(255,255,255,0.2); }
.td-lightbox-nav {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.1); color: white; font-size: 18px; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.td-lightbox-nav:hover { background: rgba(255,255,255,0.25); }

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .td-layout { grid-template-columns: 1fr; gap: 0; padding: 48px 40px; }
  .td-sidebar { position: static; margin-bottom: 48px; order: -1; }
  .td-booking-card { max-width: 480px; }
  .td-tabs { padding: 0 40px; }
  .td-hero-content { padding: 0 40px 48px; }
  .td-cta-band { margin: 0 40px 56px; padding: 40px 44px; }
  .catalog-cta-band { margin: 0 40px 56px; padding: 40px 44px; }
  .td-included-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .catalog-page-head { padding: 100px 20px 40px; flex-direction: column; gap: 0; }
  .catalog-head-deco { display: none; }
  .catalog-filter { padding: 12px 20px; }
  .catalog-section { padding: 40px 20px 48px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-cta-band { margin: 0 20px 48px; padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .catalog-cta-band .btn-primary { width: 100%; justify-content: center; }

  .td-hero-content { padding: 0 20px 40px; }
  .td-hero-title { font-size: 36px; }
  .td-hero-badges { gap: 8px; }
  .td-badge { padding: 8px 14px; font-size: 12px; }
  .td-tabs {
    position: static;
    padding: 0 16px;
    overflow-x: auto;
    transform: none;
    -webkit-overflow-scrolling: touch;
  }
  .td-tab { padding: 16px 14px; font-size: 12px; }
  .td-layout { padding: 32px 20px; }
  .td-section { margin-bottom: 48px; }
  .td-gallery-grid { grid-template-columns: 1fr; }
  .td-gallery-main { height: 240px; grid-row: auto; }
  .td-gallery-item:not(.td-gallery-main) { height: 160px; }
  .td-included-grid { grid-template-columns: 1fr; }
  .td-cta-band { margin: 0 20px 48px; padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .td-btn-cta-amber { width: 100%; }
  .td-form-row { grid-template-columns: 1fr; }
  .td-modal-body { padding: 20px 20px 28px; }
  .td-modal-header { padding: 20px 20px 16px; }
}
@media (max-width: 480px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

/* ── Direction segment switcher ─────────────────── */
.catalog-direction-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 60px 0;
  border-bottom: 1px solid var(--cream-mid);
  background: white;
}
.catalog-direction-seg {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 32px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: background .2s, border-color .2s, color .2s;
  color: var(--stone);
  position: relative;
}
.catalog-direction-seg + .catalog-direction-seg::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--cream-mid);
}
.catalog-direction-seg:hover {
  background: var(--cream);
  color: var(--ink);
}
.catalog-direction-seg.is-active {
  color: var(--green);
  border-bottom-color: var(--green);
}
.catalog-direction-seg-arrow {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  opacity: .45;
  transition: opacity .2s;
}
.catalog-direction-seg:hover .catalog-direction-seg-arrow,
.catalog-direction-seg.is-active .catalog-direction-seg-arrow { opacity: 1; }
.catalog-direction-seg-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.catalog-direction-seg-title {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--ink);
}
.catalog-direction-seg.is-active .catalog-direction-seg-title { color: var(--green); }
.catalog-direction-seg-sub {
  font-size: 12px;
  line-height: 1.4;
  color: var(--stone);
}
.catalog-direction-seg-count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: var(--cream-mid);
  color: var(--stone);
  transition: background .2s, color .2s;
}
.catalog-direction-seg.is-active .catalog-direction-seg-count {
  background: rgba(45,74,62,0.12);
  color: var(--green);
}
@media (max-width: 768px) {
  .catalog-direction-switcher { margin: 0 20px 0; }
  .catalog-direction-seg { padding: 18px 20px; gap: 12px; }
  .catalog-direction-seg-title { font-size: 14px; }
  .catalog-direction-seg-sub { display: none; }
}
@media (max-width: 480px) {
  .catalog-direction-switcher { grid-template-columns: 1fr; border-bottom: none; }
  .catalog-direction-seg { border-bottom: 1px solid var(--cream-mid); border-right: none; }
  .catalog-direction-seg.is-active { border-bottom-color: var(--green); }
  .catalog-direction-seg + .catalog-direction-seg::before { display: none; }
}

/* ─── PRODUCT REVIEWS ─────────────────────────── */
.tour-reviews {
  background: var(--cream);
  margin: 72px 0;
  padding: 64px clamp(20px, 4vw, 72px);
}
.tour-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.tour-reviews-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--ink);
}
.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 40px);
}
.review-text {
  color: var(--ink-soft);
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 28px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-mid);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.review-meta {
  margin-top: 2px;
  color: var(--stone);
  font-size: 12px;
}

@media (max-width: 1024px) {
  .reviews-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .tour-reviews { margin: 48px 0; padding: 42px 20px; }
  .tour-reviews-head { flex-direction: column; align-items: flex-start; }
  .reviews-row { grid-template-columns: 1fr; }
}

.td-form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0; font-size: 12px; line-height: 1.5; color: var(--stone); }
.td-form-consent input { width: 16px; height: 16px; margin-top: 2px; flex: 0 0 auto; }
.td-form-consent a { color: var(--green); text-decoration: underline; }
