/* ==========================================================================
   True Travel — tour & activity detail pages
   --------------------------------------------------------------------------
   Tour and Activity pages share one detail-page design system. Activity-specific
   rules remain only where the underlying content or booking model differs.

   The booking form internals are owned by assets/js/booking.js and styled by
   assets/css/booking.css. This file only styles the shell around them.
   ========================================================================== */

/* --------------------------------------------------------------- 1. tokens */

.mt-page {
    --mt-ink: #0E2A45;
    --mt-ink-soft: #4A5C6E;
    --mt-deep: #071B2E;
    --mt-blue: #0077C8;
    --mt-blue-dark: #07588F;
    --mt-cyan: #00B4D8;
    --mt-orange: #FC6018;
    --mt-amber: #FCA83C;
    --mt-green: #1F9D6B;
    --mt-line: #DCE4EC;
    --mt-line-soft: #EAF0F6;
    --mt-white: #FFFFFF;
    --mt-radius: 18px;
    --mt-radius-lg: 26px;
    --mt-shadow: 0 14px 40px rgba(14, 42, 69, .09);
    --mt-shadow-lift: 0 22px 60px rgba(14, 42, 69, .16);
    --mt-wrap: 1240px;
    --mt-header-space: 118px;
    --mt-serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
    --mt-sans: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
    --mt-display: var(--mt-serif);
}

/* ---------------------------------------------------------------- 2. reset */

.mt-page .mt-wrap,
.mt-page .mt-hero,
.mt-page .mt-facts,
.mt-page .mt-main,
.mt-page .mt-related,
.mt-page .mt-cta {
    box-sizing: border-box;
}

.mt-page *,
.mt-page *::before,
.mt-page *::after {
    box-sizing: border-box;
}

.mt-page {
    background: #FBFAF7;
    color: var(--mt-ink);
    font-family: var(--mt-sans);
    -webkit-font-smoothing: antialiased;
}

.mt-page img {
    max-width: 100%;
    display: block;
}

.mt-page h1,
.mt-page h2,
.mt-page h3,
.mt-page h4 {
    font-family: var(--mt-display);
    color: var(--mt-ink);
    margin: 0;
    line-height: 1.14;
    letter-spacing: -.01em;
}

.mt-page p {
    margin: 0;
    /* premium-2026.css sets `p { color: var(--color-gray) }` globally; inside
       the tour/activity page every paragraph should inherit from its parent
       (body for the prose, .mt-book__head for the price, etc.). */
    color: inherit;
}

.mt-page a {
    color: var(--mt-blue);
}

.mt-page li {
    color: inherit;
}

.mt-wrap {
    width: 100%;
    max-width: var(--mt-wrap);
    margin-inline: auto;
    padding-inline: 24px;
}

.mt-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 3000;
    background: var(--mt-white);
    color: var(--mt-ink);
    padding: 12px 20px;
    border-radius: 0 0 12px 0;
    font-weight: 600;
}

.mt-skip:focus {
    left: 0;
}

.mt-page :focus-visible {
    outline: 3px solid var(--mt-cyan);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ----------------------------------------------------------- 3. typography */

.mt-eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--mt-cyan);
}

.mt-page[data-mt-layout="tour"] .mt-eyebrow {
    color: var(--mt-blue);
}

.mt-section-title {
    font-size: clamp(26px, 3.1vw, 38px);
    margin-bottom: 8px;
}

.mt-section-lede {
    color: var(--mt-ink-soft);
    font-size: 17px;
    line-height: 1.6;
    max-width: 62ch;
    margin-bottom: 26px;
}

/* ---------------------------------------------------------- 4. breadcrumb */

.mt-hero .mt-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
}

.mt-hero .mt-crumbs a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.mt-hero .mt-crumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.mt-hero .mt-crumbs span {
    color: rgba(255, 255, 255, .45);
}

.mt-hero .mt-crumbs em {
    font-style: normal;
    color: rgba(255, 255, 255, .68);
}

/* ================================================================ 5. HEROES */

.mt-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
}

.mt-hero__media,
.mt-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mt-hero__media img {
    object-fit: cover;
    object-position: 50% 50%;
}

.mt-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mt-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--mt-wrap);
    margin-inline: auto;
    padding-inline: 24px;
}

/* --- 5a. TOUR hero: minimal, type-led editorial split ------------------ */
/* Light paper panel; the title + badge carry the hero, the cover is a
   contained rounded image (not a full-bleed), so the type leads. */

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero {
    min-height: min(50vh, 460px);
    display: flex;
    align-items: center;
    gap: 44px;
    background: transparent;
    max-width: var(--mt-wrap);
    margin-inline: auto;
    padding-inline: 24px;
    padding-top: calc(var(--mt-header-space) + 6px);
    padding-bottom: 30px;
}

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__scrim { display: none; }

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__media {
    position: relative;
    inset: auto;
    order: 2;
    flex: 0 0 44%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: var(--mt-radius-lg);
    overflow: hidden;
    box-shadow: var(--mt-shadow-lift);
    background: var(--mt-line-soft);
}

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__inner {
    order: 1;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    margin-inline: 0;
    padding: 0;
    color: var(--mt-ink);
}

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero .mt-crumbs { color: var(--mt-ink-soft); }
.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero .mt-crumbs a { color: var(--mt-blue); }
.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero .mt-crumbs a:hover { color: var(--mt-blue-dark); }
.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero .mt-crumbs span { color: #9AA8B5; }
.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero .mt-crumbs em { color: var(--mt-ink-soft); }

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__badge {
    /* .mt-hero__inner is a flex column, so its default align-items:stretch was
       pulling this inline-flex pill out to the full column width. */
    align-self: flex-start;
    background: rgba(0, 119, 200, .12);
    border-color: rgba(0, 119, 200, .28);
    color: var(--mt-blue-dark);
}

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__title {
    color: var(--mt-ink);
    text-shadow: none;
    font-size: clamp(32px, 4.2vw, 54px);
    max-width: 22ch;
}

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__lede {
    color: var(--mt-ink-soft);
    text-shadow: none;
    max-width: 58ch;
}

.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-chip {
    background: rgba(14, 42, 69, .05);
    border-color: rgba(14, 42, 69, .12);
    color: var(--mt-ink);
}
.mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-chip i { color: var(--mt-blue); }

.mt-page .mt-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
}

.mt-page .mt-hero__title {
    font-family: var(--mt-display);
    font-size: clamp(38px, 6.4vw, 74px);
    line-height: 1.02;
    color: #fff;
    max-width: 20ch;
    margin: 0 0 18px;
    text-wrap: balance;
    text-shadow: 0 2px 30px rgba(7, 27, 46, .35);
}

.mt-page .mt-hero__lede {
    font-size: clamp(16.5px, 1.55vw, 20px);
    line-height: 1.62;
    color: rgba(255, 255, 255, .9);
    max-width: 62ch;
    margin: 0;
    text-shadow: 0 1px 16px rgba(7, 27, 46, .4);
}

/* --- 5b. hero meta chips ---------------------------------------------- */

.mt-page .mt-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 28px;
}

.mt-page .mt-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.mt-page .mt-chip i {
    color: var(--mt-cyan);
    font-size: 14px;
}

.mt-page .mt-chip--rating i {
    color: var(--mt-amber);
}

/* ==================================================== 6. QUICK FACT STRIP */

.mt-facts {
    background: var(--mt-white);
    border-bottom: 1px solid var(--mt-line);
}

.mt-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--mt-line-soft);
}

.mt-fact {
    background: var(--mt-white);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mt-fact dt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--mt-ink-soft);
}

.mt-fact dt i {
    color: var(--mt-blue);
    font-size: 13px;
}

.mt-fact dd {
    margin: 0;
    font-family: var(--mt-display);
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--mt-ink);
}

/* ==================================================== 7. MAIN TWO-COLUMN */

.mt-main {
    width: 100%;
    max-width: var(--mt-wrap);
    margin-inline: auto;
    padding: 52px 24px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 372px;
    gap: 46px;
    align-items: start;
}

.mt-content {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.mt-rail {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    position: sticky;
    top: 24px;
}

/* ------------------------------------------------------- 7a. content blocks */

.mt-block {
    margin-bottom: 46px;
}

.mt-block:last-child {
    margin-bottom: 0;
}

.mt-card {
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius-lg);
    padding: 34px;
}

.mt-page[data-mt-layout="activity"] .mt-card {
    border-radius: var(--mt-radius);
}

/* --- prose --- */

.mt-prose {
    font-size: 17.5px;
    line-height: 1.78;
    color: #33475C;
    max-width: 68ch;
}

.mt-prose p + p {
    margin-top: 1em;
}

.mt-page[data-mt-layout="tour"] .mt-prose > p:first-of-type::first-letter {
    float: left;
    font-family: var(--mt-serif);
    font-size: 3.6em;
    line-height: .82;
    font-weight: 600;
    margin: .06em .1em 0 0;
    color: var(--mt-blue);
}

/* ------------------------------------------------------------- 7b. gallery */

.mt-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 208px;
    gap: 12px;
}

.mt-shot {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--mt-radius);
    background: var(--mt-line-soft);
    cursor: zoom-in;
    border: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.mt-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .7, .3, 1);
}

.mt-shot:hover img {
    transform: scale(1.05);
}

.mt-shot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 27, 46, .35));
    opacity: 0;
    transition: opacity .3s ease;
}

.mt-shot:hover::after {
    opacity: 1;
}

.mt-shot--lead {
    grid-row: span 2;
}

.mt-gallery--single {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
}

.mt-gallery--single .mt-shot--lead {
    grid-row: auto;
    aspect-ratio: 16 / 9;
    min-height: 280px;
}

.mt-shot__more {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(7, 27, 46, .62);
    color: #fff;
    font-family: var(--mt-display);
    font-size: 26px;
    font-weight: 700;
    z-index: 2;
}

/* ---------------------------------------------------------- 7c. highlights */

.mt-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    counter-reset: mt-highlight;
}

.mt-highlight {
    position: relative;
    padding: 20px 22px 20px 60px;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    font-size: 16px;
    line-height: 1.5;
    color: #33475C;
}

.mt-highlight::before {
    counter-increment: mt-highlight;
    content: counter(mt-highlight, decimal-leading-zero);
    position: absolute;
    left: 20px;
    top: 18px;
    font-family: var(--mt-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--mt-blue);
}

.mt-page[data-mt-layout="activity"] .mt-highlight::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 15px;
    color: var(--mt-orange);
    top: 21px;
}

/* ----------------------------------------------------------- 7d. itinerary */

.mt-timeline {
    position: relative;
    margin: 0;
    padding: 0 0 0 6px;
    list-style: none;
}

.mt-timeline::before {
    content: '';
    position: absolute;
    left: 83px;
    top: 10px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--mt-blue), var(--mt-cyan));
    opacity: .35;
}

.mt-stop {
    position: relative;
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 26px;
    padding-bottom: 28px;
}

.mt-stop:last-child {
    padding-bottom: 0;
}

.mt-stop__time {
    font-family: var(--mt-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--mt-blue);
    padding-top: 2px;
    text-align: right;
}

.mt-stop__body {
    position: relative;
    padding-left: 26px;
}

.mt-stop__body::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--mt-white);
    border: 3px solid var(--mt-blue);
}

.mt-stop__body h3 {
    font-size: 19px;
    margin-bottom: 6px;
}

.mt-stop__body p {
    color: var(--mt-ink-soft);
    font-size: 16px;
    line-height: 1.65;
}

/* -------------------------------------------- 7e. included / not included */

.mt-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* one panel only — let it run the full measure instead of leaving a hole */
.mt-cols--single {
    grid-template-columns: minmax(0, 1fr);
}

.mt-panel {
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    padding: 26px 28px;
}

.mt-panel h3 {
    font-size: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mt-panel h3 i {
    font-size: 17px;
}

.mt-panel--yes h3 i {
    color: var(--mt-green);
}

.mt-panel--no h3 i {
    color: #C4553F;
}

.mt-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.mt-list li {
    position: relative;
    padding-left: 27px;
    font-size: 15.5px;
    line-height: 1.55;
    color: #3B5064;
}

.mt-list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
}

.mt-list--yes li::before {
    content: '\f00c';
    color: var(--mt-green);
}

.mt-list--no li::before {
    content: '\f00d';
    color: #C4553F;
}

.mt-list--plain li::before {
    content: '\f111';
    font-size: 7px;
    top: 8px;
    color: var(--mt-blue);
}

.mt-empty {
    color: #7C8B99;
    font-style: italic;
    font-size: 15px;
}

/* ---------------------------------------------------------------- 7f. notes */

.mt-note {
    background: #EAF4FF;
    border: 1px solid #BBD9F2;
    border-left: 5px solid var(--mt-blue);
    border-radius: var(--mt-radius);
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.65;
    color: #1E3A57;
}

.mt-note h3 {
    font-size: 12.5px;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--mt-blue-dark);
    margin-bottom: 10px;
}

.mt-note ul {
    margin: 0;
    padding-left: 19px;
}

.mt-note li {
    margin: 4px 0;
}

/* ---------------------------------------------------------------- 7g. FAQ */

.mt-faq {
    display: grid;
    gap: 10px;
}

.mt-faq details {
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.mt-faq details[open] {
    border-color: #B7D4EC;
    box-shadow: var(--mt-shadow);
}

.mt-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 19px 54px 19px 24px;
    font-family: var(--mt-display);
    font-size: 17px;
    font-weight: 700;
    position: relative;
}

.mt-faq summary::-webkit-details-marker {
    display: none;
}

.mt-faq summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
    color: var(--mt-blue);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .25s ease;
}

.mt-faq details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.mt-faq details > p {
    padding: 0 24px 22px;
    color: var(--mt-ink-soft);
    font-size: 16px;
    line-height: 1.7;
}

/* ==================================================== 8. BOOKING RAIL */

.mt-rail__stack {
    display: grid;
    gap: 16px;
}

.mt-book {
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius-lg);
    box-shadow: var(--mt-shadow);
    overflow: hidden;
}

.mt-book__head {
    padding: 26px 26px 20px;
    background: linear-gradient(165deg, #F7FBFF, #FFFFFF);
    border-bottom: 1px solid var(--mt-line-soft);
}

.mt-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.mt-price__from {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--mt-ink-soft);
}

.mt-price__value {
    font-family: var(--mt-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.02em;
}

.mt-price__was {
    font-size: 16px;
    color: #96A3B0;
    text-decoration: line-through;
}

.mt-price__unit {
    font-size: 14px;
    color: var(--mt-ink-soft);
    width: 100%;
}

.mt-price__save {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #E6F7EE;
    color: #14724F;
    font-size: 12.5px;
    font-weight: 700;
}

/* trust row */

.mt-trust {
    display: grid;
    gap: 9px;
    padding: 18px 26px;
    margin: 0;
    border-bottom: 1px solid var(--mt-line-soft);
}

.mt-trust li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14.5px;
    font-weight: 500;
    color: #33475C;
    list-style: none;
}

.mt-trust li i {
    width: 20px;
    text-align: center;
    color: var(--mt-green);
    font-size: 14px;
}

/* booking.css owns the form internals; only tighten the shell here */

/* .mt-book already provides the surface — strip the nested .card chrome */
.mt-book .booking-card-shell {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.mt-book .booking-card-body {
    padding: 22px 26px 26px;
}

.mt-book .booking-card-head {
    display: none;
}

.mt-book .tour-booking-component .booking-price-hero {
    display: none;
}

.mt-book .booking-summary-card {
    background: #F6F9FC;
    border: 1px solid var(--mt-line-soft);
    border-radius: 14px;
    padding: 16px 18px;
}

.mt-book .booking-total-line {
    font-size: 17px;
}

.mt-book .booking-total-line strong {
    font-family: var(--mt-display);
    font-size: 24px;
    color: var(--mt-ink);
}

.mt-book .booking-next,
.mt-book .booking-submit {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    border-color: var(--mt-blue) !important;
    background: var(--mt-blue) !important;
    color: #fff !important;
    font-size: 16.5px;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 10px 24px rgba(0, 119, 200, .28);
}

.mt-book .booking-next:hover,
.mt-book .booking-next:focus-visible,
.mt-book .booking-submit:hover,
.mt-book .booking-submit:focus-visible {
    border-color: var(--mt-blue-dark) !important;
    background: var(--mt-blue-dark) !important;
    color: #fff !important;
}

.mt-book .booking-next *,
.mt-book .booking-submit * {
    color: inherit !important;
}

.mt-book .booking-check-button {
    border-color: var(--mt-blue) !important;
    background: var(--mt-blue) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 119, 200, .24);
}

.mt-book .booking-check-button:hover,
.mt-book .booking-check-button:focus-visible {
    border-color: var(--mt-blue-dark) !important;
    background: var(--mt-blue-dark) !important;
    color: #fff !important;
}

.mt-book .booking-check-button * {
    color: inherit !important;
}

.mt-book .booking-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

/* secondary contact */

.mt-help {
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    padding: 22px 24px;
}

.mt-help h2 {
    font-size: 17px;
    margin-bottom: 6px;
}

.mt-help p {
    font-size: 14px;
    color: var(--mt-ink-soft);
    line-height: 1.6;
    margin-bottom: 16px;
}

.mt-help__actions {
    display: grid;
    gap: 9px;
}

.mt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 13px;
    font-family: var(--mt-sans);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.mt-btn:hover {
    transform: translateY(-1px);
}

.mt-btn--whatsapp {
    background: #1FAE63;
    color: #fff;
}

.mt-btn--whatsapp:hover {
    background: #189A56;
    color: #fff;
}

.mt-btn--ghost {
    background: var(--mt-white);
    border-color: var(--mt-line);
    color: var(--mt-ink);
}

.mt-btn--ghost:hover {
    border-color: var(--mt-blue);
    color: var(--mt-blue);
}

/* ============================================== 9. ACTIVITY "HOW IT RUNS" */

.mt-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    counter-reset: mt-step;
}

.mt-step {
    counter-increment: mt-step;
    position: relative;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    padding: 26px 24px 24px;
    overflow: hidden;
}

.mt-step::before {
    content: counter(mt-step);
    position: absolute;
    right: 14px;
    top: 4px;
    font-family: var(--mt-display);
    font-size: 74px;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 119, 200, .10);
}

.mt-page[data-mt-layout="activity"] .mt-step::before {
    color: rgba(252, 96, 24, .13);
}

.mt-step__time {
    display: block;
    margin-bottom: 7px;
    font-family: var(--mt-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mt-blue);
    position: relative;
}

.mt-page[data-mt-layout="activity"] .mt-step__time {
    color: var(--mt-orange);
}

.mt-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    position: relative;
}

.mt-step p {
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--mt-ink-soft);
}

/* ===================================================== 10. RELATED TOURS */

.mt-related {
    margin-top: 62px;
    padding-block: 58px;
    background: var(--mt-white);
    border-top: 1px solid var(--mt-line);
}

.mt-page[data-mt-layout="activity"] .mt-related {
    background: #E9EFF6;
}

.mt-related__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
}

.mt-related__head p {
    color: var(--mt-ink-soft);
    font-size: 16px;
    max-width: 52ch;
}

.mt-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mt-related-card {
    display: flex;
    flex-direction: column;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.mt-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mt-shadow-lift);
    border-color: #B7D4EC;
    color: inherit;
}

.mt-related-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--mt-line-soft);
    overflow: hidden;
}

.mt-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}

.mt-related-card:hover .mt-related-card__media img {
    transform: scale(1.06);
}

.mt-related-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mt-related-card__body h3 {
    font-size: 17.5px;
    line-height: 1.28;
}

.mt-related-card__meta {
    font-size: 13.5px;
    color: var(--mt-ink-soft);
    display: flex;
    align-items: center;
    gap: 7px;
}

.mt-related-card__foot {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--mt-line-soft);
}

.mt-related-card__price {
    font-family: var(--mt-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--mt-ink);
}

.mt-related-card__go {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--mt-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==================================================== 11. BOTTOM CTA BAND */

.mt-cta {
    padding-block: 56px;
    background: linear-gradient(125deg, #062743, #0B3A5F 52%, #062743);
    color: #fff;
    text-align: center;
}

.mt-page[data-mt-layout="activity"] .mt-cta {
    background: linear-gradient(125deg, #2A1206, #57200A 48%, #2A1206);
}

.mt-cta h2 {
    color: #fff;
    font-size: clamp(27px, 3.4vw, 42px);
    margin-bottom: 12px;
}

.mt-cta p {
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    max-width: 56ch;
    margin: 0 auto 26px;
    line-height: 1.62;
}

.mt-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.mt-btn--solid {
    background: var(--mt-white);
    color: var(--mt-deep);
    min-height: 54px;
    padding-inline: 30px;
    font-size: 16px;
    border-radius: 15px;
}

.mt-btn--solid:hover {
    background: #EAF4FF;
    color: var(--mt-deep);
}

.mt-btn--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    min-height: 54px;
    padding-inline: 30px;
    font-size: 16px;
    border-radius: 15px;
}

.mt-btn--outline-light:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* ================================================ 12. MOBILE STICKY BAR */

.mt-stickybar {
    display: none;
}

/* ==================================================== 13. LIGHTBOX */

.mt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(5, 18, 30, .94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.mt-lightbox.is-open {
    display: flex;
}

.mt-lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.mt-lightbox__close,
.mt-lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 17px;
    transition: background .18s ease;
}

.mt-lightbox__close:hover,
.mt-lightbox__nav:hover {
    background: rgba(255, 255, 255, .28);
}

.mt-lightbox__close {
    top: 18px;
    right: 18px;
}

.mt-lightbox__nav--prev {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.mt-lightbox__nav--next {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.mt-lightbox__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    text-align: center;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    padding-inline: 24px;
}

/* ==================================================== 14. RESPONSIVE */

/* --- large laptop --- */
@media (max-width: 1180px) {
    .mt-main {
        grid-template-columns: minmax(0, 1fr) 336px;
        gap: 34px;
    }

}

/* --- tablet: rail moves above the content, full width ------------------ */
@media (max-width: 1000px) {
    .mt-main {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
        padding-top: 40px;
    }

    .mt-rail {
        grid-column: 1;
        grid-row: auto;
        position: static;
        order: -1;
    }

    .mt-content {
        grid-column: 1;
        grid-row: auto;
        order: 0;
    }

    .mt-rail__stack {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        align-items: start;
    }

    .mt-book {
        grid-column: 1;
    }

    .mt-help {
        grid-column: 2;
    }

    .mt-facts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mt-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mt-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --- small tablet / large phone --- */
@media (max-width: 780px) {
    .mt-page {
        --mt-header-space: 104px;
    }

    .mt-wrap,
    .mt-main,
    .mt-hero__inner {
        padding-inline: 20px;
    }

    .mt-main {
        padding-top: 32px;
    }

    .mt-hero__title {
        font-size: clamp(31px, 8.2vw, 44px);
    }

    .mt-hero__lede {
        font-size: 16px;
    }

    .mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero {
        flex-direction: column;
        gap: 16px;
        min-height: 0;
        padding-top: calc(var(--mt-header-space) + 14px);
        padding-bottom: 28px;
    }

    .mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__media {
        order: 0;
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 10;
        max-height: 200px;
        align-self: auto;
    }

    .mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__title {
        font-size: clamp(27px, 7vw, 38px);
    }

    .mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__lede {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .mt-page:is([data-mt-layout="tour"], [data-mt-layout="activity"]) .mt-hero__inner {
        order: 0;
        padding: 0 20px;
    }

    .mt-card {
        padding: 24px 22px;
    }

    .mt-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 168px;
    }

    .mt-shot--lead,
    .mt-page[data-mt-layout="activity"] .mt-shot--lead {
        grid-column: span 2;
        grid-row: span 1;
    }

    .mt-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .mt-cols {
        grid-template-columns: minmax(0, 1fr);
    }

    .mt-steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .mt-timeline::before {
        left: 7px;
    }

    .mt-stop {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-left: 30px;
    }

    .mt-stop__time {
        text-align: left;
        font-size: 15px;
    }

    .mt-stop__body {
        padding-left: 0;
    }

    .mt-stop__body::before {
        left: -30px;
        top: 6px;
    }

    .mt-related__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mt-related {
        margin-top: 44px;
        padding-block: 44px;
    }
}

/* --- phone --- */
@media (max-width: 600px) {
    .mt-page .mobile-booking-price {
        flex: 0 0 auto;
        min-width: 74px;
    }

    .mt-page .mobile-booking-bar .btn {
        flex: 1 1 auto;
        min-width: 0;
        border-color: var(--mt-blue) !important;
        background: var(--mt-blue) !important;
        color: #fff !important;
    }

    .mt-page .mobile-booking-bar .btn * {
        color: inherit !important;
    }

    .mt-facts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mt-rail__stack {
        grid-template-columns: minmax(0, 1fr);
    }

    .mt-book,
    .mt-help {
        grid-column: 1;
    }

    .mt-price__value {
        font-size: 34px;
    }

    .mt-related-card__media {
        aspect-ratio: 16 / 10;
    }

    .mt-cta {
        padding-block: 44px;
    }

    .mt-cta__actions {
        flex-direction: column;
    }

    .mt-cta__actions .mt-btn {
        width: 100%;
    }

    /* sticky booking bar, revealed once the hero scrolls away */
    .mt-stickybar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2500;
        align-items: center;
        gap: 12px;
        padding: 11px 16px calc(11px + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid var(--mt-line);
        box-shadow: 0 -8px 26px rgba(14, 42, 69, .13);
        transform: translateY(110%);
        transition: transform .3s cubic-bezier(.2, .7, .3, 1);
    }

    .mt-stickybar.is-visible {
        transform: translateY(0);
    }

    .mt-stickybar__price {
        display: flex;
        flex-direction: column;
        line-height: 1.15;
        min-width: 0;
    }

    .mt-stickybar__price small {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .07em;
        text-transform: uppercase;
        color: var(--mt-ink-soft);
    }

    .mt-stickybar__price strong {
        font-family: var(--mt-display);
        font-size: 22px;
        color: var(--mt-ink);
        white-space: nowrap;
    }

    .mt-stickybar__cta {
        margin-left: auto;
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 22px;
        border-radius: 13px;
        background: var(--mt-blue);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0, 119, 200, .3);
    }

    /* keep the bar clear of the final CTA */
    .mt-page .mt-cta {
        padding-bottom: 96px;
    }
}

@media (max-width: 420px) {
    .mt-gallery {
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: 200px;
    }

    .mt-gallery--single .mt-shot--lead {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .mt-shot--lead,
    .mt-page[data-mt-layout="activity"] .mt-shot--lead {
        grid-column: auto;
    }

    .mt-fact {
        padding: 16px 18px;
    }
}

/* --- accessibility & print --- */
@media (prefers-reduced-motion: reduce) {
    .mt-page *,
    .mt-page *::before,
    .mt-page *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

@media print {
    .mt-stickybar,
    .mt-cta,
    .mt-related {
        display: none !important;
    }
}
