/* ==========================================================================
   MyPrivateTours — Common (all pages)
   ========================================================================== */

/* ============================================================
   PRELOADER
   ============================================================ */
body.hp.is-loading { overflow: hidden; }
body.hp.is-loading main, body.hp.is-loading .hp-footer, body.hp.is-loading .hp-whatsapp { opacity: 0; }
body.hp main, body.hp .hp-footer, body.hp .hp-whatsapp { transition: opacity .5s ease; }

.hp-preload {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--mpt-cream); color: var(--mpt-ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  transition: opacity .5s ease, visibility .5s;
}
body.hp:not(.is-loading) .hp-preload { opacity: 0; visibility: hidden; pointer-events: none; }

.hp-preload__mark {
  width: 300px; height: 46px; max-width: 72vw;
  background-color: var(--mpt-ink);
  -webkit-mask: url(https://myprivatetours.com/wp-content/uploads/2026/06/MPT.svg) center/cover no-repeat;
          mask: url(https://myprivatetours.com/wp-content/uploads/2026/06/MPT.svg) center/cover no-repeat;
  animation: preloadPulse 1.6s ease-in-out infinite;
}
@keyframes preloadPulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.08); opacity: 1; } }

.hp-preload__wordmark {
  font-family: var(--font-sans); font-weight: 900; font-size: 22px; letter-spacing: -.02em;
}
.hp-preload__wordmark em {
  font-family: var(--font-serif); font-weight: 400; color: var(--mpt-orange);
}

.hp-preload__bar {
  width: 180px; height: 2px; background: rgba(37,37,37,.1); border-radius: 2px; overflow: hidden;
}
.hp-preload__bar span {
  display: block; height: 100%; width: 40%; background: var(--mpt-orange);
  animation: preloadSlide 1.2s ease-in-out infinite;
}
@keyframes preloadSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ============================================================
   §01 NAV + MOBILE NAV
   ============================================================ */

body.hp { background: var(--mpt-off); color: var(--mpt-ink); }

/* Utility top bar */
.hp-nav__top { background: var(--mpt-ink); color: var(--mpt-off); font-size: 12px; letter-spacing: .02em; }
.hp-nav__top-inner { max-width: var(--container-max); margin: 0 auto; padding: 8px 40px; display: flex; justify-content: flex-end; gap: 18px; align-items: center; }
.hp-util { display: inline-flex; align-items: center; gap: 6px; opacity: .85; font-weight: 600; font-size: 12px; }
.hp-util:hover { opacity: 1; }
.hp-util--pill { background: var(--mpt-orange); color: #fff; padding: 6px 14px; border-radius: var(--r-pill); opacity: 1; font-weight: 800; letter-spacing: .02em; }
.hp-util--pill:hover { background: #CB5530; }

/* Primary row */
.hp-nav { position: sticky; top: 0; z-index: 100; background: var(--mpt-off); border-bottom: 1px solid rgba(37, 37, 37, .06); transition: box-shadow .2s ease, background .2s ease; }
.hp-nav.is-stuck { box-shadow: 0 8px 32px rgba(0,0,0,.08); background: rgba(248,248,248,.92); backdrop-filter: blur(10px); }
.hp-nav__primary { position: relative; }
.hp-nav__has-mega { position: static; }
.hp-nav__primary-inner { max-width: var(--container-max); margin: 0 auto; padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.hp-logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hp-logo .hp-logo__mark {
  display: inline-block;
  -webkit-mask: none !important;
          mask: none !important;
  background-color: transparent !important;
  background-image: url(https://myprivatetours.com/wp-content/uploads/2026/06/MPT-scaled.png) !important;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 210px;
  height: 34px;
}
.hp-logo__wordmark { font-weight: 900; font-size: 18px; letter-spacing: -.02em; color: var(--mpt-ink); }
.hp-logo__wordmark em { font-family: var(--font-serif); font-weight: 400; }

.hp-nav__items ul { display: flex; gap: 28px; align-items: center; }
.hp-nav__items li { position: static; }
.hp-nav__items a, .hp-nav__items button { font-size: 14px; font-weight: 700; color: var(--mpt-ink); padding: 8px 4px; display: inline-flex; align-items: center; gap: 4px; transition: color .15s ease; }
.hp-nav__items a:hover, .hp-nav__items button:hover { color: var(--mpt-orange); }
.hp-nav__items button { cursor: pointer; }

/* Mega menu */
.hp-mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px); width: 1200px; max-width: calc(100vw - 40px); background: var(--mpt-off); border: 1px solid rgba(37,37,37,.08); border-radius: var(--r-lg); box-shadow: 0 24px 60px rgba(0,0,0,.14); padding: 36px; opacity: 0; visibility: hidden; transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s; z-index: 50; box-sizing: border-box; overflow: hidden; }
.hp-nav__has-mega.is-open > .hp-mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hp-mega__layout { display: grid; grid-template-columns: 210px 1fr; gap: 34px; overflow: visible; }
.hp-mega__sidebar { border-right: 1px solid rgba(37,37,37,.08); padding-right: 24px; }
.hp-mega__sidebar ul { display: flex; flex-direction: column; gap: 1px; }
.hp-mega__sidebar a { display: block; padding: 8px 10px; font-size: 17px; font-weight: 600; color: var(--mpt-ink); border-radius: var(--r-sm); transition: background .15s, color .15s; }
.hp-mega__sidebar a:hover, .hp-mega__sidebar a.is-active { background: var(--mpt-orange-soft); color: var(--mpt-orange); }
.hp-mega__main { min-width: 0; overflow: visible; }
.hp-mega__heading { font-size: 13px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--mpt-ink); opacity: .7; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 19px; }
.hp-mega__dot { width: 7px; height: 7px; background: var(--mpt-orange); border-radius: 50%; }
.hp-mega__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.hp-mega__tile { display: flex; flex-direction: column; gap: 0; padding: 0; border-radius: var(--r-md); transition: background .15s; overflow: hidden; }
.hp-mega__tile:hover { background: var(--mpt-orange-soft); }
.hp-mega__tile-img { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--r-md) var(--r-md) 0 0; background: var(--mpt-beige) center/cover; flex-shrink: 0; display: block; }
.hp-mega__tile-text { padding: 10px 10px 12px; }
.hp-mega__tile-text strong { display: block; font-size: 14px; font-weight: 800; color: var(--mpt-ink); margin-bottom: 3px; }
.hp-mega__tile-text span { font-size: 12px; color: var(--mpt-ink); opacity: .6; font-weight: 600; }

/* Hamburger */
.hp-hamburger { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; padding: 4px; }
.hp-hamburger span { display: block; width: 100%; height: 2px; background: var(--mpt-ink); border-radius: 2px; transition: transform .2s; }
.hp-nav.is-open .hp-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hp-nav.is-open .hp-hamburger span:nth-child(2) { opacity: 0; }
.hp-nav.is-open .hp-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.hp-mobile-nav { position: fixed; top: 0; right: 0; width: 92vw; max-width: 420px; height: 100vh; background: var(--mpt-off); z-index: 200; padding: 24px; transform: translateX(100%); transition: transform .25s var(--ease-out); overflow-y: auto; }
.hp-mobile-nav.is-open { transform: translateX(0); }
.hp-mobile-nav__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.hp-mobile-nav__close { font-size: 32px; line-height: 1; color: var(--mpt-ink); }
.hp-mobile-nav__list { display: flex; flex-direction: column; gap: 2px; }
.hp-mobile-nav__list > li > a, .hp-mobile-nav__list > li > button { display: flex; width: 100%; padding: 14px 12px; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 700; color: var(--mpt-ink); border-radius: var(--r-sm); }
.hp-mobile-nav__list > li > a:hover, .hp-mobile-nav__list > li > button:hover { background: var(--mpt-orange-soft); color: var(--mpt-orange); }
.hp-mobile-nav__sub { display: none; padding: 6px 12px 12px 28px; flex-direction: column; gap: 6px; }
.hp-mobile-nav__list > li.is-open .hp-mobile-nav__sub { display: flex; }
.hp-mobile-nav__sub a { font-size: 14px; padding: 6px 0; color: var(--mpt-ink); opacity: .75; }
.hp-mobile-nav__backdrop { position: fixed; inset: 0; background: rgba(37,37,37,.5); opacity: 0; visibility: hidden; z-index: 150; transition: opacity .2s, visibility .2s; }
.hp-mobile-nav__backdrop.is-open { opacity: 1; visibility: visible; }

/* Mega menu responsive — prevent tile clipping at narrower viewports */
/* ── Mega menu responsive breakpoints (largest → smallest) ── */

/* 1600–1919px: 4 cols, slightly tighter */
@media (max-width: 1919px) {
  .hp-mega { width: min(1200px, calc(100vw - 40px)); }
  .hp-mega__grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}

/* 1440–1599px: 4 cols, compact */
@media (max-width: 1599px) {
  .hp-mega { width: min(1060px, calc(100vw - 40px)); padding: 28px; }
  .hp-mega__layout { grid-template-columns: 190px 1fr; gap: 22px; }
  .hp-mega__grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .hp-mega__sidebar a { font-size: 15px; }
}

/* 1280–1439px (1366×768, 1280×800, 1440×900): 3 cols — 4th wraps to next row */
@media (max-width: 1439px) {
  .hp-mega { width: min(900px, calc(100vw - 32px)); padding: 22px; }
  .hp-mega__layout { grid-template-columns: 170px 1fr; gap: 18px; }
  .hp-mega__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hp-mega__sidebar a { font-size: 14px; padding: 6px 8px; }
  .hp-mega__tile-text strong { font-size: 13px; }
  .hp-mega__tile-text span { font-size: 11px; }
}

/* ≤1024px: 3 cols, smaller sidebar */
@media (max-width: 1024px) {
  .hp-mega { width: min(860px, calc(100vw - 24px)); padding: 20px; }
  .hp-mega__layout { grid-template-columns: 155px 1fr; gap: 16px; }
  .hp-mega__grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hp-mega__sidebar a { font-size: 13px; padding: 5px 8px; }
}

@media (max-width: 960px) {
  .hp-nav__items, .hp-nav__top-inner .hp-util:nth-child(2) { display: none; }
  .hp-hamburger { display: inline-flex; }
}

/* WhatsApp float */
.hp-whatsapp { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--mpt-cream); color: var(--mpt-ink); display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--mpt-orange); box-shadow: 0 10px 30px rgba(0,0,0,.14); z-index: 80; transition: transform .2s; }
.hp-whatsapp:hover { transform: scale(1.06); }
.single-tours .hp-whatsapp {bottom: 100px;}
/* ============================================================
   Shared typographic utilities
   ============================================================ */
.hp-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--mpt-ink); opacity: .6; display: inline-flex; align-items: center; gap: 12px; }
.hp-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--mpt-orange); display: inline-block; }
.hp-eyebrow--centered { display: flex; justify-content: center; text-align: left; }
.hp-eyebrow--centered::before { display: inline-block; width: 34px; margin: 0; }

.hp-btn { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; border-radius: var(--r-pill); padding: 10px 30px; transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s; }
.hp-btn--primary { background: var(--mpt-orange); color: #fff; box-shadow: 0 14px 36px rgba(224,101,60,.3); }
.hp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(224,101,60,.4); background: #CB5530; }
.hp-btn--primary:active { transform: translateY(0) scale(.98); }
.hp-btn--ghost { background: transparent; color: var(--mpt-ink); border: 1.5px solid var(--mpt-ink); }
.hp-btn--ghost:hover { background: var(--mpt-ink); color: #fff; }

.hp-tour-card { background: var(--mpt-off); border-radius: var(--r-lg); overflow: hidden; position: relative; transition: transform .26s var(--ease-out), box-shadow .26s var(--ease-out); display: block; }
.hp-tour-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(37,37,37,.12); }
.hp-tour-card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r-md); }
.hp-tour-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .36s var(--ease-out); }
.hp-tour-card:hover .hp-tour-card__img img { transform: scale(1.04); }
.hp-tour-card__chip { position: absolute; top: 14px; left: 14px; background: var(--mpt-orange); color: #fff; padding: 5px 12px; border-radius: var(--r-pill); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; z-index: 2; }
.hp-tour-card__body { padding: 18px 20px 22px; }
.hp-tour-card h3 { font-weight: 800; font-size: 17px; line-height: 1.3; letter-spacing: -.01em; margin-bottom: 6px; }
.hp-tour-card__meta { display: flex; gap: 14px; align-items: center; font-size: 12px; font-weight: 700; opacity: .7; margin-bottom: 8px; }
.hp-tour-card__meta .star { color: var(--mpt-orange); }
.hp-tour-card__price { font-size: 13px; font-weight: 800; }
.hp-tour-card__price small { font-weight: 600; opacity: .6; margin-left: 4px; font-size: 11px; }
.hp-tour-card__link { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 800; color: var(--mpt-orange); letter-spacing: .05em; text-transform: uppercase; opacity: 0; transition: opacity .2s; }
.hp-tour-card:hover .hp-tour-card__link { opacity: 1; }


/* SHARED: FAQ accordion (tour, contact, faq page) ================== */
/* ============================================================
   FAQ — accordion
   ============================================================ */
.hp-faq__item {
  border-bottom: 1px solid rgba(37, 37, 37, .1);
}
.hp-faq__item:first-child { border-top: 1px solid rgba(37, 37, 37, .1); }
.hp-faq__q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: 16px; font-weight: 800; letter-spacing: -.005em;
  color: var(--mpt-ink);
  background: none; border: 0; cursor: pointer; text-align: left;
}
.hp-faq__icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-left: 16px;
}
.hp-faq__icon::before,
.hp-faq__icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  background: var(--mpt-orange);
  transition: transform .25s var(--ease-out), opacity .25s;
}
.hp-faq__icon::before {
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.hp-faq__icon::after {
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.hp-faq__item.is-open .hp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.hp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.hp-faq__a-inner {
  padding: 0 0 22px;
  font-size: 14.5px; line-height: 1.65; opacity: .82;
  max-width: 760px;
}


/* SHARED: Richtext WYSIWYG defaults ================================ */
/* ============================================================
   RICHTEXT — safe defaults for WYSIWYG output
   Anywhere CKEditor / TinyMCE content drops in, wrap with .hp-richtext.
   Provides paragraph rhythm, list bullets, link styling, headings, quotes.
   ============================================================ */
.hp-richtext {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mpt-ink);
  opacity: .88;
  max-width: 760px;
}
.hp-richtext > * + * { margin-top: 14px; }
.hp-richtext p { font-size: 15px; line-height: 1.7; }
.hp-richtext strong { font-weight: 800; opacity: 1; }
.hp-richtext em { font-style: italic; }
.hp-richtext a {
  color: var(--mpt-orange);
  border-bottom: 1px solid rgba(224, 101, 60, .35);
  padding-bottom: 1px;
  transition: border-color .15s, opacity .15s;
}
.hp-richtext a:hover { border-bottom-color: var(--mpt-orange); }
.hp-richtext h2,
.hp-richtext h3,
.hp-richtext h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--mpt-ink);
  margin-top: 22px;
}
.hp-richtext h2 { font-size: 22px; }
.hp-richtext h3 { font-size: 18px; }
.hp-richtext h4 { font-size: 16px; }
.hp-richtext ul,
.hp-richtext ol {
  padding-left: 22px;
  margin-top: 12px;
}
.hp-richtext ul { list-style: none; }
.hp-richtext ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
}
.hp-richtext ul li::before {
  content: "";
  position: absolute;
  left: -8px; top: 12px;
  width: 5px; height: 5px;
  background: var(--mpt-orange);
  border-radius: 50%;
}
.hp-richtext ol { list-style: decimal; }
.hp-richtext ol li {
  margin-bottom: 8px;
  padding-left: 6px;
}
.hp-richtext ol li::marker {
  color: var(--mpt-orange);
  font-weight: 800;
}
.hp-richtext blockquote {
  border-left: 3px solid var(--mpt-orange);
  padding: 4px 0 4px 18px;
  margin: 18px 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--mpt-ink);
  opacity: .9;
}
.hp-richtext img {
  border-radius: var(--r-md);
  margin: 18px 0;
}
.hp-richtext hr {
  border: 0;
  border-top: 1px solid rgba(37, 37, 37, .1);
  margin: 24px 0;
}

/* ============================================================
   §13 FOOTER
   ============================================================ */
.hp-footer { background: #242424; color: rgba(255,255,255,.85); }

/* Global mark — kept for use elsewhere (preloader, inspire section etc.) */
.hp-footer__mark { background-color: var(--mpt-sand); width: clamp(320px, 52vw, 560px); height: clamp(36px, 6vw, 60px); }

/* Legacy top block — hidden now that logo lives in the desc column */
.hp-footer__top { display: none; }
.hp-footer__tag  { display: none; }

/* ── GRID: desc col (40%) + 4 nav cols (15% each) ── */
.hp-footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 15% 15% 15% 15%;
  gap: 0 40px;
  padding: 48px 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hp-footer__grid .hp-footer__col-heading { font-size: 11px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--mpt-sand); margin-bottom: 16px; }
.hp-footer__grid ul { display: flex; flex-direction: column; gap: 8px; }
.hp-footer__grid a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); transition: color .15s; }
.hp-footer__grid a:hover { color: var(--mpt-sand); }

/* ── DESCRIPTION COLUMN (leftmost) ── */
.hp-footer__desc-col {
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
}

/* Logo mark inside desc-col — overrides the large global .hp-footer__mark */
.hp-footer__mark--sm {
  display: block !important;
  width: 200px !important;
  height: 23px !important;
  background-color: var(--mpt-sand) !important;
  -webkit-mask-size: contain !important;
          mask-size: contain !important;
  -webkit-mask-position: left center !important;
          mask-position: left center !important;
}
.hp-footer__desc-logo {
  margin-bottom: 20px;
  line-height: 0;
}

/* Company reg / tagline text */
.hp-footer__desc-text { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,.75); }
.hp-footer__desc-text p { margin: 0 0 6px; }
.hp-footer__desc-text p:last-child { margin-bottom: 0; }
.hp-footer__desc-text strong { color: rgba(255,255,255,.75); font-weight: 700; }
.hp-footer__desc-text a { color: rgba(255,255,255,.75); transition: color .15s; }
.hp-footer__desc-text a:hover { color: var(--mpt-sand); }

/* ── BOTTOM BAR ── */
.hp-footer__bottom { max-width: var(--container-max); margin: 0 auto; padding: 24px 40px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 12px; opacity: .7; }
.hp-footer__socials { display: flex; gap: 10px; }
.hp-footer__socials a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; letter-spacing: .05em; color: rgba(255,255,255,.8); }
.hp-footer__socials a:hover { border-color: var(--mpt-sand); color: var(--mpt-sand); }
.hp-footer__contact a { font-weight: 700; color: rgba(255,255,255,.85); }
.hp-footer__legal { display: flex; gap: 20px; align-items: center; }
.hp-footer__legal em { font-family: var(--font-serif); color: var(--mpt-sand); opacity: .85; }

/* ── RESPONSIVE ── */
/* Tablet: desc full-width, logo + text side by side, 3-col nav below */
@media (max-width: 1024px) {
  .hp-footer__grid { grid-template-columns: repeat(3,1fr); gap: 40px 32px; padding: 40px 32px; }
  .hp-footer__desc-col { grid-column: 1/-1; padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 32px; flex-direction: row; gap: 28px; align-items: flex-start; }
  .hp-footer__desc-logo { flex-shrink: 0; margin-bottom: 0; }
  .hp-footer__mark--sm { width: 160px !important; height: 18px !important; }
  .hp-footer__bottom { padding: 20px 32px; }
}
/* Tablet narrow: stack desc back to column, 2-col nav */
@media (max-width: 768px) {
  .hp-footer__grid { grid-template-columns: repeat(2,1fr); gap: 32px 24px; padding: 36px 24px; }
  .hp-footer__desc-col { flex-direction: column; gap: 0; }
  .hp-footer__desc-logo { margin-bottom: 16px; }
  .hp-footer__bottom { padding: 20px 24px; flex-direction: column; text-align: center; gap: 14px; }
}
/* Mobile: single column */
@media (max-width: 480px) {
  .hp-footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 32px 20px; }
  .hp-footer__desc-col { padding-bottom: 24px; }
  .hp-footer__mark--sm { width: 140px !important; height: 16px !important; }
  .hp-footer__bottom { padding: 18px 20px; }
}

/* ============================================================
   SECTION-REVEAL ANIMATIONS
   Immersive transitions as content blocks enter viewport.
   Progressive enhancement — only hides when body.js-ready is set.
   ============================================================ */
body.hp.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}
body.hp.js-ready [data-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

/* Stagger sibling reveals in grids — fade + rise + slight scale */
body.hp.js-ready [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(32px) scale(.96);
}
body.hp.js-ready [data-reveal-stagger].is-in-view > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
body.hp.js-ready [data-reveal-stagger].is-in-view > *:nth-child(1) { transition-delay: 0s; }
body.hp.js-ready [data-reveal-stagger].is-in-view > *:nth-child(2) { transition-delay: .1s; }
body.hp.js-ready [data-reveal-stagger].is-in-view > *:nth-child(3) { transition-delay: .2s; }
body.hp.js-ready [data-reveal-stagger].is-in-view > *:nth-child(4) { transition-delay: .3s; }
body.hp.js-ready [data-reveal-stagger].is-in-view > *:nth-child(5) { transition-delay: .4s; }
body.hp.js-ready [data-reveal-stagger].is-in-view > *:nth-child(6) { transition-delay: .5s; }

/* Inspire section curtain wipe — dark panel reveals from bottom */
body.hp.js-ready .hp-inspire { position: relative; }
body.hp.js-ready .hp-inspire::before {
  content: ""; position: absolute; inset: 0; background: var(--mpt-off); z-index: 10;
  transform-origin: top; transform: scaleY(1);
  transition: transform 1.1s cubic-bezier(.77,0,.175,1);
  pointer-events: none;
}
body.hp.js-ready .hp-inspire.is-in-view::before { transform: scaleY(0); }

/* Headline line-reveal: each line rises up from below an overflow mask. */
body.hp.js-ready .line { overflow: hidden; display: block; }
body.hp.js-ready .line-inner { display: block; will-change: transform; }

/* Reduced-motion overrides intentionally disabled for the demo build —
   animations run regardless of OS preference. Re-enable if needed during
   WordPress port. */
/* ==========================================================================
   MyPrivateTours.com — Inner page extensions
   Appended to homepage.css. Reuses tokens, motion, and component patterns.
   ========================================================================== */

/* ============================================================
   SUB-PAGE BANNER (compact hero used on About, B2B, Contact, etc.)
   Same warm dark feel as the homepage hero, ~60vh tall.
   ============================================================ */
.hp-banner {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0907;
}
.hp-banner__bg { position: absolute; inset: 0; }
.hp-banner__bg picture { display: block; width: 100%; height: 100%; }
.hp-banner__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: kenBurns 18s ease-in-out infinite alternate;
}
.hp-banner__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 9, 7, 0.315) 0%,
    rgba(15, 9, 7, 0.495) 60%,
    rgba(15, 9, 7, 0.702) 100%
  ),
  radial-gradient(
    ellipse at 50% 60%,
    rgba(15, 9, 7, 0) 0%,
    rgba(15, 9, 7, 0.27) 90%
  );
}
.hp-banner__content {
  position: relative; z-index: 2;
  max-width: 820px; padding: 100px 40px 90px;
  text-align: center;
}
.hp-banner__eyebrow { color: var(--mpt-sand); opacity: .95; margin-bottom: 20px; display: inline-flex; }
.hp-banner__eyebrow::before { background: var(--mpt-sand); }
.hp-banner__h1 {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(38px, 6vw, 72px); line-height: 1; letter-spacing: -.035em;
  margin: 6px 0 18px; color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hp-banner__h1 em { font-family: var(--font-serif); font-weight: 400; color: var(--mpt-sand); font-size: .9em; }
.hp-banner__sub {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55; max-width: 580px;
  margin: 0 auto; opacity: .92;
}
.hp-banner__crumbs {
  margin-top: 22px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
  display: inline-flex; gap: 10px; align-items: center;
}
.hp-banner__crumbs a { color: rgba(255,255,255,.72); transition: color .15s; }
.hp-banner__crumbs a:hover { color: var(--mpt-sand); }
.hp-banner__crumbs span { opacity: .5; }

@media (max-width: 900px) {
  .hp-banner { min-height: 52vh; }
  .hp-banner__content { padding: 80px 24px 70px; }
}

/* ============================================================
/* ============================================================
   INNER-PAGE BANNER — Slider mode
   When .hp-banner--slider is on the section, slides crossfade
   and text rotates. Single-mode banners are untouched.
   ============================================================ */

/* Slide stack — all slides absolute-positioned in the same spot,
   opacity drives the crossfade. Active slide on top. */
.hp-banner--slider .hp-banner__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-banner--slider .hp-banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hp-banner--slider .hp-banner__slide.is-active {
  opacity: 1;
  z-index: 1;
}
/* Each slide's bg-image wrapper sits inside .hp-banner__slide and
   carries the existing Ken-Burns animation. */
.hp-banner--slider .hp-banner__slide .hp-banner__bg {
  position: absolute;
  inset: 0;
}
.hp-banner--slider .hp-banner__slide.is-active .hp-banner__bg img {
  /* Restart the Ken-Burns animation when slide becomes active.
     Inheriting the existing kenBurns keyframes from .hp-banner__bg img. */
  animation: kenBurns 12s ease-in-out infinite alternate;
}

/* Text slide stack — same crossfade pattern but for the text column.
   The content column is centred via the existing .hp-banner__content
   rules; we stack textslides on top of each other inside it. */
.hp-banner--slider .hp-banner__content {
  /* Reserve vertical space so the box doesn't collapse when only
     absolute children are inside. */
  position: relative;
  min-height: 240px;
}
.hp-banner--slider .hp-banner__textslide {
  /* Inactive slides sit absolutely on top of each other; the active
     one is lifted into flow so it sizes the column naturally. */
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
  transform: translateY(8px);
  pointer-events: none;
}
.hp-banner--slider .hp-banner__textslide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Slide-2+ headings use <p> instead of <h1> for SEO (one H1 per doc).
   Force them to keep the H1 look. */
.hp-banner--slider .hp-banner__textslide .hp-banner__h1 {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(38px, 6vw, 72px); line-height: 1; letter-spacing: -.035em;
  margin: 6px 0 18px; color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}

/* Crumbs sit BELOW the rotating text slides — anchor them so they
   don't shift as text height changes between slides. */
.hp-banner--slider .hp-banner__crumbs {
  position: relative;
  z-index: 2;
  margin-top: 22px;
}

/* Prev / next arrows — sit on left/right edges, vertically centred */
.hp-banner__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.hp-banner__arrow:hover {
  background: var(--mpt-orange);
  border-color: var(--mpt-orange);
  transform: translateY(-50%) scale(1.08);
}
.hp-banner__arrow:focus-visible {
  outline: 2px solid var(--mpt-sand);
  outline-offset: 4px;
}
.hp-banner__arrow--prev { left: 30px; }
.hp-banner__arrow--next { right: 30px; }

/* Indicator dots — bottom centre */
.hp-banner__indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hp-banner__indicator {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.hp-banner__indicator:hover { background: rgba(255, 255, 255, 0.6); }
.hp-banner__indicator.is-active {
  background: #fff;
  width: 40px;
}
.hp-banner__indicator:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Mobile tweaks for slider mode */
@media (max-width: 900px) {
  .hp-banner__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .hp-banner__arrow--prev { left: 16px; }
  .hp-banner__arrow--next { right: 16px; }
  .hp-banner__indicators { bottom: 20px; }
  .hp-banner__indicator { width: 22px; }
  .hp-banner__indicator.is-active { width: 32px; }
}
   EYEBROW OVERRIDES — trust strip + FAQ block
   Force line to the LEFT of text (matching hp-eyebrow--left)
   Overrides absolute-positioned "line above" from other stylesheet
   ============================================================ */

/* Trust Strip eyebrow */
.hp-trust-strps__eyebrow {
	display: inline-flex !important;
	align-items: center;
	gap: 12px;
	position: static !important;
	padding-top: 0 !important;
}
.hp-trust-strps__eyebrow::before {
	content: "" !important;
	position: static !important;
	transform: none !important;
	left: auto !important;
	top: auto !important;
	display: inline-block !important;
	width: 34px !important;
	height: 1px !important;
	background: var(--mpt-orange) !important;
	flex-shrink: 0;
}

/* FAQ Block eyebrow */
.hp-faq-block__eyebrow {
	display: inline-flex !important;
	align-items: center;
	gap: 12px;
	position: static !important;
	padding-top: 0 !important;
}
.hp-faq-block__eyebrow::before {
	content: "" !important;
	position: static !important;
	transform: none !important;
	left: auto !important;
	top: auto !important;
	display: inline-block !important;
	width: 34px !important;
	height: 1px !important;
	background: var(--mpt-orange) !important;
	flex-shrink: 0;
}

/* MOBILE BOOK NOW BUTTON */
.hp-tour-mobile-book-btn{
	display:none;
}

@media (max-width: 767px){

	.hp-tour-mobile-book-btn{
		display:inline-flex;
		align-items:center;
		gap:10px;
		padding:16px 36px;
		background:var(--mpt-orange);
		color:#fff;
		border-radius:var(--r-pill);
		font-weight:800;
		font-size:13px;
		letter-spacing:.04em;
		text-transform:uppercase;
		border:0;
		cursor:pointer;
		box-shadow:0 14px 36px rgba(224, 101, 60, .3);
		transition:transform .18s var(--ease-out), 
				   background .18s, 
				   box-shadow .18s;
		text-decoration:none;
		margin-top:20px;
	}

	.hp-tour-mobile-book-btn:hover{
		transform:translateY(-2px);
		box-shadow:0 18px 42px rgba(224, 101, 60, .35);
		color:#fff;
	}

	html{
		scroll-behavior:smooth;
	}
}

/* ============================================================
   TOUR SEARCH PICKER — reusable popover + range calendar.
   Shared by the homepage hero (bar layout in home.css) and the tours
   filter sidebar (field layout in tours.css). Driven by hero-when.js.
   ============================================================ */
/* ---- popover / sheet shell ---- */
.hp-picker {
  position: fixed;
  z-index: 9999;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(37, 37, 37, .08);
  border-radius: 18px;
  box-shadow: 0 30px 60px -22px rgba(47, 20, 18, .45);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
}
.hp-picker.is-open { opacity: 1; transform: none; }
.hp-picker--cities { width: 520px; max-width: calc(100vw - 40px); }
.hp-picker--cal    { width: 660px; max-width: calc(100vw - 40px); }
.hp-picker__sheet { display: flex; flex-direction: column; }
.hp-picker__grab { display: none; }
.hp-picker__head { display: none; }
.hp-picker__body { padding: 20px; overflow-y: auto; }
.hp-picker__scrim { display: none; position: fixed; inset: 0; background: rgba(20, 9, 8, .45); z-index: 9998; opacity: 0; transition: opacity .25s; }
.hp-picker__scrim.is-open { opacity: 1; }
/* The hidden attribute must always win, otherwise the mobile `display:block`
   below keeps an invisible full-screen scrim over the page and eats every tap. */
.hp-picker[hidden], .hp-picker__scrim[hidden] { display: none !important; }

/* ---- city grid ---- */
.hp-cities__label { display: block; font-size: 12px; font-weight: 800; letter-spacing: .04em; color: var(--mpt-maroon); margin-bottom: 14px; }
.hp-cities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
/* Scoped under .hp-picker: ".hp-city" is also the archive <main> root class
   (template-parts/archive-tours.php, taxonomy-city.php). Leaving these bare made
   common.css turn <main class="hp-city"> into a flex row. */
.hp-picker .hp-city { display: flex; align-items: center; gap: 10px; padding: 14px; border: 1px solid rgba(37, 37, 37, .1); border-radius: 12px; background: #fff; cursor: pointer; font: inherit; text-align: left; transition: border-color .15s, background .15s; }
.hp-picker .hp-city:hover, .hp-picker .hp-city.is-active { border-color: var(--mpt-orange); background: var(--mpt-orange-soft, #FDEEE7); }
.hp-picker .hp-city__icon { width: 30px; height: 30px; border-radius: 8px; background: var(--mpt-cream); display: grid; place-items: center; color: var(--mpt-orange); flex-shrink: 0; }
.hp-picker .hp-city__name { font-size: 14px; font-weight: 700; color: var(--mpt-ink); }
.hp-cities__all { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(37, 37, 37, .08); }
.hp-cities__all button { background: none; border: 0; font: inherit; font-size: 13px; font-weight: 800; color: var(--mpt-ink-muted, #8a8a8a); cursor: pointer; }
.hp-cities__all button:hover { color: var(--mpt-orange); }

/* ---- calendar ---- */
.hp-cal { padding: 0; }
.hp-cal__pills { display: flex; align-items: center; gap: 14px; padding: 12px 20px; border-bottom: 1px solid rgba(37, 37, 37, .08); }
.hp-cal__pill { flex: 1; padding: 11px 16px; border: 1px solid rgba(37, 37, 37, .18); border-radius: 10px; display: flex; flex-direction: column; gap: 3px; }
.hp-cal__pill.is-current { border-color: var(--mpt-orange); box-shadow: 0 0 0 3px rgba(224, 101, 60, .12); }
.hp-cal__pill-label { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--mpt-ink-muted, #8a8a8a); }
.hp-cal__pill-val { font-size: 14px; font-weight: 800; color: var(--mpt-maroon); }
.hp-cal__pill-val.is-empty { color: var(--mpt-ink-muted, #8a8a8a); font-weight: 600; }
.hp-cal__arrow { color: var(--mpt-ink-muted, #8a8a8a); flex-shrink: 0; }

.hp-cal__controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 20px 2px; }
.hp-cal__years { display: inline-flex; background: var(--mpt-off); border-radius: 10px; padding: 4px; }
.hp-cal__year { border: 0; background: none; font: inherit; font-size: 13px; font-weight: 800; color: var(--mpt-ink-muted, #8a8a8a); padding: 8px 16px; border-radius: 8px; cursor: pointer; transition: .15s; }
.hp-cal__year.is-active { background: var(--mpt-maroon); color: #fff; }
.hp-cal__monthsel { position: relative; }
.hp-cal__monthsel select { appearance: none; -webkit-appearance: none; border: 1px solid rgba(37, 37, 37, .16); border-radius: 10px; background: #fff; font: inherit; font-size: 13px; font-weight: 800; color: var(--mpt-ink); padding: 9px 38px 9px 16px; cursor: pointer; }
.hp-cal__monthsel svg { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--mpt-ink-muted, #8a8a8a); pointer-events: none; }

.hp-cal__dows { display: none; } /* shared row — mobile only */
.hp-cal__dows--inline { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 6px; }
.hp-cal__dow { text-align: center; font-size: 10px; font-weight: 800; text-transform: uppercase; color: var(--mpt-ink-muted, #8a8a8a); }

.hp-cal__months { display: flex; gap: 14px; padding: 8px 20px 8px; position: relative; }
.hp-cal__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(37, 37, 37, .12); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--mpt-maroon); transition: .15s; z-index: 2; }
.hp-cal__nav:hover { border-color: var(--mpt-orange); color: var(--mpt-orange); }
.hp-cal__nav:disabled { opacity: .3; cursor: not-allowed; }
.hp-cal__nav--prev { left: 8px; } .hp-cal__nav--next { right: 8px; }
.hp-cal__month { flex: 1; min-width: 0; }
.hp-cal__month-title { text-align: center; font-size: 14px; font-weight: 800; color: var(--mpt-ink); margin-bottom: 8px; }
.hp-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); row-gap: 2px; }
.hp-cal__day { position: relative; height: 38px; display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--mpt-ink); cursor: pointer; border: 0; background: none; font-family: inherit; }
.hp-cal__day span { position: relative; z-index: 1; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; }
.hp-cal__day:hover span { background: var(--mpt-orange-soft, #FDEEE7); }
.hp-cal__day.is-empty { cursor: default; }
.hp-cal__day.is-disabled { color: #cfcfcf; cursor: not-allowed; }
.hp-cal__day.is-disabled:hover span { background: none; }
.hp-cal__day.is-today span { box-shadow: inset 0 0 0 1.5px var(--mpt-sand); }
.hp-cal__day.in-range::before { content: ""; position: absolute; inset: 0; background: var(--mpt-orange-soft, #FDEEE7); }
.hp-cal__day.range-start::before { left: 50%; } .hp-cal__day.range-end::before { right: 50%; }
.hp-cal__day.range-start.range-end::before { display: none; }
.hp-cal__day.range-start span, .hp-cal__day.range-end span { background: var(--mpt-orange); color: #fff; }
.hp-cal__day.range-start:hover span, .hp-cal__day.range-end:hover span { background: var(--mpt-orange); }

.hp-cal__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 20px; border-top: 1px solid rgba(37, 37, 37, .08); background: var(--mpt-off); }
.hp-cal__clear { background: none; border: 0; font: inherit; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--mpt-ink-muted, #8a8a8a); cursor: pointer; padding: 10px 14px; }
.hp-cal__clear:hover { color: var(--mpt-orange); }
.hp-cal__apply { background: linear-gradient(135deg, var(--mpt-orange), #d2562f); color: #fff; border: 0; font: inherit; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; padding: 11px 24px; border-radius: var(--r-pill); }
.hp-cal__apply:disabled { opacity: .45; cursor: not-allowed; }
/* compact one-month variant for the narrow filter sidebar */
.hp-picker--compact { width: 360px; max-width: calc(100vw - 32px); }

/* ---- MOBILE: bottom sheet (shared) ---- */
@media (max-width: 680px) {
  .hp-picker { position: fixed; left: 0; right: 0; bottom: 0; top: auto; width: auto; max-width: none;
    border-radius: 22px 22px 0 0; border: 0; z-index: 9999; overflow: visible;
    opacity: 1; transform: translateY(100%); transition: transform .3s var(--ease-out); }
  .hp-picker.is-open { transform: none; }
  .hp-picker__scrim { display: block; z-index: 9998; }
  .hp-picker__sheet { max-height: 88vh; }
  .hp-picker__grab { display: block; width: 40px; height: 4px; border-radius: 99px; background: rgba(37, 37, 37, .18); margin: 10px auto 4px; }
  .hp-picker__head { display: flex; align-items: center; justify-content: space-between; padding: 8px 18px 14px; border-bottom: 1px solid rgba(37, 37, 37, .08); }
  .hp-picker__title { font-size: 15px; font-weight: 900; color: var(--mpt-maroon); }
  .hp-picker__close { width: 32px; height: 32px; border-radius: 50%; border: 0; background: var(--mpt-off); font-size: 18px; line-height: 1; color: var(--mpt-ink); cursor: pointer; }

  .hp-cities__grid { grid-template-columns: 1fr 1fr; }

  /* calendar → single scrolling column */
  .hp-cal { display: flex; flex-direction: column; min-height: 0; }
  .hp-cal__controls { display: none; }
  .hp-cal__nav { display: none; }
  .hp-cal__dows { display: grid; grid-template-columns: repeat(7, 1fr); position: sticky; top: 0; background: #fff; padding: 10px 20px 6px; z-index: 2; border-bottom: 1px solid rgba(37, 37, 37, .06); }
  .hp-cal__dows--inline { display: none; }
  .hp-cal__months { flex-direction: column; gap: 0; overflow-y: auto; padding: 0 20px 6px; }
  .hp-cal__month { margin-top: 14px; }
  .hp-cal__day { height: auto; aspect-ratio: 1; }
  .hp-cal__day span { width: 38px; height: 38px; font-size: 14px; }
  .hp-cal__foot { position: sticky; bottom: 0; }
  .hp-cal__apply { flex: 1; padding: 14px; }
}
