:root {
    --color-sage: #9caf88;
    --color-dark-oak: #4a3f35;
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #e0e0e0;
    --color-gray-dark: #2c2c2c;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-oak-light: #5e5145;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-800: #1f2937;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: clamp(4rem, 8vw, 8rem);
    --spacing-xxl: clamp(6rem, 10vw, 12rem);
    --spacing-xxxl: 20rem;
    
    --container-max-width: 1440px;
    --container-padding: clamp(1rem, 5vw, 2rem);
    
    --transition-slow: 0.6s ease;
    --transition-medium: 0.3s ease;
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    font-size: 14px;
    scroll-behavior: smooth;
    /* Блокируем появление горизонтального скролла на самом верхнем уровне */
    overflow-x: hidden;
    width: 100%;
}

@media (min-width: 768px) {
    html { font-size: 15px; }
}

@media (min-width: 1200px) {
    html { font-size: 16px; }
}

body {
    font-family: var(--font-sans);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    /* Гарантируем отсутствие горизонтального скролла для всего контента */
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Текстура шума для всех фонов */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="1" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.8"/></svg>');
    z-index: 9999;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Типографика */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* Секции */
section {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow-x: hidden; 
}

@media (min-width: 768px) {
    section { padding: var(--spacing-xxl) 0; }
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-dark-oak);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::after { left: 100%; }

.btn--light {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.btn--outline {
    background-color: transparent;
    border: 1px solid currentColor;
}

.btn-hero-info { background-color: rgba(142, 142, 142, 0.56); }

.btn-oak {
    background-color: var(--color-dark-oak);
    color: var(--color-white);
}
.btn-oak:hover { background-color: var(--color-oak-light); }

.btn-outline-oak {
    background-color: transparent;
    color: var(--color-dark-oak);
    border: 2px solid var(--color-dark-oak);
}
.btn-outline-oak:hover {
    background-color: var(--color-dark-oak);
    color: var(--color-white);
}

.btn-call-philosophy { background-color: #7c695b; }
.btn-call-philosophy svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    stroke: #fff;
}

/* Анимации */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.anim-photo {
    opacity: 0;
    filter: blur(15px);
    transform: scale(1.05) translateY(30px);
    transition: opacity 1.5s var(--ease-premium), filter 1.5s var(--ease-premium), transform 1.5s var(--ease-premium);
    will-change: transform, opacity, filter;
    border-radius: 16px;
    overflow: hidden;
}
.anim-photo.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
}

.anim-text {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.5s ease-out, transform 1.5s var(--ease-premium);
    will-change: transform, opacity;
}
.anim-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-cards-wrapper { perspective: 1500px; }
.anim-card {
    opacity: 0;
    transform: translateY(50px) translateZ(-100px) rotateX(-15deg);
    transition: opacity 1.2s var(--ease-premium), transform 1.5s var(--ease-premium);
    will-change: transform, opacity;
}
.anim-cards-wrapper.is-visible .anim-card {
    opacity: 1;
    transform: translateY(0) translateZ(0) rotateX(0deg);
}

.anim-cards-wrapper.is-visible .anim-card:nth-child(1) { transition-delay: 0.1s; }
.anim-cards-wrapper.is-visible .anim-card:nth-child(2) { transition-delay: 0.2s; }
.anim-cards-wrapper.is-visible .anim-card:nth-child(3) { transition-delay: 0.3s; }
.anim-cards-wrapper.is-visible .anim-card:nth-child(4) { transition-delay: 0.4s; }
.anim-cards-wrapper.is-visible .anim-card:nth-child(5) { transition-delay: 0.5s; }

.anim-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1.2s var(--ease-premium);
    will-change: transform, opacity;
    backface-visibility: hidden;
}
.anim-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1.2s var(--ease-premium);
    will-change: transform, opacity;
    backface-visibility: hidden;
}
.anim-slide-left.is-visible,
.anim-slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Заголовки секций */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-transform: uppercase;
    color: #333;
    margin: 2rem 0;
    text-align: center;
}

.section-title::before,
.section-title::after {
    content: "";
    height: 2px;
    background-color: black;
    flex-grow: 1;
    max-width: 100px;
}
.section-title::before { margin-right: clamp(10px, 3vw, 20px); }
.section-title::after { margin-left: clamp(10px, 3vw, 20px); }

/* БЛОК 1. Hero */
.hero {
    min-height: 100vh;
    min-height: 100dvh; 
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-white);
    padding: 0;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 65%));
    z-index: -1;
}

.hero__content {
    width: 100%;
    padding: clamp(1rem, 5vw, 2rem);
    text-align: center;
}

.hero__title {
    font-size: clamp(3rem, 15vw, 8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__features {
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 3vw, 1rem);
    opacity: 0.9;
}

.hero__features p {
    margin-bottom: 0.5rem;
}

/* Текст под блоком */
.hero-text {
    background-color: #fdfdfd;
    font-size: clamp(1.2rem, 4vw, 1.9rem);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-top: clamp(4rem, 10vw, 120px);
    padding-bottom: clamp(4rem, 10vw, 120px);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    font-family: var(--font-serif);
}

.intro-text-main {
    font-size: clamp(1.3rem, 5vw, 2.20rem);
    line-height: 1.6;
    font-family: var(--font-serif);
    color: var(--color-gray-800);
}

.intro-text-highlight {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--color-oak);
    letter-spacing: 0.05em;
}

.intro-text-sub {
    margin-top: 2rem;
    font-size: clamp(1.1rem, 4vw, 1.7rem);
    color: var(--color-gray-600);
}

.divider-line {
    width: 64px;
    height: 1px;
    background-color: #000;
    margin: 0 auto 2.5rem;
}

/* Видео рил */
.video-reel {
    position: relative;
    height: clamp(400px, 60vh, 550px);
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background-color: rgba(159, 159, 159, 0.4);
    z-index: 1;
}

.video-reel__container {
    position: relative;
    height: 100%;
}

.video-reel__slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: all 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.video-reel__slide.active {
    opacity: 1;
    color: #ffffff;
}

.video-reel__image {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
}

.video-reel__title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: clamp(2rem, 8vw, 5.5rem);
    font-family: var(--font-serif);
    text-align: center;
    padding: clamp(1rem, 4vw, 2rem);
    text-shadow: 0 2px 10px rgb(217 217 217 / 30%);
    background: rgb(232 232 232 / 43%);
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 1000px;
}

/* БЛОК 2. Философия */
.philosophy {
    background-color: #fdfdfd;
    text-align: center;
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

.philosophy__intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    padding: 0 1rem;
}

.philosophy__keywords {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 4rem auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    align-items: stretch; 
}

@media (min-width: 992px) {
    .philosophy__keywords {
        grid-template-columns: repeat(5, 1fr);
    }
}

.philosophy__keyword {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 2.2rem);
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.philosophy__keyword div:first-child {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.philosophy__keyword img {
    max-width: 100%;
    width: 240px;
    height: auto;
    margin-top: 1rem;
    border-radius: 50%;
    object-fit: cover;
}

.philosophy__text {
    max-width: 700px;
    margin: 2rem auto 0;
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    padding: 0 1rem;
}

/* БЛОК 3. Для кого */
.for-who__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 40px;
}

@media (min-width: 768px) {
    .for-who__grid { grid-template-columns: repeat(3, 1fr); }
}

.for-who__card {
    position: relative;
    height: clamp(350px, 50vh, 500px);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 13px #b3b3b3d1;
    border-radius: 5px;
    transition: box-shadow 1s ease;
}

.for-who__card:hover { box-shadow: 0 0 13px #707070d1; }

.for-who__card:after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    transition: background-color 1s ease;
    background-color: #00000059;
}

.for-who__card:hover:after { background-color: transparent; }

.for-who__image {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 1s ease;
}

.for-who__card:hover .for-who__image { transform: scale(1.05); }

.for-who__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(to top, rgb(0,0,0,0.9), transparent);
    color: white;
    z-index: 2;
}

.for-who__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.for-who__text {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* БЛОК 4. Программы */
.programs {
    background-color: #fdfdfd;
    padding-top: 60px;
}

.programs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .programs__grid { grid-template-columns: 1fr 1fr; }
}

.program-card {
    border-radius: 10px;
    padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.program-card > * { position: relative; z-index: 1; }
.program-card:hover { transform: translateY(-10px); }

.program-card--light {
    background-color: #ffffff;
    border: 1px solid #ededed;
    color: var(--color-black);
    box-shadow: 0px 0px 13px #cfcfcf;
}
    
.program-card--light .program-card__features li {
    border-bottom: 1px solid #e6e6e6;
}

.program-card--dark {
    background-color: #43352b;
    color: var(--color-white);
    box-shadow: 0px 0px 13px #cfcfcf;
}

.program-card--dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('/img/b53f0dca814315fbd668441b425d871f.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
}

.program-card__name {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-align: center;
}

.program-card__price {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.program-card__description {
    margin-bottom: 2rem;
    font-style: italic;
    color: #b8b8b8;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    text-align: center;
}

.program-card__features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.program-card__features li {
    padding: 1.2em 0;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    border-bottom: 1px solid #dddddd2e;
    width: 100%;
}

.program-card__features li:before {
    content: '\2014';
    padding-right: 10px;
    color: var(--color-sage);
}

.program-card__features li:last-child { border-bottom: none; } 

.seven-youcan-title {
    color: var(--color-sage);
    font-size: clamp(2rem, 5vw, 3rem);
}

.currency_price { color: var(--color-sage); }

/* БЛОК 5. Команда */
.team-section {
    padding-top: clamp(3rem, 6vw, 6rem);
    background-color: var(--color-gray-50);
    overflow: hidden; /* Безопасность анимации смещения */
}

.team-carousel-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.team-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.team-slide {
    flex: 0 0 100%;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
}

@media (min-width: 992px) {
    .team-slide { flex: 0 0 33.33%; }
}

.team-photo-wrap {
    width: clamp(150px, 40vw, 200px);
    height: clamp(150px, 40vw, 200px);
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo {
    width: 100%; height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--color-sage);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.team-desc {
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.team-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot-team {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--color-gray-200);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot-team.is-active { background: var(--color-dark-oak); }

/* БЛОК 6. Галерея */
.gallery { 
    padding-top: clamp(40px, 8vw, 65px); 
    overflow: hidden; 
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery__item {
    position: relative;
    height: clamp(200px, 40vh, 300px);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 0px 13px #616161;
}

.gallery__item:after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    transition: all 0.5s ease;
    background-color: rgba(0,0,0,0.15);
}

.gallery__item:hover:after { background-color: transparent; }

.gallery__image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__image { transform: scale(1.05); }

.gallery__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    z-index: 11;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 90vw; max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 2rem; right: 2rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

/* БЛОК 7. Проживание и питание */
.split-screen {
    padding-top: clamp(40px, 8vw, 65px);
    padding-bottom: clamp(40px, 8vw, 65px);
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

@media (min-width: 992px) {
    .split-screen { grid-template-columns: 1fr 1fr; }
}

.split-screen__item {
    position: relative;
    min-height: clamp(350px, 50vh, 500px);
    display: flex;
    align-items: flex-end;
    padding: clamp(1.5rem, 4vw, 3rem);
    color: white;
}

.split-screen__image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
}

.split-screen__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    z-index: -1;
}

.split-screen__content { max-width: 400px; }

.split-screen__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

/* БЛОК 8. Отзывы */
.testimonials {
    padding-top: 0;
    text-align: center;
    overflow: hidden;
}

.testimonials__carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials__slide {
    display: none;
    padding: clamp(1rem, 4vw, 2rem);
}

.testimonials__slide.active { display: block; }

.testimonials__text {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonials__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.testimonials__author-image {
    width: clamp(60px, 15vw, 128px);
    height: clamp(60px, 15vw, 128px);
    border-radius: 50%;
    object-fit: cover;
}

.testimonials__nav { margin-top: 2rem; }

.testimonials__dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-gray-medium);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__dot.active {
    background: var(--color-dark-oak);
    transform: scale(1.2);
}

/* БЛОК 9. Активности */
.activities { 
    padding-top: 0; 
    overflow: hidden;
}

.activities__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .activities__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
    .activities__grid { grid-template-columns: repeat(4, 1fr); }
}

.activity-card {
    padding: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.activity-card:nth-child(1) { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.activity-card:nth-child(2) { background: linear-gradient(135deg, #e67e22, #d35400); }
.activity-card:nth-child(3) { background: linear-gradient(135deg, #3498db, #2980b9); }
.activity-card:nth-child(4) { background: linear-gradient(135deg, #27ae60, #2ecc71); }

.activity-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.activity-card__season {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.activity-card__icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.activity-card__activities {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* БЛОК 10. Корпоративные */
.corporate-section {
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    padding: 0;
    background-color: var(--color-dark-oak);
    overflow: hidden;
}

.corporate-content {
    padding: clamp(3rem, 6vw, 6rem) var(--container-padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corporate-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    color: var(--color-white);
    text-align: left;
}

.corporate-list {
    list-style: none;
    margin-bottom: 3rem;
    font-size: clamp(1rem, 3vw, 1.125rem);
    font-weight: 300;
    color: var(--color-gray-200);
}

.corporate-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.corporate-list-dash {
    color: var(--color-sage);
    margin-right: 1rem;
}

.corporate-image-wrap {
    position: relative;
    min-height: clamp(250px, 40vh, 400px);
    width: 100%;
}

.corporate-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .corporate-section { flex-direction: row; align-items: stretch; }
    .corporate-content { width: 50%; padding: 6rem; }
    .corporate-image-wrap { width: 50%; min-height: auto; }
}

.corporate-item-left { background-color: var(--color-dark-oak); }

/* БЛОК 11. Бронирование */
.booking {
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    padding: clamp(4rem, 8vw, 8rem) 0;
    overflow: hidden;
}

.booking__form {
    max-width: 500px;
    width: 100%;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
}

.booking__input {
    width: 100%;
    padding: clamp(0.8rem, 2vw, 1rem);
    border: 1px solid var(--color-gray-medium);
    background: white;
    font-family: var(--font-sans);
    font-size: 16px; 
    transition: all 0.3s ease;
    border-radius: 8px;
}

.booking__input:focus {
    outline: none;
    border-color: var(--color-dark-oak);
}

/* Футер */
.footer {
    background-color: var(--color-black);
    color: var(--color-gray-400);
    padding: 3rem 24px;
    text-align: center;
    border-top: 1px solid var(--color-gray-800);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover { color: var(--color-white); }

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.5;
}


@media (max-width: 420px) {
    .btn-hero-info {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgb(2 2 2 / 48%);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex !important;
    opacity: 1;
}

.modal.show .modal-content {
    animation: fadeInScale 0.3s ease-out forwards;
}

.modal-content {
    background: #3f3428;
    color: #fff;
    padding: 40px;
    width: 90%;
    max-width: 700px;
    border-left: 5px solid #9daf89;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-content input{
    margin-bottom:10px;
    padding:10px;
}

.close {
    position: absolute;
    right: 20px; top: 0;
    font-size: 3rem;
    cursor: pointer;
    color: #fff;
}

.modal-content p{
    color:#c1c1c1;
    font-size:14px;
}

@media(max-width:500px){
    .modal-content h2{
        font-size: 
    }
}

@media(max-width:600px){
    .modal-content{
        padding-left:20px;
        padding-right:20px;
    }
}