/* ============================================
   ВЕЙК САПШО — SUP Page Extras
   ============================================ */

/* --- HERO на SUP-странице --- */
.sup-hero {
    background-image: url('photos/sup/hero-group.jpg');
    background-position: center 40%;
}

.sup-hero::before {
    background: linear-gradient(180deg,
        rgba(10, 21, 48, 0.45) 0%,
        rgba(10, 21, 48, 0.55) 50%,
        rgba(10, 21, 48, 0.92) 100%);
}

/* --- Active nav item --- */
.navbar__links a.navbar__active {
    color: var(--gold);
}

.navbar__links a.navbar__active::after {
    width: 100%;
}

/* --- О прогулках — текстовый блок --- */
.about-text {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 42, 74, 0.85);
}

.about-text p {
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* --- 4 фичи включено --- */
.sup-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sup-feature {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(26, 42, 74, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.sup-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 42, 74, 0.12);
}

.sup-feature__icon {
    font-size: 44px;
    margin-bottom: 16px;
    line-height: 1;
}

.sup-feature__title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 800;
    color: var(--terra);
    margin-bottom: 10px;
}

.sup-feature__desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(26, 42, 74, 0.75);
}

/* --- Маршруты: фото + список --- */
.routes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 32px;
}

.routes-photo {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 42, 74, 0.18);
    position: sticky;
    top: 100px;
}

.routes-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.routes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.route-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(26, 42, 74, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.route-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(26, 42, 74, 0.1);
}

.route-item__icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
    text-align: center;
}

.route-item__title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 800;
    color: var(--terra);
    margin-bottom: 4px;
}

.route-item__desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(26, 42, 74, 0.75);
}

/* --- Цены --- */
.prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 36px 32px;
    text-align: center;
    border: 1px solid rgba(26, 42, 74, 0.08);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 42, 74, 0.12);
}

.price-card--featured {
    background: linear-gradient(135deg, rgba(184, 89, 58, 0.08), rgba(212, 168, 75, 0.08));
    border: 2px solid var(--gold);
    box-shadow: 0 16px 48px rgba(184, 89, 58, 0.15);
}

.price-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 100px;
}

.price-card__label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terra);
    font-weight: 700;
    margin-bottom: 12px;
}

.price-card__value {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}

.price-card__unit {
    font-size: 14px;
    color: rgba(26, 42, 74, 0.6);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(26, 42, 74, 0.1);
}

.price-card__features {
    text-align: left;
    margin-bottom: 20px;
}

.price-card__feature {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(26, 42, 74, 0.85);
    padding: 6px 0;
}

.price-card__hint {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(26, 42, 74, 0.65);
    font-style: italic;
    padding-top: 16px;
    border-top: 1px solid rgba(26, 42, 74, 0.08);
}

/* --- Отзыв --- */
.sup-review {
    background-image:
        linear-gradient(180deg, rgba(10, 21, 48, 0.92) 0%, rgba(10, 21, 48, 0.96) 100%),
        url('photos/sup/lake-reflection.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.review-layout {
    max-width: 760px;
    margin: 0 auto 48px;
}

.review-card {
    background: rgba(248, 244, 236, 0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(212, 168, 75, 0.25);
    border-radius: 16px;
    padding: 40px 44px;
    position: relative;
}

.review-card__quote {
    position: absolute;
    top: -10px;
    left: 24px;
    font-family: var(--font-serif);
    font-size: 120px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
}

.review-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(248, 244, 236, 0.92);
    margin-bottom: 16px;
    position: relative;
}

.review-card__text:last-of-type {
    margin-bottom: 0;
}

.review-card__author {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 168, 75, 0.2);
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.review-card__source {
    font-size: 12px;
    color: rgba(248, 244, 236, 0.5);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTION: MORNING GALLERY (Утро на Сапшо)
   ============================================ */
.section-morning {
    background: linear-gradient(180deg, var(--soft) 0%, var(--cream) 100%);
    padding: var(--section-padding);
}

.morning-intro {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 42, 74, 0.85);
}

.morning-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 32px;
}

.morning-gallery__item {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 42, 74, 0.12);
}

.morning-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.morning-gallery__item:hover img {
    transform: scale(1.03);
}

.morning-gallery__item--tall {
    grid-row: span 2;
    aspect-ratio: 4/5;
}

.morning-gallery__item:not(.morning-gallery__item--tall) {
    aspect-ratio: 4/3;
}

.morning-caption {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(26, 42, 74, 0.8);
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.morning-caption strong {
    color: var(--terra);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sup-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .routes-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .routes-photo {
        position: static;
        max-height: 400px;
    }

    .routes-photo img {
        aspect-ratio: 16/9;
    }

    .prices-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sup-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sup-feature {
        padding: 24px 20px;
    }

    .review-card {
        padding: 32px 24px;
    }

    .review-card__quote {
        font-size: 80px;
        top: -5px;
        left: 16px;
    }

    .price-card__value {
        font-size: 44px;
    }

    .sup-review {
        background-attachment: scroll;
    }

    .morning-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .morning-gallery__item--tall {
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .morning-gallery__item:not(.morning-gallery__item--tall) {
        aspect-ratio: 16/9;
    }
}