/*------ FONTS ------*/
@font-face {
    font-family: 'Helvetica Now Display';
    src: url('../fonts/HelveticaNowDisplay-Regular.woff2') format('woff2'),
         url('../fonts/HelveticaNowDisplay-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('../fonts/HelveticaNowDisplay-Medium.woff2') format('woff2'),
         url('../fonts/HelveticaNowDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('../fonts/HelveticaNowDisplay-Bold.woff2') format('woff2'),
         url('../fonts/HelveticaNowDisplay-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/*------ RESET ------*/

#tours {
    scroll-margin-top: -235px;
}

@media (max-width: 1024px) {
    #tours {
        scroll-margin-top: -170px;
    }
}
@media (max-width: 768px) {
    #tours {
        scroll-margin-top: -100px;
    }
}
@media (max-width: 480px) {
    #tours {
        scroll-margin-top: -60px;
    }
}


*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff; 
    color: #000; 
    line-height: 1.2;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    letter-spacing: -0.02em;
}

ul, ol, li {
    list-style: none;
}

img, svg {
    max-width: 100%;
    display: block;
}

button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

h1, h2, h3, h4, h5, h6, p, span {
    letter-spacing: -0.02em;
}

/* GLOBAL */

.opacity-fade {
    opacity: 0;
    animation: justFadeIn 0.8s ease forwards;
}

@keyframes justFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.section {
    padding-top: 240px;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.descriptor {
    grid-column: 1 / 2;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #6A6B6C;
}

.btn {
    background-color: #CED925;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 60px;
    border-radius: 100px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    background-color: #b5c020;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    color: #ffffff;
    border-bottom: 1px solid #BCBCBC;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 0;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    width: 77px;
    height: 22px;
}

.nav {
    display: flex;
}

.nav__list {
    display: flex;
    align-items: center;
}

.nav__item {
    padding: 21.5px 30px;
    border-left: 1px solid #BCBCBC;
    transition: background-color 0.3s ease;
}

.nav__item:hover {
    background-color: #CED925; 
}

.nav__link {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
}

.nav__item:hover .nav__link {
    color: #000; 
}

.menu-btn {
    display: none;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-extra {
    display: none;
}


/* -------- INFO BLOCK -------- */


.section-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 25px;
}

.descriptor {
    grid-column: 1 / 2;
    font-size: 16px;
    font-weight: 400;
    color: #6A6B6C;
}

.section-title {
    grid-column: 2 / 5;
    font-size: 42px;
    font-weight: 500;
    text-indent: calc((100% + 20px) / 3); 
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.content-grid__text {
    grid-column: 3 / 4;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.body-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    max-width: 340px;
}

/*------ GLOBAL ADAPTIVE ------*/


@media (max-width: 1280px) {
    .descriptor {
        font-size: 14px;
    }
    
}

@media (max-width: 1024px) {
    .logo__img {
        width: 67px;
        height: 20px;
    }
    .nav__item {
        padding: 16px 22px;
    }

    .nav__link {
        font-size: 14px;
    }

    .section {
        padding-top: 180px;
    }
    
    .section-top {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 36px;
        max-width: 800px;
        text-align: left;
        text-indent: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding-top: 140px;
    }
    .section-top {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 30px;
        max-width: 600px;
    }

    .btn {
        font-size: 15px;
        padding: 13px 54px;
    }
    .logo__img {
        width: 60px;
        height: 18px;
    }
    .nav__item {
        padding: 12px 18px;
    }

    .nav__link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section {
        padding-top: 100px;
    }
    .container {
        padding: 0 20px;
    }

    .section-top {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 28px;
        max-width: 600px;
    }

    .body-text {
        font-size: 14px;
        line-height: 1.4;
        max-width: 300px;
    }

    .btn {
        font-size: 14px;
        padding: 12px 48px;
    }

    .header.is-open {
        background-color: #1A1A1A;
        border-bottom-color: transparent;
    }

    .header__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 10;
        padding: 15px 20px;
    }

   .header__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logo, 
    .menu-btn {
        display: block;
        position: relative;
        z-index: 10;
        font-weight: 400;
        font-size: 14px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #1A1A1A;
        display: flex;
        flex-direction: column;
        padding: 100px 20px 40px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1;
        
    }

    .header.is-open .nav {
        opacity: 1;
        pointer-events: auto;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .nav__item {
        border-left: none;
        padding: 0;
        width: 100%;
    }

    .nav__item:hover {
        background-color: transparent;
    }

    .nav__link {
        font-size: 32px;
        text-transform: uppercase;
        font-weight: 400;
    }

    .nav__item:hover .nav__link {
        color: #CED925;
    }

    .mobile-extra {
        display: flex;
        flex-direction: column;
        margin-top: 320px; 
        width: 100%;
        text-align: right;
    }

    .mobile-extra__title {
        font-size: 32px;
        color: #6A6B6C;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .mobile-extra__line {
        width: 100%;
        height: 1px;
        background-color: #4E4E4E;
        margin: 0 0 5px 0;
        border: none;
    }

    .mobile-extra__gmail{
        font-size: 26px;
        font-weight: 400;
        color: #ffffff;
    }
}

/*------ HERO ------*/


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../images/common/hero-bg.png');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    color: #ffffff; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-top: 300px;
    padding-bottom: 300px;
}

.hero__content {
    max-width: 900px;
    margin-right: 120px;
}

.hero__title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

.hero__profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}


/* ------ ABOUT ------ */


.about {
    padding-top: 90px;
}

.about__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    align-items: start;
}

.about__text {
    grid-column: 3 / 5;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.4;
}


/*------ TOURS ------*/


.tours {
    overflow: hidden;
}

.tours__title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 60px;
}

.tours__slider {
    width: 100%;
    padding-left: max(40px, calc((100vw - 1520px) / 2)) !important;
    align-items: center;
}

.swiper-slide {
    width: 360px !important; 
    height: auto;
}

.tours__slider .swiper-wrapper {
    align-items: center;
}

.tour-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.tour-card__img {
    width: 100%;
    object-fit: cover;
    pointer-events: none; 
}

.tour-card__title {
    font-size: 16px;
    font-weight: 500;
}

.tour-card--300 .tour-card__img { height: 300px; }
.tour-card--460 .tour-card__img { height: 460px; }
.tour-card--520 .tour-card__img { height: 520px; }


/*------ PHILOSOPHY ------*/

.philosophy {
    overflow: hidden;
}

.slider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.philosophy__slider {
    grid-column: 2 / 5;
    width: 100%;
    overflow: visible; 
}

.philosophy__slider .swiper-slide {
    width: auto !important;
    display: flex;
    align-items: flex-start; 
}

.photo-card {
    object-fit: cover;
    pointer-events: none;
    width: 100%;
}

.photo-card--740x560 { 
    max-width: 740px; 
    max-height: 560px; 
}

.photo-card--200x200 { 
    max-width: 200px; 
    max-height: 200px; 
}

.photo-card--360x460 { 
    max-width: 360px; 
    max-height: 460px; 
}


/*------ VIHICLE ------*/

.vehicle__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.vehicle__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vehicle__text-1 {
    grid-column: 3 / 4;
}

.vehicle__text-2 {
    grid-column: 4 / 5;
}

.vehicle__img-1 {
    grid-column: 2 / 4;
    width: 100%;
    object-fit: cover;
}

.vehicle__img-2 {
    grid-column: 4 / 5;
    width: 100%;
    object-fit: cover;
}


/*------ FISHING ------*/


.fishing__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    row-gap: 15px;
    margin-bottom: 35px;
}

.fishing__content .body-text {
    grid-column: 3 / 4; 
}

.fishing__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fishing__img-1 {
    grid-column: 1 / 2;
    width: 100%;
    object-fit: cover;
}

.fishing__img-2 {
    grid-column: 2 / 3;
    width: 100%;
    object-fit: cover;
    align-self: start;
}

.fishing__img-3 {
    grid-column: 3 / 5;
    width: 100%;
    object-fit: cover;
}


/*------ HIKING ------*/


.hiking__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.hiking__text-1 {
    grid-column: 3 / 4;
}

.hiking__text-2 {
    grid-column: 4 / 5;
}

.hiking__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hiking__img-1 {
    grid-column: 1 / 4;
    width: 100%;
    object-fit: cover;
}

.hiking__img-2 {
    grid-column: 4 / 5;
    width: 100%;
    object-fit: cover;
    align-self: start;
}


/* --- INDEX ADAPTIVE ---*/


@media (max-width: 1280px) {
    .hero__title {
        font-size: 48px;
    }
    .hero__profile-img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 1024px) {
    .hero__container {
        flex-direction: column;
        align-items: start;
        padding-top: 180px;
        padding-bottom: 180px;
    }
    
    .hero__title {
        max-width: 800px;
    }

    .hero__profile-img {
        order: 1;
        margin-bottom: 30px;
    }

    .hero__content {
        order: 2;
        margin-right: 0;
    }

    /* ------ ABOUT ADAPTIVE 1024------ */

    .about__container {
        display: block;
    }

    .about__text {
        font-size: 32px;
        max-width: 640px;
        margin-top: 20px;
    }

    /*------ TOURS ADAPTIVE 1024------*/

    .tours__title {
        font-size: 48px;
        margin-bottom: 40px;
    }

    .swiper-slide {
        width: 320px !important; 
        height: auto;
    }

    .tour-card--300 .tour-card__img { height: 240px; }
    .tour-card--460 .tour-card__img { height: 400px; }
    .tour-card--520 .tour-card__img { height: 460px; }

    /*------ PHILOSOPHIA ADAPTIVE 1024------*/

    .content-grid {
        display: block;
        margin-bottom: 35px;
    }
    .content-grid__text {
        max-width: 340px;
        width: 100%;
    }

    .slider-grid {
        display: block;
    }

    .philosophy__slider {
        width: 100%;
    }
        
    .photo-card--740x560 { height: 420px; }
    .photo-card--200x200 { height: 160px; }
    .photo-card--360x460 { height: 320px; }

    /*------ VIHICLE  1024------*/

    .vehicle__content {
        display: block;
    }

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

    .vehicle__text-1 {
        margin-bottom: 15px;
    }

    .vehicle__img-1 {
        grid-column: 1 / 3;
    }

    .vehicle__img-2 {
        grid-column: 3 / 3;
    }

    /*------ FISHING 1024------*/

    .fishing__content {
        display: block;
    }

    .fishing__content .body-text:first-child {
        margin-bottom: 15px;
    }

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

    .fishing__img-1 {
        grid-column: 1 / 2;
    }

    .fishing__img-2 {
        display: none;
    }

    .fishing__img-3 {
        grid-column: 2 / 4;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*------ HIKING 1024------*/

    .hiking__content {
        display: block;
    }

    .hiking__text-1 {
        margin-bottom: 15px;
    }

    .hiking__gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hiking__img-1 {
        grid-column: 1 / 4;
        min-height: 290px;
    }

    .hiking__img-2 {
       display: none;
    }

}

@media (max-width: 768px) {
    .hero__title {
        max-width: 800px;
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .hero__profile-img {
        width: 200px;
        height: 200px;
    }
    
    /* ------ ABOUT ADAPTIVE 768------ */


    .about__container {
        display: block;
    }

    .about__text {
        font-size: 28px;
    }


    /*------ TOURS ADAPTIVE 768------*/


    .tours__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .swiper-slide {
        width: 280px !important; 
        height: auto;
    }

    .tour-card--300 .tour-card__img { height: 220px; }
    .tour-card--460 .tour-card__img { height: 360px; }
    .tour-card--520 .tour-card__img { height: 420px; }


    /*------ PHILOSOPHIA ADAPTIVE 768------*/
        
    .photo-card--740x560 { height: 360px; }
    .photo-card--200x200 { height: 140px; }
    .photo-card--360x460 { height: 280px; }

    /*------ VIHICLE 768------*/

    .vehicle__img-1 {
        grid-column: 1 / 4;
        min-height: 290px;
    }

    .vehicle__img-2 {
        display: none;
    }

    /*------ FISHING 768------*/

    .fishing__img-1 {
        display: none;
    }

    .fishing__img-3 {
        grid-column: 1 / 4;
        min-height: 290px;
    }

    /*------ HIKING 768 ------*/

}

@media (max-width: 480px) {
    .hero__container {
        padding-top: 160px;
        padding-bottom: 160px;
    }
    .hero__title {
        max-width: 800px;
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero__profile-img {
        width: 170px;
        height: 170px;
    }

    /* ------ ABOUT ADAPTIVE 480------ */

    .about__container {
        display: block;
    }

    .about__text {
        font-size: 22px;
    }

    /*------ TOURS ADAPTIVE 480------*/

    .tours__slider {
        width: 100%;
        padding-left: max(20px, calc((100vw - 1520px) / 2)) !important;
    }

    .tours__title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .tour-card {
        gap: 10px;
    }

    .tour-card__title {
        font-size: 14px;
    }

    .swiper-slide {
        width: 240px !important; 
        height: auto;
    }

    .tour-card--300 .tour-card__img { height: 180px; }
    .tour-card--460 .tour-card__img { height: 320px; }
    .tour-card--520 .tour-card__img { height: 360px; }

    /*------ PHILOSOPHIA ADAPTIVE 480------*/
        
    .photo-card--740x560 { height: 320px; }
    .photo-card--200x200 { height: 120px; }
    .photo-card--360x460 { height: 240px; }

    /*------ VIHICLE 480------*/

    /*------ FISHING 480------*/

    /*------ HIKING 480 ------*/
}



/* ------ FAQ ------*/


.faq {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
    padding-bottom: 120px;
}

.faq__item {
    grid-column: 3 / 5;
    border-bottom: 1px solid #4E4E4E;
    padding: 24px 0;
}

.faq__item:first-child {
    border-top: 1px solid #4E4E4E;
}

.faq__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none; 
}

.faq__question {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}

.faq__icon {
    width: 18px;
    height: 12px;
    transition: transform 0.3s ease;
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer-inner {
    overflow: hidden;
}

.faq__text {
    padding-top: 15px;
    max-width: 480px;
}

.faq__item.is-open .faq__icon {
    transform: rotate(180deg);
}


/* ------ FAQ 1024------*/


@media (max-width: 1024px) {
    .faq {
        display: block;
        margin-top: 30px;
    }

    .faq__item {
        padding: 24px 0;
        max-width: 600px;
    }

    .faq__question {
        font-weight: 500;
        font-size: 18px;
        text-transform: uppercase;
    }

    .faq__icon {
        width: 18px;
        height: 12px;
        transition: transform 0.3s ease;
    }
}


/* ------ FAQ 768------*/


@media (max-width: 768px) {
    .faq {
        display: block;
        margin-top: 30px;
    }

    .faq__item {
        padding: 24px 0;
        max-width: 768px;
    }

    .faq__question {
        font-size: 16px;
    }

    .faq__icon {
        width: 16px;
        height: 11px;
    }
}

/* ------ FAQ 480------*/

@media (max-width: 480px) {
    .faq {
        padding-bottom: 100px;
    }

    .faq__item {
        padding: 22px 0;
    }
    .faq__text {
        padding-top: 15px;
        max-width: 380px;
    }
    .faq__question {
        font-size: 14px;
    }

    .faq__icon {
        width: 15px;
        height: 10px;
    }
}


    

.tour-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 240px 0 220px 0;
    color: #fff;
    margin-bottom: 90px;
}

.tour-hero__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tour-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.tour-content__title {
    font-size: 96px;
    line-height: 1;
}

.tour-content__desc {
    font-size: 16px;
    max-width: 495px;
    padding-left: 10px;
    line-height: 1.3;
}

.tour-info {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-left: 10px;
}

.tour-info__item {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    gap: 4px;
}

.tour-info__item:first-child {
    border-left: 1px solid #BCBCBC;
}

.tour-info__item:not(:last-child) {
    border-right: 1px solid #BCBCBC;
    padding-right: 60px;
}

.tour-info__label {
    font-size: 14px;
}

.tour-info__value {
    font-size: 28px;
    font-weight: 500;
}

@media (max-width: 1280px) {
    .tour-hero {
        padding: 220px 0 180px 0;
    }
    .tour-content__title {
        font-size: 72px;
    }
}

@media (max-width: 1024px) {
    .tour-hero {
        padding: 190px 0 160px 0;
    }
    .tour-content {
        margin-bottom: 25px;
    }
    .tour-content__title {
        font-size: 60px;
    }
    .tour-content__desc {
        font-size: 14px;
        max-width: 420px;
    }
    .tour-info {
        margin-bottom: 30px;
    }
    .tour-info__item:not(:last-child) {
        padding-right: 54px;
    }
    .tour-info__label {
        font-size: 12px;
    }
    .tour-info__value {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .tour-content {
        margin-bottom: 25px;
    }
    .tour-content__title {
        font-size: 48px;
    }
    .tour-content__desc {
        max-width: 360px;
        padding-left: 0;
    }
    .tour-info {
        margin-bottom: 30px;
        padding-left: 0;
    }
    .tour-info__item:not(:last-child) {
        padding-right: 54px;
    }
    .tour-info__label {
        font-size: 12px;
    }
    .tour-info__value {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .tour-content {
        margin-bottom: 20px;
    }
    .tour-content__title {
        font-size: 42px;
    }
    .tour-content__desc {
        max-width: 330px;
        padding-left: 0;
    }
    .tour-info {
        margin-bottom: 25px;
        padding-left: 0;
    }
    .tour-info__item:not(:last-child) {
        padding-right: 48px;
    }
    .tour-info__label {
        font-size: 10px;
    }
    .tour-info__value {
        font-size: 20px;
    }
}














.route-list {
    display: flex;
    flex-direction: column;
}

.route-step {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.route-step__wrapper {
    grid-column: 3 / span 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #8C8C8C;
    padding: 30px 0;
}

.route-step:first-child .route-step__wrapper {
    border-top: none;
    padding-top: 0;
}

.route-step__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.route-step__title {
    font-weight: 500;
    font-size: 28px;
}

.route-step__text {
    max-width: 340px;
}

.route-step__gallery {
    display: grid;
    gap: 20px;
    width: 100%;
    align-items: start;
}

.route-step__gallery--single {
    grid-template-columns: 1fr;
    --img1-ratio: 760 / 560;
}

.route-step__gallery--mixed-left {
    grid-template-columns: 1fr 1fr;
    --img1-ratio: 360 / 460;
    --img2-ratio: 360 / 240;
}

.route-step__gallery--mixed-right {
    grid-template-columns: 1fr 1fr;
    --img1-ratio: 360 / 240;
    --img2-ratio: 360 / 460;
}

.route-step__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.route-step__img:nth-child(1) {
    aspect-ratio: var(--img1-ratio, 760 / 560);
}

.route-step__img:nth-child(2) {
    aspect-ratio: var(--img2-ratio, 360 / 460);
}

@media (max-width: 1024px) {
    .route-step {
        grid-template-columns: 1fr;
    }
    
    .route-step__spacer {
        display: none;
    }
    
    .route-step__wrapper {
        grid-column: 1 / -1;
        padding: 30px 0;
    }

    .route-step__text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .route-step__wrapper {
        padding: 25px 0;
    }
    
    .route-step__gallery {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .route-step__gallery--mixed-left .route-step__img:nth-child(1) {
        display: none;
    }

    .route-step__gallery--mixed-right .route-step__img:nth-child(2) {
        display: none;
    }

    .route-step__gallery--single .route-step__img,
    .route-step__gallery--mixed-left .route-step__img:nth-child(2),
    .route-step__gallery--mixed-right .route-step__img:nth-child(1) {
        aspect-ratio: 760 / 560;
    }
}

@media (max-width: 480px) {
    .route-step__wrapper {
        gap: 20px;
    }
    
    .route-step__gallery--single .route-step__img,
    .route-step__gallery--mixed-left .route-step__img:nth-child(2),
    .route-step__gallery--mixed-right .route-step__img:nth-child(1) {
        aspect-ratio: 4 / 3;
    }
    
    .route-step__title {
        font-size: 24px;
    }
}











.footer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.footer__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    padding-top: 140px;
}

.footer__booking {
    grid-column: 3 / span 2;
    width: 100%;
    margin-bottom: 180px;
}

.footer__title {
    font-weight: 700;
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 35px;
}

.footer__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 25px;
    margin-bottom: 40px;
}

.footer__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    padding: 8px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer__input:focus {
    border-bottom-color: #fff;
}

.footer__submit {
    background-color: #CADA29;
    color: #000;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: none;
    padding: 14px 0;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: calc(50% - 30px);
}

.footer__submit:hover {
    background-color: #b5c425;
}

.footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-top: 1px solid #8C8C8C;
    padding-top: 20px;
    margin-bottom: 60px;
    gap: 30px;
}

.footer__contacts {
    display: flex;
    gap: 70px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contact-label {
    font-size: 14px;
    color: #9E9C9C;
}

.footer__contact-value {
    font-size: 14px;
    line-height: 1.4;
}

.footer__email-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.footer__contact-link {
    color: inherit;
    font-size: 48px;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    line-height: 1.1;
    display: inline-block;
    word-break: break-all;
    max-width: 100%;
}

.footer__legal {
    grid-column: 1 / -1;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #9E9C9C;
}

.footer__policy {
    color: inherit;
    text-decoration: none;
}

.footer__input.error {
    border-bottom-color: #ff4a4a !important;
    color: #ff4a4a !important;
}

.footer__input.error::placeholder {
    color: rgba(255, 74, 74, 0.7) !important;
}

.footer__select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.footer__select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 16px;
    transition: border-color 0.3s ease;
}

.footer__select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    color: #000;
    margin: 5px 0 0 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-radius: 10px;
}

.footer__select-custom.open .footer__select-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.footer__select-option {
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 16px;
}

.footer__select-option:hover {
    background-color: #e3e3e3; 
}

.footer__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 360px;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 30px 30px;
    box-sizing: border-box;
}

.footer__success svg {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
}

.footer__success-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000000;
    line-height: 1.2;
}

.footer__success-text {
    font-size: 14px;
    color: #9E9C9C;
    line-height: 1.4;
}

.footer__phone-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__phone-link:hover {
    opacity: 0.7; /* Легкое затухание при наведении, чтобы было понятно, что это кнопка */
}

@media (max-width: 1440px) {
    .footer__contact-link {
        font-size: 42px;
    }
}

@media (max-width: 1380px) {
    .footer__container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__booking {
        grid-column: 1 / span 2;
    }
}

@media (max-width: 1280px) {
    .footer__contacts {
        gap: 40px;
    }
    
    .footer__bottom {
        gap: 0;
        flex-wrap: wrap;
    }
    
    .footer__email-block {
        width: 100%;
        margin-top: 10px;
    }
    
    .footer__contact-link {
        font-size: 48px;
    }
    .footer__success-title {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .footer__container {
        padding-top: 120px;
    }
    
    .footer__booking {
        grid-column: 1 / -1;
        margin-bottom: 80px;
    }
    
    .footer__title {
        font-size: 48px;
    }
    
    .footer__bottom {
        display: flex;
        gap: 20px;
    }
    
    .footer__email-block {
        width: auto;
    }
    .footer__success {
        width: 320px;
    }
    .footer__success svg {
        width: 48px;
        height: 48px;
    }
    .footer__success-title {
        font-size: 18px;
    }
    .footer__success-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .footer__container {
        padding-top: 100px;
    }
    .footer__form-grid {
        gap: 30px;
    }
    .footer__input {
        font-size: 15px;
    }
    .footer__contacts {
        gap: 40px;
    }
    .footer__contact-link {
        font-size: 36px;
    }
    .footer__contact-label {
        font-size: 13px;
    }
    .footer__contact-value {
        font-size: 13px;
    }
    .footer__success {
        width: 300px;
        border-radius: 25px;
    }
}

@media (max-width: 640px) { 
    .footer__title {
        font-size: 42px;
    }
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer__contacts {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 20px;
    }

    .footer__contact:last-child {
        width: 100%;
    }

    .footer__email-block {
        margin-top: 0;
    }

    .footer__contact-link {
        font-size: 32px;
    }
}

@media (max-width: 580px) {
    .footer__form-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer__input,
    .footer__submit {
        width: 100%;
    }
    .footer__success svg {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .footer__container {
        padding-top: 80px;
    }
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer__contacts {
        row-gap: 20px;
    }

    .footer__contact:last-child {
        width: 100%;
    }

    .footer__email-block {
        margin-top: 0;
    }

    .footer__contact-link {
        font-size: 25px;
    }
    .footer__success {
        border-radius: 20px;
        padding: 25px;
        width: 260px;
    }
    .footer__success svg {
        width: 40px;
        height: 40px;
    }
    .footer__success-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .footer__success-text {
        font-size: 12px;
    }
}







.header--policy {
    background-color: #ffffff;
}

.header--policy .nav__link,
.header--policy .menu-btn,
.header--policy {
    color: #000000;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.policy {
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 20px 60px;
}

.policy__title {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: bold
}

.policy__text, 
.policy__footer-text {
    font-size: 16px;
}

.policy__list {
    display: flex;
    flex-direction: column;
    gap: 32px; 
    padding: 0;
    margin: 40px 0;
}

.policy__item {
    display: block;
}

.policy__subtitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.3;
}

.policy__sublist {
    margin-top: 14px;
    margin-bottom: 14px;
}

.policy__subitem {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.policy__text a {
    color: inherit;
    text-decoration: underline;
}

.policy__text a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .policy {
        padding-top: 100px;
    }

    .policy__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .policy__subtitle {
        font-size: 18px;
    }

    .policy__text, 
    .policy__footer-text,
    .policy__subitem {
        font-size: 14px;
    }

    .policy__list {
        gap: 24px; 
    }
}


@media (max-width: 480px) {
    .header.is-open .nav__link {
        color: #fff;
    }
    .header.is-open .menu-btn {
        color: #fff;
    }
    .header.is-open .logo__img {
        content: url('../images/ui/logo.svg') !important;
        filter: none !important;
    }
}

