/* Tour page styles — single stylesheet for all tour landing pages.
   .tour-redesign: hero, info bar, about, highlights, itinerary, included.
   Below: header, footer, booking form, and "More tours" section. */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

.tour-redesign {
  --kk-cream: #F5EDE3;
  --kk-cream-light: #FAF4EE;
  --kk-red: #c4a882;
  --kk-red-dark: #b8976e;
  --kk-red-light: #f5ede3;
  --kk-gold: #C99B3A;
  --kk-text-dark: #1E0F0A;
  --kk-text-muted: #7A6B63;
  --kk-border: #EDE3D9;
  --kk-serif: 'Playfair Display', Georgia, serif;
  --kk-sans: 'Inter', system-ui, sans-serif;
  font-family: var(--kk-sans);
  color: var(--kk-text-dark);
  background: var(--kk-cream);
}

.tour-redesign,
.tour-redesign *,
.tour-redesign *::before,
.tour-redesign *::after {
  box-sizing: border-box;
}

.tour-redesign img {
  max-width: 100%;
  display: block;
}

/* ── HERO ── */
.tour-redesign .hero {
  position: relative;
  min-height: 640px;
  height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  overflow: hidden;
}

.tour-redesign .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tour-redesign .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 5, 0.30) 0%,
    rgba(20, 10, 5, 0.15) 40%,
    rgba(20, 10, 5, 0.65) 100%
  );
}

.tour-redesign .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.tour-redesign .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  width: fit-content;
}

.tour-redesign .hero-title {
  font-family: var(--kk-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  max-width: 750px;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.tour-redesign .hero-title .gold {
  color: #f0e4b8;
  font-style: italic;
}

.tour-redesign .hero-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 0 36px;
  font-weight: 300;
}

.tour-redesign .hero-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.tour-redesign .hero-price {
  color: #ffffff;
}

.tour-redesign .hero-price .from {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  display: block;
  margin-bottom: 2px;
}

.tour-redesign .hero-price .amount {
  font-family: var(--kk-serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.tour-redesign .hero-price .per {
  font-size: 14px;
  opacity: 0.75;
  margin-left: 4px;
}

.tour-redesign .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c4a882;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--kk-sans);
}

.tour-redesign .btn-primary:hover {
  background: #d4bc9c;
  transform: translateY(-1px);
}

.tour-redesign .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  font-family: var(--kk-sans);
}

.tour-redesign .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── TOUR INFO BAR ── */
.tour-redesign .tour-bar {
  background: #ffffff;
  padding: 28px 48px;
  border-bottom: 1px solid var(--kk-border);
}

.tour-redesign .tour-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.tour-redesign .tour-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tour-redesign .tour-bar-icon {
  width: 40px;
  height: 40px;
  background: var(--kk-red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kk-red);
  flex-shrink: 0;
}

.tour-redesign .tour-bar-icon svg {
  width: 18px;
  height: 18px;
}

.tour-redesign .tour-bar-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--kk-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.tour-redesign .tour-bar-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--kk-text-dark);
}

/* ── SHARED SECTION HEADERS ── */
.tour-redesign .section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--kk-red);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--kk-sans);
}

.tour-redesign .section-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--kk-red);
  flex-shrink: 0;
}

.tour-redesign .section-heading {
  font-family: var(--kk-serif);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--kk-text-dark);
  margin: 0 0 28px;
  max-width: 700px;
  letter-spacing: -0.005em;
}

.tour-redesign .section-heading .red-italic {
  color: var(--kk-red);
  font-style: italic;
}

/* ── ABOUT ── */
.tour-redesign .about {
  background: var(--kk-cream);
  padding: 28px 0 40px;
}

.tour-redesign .about-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
}

.tour-redesign .about-images {
  margin-top: 32px;
}

.tour-redesign .about-body p {
  font-size: 17px;
  line-height: 1.75;
  color: #4A3B35;
  margin: 0 0 20px;
  font-weight: 300;
}

.tour-redesign .about-body p:last-child {
  margin-bottom: 0;
}

.tour-redesign .about-images img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
}

.tour-redesign .highlights-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
}

/* ── HIGHLIGHTS ── */
.tour-redesign .highlights {
  background: var(--kk-cream);
  padding: 0 0 40px;
}

/* Kakheti: tighter gap above gallery, more air below — gallery sits mid-way to itinerary */
.tour-redesign .highlights:has(+ .gallery-strip) {
  padding-bottom: 16px;
}

.tour-redesign .highlights-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
}

.tour-redesign .highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 0;
  max-width: 900px;
}

.tour-redesign .highlight-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--kk-border);
}

.tour-redesign .highlight-card.featured {
  border-color: var(--kk-red-light);
  box-shadow: 0 0 0 1px var(--kk-red-light);
}

.tour-redesign .highlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.tour-redesign .highlight-icon.light {
  background: var(--kk-red-light);
  color: #c4a882;
}

.tour-redesign .highlight-icon.dark {
  background: var(--kk-red);
  color: #ffffff;
}

.tour-redesign .highlight-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.tour-redesign .highlight-card h3 {
  font-family: var(--kk-serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--kk-text-dark);
}

.tour-redesign .highlight-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--kk-text-muted);
  margin: 0;
}

/* ── GALLERY ── */
.tour-redesign .gallery {
  background: var(--kk-cream);
  padding: 0 0 40px;
}

.tour-redesign .gallery-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tour-redesign .gallery-inner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 700px) {
  .tour-redesign .gallery-inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .tour-redesign .gallery-inner img {
    height: 240px;
  }
}

/* ── GALLERY STRIP (Kakheti) ── */
.tour-redesign .gallery-strip {
  background: var(--kk-cream);
  padding: 0 0 40px;
}

.tour-redesign .highlights + .gallery-strip {
  padding-bottom: 56px;
}

.tour-redesign .gallery-strip__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 0 48px;
  margin-bottom: 16px;
}

.tour-redesign .gallery-strip__nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.tour-redesign .gallery-strip__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #D4C0B4;
  background: transparent;
  color: var(--kk-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  padding: 0;
}

.tour-redesign .gallery-strip__arrow:hover {
  border-color: var(--kk-red);
  color: var(--kk-red);
}

.tour-redesign .gallery-strip__viewport {
  position: relative;
}

.tour-redesign .gallery-strip__fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--kk-cream));
  pointer-events: none;
  z-index: 2;
}

.tour-redesign .gallery-strip__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 48px 4px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.tour-redesign .gallery-strip__track::-webkit-scrollbar {
  display: none;
}

.tour-redesign .gallery-strip__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.tour-redesign .gallery-strip__card {
  position: relative;
  flex: 0 0 auto;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}

.tour-redesign .gallery-strip__card--w240 { width: 240px; }
.tour-redesign .gallery-strip__card--w300 { width: 300px; }
.tour-redesign .gallery-strip__card--w360 { width: 360px; }

.tour-redesign .gallery-strip__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-redesign .gallery-strip__card:hover img {
  transform: scale(1.04);
}

.tour-redesign .gallery-strip__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-redesign .gallery-strip__card:hover .gallery-strip__caption {
  opacity: 1;
}

@media (max-width: 768px) {
  .tour-redesign .gallery-strip {
    padding: 0 0 40px;
  }
  .tour-redesign .gallery-strip__header {
    justify-content: flex-end;
    padding: 0 16px;
    margin-bottom: 16px;
  }
  .tour-redesign .gallery-strip__track {
    padding: 0 16px 4px;
  }
  .tour-redesign .gallery-strip__fade {
    width: 72px;
  }
  .tour-redesign .gallery-strip__card--w240 { width: 200px; }
  .tour-redesign .gallery-strip__card--w300 { width: 260px; }
  .tour-redesign .gallery-strip__card--w360 { width: 300px; }
  .tour-redesign .gallery-strip__card {
    height: 220px;
  }
}

/* ── ITINERARY ── */
.tour-redesign .itinerary {
  background: var(--kk-cream);
  padding: 0 0 40px;
}

.tour-redesign .itinerary-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 48px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.tour-redesign .timeline {
  margin-top: 48px;
  position: relative;
  padding-left: 8px;
  list-style: none;
}

.tour-redesign .timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 28px;
}

.tour-redesign .timeline-item:last-child {
  padding-bottom: 0;
}

.tour-redesign .timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 28px;
  bottom: 0;
  border-left: 2px dashed #D4B8B0;
}

.tour-redesign .timeline-dot {
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--kk-red);
  background: var(--kk-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-redesign .timeline-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kk-red);
}

.tour-redesign .timeline-title {
  font-family: var(--kk-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--kk-text-dark);
  margin: 0 0 8px;
  line-height: 1;
}

.tour-redesign .timeline-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--kk-text-muted);
  max-width: 640px;
  margin: 0;
}

/* ── NOTE BANNER ── */
.tour-redesign .note-banner {
  background: #FDF6EE;
  border: 1px solid #E8D5C0;
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 0;
  font-size: 15px;
  color: #5C4A38;
  max-width: 860px;
  line-height: 1.55;
  text-align: center;
}

.tour-redesign .note-banner .note-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tour-redesign .note-banner strong {
  font-weight: 600;
}

/* ── INCLUDED ── */
.tour-redesign .included-section {
  background: var(--kk-cream);
  padding: 0 0 40px;
}

.tour-redesign .included-section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
}

.tour-redesign .included-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 860px;
}

.tour-redesign .included-card h2 {
  font-family: var(--kk-serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--kk-text-dark);
}

.tour-redesign .included-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.tour-redesign .included-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--kk-text-dark);
  padding: 12px 0;
  border-bottom: 1px solid #F0E8DF;
}

.tour-redesign .included-list li:last-child {
  border-bottom: none;
}

.tour-redesign .check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E8F0EC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4A7C5F;
  font-size: 13px;
  font-weight: 700;
}

.tour-redesign .btn-primary-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #c4a882;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  transition: background 0.2s;
  font-family: var(--kk-sans);
}

.tour-redesign .btn-primary-full:hover {
  background: #d4bc9c;
}

/* ── FAQ ── */
.tour-redesign .faq-section {
  background: var(--kk-cream);
  padding: 8px 0 56px;
}

.tour-redesign .faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
}

.tour-redesign .faq-list {
  display: flex;
  flex-direction: column;
}

.tour-redesign .faq-item {
  border-bottom: 1px solid #F0E8DF;
}

.tour-redesign .faq-item:last-child {
  border-bottom: none;
}

.tour-redesign .faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.tour-redesign .faq-question {
  font-family: var(--kk-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--kk-text-dark);
  margin: 0;
  transition: color 0.2s;
}

.tour-redesign .faq-btn:hover .faq-question,
.tour-redesign .faq-item.open .faq-question {
  color: var(--kk-red-dark);
}

.tour-redesign .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDE3D9;
  color: var(--kk-text-muted);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.tour-redesign .faq-item.open .faq-icon {
  background: var(--kk-red);
  color: #fff;
  transform: rotate(45deg);
}

.tour-redesign .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.tour-redesign .faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 20px;
}

.tour-redesign .faq-answer p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--kk-text-muted);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .tour-redesign .hero {
    padding: 0 24px;
    min-height: 560px;
  }
  .tour-redesign .tour-bar {
    padding: 22px 24px;
  }
  .tour-redesign .tour-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    justify-items: start;
  }
  .tour-redesign .about-inner,
  .tour-redesign .highlights-inner,
  .tour-redesign .included-section-inner {
    padding: 0 16px;
  }
  .tour-redesign .itinerary-inner {
    padding: 28px 24px;
  }
  .tour-redesign .included-card {
    padding: 28px;
  }
  .tour-redesign .about-images {
    margin-top: 24px;
  }
  .tour-redesign .highlights-grid {
    grid-template-columns: 1fr;
  }
  .tour-redesign .about-images img {
    height: 240px;
  }
  .tour-redesign .about-images img:first-child,
  .tour-redesign .about-images img:last-child {
    border-radius: 16px;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .tour-redesign .hero {
    padding: 0 16px;
  }
  .tour-redesign .hero-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .tour-redesign .hero-footer .btn-primary,
  .tour-redesign .hero-footer .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .tour-redesign .btn-primary,
  .tour-redesign .btn-outline {
    padding: 13px 22px;
    font-size: 14px;
  }
  .tour-redesign .hero-price .amount {
    font-size: 34px;
  }
  .tour-redesign .timeline-title {
    font-size: 20px;
  }
  .tour-redesign .included-card h2 {
    font-size: 26px;
  }
}

/* Booking section heading — matches tour-redesign style */
.tour-redesign-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #c4a882;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'Inter', system-ui, sans-serif;
}

.tour-redesign-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: #c4a882;
  flex-shrink: 0;
}

.tour-redesign-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: #1E0F0A;
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}

.tour-redesign-heading .red-italic {
  color: #c4a882;
  font-style: italic;
}

.tour-main > .tour-section.tour-section--wide {
  background: #FAF4EE;
}

.tour-main > .tour-section.tour-section--wide > * {
  max-width: min(1280px, 100%);
  margin-inline: auto;
}

.tour-main > .tour-section.tour-section--wide .tour-redesign-heading {
  margin-bottom: 1rem;
}

.tour-main > .tour-section.tour-section--wide .tour-cards-grid {
  margin-top: 1.75rem;
}

/* ── Tour page shell (header, main, booking, footer) ── */

/* Shared styles for SEO tour landing pages — matches geohospitality.ge palette & typography */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #2c3e2d;
  --color-primary-light: #3d5440;
  --color-accent: #c4a882;
  --color-accent-light: #d4bc9c;
  --color-bg: #fafaf8;
  --color-bg-warm: #f5f2ed;
  /* Homepage #gallery — Georgia through our lens */
  --color-bg-gallery: #e6e2d8;
  --color-foreground: #1c1c1a;
  --color-muted: #6b6b68;
  --color-border: #e8e4dc;
  --color-inclusion-check: #2f7d4e;
  --font-sans: "DM Sans", sans-serif;
  --font-serif: "Crimson Text", serif;
  /* Matches .tour-section h2 margin-bottom — rhythm above/below tour lead headings */
  --tour-section-heading-gap: 1.25rem;
  /* Shared with .tour-spec-bar padding-block so first section can complete spec → h2 gap */
  --tour-spec-bar-pad-block: clamp(0.65rem, 1.2vw, 0.95rem);
  /* Extra air between spec bar and “About this tour” only (does not change h2 → prose gap) */
  --tour-spec-to-about-extra: clamp(0.4rem, 0.85vw, 0.65rem);
  /* Vertical padding for each main tour block (About, Highlights, Itinerary, Included, Booking, etc.) */
  --tour-section-block-y: clamp(1.75rem, 3vw, 2.5rem);
}

html { scroll-behavior: smooth; }

body.tour-page {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-foreground);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 76px;
}

/* Header — solid bar (no hero behind) */
body.tour-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--color-border);
  box-sizing: border-box;
}
body.tour-page .nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  box-sizing: border-box;
}
body.tour-page .logo {
  display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none; flex-shrink: 0;
}
body.tour-page .logo-img {
  display: block; height: 44px; width: auto;
  object-fit: contain; flex-shrink: 0;
}
body.tour-page .logo-text {
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: -0.02em; color: var(--color-foreground);
  white-space: nowrap;
}
body.tour-page .nav-right {
  display: flex; align-items: center; gap: 1.5rem;
  flex-shrink: 0;
}
body.tour-page .tour-header-lang {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  text-decoration: none;
  flex-shrink: 0;
}
body.tour-page .tour-header-lang:hover {
  color: var(--color-primary);
}
body.tour-page nav {
  display: flex; align-items: center; gap: 1.5rem;
  flex-shrink: 1; min-width: 0;
}
body.tour-page .nav-link {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--color-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
body.tour-page .nav-link:hover { color: var(--color-foreground); }
body.tour-page .book-btn {
  background: var(--color-accent); color: white !important;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 0.65rem 1.35rem;
  border-radius: 50px; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}
body.tour-page .book-btn:hover {
  background: var(--color-accent-light);
  box-shadow: 0 8px 24px rgba(196,168,130,0.25);
}
body.tour-page .hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--color-muted); padding: 8px; flex-shrink: 0;
}
body.tour-page .mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 40;
  background: rgba(28,28,26,0.55);
  backdrop-filter: blur(4px);
}
body.tour-page .mobile-menu.open { display: block; }
body.tour-page .mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--color-bg);
  padding: 4.5rem 1.5rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
body.tour-page .mobile-menu.open .mobile-menu-panel { transform: translateY(0); }
body.tour-page .mobile-nav-link {
  display: block; padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-foreground);
  text-decoration: none;
  font-size: 1.05rem; font-weight: 500;
}
body.tour-page .mobile-book-btn {
  margin-top: 1.25rem; display: block; text-align: center;
  background: var(--color-accent); color: white;
  padding: 1rem; border-radius: 50px;
  text-decoration: none;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* Hero — full-bleed image uses object-fit (same visual as background-size: cover) */
.tour-hero {
  /* Focal point per tour: override on .tour-hero--* below */
  --tour-hero-img-position: center 60%;
  position: relative;
  min-height: 55vh;
  max-height: 900px;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding-block: clamp(1.5rem, 3.5vh, 2.5rem);
  color: white;
  overflow: hidden;
  box-sizing: border-box;
}

/* Spec bar inside hero — transparent, image shows through */
.tour-hero .tour-spec-bar {
  position: relative;
  z-index: 2;
  background: transparent;
  max-width: 100%;
  margin-inline: 0;
  width: 100%;
}
.tour-hero .tour-spec-bar__label {
  color: rgba(255, 255, 255, 0.55);
}
.tour-hero .tour-spec-bar__value {
  color: rgba(255, 255, 255, 0.90);
}
.tour-hero .tour-spec-bar__icon {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}
.tour-hero__media {
  position: absolute;
  inset: 0;
  max-width: 100%;
}
.tour-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--tour-hero-img-position);
}
.tour-hero--kakheti { --tour-hero-img-position: center 60%; }
.tour-hero--kazbegi { --tour-hero-img-position: center 60%; }
.tour-hero--mtskheta { --tour-hero-img-position: center 60%; }
.tour-hero--borjomi { --tour-hero-img-position: center 60%; }
.tour-hero--vardzia { --tour-hero-img-position: center 60%; }
.tour-hero--custom { --tour-hero-img-position: center 60%; }
.tour-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,26,0.92) 0%, rgba(28,28,26,0.35) 55%, rgba(28,28,26,0.42) 100%);
}
.tour-hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 2.5rem;
  box-sizing: border-box;
}
.tour-breadcrumbs {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.65);
  margin-bottom: 0.85rem;
}
.tour-breadcrumbs a {
  color: rgba(255,255,255,0.85); text-decoration: none;
}
.tour-breadcrumbs a:hover { text-decoration: underline; color: white; }
.tour-hero-price {
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
  margin: 0.65rem 0 0;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.tour-hero-price strong {
  font-weight: 700;
  color: #ffffff;
}
.tour-hero-price__note {
  color: var(--color-muted);
  font-size: 0.825rem;
}
.tour-hero-cta-row {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
}
.tour-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: white !important;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.85rem 1.45rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.tour-hero-cta-primary:hover {
  background: var(--color-accent-light);
  box-shadow: 0 8px 28px rgba(196,168,130,0.4);
}
.tour-hero-cta-secondary {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.tour-hero-cta-secondary:hover {
  color: #fff;
}
.tour-hero__inner h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
}
.tour-hero__inner h1 em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent-light);
}

/* CTA buttons below hero — mobile only */
.tour-hero-cta-below {
  display: none;
}
@media (max-width: 768px) {
  .tour-hero .tour-hero-cta-row {
    display: none;
  }
  .tour-hero-cta-below {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1.15rem 1.5rem 1.35rem;
    background: #ffffff;
  }
  .tour-hero-cta-below .tour-hero-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    padding: 1rem;
    font-size: 12px;
    letter-spacing: 0.2em;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  }
  .tour-hero-cta-below .tour-hero-cta-secondary {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-shadow: none;
    padding: 0.3rem 0;
  }
}

/* Compact summary under hero (all tour pages) — centered column matches .tour-hero__inner (1280 cap) */
.tour-spec-bar {
  /* Single vertical rhythm: equal top/bottom vs hero + main (no extra inner block padding) */
  background: var(--color-bg);
  width: 100%;
  max-width: min(1280px, 100%);
  margin-inline: auto;
  box-sizing: border-box;
  padding-block: var(--tour-spec-bar-pad-block);
}
.tour-spec-bar__inner {
  max-width: min(1280px, 100%);
  margin-inline: auto;
  padding-inline: 2.5rem;
  padding-block: 0;
  box-sizing: border-box;
}
.tour-spec-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.35vw, 1.125rem);
  align-items: start;
  justify-items: stretch;
}
.tour-spec-bar__item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.tour-spec-bar__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-sizing: border-box;
}
.tour-spec-bar__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.tour-spec-bar__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.tour-spec-bar__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  line-height: 1.2;
  max-width: 100%;
}
.tour-spec-bar__value {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  line-height: 1.35;
  max-width: 100%;
}

/* Tablet / small laptop: 2 columns (readable cells; avoids tall single-column stack on phones) */
@media (max-width: 1200px) {
  .tour-spec-bar__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.2vw, 0.85rem) clamp(0.75rem, 1.5vw, 1rem);
  }
}

@media (max-width: 640px) {
  body.tour-page {
    --tour-spec-bar-pad-block: clamp(0.55rem, 1.8vw, 0.85rem);
  }
  .tour-spec-bar__inner {
    padding-inline: 1.15rem;
  }
  .tour-spec-bar__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.55rem, 1.6vw, 0.75rem) clamp(0.65rem, 1.8vw, 0.85rem);
  }
  .tour-spec-bar__item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.5rem;
  }
  .tour-spec-bar__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
}

/* Very narrow: stay 2×3 with tighter type + icons (no default single-column stack) */
@media (max-width: 380px) {
  .tour-spec-bar {
    --tour-spec-bar-pad-block: clamp(0.5rem, 1.6vw, 0.75rem);
  }
  .tour-spec-bar__inner {
    padding-inline: 0.9rem;
  }
  .tour-hero__inner {
    padding-inline: 0.9rem;
  }
  .tour-spec-bar__list {
    gap: clamp(0.45rem, 1.4vw, 0.65rem) clamp(0.55rem, 1.6vw, 0.75rem);
  }
  .tour-spec-bar__item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 0.45rem;
  }
  .tour-spec-bar__icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
  }
  .tour-spec-bar__icon svg {
    width: 16px;
    height: 16px;
  }
  .tour-spec-bar__label {
    font-size: 9px;
    letter-spacing: 0.11em;
  }
  .tour-spec-bar__value {
    font-size: 12px;
    line-height: 1.32;
  }
}

/* Extremely narrow: single column only when cells would be unusably tight */
@media (max-width: 300px) {
  .tour-spec-bar__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .tour-spec-bar__item {
    grid-template-columns: 32px minmax(0, 1fr);
  }
}

/* Main */
.tour-main {
  padding-bottom: 4rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
/* All sections match the hero container: centered at 1200px with 2.5rem side padding */
.tour-main > .tour-section {
  padding: var(--tour-section-block-y) 2.5rem;
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.tour-main > .tour-section:not(.tour-section--accent):not(.tour-section--booking) > * {
  max-width: min(860px, 100%);
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}
.tour-section--accent {
  background: var(--color-bg-warm);
}
.tour-section--itinerary {
  background: #ffffff;
}
.tour-section--accent .tour-section-inner {
  max-width: min(860px, 100%);
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}
.tour-section--booking {
  background: #ffffff;
}
.tour-section--booking .tour-section-inner {
  max-width: min(860px, 100%);
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}
.tour-section h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--tour-section-heading-gap);
}
.tour-section h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.tour-prose {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.tour-prose p + p { margin-top: 1rem; }
.tour-prose + .tour-prose { margin-top: 1rem; }

.tour-section__subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: calc(-1 * var(--tour-section-heading-gap) + 0.4rem);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.tour-highlights {
  list-style: none;
  margin-top: 1.25rem;
}
.tour-highlights li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}
.tour-highlights li::before {
  content: '';
  position: absolute; left: 0; top: 0.55rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent);
}

/* What's included — decorative vector pattern background */
.tour-section--inclusions {
  background-color: var(--color-bg-warm);
}

/* What's included — stacked layout (title top, checklist below) */
.tour-inclusions-panel {
  display: block;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.tour-inclusions-panel__title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 var(--tour-section-heading-gap);
  color: var(--color-foreground);
}
.tour-inclusions-panel__content {
  min-width: 0;
}
.tour-inclusions-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tour-inclusions-panel__list li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.5rem;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-muted);
  overflow-wrap: anywhere;
}
.tour-inclusions-panel__list li:last-child {
  margin-bottom: 0;
}
.tour-inclusions-panel__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.06rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-inclusion-check);
}
.tour-inclusions-panel__note {
  margin-top: 1.15rem;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 40rem;
}
.tour-inclusions-panel__note a {
  color: var(--color-primary-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* Full itinerary: numbered step list */
.tour-itinerary-layout {
  display: block;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 2px 16px rgba(44, 62, 45, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.tour-itinerary-layout__main {
  min-width: 0;
}
.tour-itinerary-layout__aside {
  display: none;
}
.tour-itinerary-layout__note {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-muted);
  font-style: italic;
}

/* Day labels for multi-day tours */
.tour-route-day {
  margin-top: 2rem;
}
.tour-route-day:first-child {
  margin-top: 0;
}
.tour-route-day__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  background: rgba(44, 62, 45, 0.07);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin: 0 0 1.1rem;
}

/* Timeline: compact with vertical line + time */
.tour-route-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tour-route-timeline__stop {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0 0.95rem;
  align-items: stretch;
}
.tour-route-timeline__stop:last-child .tour-route-timeline__body {
  padding-bottom: 0;
}

/* Rail: dot + vertical line */
.tour-route-timeline__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  height: 100%;
  padding-top: 0;
}
.tour-route-timeline__dot {
  display: block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 0.22rem;
  z-index: 1;
}
.tour-route-timeline__stem {
  display: block;
  flex: 1;
  width: 1.5px;
  background: rgba(44, 62, 45, 0.16);
  margin-top: 0.3rem;
  min-height: 0.5rem;
}
.tour-route-timeline__stop:last-child .tour-route-timeline__stem {
  display: none;
}

/* Body */
.tour-route-timeline__body {
  padding-bottom: 1.15rem;
}

/* Time label */
.tour-route-timeline__time {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

/* Stop title */
.tour-route-timeline__title {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.25rem;
  color: var(--color-foreground);
  line-height: 1.25;
}
.tour-route-timeline__meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 0.25rem;
}
.tour-route-timeline__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.58;
  color: var(--color-muted);
}
@media (max-width: 480px) {
  .tour-itinerary-layout {
    padding: clamp(1rem, 4vw, 1.35rem);
  }
  .tour-route-timeline__body {
    padding-bottom: 1rem;
  }
  .tour-route-timeline__text {
    font-size: 13px;
  }
}

.tour-meta-block {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
.tour-meta-block p {
  font-size: 15px; color: var(--color-muted);
  margin-bottom: 0.65rem;
}
.tour-meta-block p:last-child { margin-bottom: 0; }
.tour-meta-block strong {
  color: var(--color-foreground);
  font-weight: 600;
}
.tour-price-tag {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.tour-related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.tour-related a {
  display: block;
  padding: 1.1rem 1.25rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-foreground);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
.tour-related a:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 28px rgba(44,62,45,0.08);
}

.tour-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  align-items: center;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.tour-cta-row .whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: #25D366; color: white;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.tour-cta-row .whatsapp-btn:hover { background: #1ebe5a; }

.tour-booking-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 1.25rem;
}
.tour-booking-divider__line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
  border-radius: 1px;
}
.tour-booking-divider span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-muted);
}
.tour-booking-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
.tour-booking-whatsapp:hover { background: #1ebe5a; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }

/* Booking form (matches homepage) */
.booking-form {
  background: white;
  border-radius: 22px;
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  min-width: 0;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--color-muted);
}
.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196,168,130,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group label.booking-flex-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.35rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.25;
  color: var(--color-foreground);
  cursor: pointer;
}
.form-group label.booking-flex-checkbox input[type="checkbox"] {
  width: auto;
  min-width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border-radius: 4px;
  accent-color: var(--color-accent);
}
.form-group label.booking-flex-checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.form-group label.booking-flex-checkbox span {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
}
.form-note {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: rgba(196,168,130,0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(196,168,130,0.2);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.form-note p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  min-width: 0;
}
.form-submit {
  margin-top: 1.75rem; width: 100%;
  background: var(--color-primary); color: white;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 1rem;
  border-radius: 50px; border: none; cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.form-submit:hover { background: var(--color-primary-light); }

/* Footer */
body.tour-page footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 2.5rem;
  background: var(--color-bg);
}
body.tour-page .footer-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
body.tour-page .footer-main-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
body.tour-page .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  white-space: nowrap;
}
body.tour-page .footer-logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
body.tour-page .footer-logo span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-foreground);
  white-space: nowrap;
}
body.tour-page .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
body.tour-page .footer-nav a {
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: none;
}
body.tour-page .footer-nav a:hover {
  color: var(--color-foreground);
}
body.tour-page .footer-copy {
  font-size: 12px;
  color: rgba(107,107,104,0.65);
  margin-left: auto;
}

/* ---- Responsive: tablets & phones (EN + RU tour pages) ---- */
body.tour-page .tour-main img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  body.tour-page nav,
  body.tour-page .book-btn {
    display: none;
  }
  body.tour-page .hamburger {
    display: block;
  }
  body.tour-page .nav-inner {
    padding: 0 1.25rem;
    max-width: 100%;
  }
  body.tour-page .nav-right {
    gap: 0.65rem;
    flex-shrink: 0;
  }
  body.tour-page .logo {
    min-width: 0;
    flex-shrink: 1;
  }
  body.tour-page .logo-text {
    font-size: clamp(0.68rem, 2.4vw, 0.82rem);
    white-space: normal;
    line-height: 1.2;
    max-width: min(15rem, 52vw);
  }
  .tour-hero {
    min-height: 34vh;
    max-height: none;
  }
  .tour-hero--kakheti {
    --tour-hero-img-position: center 48%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --tour-section-block-y: clamp(2rem, 4vw, 2.65rem);
  }
  body.tour-page {
    padding-top: 70px;
  }
  .tour-hero {
    min-height: 420px;
    max-height: none;
    justify-content: center;
    gap: clamp(1.5rem, 3.5vh, 2.5rem);
    padding-block: clamp(1.2rem, 3vh, 1.8rem);
  }
  .tour-hero--kakheti {
    --tour-hero-img-position: center 40%;
  }
  .tour-hero__inner {
    padding: 0 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .tour-breadcrumbs {
    letter-spacing: 0.08em;
    font-size: 10px;
    line-height: 1.45;
    margin-bottom: 0.7rem;
  }
  .tour-hero__inner h1 {
    max-width: 100%;
    font-size: clamp(1.2rem, 4.8vw, 1.72rem);
    line-height: 1.2;
    margin-bottom: 0;
  }
  .tour-hero-cta-row {
    margin-top: 1.45rem;
    flex-direction: column;
    align-items: stretch;
    align-self: center;
    width: 100%;
    max-width: min(17.5rem, 100%);
    gap: 0.4rem;
  }
  .tour-hero-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.55rem 0.95rem;
    min-height: 44px;
    font-size: 10px;
    letter-spacing: 0.1em;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  }
  .tour-hero-cta-secondary {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.35rem 0.25rem 0.45rem;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    text-underline-offset: 2px;
    opacity: 0.92;
  }
  .tour-main > .tour-section {
    padding: var(--tour-section-block-y) 1.2rem;
  }
  .tour-related {
    grid-template-columns: 1fr;
  }
  .tour-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .tour-cta-row .whatsapp-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }
  body.tour-page footer {
    padding: 1.65rem 1.2rem;
  }
  body.tour-page .footer-main-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
  }
  body.tour-page .footer-logo {
    margin-bottom: 0.5rem;
  }
  body.tour-page .footer-copy {
    margin-left: 0;
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
  }
  body.tour-page .footer-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem 1.5rem;
  }
  .booking-form {
    padding: 1.6rem 1.1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --tour-section-block-y: clamp(1.75rem, 3.5vw, 2.15rem);
  }
  body.tour-page {
    padding-top: 66px;
  }
  body.tour-page .nav-inner {
    padding: 0 0.85rem;
  }
  body.tour-page .logo-img {
    height: 38px;
  }
  body.tour-page .logo-text {
    font-size: 0.62rem;
    max-width: min(13.5rem, 58vw);
    letter-spacing: -0.03em;
  }
  .tour-hero {
    min-height: 420px;
    max-height: none;
  }
  .tour-hero--kakheti {
    --tour-hero-img-position: center 34%;
  }
  .tour-hero__inner {
    padding: 1rem 1.15rem 2.15rem;
  }
  .tour-breadcrumbs {
    margin-bottom: 0.6rem;
  }
  .tour-hero__inner h1 {
    font-size: clamp(1.08rem, 4.6vw, 1.48rem);
    line-height: 1.2;
  }
  .tour-hero-cta-row {
    margin-top: 1.55rem;
    max-width: min(16.25rem, 100%);
    gap: 0.32rem;
  }
  .tour-hero-cta-primary {
    padding: 0.48rem 0.8rem;
    min-height: 44px;
    font-size: 9.5px;
    letter-spacing: 0.09em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  }
  .tour-hero-cta-secondary {
    font-size: 10.5px;
    padding: 0.3rem 0.2rem 0.4rem;
  }
  .tour-main > .tour-section {
    padding: var(--tour-section-block-y) 1rem;
  }
  .tour-section h2 {
    font-size: clamp(1.12rem, 4.5vw, 1.35rem);
  }
  body.tour-page footer {
    padding: 1.45rem 1rem;
  }
  .booking-form {
    padding: 1.35rem 0.95rem;
  }
}

/* Tour cards grid in "More private tours" section */
.tour-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1.5rem;
}
.tour-card-simple {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tour-card-simple:hover {
  box-shadow: 0 4px 16px rgba(44, 62, 45, 0.12);
  transform: translateY(-2px);
}
.tour-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--color-bg-warm);
}
.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}
.tour-card-simple h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: var(--color-foreground);
  line-height: 1.3;
}
.tour-card-simple p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 auto;
  flex: 1;
}
.tour-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.tour-card-link:hover {
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .tour-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  .tour-card-img {
    height: 160px;
  }
}

/* Lead intro: homepage #about background.
   Spec → h2: (--tour-spec-bar-pad-block + padding-top) = heading-gap + optional extra below spec.
   Bottom padding matches other blocks via --tour-section-block-y. */
.tour-main > .tour-section:first-child {
  background: #ffffff;
  padding-top: calc(max(0px, calc(var(--tour-section-heading-gap) - var(--tour-spec-bar-pad-block))) + var(--tour-spec-to-about-extra));
  padding-bottom: var(--tour-section-block-y);
}

/* Tour photo gallery strip */
.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0 2.5rem var(--tour-section-block-y);
  max-width: 1280px;
  margin: 0 auto;
}
.tour-gallery__item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-gallery);
}
.tour-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tour-gallery__item img:hover {
  transform: scale(1.04);
}
@media (max-width: 640px) {
  .tour-gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem var(--tour-section-block-y);
  }
  .tour-gallery__item:last-child {
    grid-column: 1 / -1;
  }
}
