/* ═══════════ BOSS TOURS · tour detail page ═══════════ */
.tour-body{background:var(--navy);min-height:100vh}

/* top bar */
.tbar{
  position:sticky;top:0;z-index:50;display:flex;align-items:center;gap:1.2rem;
  padding:.9rem clamp(1.1rem,4vw,2.6rem);
  background:rgba(9,18,30,.82);backdrop-filter:blur(16px) saturate(1.3);
  border-bottom:1px solid rgba(212,175,55,.18);
}
.tbar .brand{display:flex;align-items:center;gap:.6rem;margin-right:auto}
.tbar .brand-crown{width:30px}
.tbar .brand-word{font-family:var(--serif);font-size:1.5rem;font-weight:700;color:var(--brand-blue);letter-spacing:.04em}
.tback{
  display:inline-flex;align-items:center;gap:.5rem;font-size:.82rem;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--mist);border:1px solid var(--line);border-radius:2px;padding:.6em 1.1em;
  transition:.35s;
}
.tback:hover{border-color:var(--gold);color:var(--gold-light);background:rgba(212,175,55,.06)}
.tbar-book{padding:.65em 1.3em;font-size:.75rem}

/* hero */
.thero{position:relative;height:min(64vh,620px);min-height:420px;overflow:hidden;display:flex;align-items:flex-end}
.thero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.thero-veil{position:absolute;inset:0;background:linear-gradient(180deg,rgba(6,15,26,.35) 0%,transparent 30%,rgba(6,15,26,.4) 60%,var(--navy) 100%)}
.thero-in{position:relative;width:min(1140px,92vw);margin:0 auto;padding:0 0 clamp(2rem,5vw,3.4rem)}
.thero-ka{font-family:var(--ka);color:var(--gold-light);letter-spacing:.3em;text-transform:uppercase;font-size:.82rem;margin-bottom:.7rem}
.thero h1{font-family:var(--serif);font-weight:600;color:#fff;font-size:clamp(2.2rem,5.4vw,4.2rem);line-height:1.12;text-shadow:0 6px 40px rgba(0,0,0,.5)}
.thero p{margin-top:.9rem;max-width:640px;color:#fff;font-size:clamp(1.02rem,1.7vw,1.28rem);text-shadow:0 2px 16px rgba(0,0,0,.7)}
.thero-facts{display:flex;flex-wrap:wrap;gap:.7rem 1.6rem;margin-top:1.4rem;font-size:.86rem;color:var(--mist);letter-spacing:.03em}
.thero-facts span{display:inline-flex;align-items:center;gap:.5rem}
.thero-facts b{color:var(--gold-light);font-weight:600}

/* layout */
.twrap{width:min(1140px,92vw);margin:0 auto;padding:clamp(2.6rem,6vw,4.5rem) 0}
.tcols{display:grid;grid-template-columns:1.6fr 1fr;gap:clamp(2rem,4vw,3.4rem);align-items:start}
.tblock{margin-bottom:clamp(2.2rem,4.5vw,3.4rem)}
.tblock:last-child{margin-bottom:0}
.tblock h2{font-family:var(--serif);font-size:clamp(1.6rem,2.6vw,2.1rem);color:#fff;margin-bottom:1.1rem}
.tblock h2 em{font-style:italic;background:var(--gold-grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.teyebrow{font-size:.8rem;letter-spacing:.26em;text-transform:uppercase;color:var(--gold-light);font-weight:600;display:flex;align-items:center;gap:12px;margin-bottom:.7rem}
.teyebrow::before{content:"";width:34px;height:1px;background:var(--gold-grad)}
.tblock p{color:var(--mist);font-size:1.05rem;line-height:1.7;margin-bottom:1rem}
.tblock p:last-child{margin-bottom:0}

/* highlights */
.thl{list-style:none;display:grid;gap:.85rem}
.thl li{position:relative;padding-left:2rem;color:var(--mist);font-size:1.02rem;line-height:1.5}
.thl li::before{content:"★";position:absolute;left:0;top:.05em;color:var(--gold);font-size:.85rem}

/* includes */
.tinc{list-style:none;display:grid;gap:.6rem}
.tinc li{position:relative;padding-left:1.9rem;color:var(--mist);font-size:1rem}
.tinc li.yes::before{content:"✓";position:absolute;left:0;color:#48c78e;font-weight:700}
.tinc li.no::before{content:"✕";position:absolute;left:0;color:#e06666;font-weight:700}

/* itinerary timeline */
.titin{position:relative;padding-left:2rem}
.titin::before{content:"";position:absolute;left:7px;top:6px;bottom:6px;width:2px;background:linear-gradient(var(--gold),rgba(212,175,55,.15))}
.tstop{position:relative;padding-bottom:1.6rem}
.tstop:last-child{padding-bottom:0}
.tstop::before{content:"";position:absolute;left:-2rem;top:3px;width:16px;height:16px;border-radius:50%;background:var(--navy);border:2px solid var(--gold);box-shadow:0 0 0 4px rgba(212,175,55,.12)}
.tstop.ride::before{background:var(--gold);border-color:var(--gold)}
.tstop h4{font-family:var(--serif);font-size:1.2rem;color:#fff;margin-bottom:.25rem}
.tstop .tstop-meta{font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;color:var(--teal-soft);font-weight:600;margin-bottom:.3rem}
.tstop p{font-size:.95rem;color:var(--mist-dim);line-height:1.55;margin:0}

/* photo gallery */
.tgallery{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-flow:dense;gap:.8rem}
.tgallery figure{margin:0;border-radius:6px;overflow:hidden;aspect-ratio:4/3;position:relative}
.tgallery figure.wide{grid-column:span 2;aspect-ratio:16/9}
.tgallery img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.tgallery figure:hover img{transform:scale(1.08)}
@media (max-width:760px){.tgallery{grid-template-columns:repeat(2,1fr)}}
@media (max-width:420px){.tgallery{gap:.6rem}}

/* video block */
.tvideo{width:min(360px,100%);border-radius:10px;overflow:hidden;box-shadow:0 18px 50px rgba(0,0,0,.4);border:1px solid rgba(212,175,55,.18)}
.tvideo video{display:block;width:100%;height:auto;aspect-ratio:9/16;background:#000}

/* aside card */
.taside{position:sticky;top:88px;display:flex;flex-direction:column;gap:1.2rem}
.tcard{
  background:linear-gradient(180deg,var(--navy-800),var(--navy-950));
  border:1px solid rgba(212,175,55,.2);border-radius:6px;padding:1.6rem 1.5rem;
}
.tcard h3{font-family:var(--serif);font-size:1.35rem;color:#fff;margin-bottom:.9rem}
.tprice{display:flex;align-items:baseline;gap:.5rem;margin:0 0 1.1rem;padding-bottom:1.1rem;border-bottom:1px solid rgba(212,175,55,.25)}
.tprice-num{font-family:var(--serif);font-size:2.1rem;font-weight:700;background:linear-gradient(135deg,#F6E27A,#D4AF37);-webkit-background-clip:text;background-clip:text;color:transparent}
.tprice-cap{font-size:.82rem;color:var(--mist-dim)}
.tcard .tfact{display:flex;justify-content:space-between;gap:1rem;padding:.55rem 0;border-bottom:1px solid rgba(248,249,251,.08);font-size:.92rem}
.tcard .tfact:last-of-type{border-bottom:0}
.tcard .tfact span:first-child{color:var(--mist-dim)}
.tcard .tfact span:last-child{color:#fff;font-weight:600;text-align:right}
.tcard .btn{width:100%;margin-top:1.1rem;min-height:44px;font-size:.92rem}
.tcard .tprivate-btn{font-size:.85rem;padding:.85em 1.4em}
.tpay{margin-top:1.1rem}
/* real button, not a muted footnote link: a client couldn't tell this was
   clickable at all before, so it now matches the weight of the other two
   CTAs in the card, just in a different color so online payment reads as
   its own distinct action rather than a variant of "Book now" */
.tpay-toggle{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;min-height:44px;padding:.85em 1.4em;
  background:linear-gradient(120deg,var(--brand-blue),var(--teal));border:0;border-radius:3px;cursor:pointer;font:inherit;
  font-size:.85rem;font-weight:700;letter-spacing:.02em;color:#fff;transition:filter .2s,transform .2s;box-shadow:0 8px 22px rgba(46,111,142,.35)}
.tpay-toggle:hover{filter:brightness(1.08)}
.tpay-toggle:active{transform:scale(.98)}
.tpay-chev{width:15px;height:15px;flex:none;transition:transform .25s}
.tpay-toggle.open .tpay-chev{transform:rotate(180deg)}
.tpay-body{padding-top:.9rem}
.tpay-prefields{display:flex;flex-wrap:wrap;gap:.7rem;margin-bottom:.9rem}
.tpay-prefields[hidden]{display:none}
.tpay-prefields .bf-field{flex:1 1 110px;margin-bottom:0}
.tpay-prefields .bf-field>span{font-size:.8rem;color:var(--mist-dim)}
.tpay-prefields .bf-field input,.tpay-prefields .bf-field select{width:100%;padding:.55em .7em;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.14);border-radius:8px;color:#f4f7fb;font:inherit;font-size:16px;color-scheme:dark}
.tpay-prefields .bf-field input:focus,.tpay-prefields .bf-field select:focus{outline:none;border-color:var(--gold)}
.tpay-amount{font-size:.9rem;color:var(--mist);text-align:center;margin-bottom:.9rem}
.tpay-amount b{color:var(--gold-light);font-weight:700;white-space:nowrap}
.tpay-fee{display:block;margin-top:.25rem;font-size:.8rem;color:var(--mist-dim)}
#paypal-button-container{min-height:45px}
.tpay-note{margin-top:.8rem;font-size:.86rem;color:var(--gold-light);text-align:center}
.tpay-note.tpay-err{color:var(--mist-dim)}
.tpay-legal{margin-top:.7rem;font-size:.8rem;line-height:1.6;color:var(--mist-dim);text-align:center}
.tpay-legal a{color:var(--gold-light);text-decoration:underline;display:inline-block;padding:.3em 0}

/* contact block */
.tcontact{
  background:linear-gradient(140deg,var(--navy-950),var(--navy-700));
  border:1px solid rgba(212,175,55,.22);border-radius:6px;padding:1.5rem 1.5rem 1.7rem;text-align:center;
}
.tcontact h3{font-family:var(--serif);font-size:1.3rem;color:#fff;margin-bottom:.4rem}
.tcontact p{font-size:.9rem;color:var(--mist-dim);margin-bottom:1.1rem}
.tcontact-row{display:grid;grid-template-columns:repeat(4,1fr);gap:.6rem}
.tsoc{
  display:flex;align-items:center;justify-content:center;height:46px;border-radius:4px;
  background:rgba(248,249,251,.05);border:1px solid rgba(212,175,55,.25);color:#fff;transition:.35s;
}
.tsoc svg{width:20px;height:20px}
.tsoc:hover{transform:translateY(-2px)}
.tsoc.tg:hover{background:#2aabee;border-color:#2aabee}
.tsoc.ig:hover{background:linear-gradient(45deg,#f09433,#dc2743,#bc1888);border-color:#dc2743}
.tsoc.wa:hover{background:#25a56f;border-color:#25a56f}
.tsoc.ml:hover{background:var(--gold);border-color:var(--gold);color:var(--navy-950)}
.tcontact-phone{display:block;margin-top:.9rem;color:var(--gold-light);font-weight:600;letter-spacing:.04em}

/* footer */
.tfoot{border-top:1px solid rgba(212,175,55,.14);background:var(--navy-950);padding:2.4rem 0}
.tfoot-in{width:min(1140px,92vw);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:1.2rem;flex-wrap:wrap}
.tfoot-in .foot-tag{font-family:var(--serif);font-style:italic;color:var(--gold);margin:0}
.tfoot-legal{font-size:.76rem;color:rgba(248,250,252,.42);margin:.45rem 0 0;line-height:1.5}
.tfoot-links{font-size:.8rem;margin:.5rem 0 0;color:var(--mist-dim)}
.tfoot-links a{color:var(--mist-dim);transition:color .3s}
.tfoot-links a:hover{color:var(--gold-light)}
.tfoot-in .tback{border-color:var(--line)}

@media (max-width:820px){
  .tcols{grid-template-columns:1fr}
  .taside{position:static}
  .tbar-book{display:none}
  .tcontact-row{grid-template-columns:repeat(4,1fr)}
}
@media (max-width:520px){
  .tbar .brand-word{font-size:1.25rem}
  .thero-facts{gap:.5rem 1.1rem;font-size:.8rem}
}
@media (max-width:400px){
  /* тесно на маленьких экранах, особенно на грузинском (более длинные подписи):
     сжимаем шапку так, чтобы не было горизонтальной прокрутки */
  .tbar{gap:.5rem;padding:.8rem 1rem}
  .tback{padding:.5em .7em;font-size:.72rem;gap:.3rem}
  .lang-globe-btn{padding:.35rem .5rem;gap:.25rem}
  .lang-globe-chev{display:none}
}
