.tour-detail-shell{
    background:var(--cream);
    margin-top:22px;
    border-top-left-radius:56px;
    border-top-right-radius:56px;
    padding:72px 0 76px;
    color:var(--text);
}

.tour-detail-container{
    width:min(100%, 1260px);
    margin:0 auto;
    padding:0 24px;
}

.tour-hero-title{
    margin:0;
    font-family:'Oswald',sans-serif;
    font-size:76px;
    line-height:.95;
    font-weight:500;
    text-transform:uppercase;
    color:#667734;
}

.tour-hero-script{
    margin-top:6px;
    font-family:'Great Vibes',cursive;
    font-size:76px;
    line-height:1;
    color:#7a8351;
    text-align:right;
}

.tour-hero-gallery{
    margin-top:30px;
    display:grid;
    grid-template-columns:1.65fr .82fr .82fr 1.65fr;
    grid-template-rows:138px 122px 122px;
    grid-template-areas:
        "main main group villa"
        "main main house villa"
        "couple lake feast picnic";
    gap:12px;
}

.gallery-card{
    margin:0;
    border-radius:14px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    background:linear-gradient(135deg, #8d9960, #6b7a3a);
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gallery-card-main{grid-area:main}
.gallery-card-group{grid-area:group}
.gallery-card-house{grid-area:house}
.gallery-card-villa{grid-area:villa}
.gallery-card-couple{grid-area:couple}
.gallery-card-lake{grid-area:lake}
.gallery-card-feast{grid-area:feast}
.gallery-card-picnic{grid-area:picnic}

.tour-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:42px 0 28px;
}

.tour-tab{
    min-width:150px;
    height:42px;
    padding:0 22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:linear-gradient(135deg, #78864d, #5e6c38);
    color:#f7f1de;
    font-size:14px;
    line-height:1;
    text-decoration:none;
    transition:.2s ease;
}

.tour-tab.active,
.tour-tab:hover{
    background:linear-gradient(135deg, #efb80d, #c89500);
    color:#fff;
}

.tour-content{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 520px;
    gap:18px;
    align-items:start;
}

.tour-content-media{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    height:420px;
    box-shadow:var(--shadow-soft);
}

.tour-content-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.tour-arrow{
    position:absolute;
    top:50%;
    left:18px;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:rgba(248,242,223,.95);
    color:#728043;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 24px rgba(82,92,39,.18);
}

.tour-arrow-right{
    left:auto;
    right:18px;
}

.tour-content-side{
    display:grid;
    gap:16px;
}

.tour-copy,
.tour-price{
    background:linear-gradient(145deg, #8d9960, #6b7a3a);
    color:#f5f0de;
    border-radius:18px;
    padding:24px 24px 22px;
    box-shadow:var(--shadow-soft);
}

.tour-copy p{
    margin:0 0 14px;
    font-size:18px;
    line-height:1.45;
}

.tour-copy p:last-of-type{
    margin-bottom:14px;
}

.tour-list{
    margin:0;
    padding-left:20px;
    display:grid;
    gap:8px;
    font-size:18px;
    line-height:1.45;
}

.tour-price{
    text-align:center;
    background:linear-gradient(145deg, #a4b171, #8a9a58);
}

.tour-price-label{
    font-size:32px;
    line-height:1;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    color:#f8f3e4;
}

.tour-price-value{
    margin-top:10px;
    font-size:36px;
    line-height:1.1;
    font-weight:700;
    color:#fffef7;
}

.tour-book-btn{
    width:100%;
    min-height:58px;
    border-radius:999px;
    background:linear-gradient(135deg, #efb80d, #c89500);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-family:'Oswald',sans-serif;
    font-size:28px;
    line-height:1;
    text-transform:uppercase;
    text-decoration:none;
    box-shadow:0 16px 32px rgba(151,119,10,.2);
}

@media (max-width:1100px){
    .tour-hero-title{font-size:56px}
    .tour-hero-script{font-size:58px}
    .tour-content{grid-template-columns:1fr}
}

@media (max-width:760px){
    .tour-detail-shell{
        padding:44px 0 50px;
        border-top-left-radius:36px;
        border-top-right-radius:36px;
    }

    .tour-detail-container{
        padding:0 16px;
    }

    .tour-hero-title{font-size:38px}
    .tour-hero-script{font-size:42px}
    .tour-hero-gallery{
        grid-template-columns:repeat(2,1fr);
        grid-template-rows:repeat(5,120px);
        grid-template-areas:
            "main main"
            "group house"
            "villa villa"
            "couple lake"
            "feast picnic";
    }
    .tour-tab{
        width:100%;
        min-width:0;
    }
    .tour-content-media{
        min-height:160px;
    }
    .tour-copy p,
    .tour-list{
        font-size:15px;
    }
    .tour-price-label{font-size:24px}
    .tour-price-value{font-size:28px}
    .tour-book-btn{font-size:20px;min-height:50px}
}

/* === Tab panels === */
.tour-panel{
    display:none;
}
.tour-panel.active{
    display:block;
}

/* === Info box (route / included) === */
.tour-info-box{
    background:linear-gradient(145deg, #7d8751, #5f6c38);
    color:#f3f0e2;
    border-radius:24px;
    padding:26px 30px 24px 36px;
    min-height:480px;
    display:flex;
    flex-direction:column;
    box-shadow:var(--shadow-soft);
}

.tour-info-box ul{
    padding-left:22px;
    margin:0;
    width:100%;
}

.tour-info-box li{
    font-size:20px;
    line-height:1.35;
    margin-bottom:4px;
    font-weight:400;
}

/* === Tab button reset === */
.tour-tab{
    border:none;
    cursor:pointer;
    font-family:'Roboto',sans-serif;
}

@media (max-width:1100px){
    .tour-info-box li{font-size:18px}
}

@media (max-width:760px){
    .tour-info-box{
        padding:20px 18px 18px 24px;
        border-radius:18px;
        min-height:auto;
    }
    .tour-info-box li{
        font-size:16px;
        line-height:1.4;
    }
}

/* === Info box title / subtitle === */
.tour-info-title{
    font-size:18px;
    font-weight:500;
    margin-bottom:16px;
}
.tour-info-subtitle{
    font-size:18px;
    font-weight:500;
    margin-top:14px;
    margin-bottom:14px;
}

@media (max-width:760px){
    .tour-info-title,
    .tour-info-subtitle{
        font-size:17px;
    }
}

.tour-content-media .tour-slide{
    position:absolute;
    top:0;left:0;
    width:100%;height:100%;
    object-fit:cover;
    display:none;
}
.tour-content-media .tour-slide.active{
    display:block;
}
.tour-arrow{
    cursor:pointer;
    z-index:10;
    transition:background .2s;
    pointer-events:auto;
}
.tour-arrow:hover{
    background:rgba(248,242,223,1);
}
