/* ── SHARED STYLES: all tour subpages & transfers ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     oklch(16% 0.04 245);
  --navy-mid: oklch(26% 0.05 245);
  --gold:     oklch(72% 0.11 78);
  --gold-lt:  oklch(84% 0.09 78);
  --cream:    oklch(96.5% 0.012 82);
  --cream-dk: oklch(91% 0.015 82);
  --white:    oklch(99% 0.005 82);
  --text:     oklch(22% 0.03 245);
  --text-mid: oklch(42% 0.04 245);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 80px; background: var(--navy); }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { position: relative; top: -4px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .brand { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 17px; color: var(--white); letter-spacing: 0.01em; }
.nav-logo-text .sub { font-size: 10px; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: oklch(96% 0.01 82 / 0.65); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { border: 1px solid var(--gold); color: var(--gold) !important; padding: 10px 22px; border-radius: 2px; transition: background 0.2s, color 0.2s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); }
.nav-mobile { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--navy); padding: 24px; flex-direction: column; z-index: 99; border-top: 1px solid oklch(100% 0 0 / 0.08); }
.nav-mobile.open { display: flex; }
.nav-mobile a { display: block; padding: 16px 0; font-size: 15px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--white); border-bottom: 1px solid oklch(100% 0 0 / 0.06); }
.nav-mobile a:last-child { border-bottom: none; color: var(--gold); }

/* TOUR HERO */
.tour-hero { height: 75vh; min-height: 560px; position: relative; display: flex; align-items: flex-end; padding: 0 80px 80px; overflow: hidden; margin-top: 80px; }
.tour-hero-bg { position: absolute; inset: 0; overflow: hidden; }
.tour-hero-placeholder { width: 100%; height: 100%; position: relative; background-size: cover; background-position: center; }
.tour-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, oklch(10% 0.04 240 / 0.95) 0%, oklch(10% 0.04 240 / 0.3) 60%, transparent 100%); }
.tour-hero-content { position: relative; z-index: 1; max-width: 900px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(96% 0.01 82 / 0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: oklch(96% 0.01 82 / 0.2); font-size: 12px; }
.breadcrumb span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.tour-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.tour-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5.5vw, 72px); font-weight: 500; line-height: 1.05; color: var(--white); margin-bottom: 24px; }
.tour-hero-subtitle { font-size: 17px; font-weight: 300; line-height: 1.65; color: oklch(96% 0.01 82 / 0.6); max-width: 580px; }

/* STATS BAR */
.stats-bar { background: var(--navy-mid); border-bottom: 1px solid oklch(100% 0 0 / 0.06); display: flex; justify-content: center; padding: 0 80px; overflow-x: auto; }
.stats-inner { display: flex; min-width: 600px; width: 100%; }
.stat-item { flex: 1; padding: 26px 28px; border-right: 1px solid oklch(100% 0 0 / 0.07); display: flex; align-items: center; gap: 14px; min-width: 120px; }
.stat-item:last-child { border-right: none; }
.stat-icon { color: var(--gold); flex-shrink: 0; }
.stat-label { font-size: 10px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: oklch(96% 0.01 82 / 0.35); margin-bottom: 4px; }
.stat-value { font-size: 13px; font-weight: 400; color: var(--white); }

/* MAIN 2-COL LAYOUT */
.tour-body { display: grid; grid-template-columns: 1fr 360px; gap: 80px; padding: 100px 80px; max-width: 1400px; margin: 0 auto; }
.tour-content {}

/* INTRO */
.tour-intro { font-size: 18px; font-weight: 300; line-height: 1.8; color: var(--text-mid); margin-bottom: 72px; border-left: 2px solid var(--gold); padding-left: 28px; }

/* STOPS */
.stops-label { font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 48px; }
.stop { display: grid; grid-template-columns: 60px 1fr; gap: 0 28px; padding-bottom: 52px; position: relative; }
.stop:last-child { padding-bottom: 0; }
.stop-number-col { display: flex; flex-direction: column; align-items: center; }
.stop-number { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 400; color: var(--gold); flex-shrink: 0; }
.stop-line { width: 1px; flex: 1; background: linear-gradient(to bottom, oklch(72% 0.11 78 / 0.25), transparent); margin-top: 12px; }
.stop:last-child .stop-line { display: none; }
.stop-content { padding-top: 6px; }
.stop-location { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.stop-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; line-height: 1.2; color: var(--navy); margin-bottom: 14px; }
.stop-desc { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--text-mid); margin-bottom: 18px; }
.stop-highlight { display: flex; gap: 12px; align-items: flex-start; background: var(--cream-dk); border-radius: 3px; padding: 14px 18px; margin-bottom: 10px; }
.stop-highlight-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.stop-highlight-text { font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--text); }
.stop-highlight-text strong { font-weight: 500; }
.stop-photo { width: 100%; height: 360px; border-radius: 3px; overflow: hidden; margin-top: 20px; position: relative; }
.stop-photo-inner { width: 100%; height: 100%; background-size: cover; background-position: center; }

/* ADD-ONS */
.addons-section { margin-top: 64px; padding-top: 64px; border-top: 1px solid oklch(22% 0.03 245 / 0.1); }
.addons-title { font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.addon-card { border: 1px solid oklch(22% 0.03 245 / 0.1); border-radius: 3px; padding: 26px; }
.addon-icon { color: var(--gold); margin-bottom: 14px; }
.addon-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.addon-desc { font-size: 13px; font-weight: 300; line-height: 1.65; color: var(--text-mid); }

/* SIDEBAR */
.tour-sidebar { position: sticky; top: 110px; height: fit-content; }
.booking-card { background: var(--navy); border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
.booking-card-header { background: var(--navy-mid); padding: 26px 30px; border-bottom: 1px solid oklch(100% 0 0 / 0.06); }
.booking-card-label { font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: oklch(96% 0.01 82 / 0.35); margin-bottom: 6px; }
.booking-card-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 500; color: var(--white); }
.booking-card-body { padding: 28px 30px; }
.booking-detail { display: flex; justify-content: space-between; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid oklch(100% 0 0 / 0.06); gap: 16px; }
.booking-detail:last-of-type { border-bottom: none; }
.booking-detail-key { font-size: 12px; font-weight: 300; color: oklch(96% 0.01 82 / 0.35); }
.booking-detail-val { font-size: 13px; font-weight: 400; color: var(--white); text-align: right; }
.booking-included { margin-top: 24px; padding-top: 18px; border-top: 1px solid oklch(100% 0 0 / 0.06); }
.booking-included-title { font-size: 10px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: oklch(96% 0.01 82 / 0.3); margin-bottom: 14px; }
.included-list { display: flex; flex-direction: column; gap: 9px; }
.included-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; font-weight: 300; color: oklch(96% 0.01 82 / 0.55); line-height: 1.5; }
.included-item::before { content: ''; display: block; width: 14px; height: 1px; background: var(--gold); margin-top: 9px; flex-shrink: 0; opacity: 0.6; }
.not-included .included-item { color: oklch(96% 0.01 82 / 0.3); }
.not-included .included-item::before { background: oklch(96% 0.01 82 / 0.2); }
.cta-phone-card { background: var(--cream-dk); border-radius: 4px; padding: 26px 30px; text-align: center; }
.cta-phone-card-label { font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 14px; }
.cta-phone-big { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; color: var(--navy); letter-spacing: 0.02em; text-decoration: none; display: block; margin-bottom: 6px; transition: color 0.2s; }
.cta-phone-big:hover { color: var(--gold); }
.cta-phone-note { font-size: 12px; font-weight: 300; color: var(--text-mid); margin-bottom: 22px; }
.btn-call { display: block; width: 100%; background: var(--gold); color: var(--navy); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 16px; border-radius: 2px; text-decoration: none; text-align: center; transition: background 0.2s; }
.btn-call:hover { background: var(--gold-lt); }
.btn-email { display: block; width: 100%; background: transparent; color: var(--navy); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px; border-radius: 2px; text-decoration: none; text-align: center; transition: color 0.2s, border-color 0.2s; border: 1px solid oklch(38% 0.06 245 / 0.35); margin-top: 10px; }
.btn-email:hover { color: var(--gold); border-color: var(--gold); }
.cta-email-label { font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: oklch(96% 0.01 82 / 0.35); margin-top: 24px; margin-bottom: 8px; }
.cta-email { font-size: 16px; font-weight: 400; color: var(--gold); letter-spacing: 0.02em; text-decoration: none; display: block; transition: color 0.2s; }
.cta-email:hover { color: var(--gold-lt); }

/* CONTACT BUTTONS */
.contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-btn { flex: 1; min-width: 110px; display: flex; align-items: center; justify-content: center; padding: 13px 14px; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: opacity 0.2s, background 0.2s, color 0.2s; white-space: nowrap; }
.contact-btn--viber { background: oklch(46% 0.19 293); color: white; }
.contact-btn--viber:hover { opacity: 0.85; }
.contact-btn--whatsapp { background: oklch(52% 0.17 150); color: white; }
.contact-btn--whatsapp:hover { opacity: 0.85; }
.contact-btn--email { background: transparent; color: var(--gold); border: 1px solid oklch(72% 0.11 78 / 0.5); }
.contact-btn--email:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.cta-phone-card .contact-btn--email { color: var(--text); border-color: oklch(38% 0.06 245 / 0.3); }
.cta-phone-card .contact-btn--email:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* MORE TOURS */
.more-tours { background: var(--navy); padding: 100px 80px; }
.more-tours-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.more-tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mini-card { text-decoration: none; display: block; border-radius: 3px; overflow: hidden; position: relative; }
.mini-card-img { height: 390px; position: relative; overflow: hidden; }
.mini-card-placeholder { width: 100%; height: 100%; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); background-size: cover; background-position: center; }
.mini-card:hover .mini-card-placeholder { transform: scale(1.05); }
.mini-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, oklch(10% 0.04 240 / 0.9) 0%, transparent 60%); }
.mini-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.mini-card-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; display: block; }
.mini-card-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; line-height: 1.2; color: var(--white); }

/* FOOTER */
footer { background: oklch(11% 0.03 245); padding: 48px 80px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid oklch(100% 0 0 / 0.05); }
.footer-copy { font-size: 12px; font-weight: 300; color: oklch(96% 0.01 82 / 0.25); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; color: oklch(96% 0.01 82 / 0.25); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* RESPONSIVE */
@media (min-width: 901px) {
  .nav-links a,
  .nav-logo-text .brand,
  .nav-logo-text .sub {
    text-shadow: 0 1px 4px oklch(0% 0 0 / 0.5);
  }
}

@media (max-width: 1100px) {
  .tour-body { grid-template-columns: 1fr; gap: 48px; padding: 80px 48px; }
  .tour-sidebar { position: static; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .more-tours-grid { grid-template-columns: 1fr 1fr; }
  .more-tours-grid .mini-card:nth-child(3) { grid-column: span 2; }
}
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .tour-hero { padding: 0 24px 60px; }
  .tour-hero-title { font-size: clamp(32px, 8vw, 56px); }
  .stats-bar { padding: 0 24px; }
  .tour-body { padding: 60px 24px; gap: 40px; }
  .stop { grid-template-columns: 48px 1fr; gap: 0 20px; } /* ≤600px overrides this to single-col */
  .addons-grid { grid-template-columns: 1fr; }
  .more-tours { padding: 80px 24px; }
  .more-tours-grid { grid-template-columns: 1fr; }
  .more-tours-grid .mini-card:nth-child(3) { grid-column: span 1; }
  footer { flex-direction: column; gap: 24px; padding: 40px 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  .tour-hero-subtitle { font-size: 15px; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 18px 14px; flex-direction: column; gap: 6px; }
  .stop { grid-template-columns: 1fr; gap: 14px 0; }
  .stop-number-col { flex-direction: row; align-items: center; }
  .stop-line { width: auto; height: 1px; flex: 1; margin: 0 0 0 14px; background: linear-gradient(to right, oklch(72% 0.11 78 / 0.25), transparent); }
  .stop:last-child .stop-line { display: block; }
  .stop-content { padding-top: 0; }
  .stop-name { font-size: 20px; }
  .booking-card-body, .booking-card-header { padding: 20px; }
}
