/* =========================================================
   ENDE HOLIDAYS — TOUR PAGE
   PREMIUM / ELEGANT / EDITORIAL
   RESPONSIVE FINAL VERSION
========================================================= */


/* =========================================================
   GLOBAL RESET
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* =========================================================
   TOUR VARIABLES
========================================================= */

:root {

    --tour-gold: #E99F24;
    --tour-gold-dark: #C78918;
    --tour-gold-soft: #F3C875;

    --tour-dark: #211A13;
    --tour-brown: #3B2D20;
    --tour-brown-soft: #625344;

    --tour-text: #625A51;
    --tour-text-soft: #7C7369;
    --tour-muted: #8A8178;

    --tour-cream: #FBF8F2;
    --tour-warm: #F5EEE3;
    --tour-beige: #F3ECE1;
    --tour-white: #FFFFFF;

    --tour-border: #EAE3D9;

    --tour-shadow-sm:
        0 8px 25px rgba(45, 34, 22, .06);

    --tour-shadow-md:
        0 18px 45px rgba(45, 34, 22, .10);

    --tour-shadow-lg:
        0 30px 70px rgba(35, 26, 16, .18);
}


/* =========================================================
   SECTION WIDTH
========================================================= */

.tour-page-hero,
.tour-page-intro,
.tour-list,
.tour-page-cta {
    position: relative;
    width: 100%;
}

.tour-page-hero .container,
.tour-page-intro .container,
.tour-list .container,
.tour-page-cta .container {
    width: 100%;
    max-width: var(--container-width, 1200px);

    margin-left: auto;
    margin-right: auto;

    padding-left: 24px;
    padding-right: 24px;
}


/* =========================================================
   BUTTONS
========================================================= */

.tour-page-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tour-page-actions .btn-primary,
.tour-page-actions .btn-outline,
.tour-page-cta-content .btn-primary {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .2px;
    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.tour-page-actions .btn-primary,
.tour-page-cta-content .btn-primary {

    border: 1px solid var(--tour-gold);

    background: var(--tour-gold);

    color: var(--tour-dark);

    box-shadow:
        0 8px 22px rgba(233, 159, 36, .15);
}

.tour-page-actions .btn-primary:hover,
.tour-page-cta-content .btn-primary:hover {

    background: #F0AE3D;

    border-color: #F0AE3D;

    color: var(--tour-dark);

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(233, 159, 36, .20);
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.tour-page-actions .btn-outline {

    border: 1px solid rgba(255,255,255,.35);

    background: rgba(255,255,255,.04);

    color: #fff;

    backdrop-filter: blur(8px);
}

.tour-page-actions .btn-outline:hover {

    border-color: rgba(255,255,255,.75);

    background: rgba(255,255,255,.12);

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   TOUR HERO
========================================================= */

.tour-page-hero {

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--tour-dark);

    color: #fff;
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.tour-page-hero-bg {

    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        url("https://endeholidays.com/images/tour-hero.webp")
        center center / cover no-repeat;

    transform: scale(1.015);

    z-index: 0;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.tour-page-hero-overlay {

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(25,18,11,.96) 0%,
            rgba(25,18,11,.88) 30%,
            rgba(25,18,11,.62) 55%,
            rgba(25,18,11,.27) 78%,
            rgba(25,18,11,.12) 100%
        );
}


/* =========================================================
   HERO LIGHT
========================================================= */

.tour-page-hero::after {

    content: "";

    position: absolute;

    z-index: 1;

    width: 650px;
    height: 650px;

    right: -260px;
    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(233,159,36,.13) 0%,
            rgba(233,159,36,.045) 38%,
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   HERO LAYOUT
========================================================= */

.tour-hero-layout {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 65px;

    min-height: 650px;

    width: 100%;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.tour-page-hero-content {

    width: 100%;
    max-width: 650px;

    padding-top: 80px;
    padding-bottom: 70px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.tour-breadcrumb {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 28px;
    margin-top: 18px;

    font-size: 11px;

    line-height: 1.5;

    letter-spacing: .35px;
}

.tour-breadcrumb a {

    color: rgba(255,255,255,.55);

    text-decoration: none;

    transition: color .25s ease;
}

.tour-breadcrumb a:hover {
    color: var(--tour-gold);
}

.tour-breadcrumb span {
    color: rgba(255,255,255,.25);
}

.tour-breadcrumb strong {

    color: var(--tour-gold);

    font-weight: 600;
}


/* =========================================================
   EYEBROW
========================================================= */

.tour-page-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    color: var(--tour-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}

.tour-page-eyebrow::before {

    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;

    opacity: .9;
}


/* =========================================================
   HERO TITLE
========================================================= */

.tour-page-hero h1 {

    max-width: 720px;

    margin: 0 0 24px;

    color: #fff;

    font-size: clamp(46px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -2.5px;

    text-shadow:
        0 8px 30px rgba(0,0,0,.25);
}

.tour-page-hero h1 em {

    display: block;

    margin-top: 4px;

    color: var(--tour-gold);

    font-style: italic;

    font-weight: 400;

    letter-spacing: -2px;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.tour-page-hero-content > p {

    max-width: 560px;

    margin: 0 0 31px;

    color: rgba(255,255,255,.73);

    font-size: 15px;

    line-height: 1.85;

    text-shadow:
        0 2px 15px rgba(0,0,0,.2);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.tour-hero-visual {

    position: relative;

    width: 100%;
    max-width: 470px;

    margin-left: auto;

    padding: 22px 22px 22px 0;
}


/* =========================================================
   HERO FRAME
========================================================= */

.tour-hero-visual::before {

    content: "";

    position: absolute;

    z-index: 0;

    top: 0;
    right: 0;

    width: 88%;
    height: 100%;

    border: 1px solid rgba(233,159,36,.42);

    pointer-events: none;
}

.tour-hero-visual::after {

    content: "";

    position: absolute;

    z-index: 0;

    left: 0;
    bottom: 0;

    width: 60px;
    height: 60px;

    border-left: 1px solid rgba(233,159,36,.55);

    border-bottom: 1px solid rgba(233,159,36,.55);

    pointer-events: none;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.tour-hero-image {

    position: relative;

    z-index: 2;

    width: 100%;
    height: 440px;

    overflow: hidden;

    border-radius: 2px;

    background: var(--tour-brown);

    box-shadow: var(--tour-shadow-lg);
}

.tour-hero-image::before {

    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(30,22,15,.30) 100%
        );

    pointer-events: none;
}

.tour-hero-image::after {

    content: "";

    position: absolute;
    inset: 0;

    z-index: 3;

    border: 1px solid rgba(255,255,255,.12);

    pointer-events: none;
}

.tour-hero-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .6s ease;
}

.tour-page-hero:hover .tour-hero-image img {

    transform: scale(1.035);

    filter: saturate(1.04);
}


/* =========================================================
   HERO FLOATING CARD
========================================================= */

.tour-hero-card {

    position: absolute;

    z-index: 5;

    left: -28px;
    bottom: 0;

    min-width: 190px;

    padding: 19px 22px;

    background: rgba(33,26,19,.95);

    border: 1px solid rgba(233,159,36,.32);

    box-shadow:
        0 18px 45px rgba(0,0,0,.30);

    backdrop-filter: blur(10px);
}

.tour-hero-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 36px;
    height: 2px;

    background: var(--tour-gold);
}

.tour-hero-card span {

    display: block;

    margin-bottom: 6px;

    color: var(--tour-gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.tour-hero-card strong {

    display: block;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.45;
}


/* =========================================================
   HERO BOTTOM LINE
========================================================= */

.tour-page-hero .container {
    position: relative;
}

.tour-page-hero .container::after {

    content: "";

    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(233,159,36,.35),
            transparent
        );
}


/* =========================================================
   QUICK NAVIGATION
========================================================= */

.tour-quick-nav {

    position: relative;

    z-index: 10;

    margin-top: -55px;
}

.tour-quick-nav-wrapper {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    background: #fff;

    border-radius: 3px;

    box-shadow:
        0 20px 55px rgba(36, 26, 16, .12);
}


/* =========================================================
   QUICK ITEM
========================================================= */

.tour-quick-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 0;

    padding: 23px 22px;

    color: var(--tour-brown);

    text-decoration: none;

    background: #fff;

    transition:
        background .25s ease,
        color .25s ease;
}

.tour-quick-item:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 20px;
    right: 0;
    bottom: 20px;

    width: 1px;

    background: rgba(36, 26, 16, .06);
}

.tour-quick-item:hover {

    background: #FFF9EF;

    color: var(--tour-brown);
}

.tour-quick-item.active {

    background: var(--tour-dark);

    color: #fff;
}

.tour-quick-item.active::after {
    display: none;
}


/* =========================================================
   QUICK ICON
========================================================= */

.tour-quick-icon {

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--tour-beige);

    color: var(--tour-gold-dark);

    font-size: 15px;
}

.tour-quick-item:hover .tour-quick-icon {

    background: rgba(233,159,36,.12);

    color: var(--tour-gold-dark);
}

.tour-quick-item.active .tour-quick-icon {

    background: rgba(233,159,36,.14);

    color: var(--tour-gold);
}


/* =========================================================
   QUICK TEXT
========================================================= */

.tour-quick-item > span:last-child {

    display: flex;

    flex-direction: column;

    min-width: 0;
}

.tour-quick-item strong {

    font-size: 13px;

    font-weight: 700;

    line-height: 1.3;
}

.tour-quick-item small {

    margin-top: 4px;

    color: var(--tour-text-soft);

    font-size: 10px;

    line-height: 1.3;
}

.tour-quick-item.active small {

    color: rgba(255,255,255,.55);
}


/* =========================================================
   INTRO
========================================================= */

.tour-page-intro {

    padding: 105px 0 110px;

    background: #fff;
}

.tour-intro-grid {

    display: grid;

    grid-template-columns: 1fr .9fr;

    align-items: center;

    gap: 90px;
}

.tour-intro-heading {

    max-width: 600px;
}

.tour-intro-heading .section-eyebrow,
.tour-list .section-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

    color: var(--tour-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.tour-intro-heading .section-eyebrow::before,
.tour-list .section-eyebrow::before {

    content: "";

    width: 27px;
    height: 1px;

    background: currentColor;
}

.tour-intro-heading h2 {

    margin: 0;

    color: var(--tour-brown);

    font-size: clamp(36px, 4.2vw, 56px);

    line-height: 1.12;

    letter-spacing: -1.8px;
}

.tour-intro-heading h2 em {

    color: var(--tour-gold-dark);

    font-style: italic;

    font-weight: 400;
}

.tour-intro-text {

    max-width: 540px;
}

.tour-intro-text p {

    margin: 0 0 17px;

    color: var(--tour-text);

    font-size: 14px;

    line-height: 1.9;
}

.tour-intro-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TOUR LIST
========================================================= */

.tour-list {

    padding: 105px 0 110px;

    background:
        linear-gradient(
            180deg,
            var(--tour-cream) 0%,
            #F9F5ED 100%
        );
}

.tour-list .section-heading-row {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 42px;
}

.tour-list .section-heading-row h2 {

    margin: 0;

    color: var(--tour-brown);

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1.4px;
}

.tour-total-count {

    color: var(--tour-muted);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .2px;
}


/* =========================================================
   TOUR GRID
========================================================= */

.tour-page-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    width: 100%;
}


/* =========================================================
   TOUR CARD
========================================================= */

.tour-page-card {

    width: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--tour-border);

    border-radius: 3px;

    box-shadow:
        0 5px 20px rgba(45,34,22,.025);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.tour-page-card:hover {

    transform: translateY(-6px);

    border-color: rgba(233,159,36,.30);

    box-shadow:
        0 20px 45px rgba(58,40,24,.10);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.tour-page-card-image {

    position: relative;

    display: block;

    height: 280px;

    overflow: hidden;

    background: var(--tour-warm);

    text-decoration: none;
}

.tour-page-card-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.tour-page-card:hover .tour-page-card-image img {
    transform: scale(1.045);
}

.tour-page-card-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 50%,
            rgba(30,22,15,.26) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.tour-page-card-content {

    padding: 24px 24px 25px;

    width: 100%;
}


/* =========================================================
   LOCATION + BADGE
========================================================= */

.tour-page-location-row {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 10px;

    width: 100%;
}

.tour-page-location {

    display: inline-block;

    min-width: 0;

    max-width: 100%;

    color: var(--tour-gold-dark);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    line-height: 1.4;

    text-transform: uppercase;

    overflow: hidden;

    text-overflow: ellipsis;
}

.tour-page-badge {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 21px;

    max-width: 100%;

    padding: 3px 8px;

    background: rgba(33,26,19,.94);

    color: var(--tour-gold);

    border-radius: 3px;

    font-size: 7.5px;

    font-weight: 700;

    letter-spacing: .65px;

    line-height: 1.2;

    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   CARD TITLE
========================================================= */

.tour-page-card-content h3 {

    min-height: 59px;

    margin: 0 0 10px;

    color: var(--tour-brown);

    font-size: 20px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: -.45px;
}

.tour-page-card-content h3 a {

    color: inherit;

    text-decoration: none;
}

.tour-page-card-content h3 a:hover {
    color: var(--tour-gold-dark);
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.tour-page-card-content > p {

    min-height: 66px;

    margin: 0 0 21px;

    color: var(--tour-text);

    font-size: 12.5px;

    line-height: 1.75;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.tour-page-card-footer {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    padding-top: 17px;

    border-top: 1px solid var(--tour-border);
}

.tour-page-price {

    display: flex;

    flex-direction: column;
}

.tour-page-price small {

    margin-bottom: 4px;

    color: var(--tour-muted);

    font-size: 9px;

    line-height: 1.3;
}

.tour-page-price strong {

    color: var(--tour-brown);

    font-size: 16px;

    font-weight: 700;

    line-height: 1.25;
}


/* =========================================================
   CARD ARROW
========================================================= */

.tour-page-arrow {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--tour-dark);

    color: var(--tour-gold);

    font-size: 17px;

    text-decoration: none;
}

.tour-page-arrow:hover {

    background: var(--tour-gold);

    color: var(--tour-dark);

    transform: translateX(3px);
}


/* =========================================================
   EMPTY
========================================================= */

.tour-empty {

    grid-column: 1 / -1;

    padding: 70px 20px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--tour-border);
}

.tour-empty p {

    margin: 0;

    color: var(--tour-muted);

    font-size: 14px;
}


/* =========================================================
   PAGINATION
========================================================= */

.tour-pagination-wrapper {

    display: flex;

    justify-content: center;
    align-items: center;

    width: 100%;

    margin-top: 48px;

    padding-bottom: 15px;
}

.tour-pagination ul {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.tour-pagination li {

    margin: 0;
    padding: 0;
}

.tour-pagination li a,
.tour-pagination li span {

    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 40px;

    padding: 0 12px;

    border: 1px solid var(--tour-border);

    border-radius: 8px;

    background: #fff;

    color: var(--tour-brown);

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;
}

.tour-pagination li a:hover {

    background: var(--tour-gold);

    border-color: var(--tour-gold);

    color: #fff;
}

.tour-pagination li.active span {

    background: var(--tour-dark);

    border-color: var(--tour-dark);

    color: var(--tour-gold);
}

.tour-pagination li.dots span {

    min-width: 24px;

    padding: 0;

    border-color: transparent;

    background: transparent;

    color: var(--tour-muted);
}

.tour-pagination li.prev a,
.tour-pagination li.next a {

    font-size: 18px;

    font-weight: 400;
}


/* =========================================================
   FINAL CTA
========================================================= */

.tour-page-cta {

    min-height: 540px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #fff;
}

.tour-page-cta-image {

    position: absolute;

    inset: 0;

    background:
        url("https://endeholidays.com/images/home-cta.webp")
        center center / cover no-repeat;
}

.tour-page-cta-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(31,23,16,.94) 0%,
            rgba(31,23,16,.72) 48%,
            rgba(31,23,16,.30) 100%
        );
}

.tour-page-cta-content {

    position: relative;

    z-index: 2;

    max-width: 720px;

    padding: 90px 0;
}

.tour-page-cta-content h2 {

    margin: 0 0 20px;

    color: #fff;

    font-size: clamp(40px, 5vw, 66px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.tour-page-cta-content h2 em {

    display: block;

    color: var(--tour-gold);

    font-style: italic;

    font-weight: 400;
}

.tour-page-cta-content p {

    max-width: 570px;

    margin: 0 0 29px;

    color: rgba(255,255,255,.76);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tour-hero-layout {

        grid-template-columns: 1fr .75fr;

        gap: 40px;

        min-height: 600px;
    }

    .tour-page-hero {
        min-height: 600px;
    }

    .tour-page-hero-content {

        padding-top: 65px;
        padding-bottom: 65px;
    }

    .tour-page-hero h1 {

        font-size: 52px;

        letter-spacing: -2px;
    }

    .tour-hero-visual {
        max-width: 390px;
    }

    .tour-hero-image {
        height: 380px;
    }

    .tour-hero-card {
        left: -18px;
    }

    .tour-intro-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .tour-intro-heading,
    .tour-intro-text {
        max-width: 700px;
    }

    .tour-page-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 24px;
    }

    .tour-quick-nav-wrapper {

        grid-template-columns: repeat(2, 1fr);
    }

    .tour-quick-item:nth-child(2)::after {
        display: none;
    }

    .tour-quick-item:nth-child(-n+2)::before {

        content: "";

        position: absolute;

        left: 20px;
        right: 20px;
        bottom: 0;

        height: 1px;

        background: rgba(36,26,16,.06);
    }

    .tour-quick-item.active::before {
        display: none;
    }

    .tour-list {
        padding-top: 90px;
    }
}


/* =========================================================
   MOBILE — FINAL CENTERED
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------------------
       GLOBAL MOBILE
    ----------------------------------------------------- */

    html,
    body {

        width: 100%;

        max-width: 100%;

        overflow-x: hidden;
    }

    .tour-page-hero,
    .tour-page-intro,
    .tour-list,
    .tour-page-cta {

        width: 100%;

        overflow: hidden;
    }


    /* -----------------------------------------------------
       CONTAINER
    ----------------------------------------------------- */

    .tour-page-hero .container,
    .tour-page-intro .container,
    .tour-list .container,
    .tour-page-cta .container {

        width: 100%;

        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        padding-left: 18px;
        padding-right: 18px;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .tour-page-hero {

        min-height: auto;

        display: block;

        text-align: center;
    }

    .tour-page-hero-bg {

        background-position: 58% center;

        transform: scale(1.02);
    }

    .tour-page-hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(25,18,11,.96) 0%,
                rgba(25,18,11,.90) 48%,
                rgba(25,18,11,.82) 100%
            );
    }

    .tour-page-hero::after {

        width: 360px;
        height: 360px;

        right: -190px;
        top: 45%;
    }


    /* -----------------------------------------------------
       HERO LAYOUT
    ----------------------------------------------------- */

    .tour-hero-layout {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        gap: 30px;

        width: 100%;

        min-height: auto;

        padding-top: 0;
    }


    /* -----------------------------------------------------
       HERO CONTENT
    ----------------------------------------------------- */

    .tour-page-hero-content {

        width: 100%;

        max-width: 620px;

        margin-left: auto;
        margin-right: auto;

        padding: 52px 0 0;

        text-align: center;
    }


    /* -----------------------------------------------------
       BREADCRUMB
    ----------------------------------------------------- */

    .tour-breadcrumb {

        display: flex;

        align-items: center;
        justify-content: center;

        width: 100%;

        max-width: 100%;

        margin: 12px auto 24px;

        padding: 0;

        gap: 7px;

        font-size: 10px;

        line-height: 1.5;

        white-space: nowrap;

        overflow: hidden;
    }

    .tour-breadcrumb a,
    .tour-breadcrumb span,
    .tour-breadcrumb strong {

        flex: 0 0 auto;
    }


    /* -----------------------------------------------------
       EYEBROW
    ----------------------------------------------------- */

    .tour-page-eyebrow {

        display: inline-flex;

        justify-content: center;

        margin-bottom: 14px;

        font-size: 9px;

        letter-spacing: 2.3px;
    }


    /* -----------------------------------------------------
       HERO TITLE
    ----------------------------------------------------- */

    .tour-page-hero h1 {

        width: 100%;

        max-width: 100%;

        margin: 0 auto 22px;

        padding: 0;

        font-size: 42px;

        line-height: 1.07;

        letter-spacing: -1.6px;

        text-align: center;

        overflow-wrap: break-word;
    }

    .tour-page-hero h1 em {

        margin-top: 4px;

        letter-spacing: -1.2px;
    }


    /* -----------------------------------------------------
       HERO DESCRIPTION
    ----------------------------------------------------- */

    .tour-page-hero-content > p {

        width: 100%;

        max-width: 560px;

        margin: 0 auto 27px;

        font-size: 13.5px;

        line-height: 1.78;

        text-align: center;
    }


    /* -----------------------------------------------------
       BUTTONS
    ----------------------------------------------------- */

    .tour-page-actions {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        width: 100%;

        max-width: 310px;

        margin: 0 auto;

        gap: 10px;
    }

    .tour-page-actions .btn-primary,
    .tour-page-actions .btn-outline {

        width: 100%;

        min-height: 48px;

        margin: 0;
    }


    /* -----------------------------------------------------
       HERO VISUAL
    ----------------------------------------------------- */

    .tour-hero-visual {

        width: calc(100% - 14px);

        max-width: 430px;

        margin: 0 auto;

        padding: 0 0 48px;

        align-self: center;
    }


    /* -----------------------------------------------------
       HERO FRAME MOBILE
    ----------------------------------------------------- */

    .tour-hero-visual::before {

        top: 0;
        right: 0;

        width: 92%;
        height: calc(100% - 12px);
    }

    .tour-hero-visual::after {

        left: 0;
        bottom: 0;

        width: 45px;
        height: 45px;
    }


    /* -----------------------------------------------------
       HERO IMAGE
    ----------------------------------------------------- */

    .tour-hero-image {

        width: 100%;

        height: 310px;

        margin: 0 auto;

        border-radius: 3px;
    }


    /* -----------------------------------------------------
       HERO FLOATING CARD
    ----------------------------------------------------- */

    .tour-hero-card {

        left: 14px;

        bottom: 14px;

        min-width: 165px;

        padding: 15px 17px;

        text-align: left;
    }


    /* -----------------------------------------------------
       HERO BOTTOM LINE
    ----------------------------------------------------- */

    .tour-page-hero .container::after {

        left: 18px;
        right: 18px;
    }


    /* -----------------------------------------------------
       QUICK NAV
    ----------------------------------------------------- */

    .tour-quick-nav {

        width: 100%;

        margin-top: -24px;

        padding: 0 18px;
    }

    .tour-quick-nav-wrapper {

        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        max-width: 100%;

        margin: 0 auto;

        border: 1px solid var(--tour-border);

        border-radius: 4px;

        box-shadow:
            0 15px 40px rgba(36,26,16,.09);
    }

    .tour-quick-item {

        width: 100%;

        min-width: 0;

        padding: 17px 18px;

        gap: 13px;
    }

    .tour-quick-item:not(:last-child)::after {

        top: auto;

        right: 18px;

        bottom: 0;

        left: 18px;

        width: auto;

        height: 1px;

        background: rgba(36,26,16,.06);
    }

    .tour-quick-item:last-child::after {
        display: none;
    }

    .tour-quick-item.active::after {
        display: none;
    }


    /* -----------------------------------------------------
       INTRO
    ----------------------------------------------------- */

    .tour-page-intro {

        padding: 72px 0 78px;

        text-align: center;
    }

    .tour-intro-grid {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 30px;

        width: 100%;
    }

    .tour-intro-heading {

        width: 100%;

        max-width: 600px;

        margin: 0 auto;
    }

    .tour-intro-heading .section-eyebrow {

        justify-content: center;
    }

    .tour-intro-heading h2 {

        width: 100%;

        margin: 0 auto;

        font-size: 37px;

        line-height: 1.13;

        letter-spacing: -1.2px;

        text-align: center;
    }

    .tour-intro-text {

        width: 100%;

        max-width: 600px;

        margin: 0 auto;
    }

    .tour-intro-text p {

        margin-left: auto;
        margin-right: auto;

        font-size: 13.5px;

        line-height: 1.85;

        text-align: center;
    }


    /* -----------------------------------------------------
       TOUR LIST
    ----------------------------------------------------- */

    .tour-list {

        padding: 72px 0 82px;

        text-align: center;
    }

    .tour-list .section-heading-row {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 10px;

        width: 100%;

        margin-bottom: 32px;

        text-align: center;
    }

    .tour-list .section-eyebrow {

        justify-content: center;
    }

    .tour-list .section-heading-row h2 {

        width: 100%;

        margin: 0 auto;

        font-size: 34px;

        line-height: 1.15;

        letter-spacing: -1px;

        text-align: center;
    }

    .tour-total-count {

        width: 100%;

        text-align: center;

        font-size: 11px;
    }


    /* -----------------------------------------------------
       TOUR GRID
    ----------------------------------------------------- */

    .tour-page-grid {

        display: grid;

        grid-template-columns: minmax(0, 1fr);

        width: 100%;

        max-width: 560px;

        margin: 0 auto;

        gap: 20px;
    }


    /* -----------------------------------------------------
       TOUR CARD
    ----------------------------------------------------- */

    .tour-page-card {

        width: 100%;

        max-width: 100%;

        margin: 0 auto;

        text-align: left;
    }


    /* -----------------------------------------------------
       CARD IMAGE
    ----------------------------------------------------- */

    .tour-page-card-image {

        width: 100%;

        height: 255px;
    }


    /* -----------------------------------------------------
       CARD CONTENT
    ----------------------------------------------------- */

    .tour-page-card-content {

        width: 100%;

        padding: 21px 19px 23px;
    }


    /* -----------------------------------------------------
       LOCATION + BADGE
    ----------------------------------------------------- */

    .tour-page-location-row {

        width: 100%;

        display: flex;

        align-items: center;

        flex-wrap: wrap;

        gap: 6px;

        margin-bottom: 10px;
    }

    .tour-page-location {

        max-width: calc(100% - 105px);

        white-space: nowrap;

        overflow: hidden;

        text-overflow: ellipsis;
    }

    .tour-page-badge {

        max-width: 100%;
    }


    /* -----------------------------------------------------
       CARD TITLE
    ----------------------------------------------------- */

    .tour-page-card-content h3 {

        min-height: auto;

        margin-bottom: 9px;

        font-size: 19px;

        line-height: 1.4;
    }


    /* -----------------------------------------------------
       CARD DESCRIPTION
    ----------------------------------------------------- */

    .tour-page-card-content > p {

        min-height: auto;

        margin-bottom: 19px;

        font-size: 12.5px;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       CARD FOOTER
    ----------------------------------------------------- */

    .tour-page-card-footer {

        width: 100%;

        gap: 12px;
    }


    /* -----------------------------------------------------
       PAGINATION
    ----------------------------------------------------- */

    .tour-pagination-wrapper {

        display: flex;

        justify-content: center;
        align-items: center;

        width: 100%;

        margin-top: 32px;

        padding: 0 0 8px;
    }

    .tour-pagination {

        width: 100%;

        display: flex;

        justify-content: center;
    }

    .tour-pagination ul {

        display: flex;

        align-items: center;

        justify-content: center;

        flex-wrap: wrap;

        width: 100%;

        gap: 4px;
    }

    .tour-pagination li a,
    .tour-pagination li span {

        min-width: 37px;

        height: 37px;

        padding: 0 9px;

        border-radius: 7px;

        font-size: 12px;
    }

    .tour-pagination li.dots span {
        min-width: 18px;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .tour-page-cta {

        min-height: 540px;

        text-align: center;
    }

    .tour-page-cta-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(31,23,16,.84) 0%,
                rgba(31,23,16,.94) 100%
            );
    }

    .tour-page-cta-content {

        width: 100%;

        max-width: 650px;

        margin: 0 auto;

        padding: 75px 0;
    }

    .tour-page-cta-content h2 {

        width: 100%;

        margin: 0 auto 20px;

        font-size: 45px;

        line-height: 1.08;

        letter-spacing: -1.2px;

        text-align: center;
    }

    .tour-page-cta-content p {

        width: 100%;

        max-width: 560px;

        margin: 0 auto 29px;

        font-size: 13.5px;

        line-height: 1.8;

        text-align: center;
    }

    .tour-page-cta-content .btn-primary {

        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    /* -----------------------------------------------------
       CONTAINER
    ----------------------------------------------------- */

    .tour-page-hero .container,
    .tour-page-intro .container,
    .tour-list .container,
    .tour-page-cta .container {

        padding-left: 16px;
        padding-right: 16px;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .tour-page-hero-content {

        padding-top: 48px;
    }

    .tour-breadcrumb {

        margin-top: 10px;

        margin-bottom: 22px;

        font-size: 9.5px;
    }

    .tour-page-eyebrow {

        font-size: 8.5px;

        letter-spacing: 2px;
    }

    .tour-page-hero h1 {

        font-size: 38px;

        letter-spacing: -1.2px;

        line-height: 1.08;
    }

    .tour-page-hero h1 em {
        letter-spacing: -.9px;
    }

    .tour-page-hero-content > p {

        font-size: 13px;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       HERO VISUAL
    ----------------------------------------------------- */

    .tour-hero-visual {

        width: calc(100% - 8px);

        max-width: 390px;

        padding-bottom: 44px;
    }

    .tour-hero-image {

        height: 280px;
    }

    .tour-hero-card {

        left: 10px;

        bottom: 10px;

        min-width: 155px;

        padding: 14px 15px;
    }

    .tour-hero-card strong {

        font-size: 13px;
    }


    /* -----------------------------------------------------
       QUICK NAV
    ----------------------------------------------------- */

    .tour-quick-nav {

        margin-top: -20px;

        padding-left: 16px;
        padding-right: 16px;
    }

    .tour-quick-item {

        padding: 16px;
    }


    /* -----------------------------------------------------
       INTRO
    ----------------------------------------------------- */

    .tour-page-intro {

        padding: 66px 0 72px;
    }

    .tour-intro-heading h2 {

        font-size: 33px;

        letter-spacing: -1px;
    }


    /* -----------------------------------------------------
       TOUR LIST
    ----------------------------------------------------- */

    .tour-list {

        padding: 66px 0 76px;
    }

    .tour-list .section-heading-row h2 {

        font-size: 31px;
    }


    /* -----------------------------------------------------
       CARD
    ----------------------------------------------------- */

    .tour-page-grid {

        gap: 18px;
    }

    .tour-page-card-image {

        height: 235px;
    }

    .tour-page-card-content {

        padding: 20px 17px 22px;
    }

    .tour-page-location-row {

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

    .tour-page-location {

        max-width: 100%;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .tour-page-cta-content {

        padding: 68px 0;
    }

    .tour-page-cta-content h2 {

        font-size: 39px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .tour-page-hero h1 {
        font-size: 34px;
    }

    .tour-page-eyebrow {
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .tour-page-hero-content > p {
        font-size: 12.5px;
    }

    .tour-hero-image {
        height: 250px;
    }

    .tour-hero-card {
        min-width: 145px;
    }

    .tour-intro-heading h2 {
        font-size: 30px;
    }

    .tour-list .section-heading-row h2 {
        font-size: 29px;
    }

    .tour-page-card-image {
        height: 215px;
    }

    .tour-page-cta-content h2 {
        font-size: 35px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .tour-page-card,
    .tour-page-card-image img,
    .tour-page-arrow,
    .tour-page-cta-image,
    .tour-hero-image img,
    .tour-page-actions .btn-primary,
    .tour-page-actions .btn-outline {

        transition: none !important;
    }
}