/* Tour detail — brochure layout */
.t-hero { position: relative; min-height: 88svh; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; }
.t-hero .t-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.t-hero .t-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 22s var(--ease) forwards; }
.t-hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,9,6,0.42) 0%, rgba(10,9,6,0.16) 28%, rgba(10,9,6,0.55) 55%, rgba(10,9,6,0.86) 82%, rgba(10,9,6,0.95) 100%); }
.t-hero .country, .t-hero .t-metastrip { text-shadow: 0 2px 20px rgba(10,9,6,0.6); }
.t-hero h1 { text-shadow: 0 2px 40px rgba(10,9,6,0.55), 0 1px 4px rgba(10,9,6,0.4); }
.t-hero-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 0 var(--gutter) clamp(2.5rem,6vw,4.5rem); }
.t-hero .country { color: rgba(244,241,234,0.85); }
.t-hero h1 { color: var(--paper); font-size: clamp(2.6rem,7vw,6rem); margin-top: 1rem; }
.t-hero .t-metastrip { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; margin-top: 1.8rem;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,234,0.92); }
.t-hero .t-metastrip .lbl { display: block; font-size: 0.62rem; opacity: 0.7; margin-bottom: 0.25rem; }
.t-hero .t-metastrip b { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.t-hero .t-metastrip .price b s { color: rgba(244,241,234,0.6); font-size: 0.95rem; margin-left: 0.4rem; }
.t-hero .t-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.t-hero .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.t-hero .btn:hover { background: transparent; color: var(--paper); }

.t-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem,5vw,5rem); align-items: start; }
.t-overview h2 { margin-bottom: 1.2rem; }
.t-overview p { color: var(--ink-2); font-size: 1.08rem; line-height: 1.7; max-width: 60ch; }
.t-facts { position: sticky; top: 90px; border: 1px solid var(--line); padding: 1.8rem; background: var(--card); }
.t-facts h3 { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; color: var(--muted); margin-bottom: 1.2rem; }
.t-facts .fact { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-top: 1px solid var(--line-soft); font-size: 0.92rem; }
.t-facts .fact:first-of-type { border-top: none; }
.t-facts .fact .k { color: var(--muted); }
.t-facts .fact .v { text-align: right; font-weight: 500; }
.t-facts .btn { width: 100%; justify-content: center; margin-top: 1.4rem; }
.avail { display: inline-flex; align-items: center; gap: 0.4rem; }
.avail::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.avail.limited::before { background: var(--orange); }
.avail.sold-out::before { background: #b64a3a; }
.avail.on-request::before { background: var(--accent); }

/* itinerary */
.itin-day { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem,4vw,4rem); align-items: center; padding-block: clamp(2rem,5vw,4rem); border-top: 1px solid var(--line-soft); }
.itin-day.flip .itin-media { order: 2; }
.itin-media { overflow: hidden; aspect-ratio: 4/3; }
.itin-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.itin-day:hover .itin-media img { transform: scale(1.05); }
.itin-num { font-family: var(--serif); font-size: clamp(2.5rem,5vw,4rem); color: var(--line); line-height: 1; }
.itin-body .day-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-ink); margin: 0.8rem 0 0.6rem; }
.itin-body h3 { font-size: clamp(1.6rem,2.6vw,2.2rem); margin-bottom: 0.8rem; }
.itin-body p { color: var(--ink-2); max-width: 46ch; }

.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.incl-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.incl-list li { padding: 0.8rem 0 0.8rem 1.8rem; border-top: 1px solid var(--line-soft); position: relative; color: var(--ink-2); }
.incl-list li::before { position: absolute; left: 0; top: 0.8rem; font-family: var(--serif); }
.incl-list.yes li::before { content: "+"; color: var(--lime); }
.incl-list.no li::before { content: "–"; color: var(--muted); }

.dates-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.date-chip { border: 1px solid var(--line); padding: 0.7rem 1.1rem; font-size: 0.9rem; font-variant-numeric: tabular-nums; }
.date-chip b { font-family: var(--serif); font-weight: 400; }

.t-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.t-gallery a { overflow: hidden; aspect-ratio: 1/1; }
.t-gallery a:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.t-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.t-gallery a:hover img { transform: scale(1.06); }

.faq-item { border-top: 1px solid var(--line-soft); }
.faq-item summary { padding: 1.3rem 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  font-family: var(--serif); font-size: clamp(1.15rem,1.8vw,1.4rem); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { transition: transform .3s var(--ease); color: var(--muted); }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-item p { color: var(--ink-2); padding-bottom: 1.3rem; max-width: 62ch; margin: 0; }

/* sticky mobile inquire */
.t-sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--ink); color: var(--paper);
  display: none; align-items: center; justify-content: space-between; padding: 0.8rem var(--gutter); gap: 1rem; }
.t-sticky .p { font-family: var(--serif); font-size: 1.05rem; max-width: 60vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-sticky .p small { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }

/* print-only brochure header/footer */
.print-head { padding: 0 0 0.6rem; border-bottom: 2px solid #000; margin-bottom: 1rem; }
.print-head .ph-brand { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; }
.print-head h1 { font-family: var(--serif); font-size: 2rem; margin: 0.5rem 0 0.3rem; }
.print-head .ph-sub { font-size: 0.85rem; color: #333; letter-spacing: 0.02em; }
.print-head .ph-price { font-family: var(--serif); font-size: 1.2rem; margin-top: 0.4rem; }
.print-foot { margin-top: 1.2rem; padding-top: 0.8rem; border-top: 1px solid #000; font-size: 0.8rem; }
.print-foot .ph-note { color: #444; margin-top: 0.4rem; font-size: 0.72rem; }

@media print {
  .t-hero { min-height: auto !important; color: #000 !important; display: block; padding: 0; overflow: visible; }
  .t-hero .t-media, .t-hero::after { display: none !important; }
  .t-hero-inner { padding: 0 !important; }
  .t-hero h1, .t-hero .country, .t-hero .t-metastrip { display: none !important; }
  .t-actions, .t-sticky, .btn, .link-arrow, .t-gallery { display: none !important; }
  .t-layout { display: block !important; }
  .t-facts { position: static !important; border: 1px solid #999; padding: 0.8rem 1rem; margin-top: 1rem; page-break-inside: avoid; }
  .t-overview p { max-width: none; font-size: 0.95rem; }
  .itin-day, .itin-day.flip { display: block !important; padding: 0.5rem 0 !important; border-top: 1px solid #ccc; page-break-inside: avoid; }
  .itin-media { display: none !important; }
  .itin-num { font-size: 1.4rem; color: #999; }
  .itin-body h3 { font-size: 1.1rem; }
  .itin-body p { max-width: none; font-size: 0.9rem; }
  .incl-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .faq-item summary .pm { display: none; }
  .faq-item p { display: block !important; }
  .section.dark { background: #fff !important; }
}

@media (max-width: 900px) {
  .t-layout { grid-template-columns: 1fr; }
  .t-facts { position: static; }
  .itin-day, .itin-day.flip { grid-template-columns: 1fr; }
  .itin-day.flip .itin-media { order: 0; }
  .incl-grid { grid-template-columns: 1fr; }
  .t-gallery { grid-template-columns: repeat(2, 1fr); }
  .t-gallery a:first-child { grid-column: span 2; grid-row: auto; }
  .t-sticky { display: flex; }
  body { padding-bottom: 64px; }
}
