:root { color-scheme: dark; font-family: "TTHoves", Arial, sans-serif; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; color: #fff; background: #10120f; }
.tour-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: linear-gradient(90deg, rgba(9,12,8,.88), rgba(9,12,8,.35)), var(--tour-bg) center / cover;
}
.tour-header, .tour-main, .tour-footer { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.tour-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.tour-logo { width: 150px; height: auto; }
.tour-back, .tour-button { color: inherit; text-decoration: none; }
.tour-back { font-size: 15px; }
.tour-main { display: flex; align-items: end; padding: 80px 0; }
.tour-content { max-width: 820px; }
.tour-kicker { margin: 0 0 18px; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 900px; margin: 0 0 24px; font: 500 clamp(44px,7vw,90px)/.95 "Playfair Display", Georgia, serif; }
.tour-summary { max-width: 700px; margin: 0 0 28px; font-size: clamp(18px,2vw,23px); line-height: 1.45; }
.tour-facts, .tour-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.tour-facts { margin-bottom: 34px; }
.tour-fact { padding: 10px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(0,0,0,.22); }
.tour-button { padding: 15px 22px; border-radius: 8px; background: #fff; color: #10120f; font-weight: 600; }
.tour-button--secondary { border: 1px solid rgba(255,255,255,.45); background: rgba(0,0,0,.18); color: #fff; }
.tour-footer { padding: 20px 0 28px; color: rgba(255,255,255,.68); font-size: 14px; }
@media (max-width:640px) {
  .tour-header, .tour-main, .tour-footer { width: min(100% - 28px, 1180px); }
  .tour-logo { width: 120px; }
  .tour-main { padding: 50px 0; }
}
