* { margin: 0; padding: 0; box-sizing: border-box; }
        
@font-face {
    font-family: 'Cremona';
    /* Путь зависит от того, где лежит твой CSS. Если CSS в корне рядом с index.html, то путь такой: */
    src: url('../fonts/Cremona-Regular.woff2') format('woff2'),
        url('../fonts/Cremona-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Текст покажется системным шрифтом, пока Cremona не загрузится, чтобы экран не был пустым */
}

:root {
    /* Premium Karelia palette — deeper, calmer */
    --sand: #F7F3EC;
    --sand-warm: #EFE9DF;
    --cream: #FAF7F2;
    --forest: #1D4A2E;
    --forest-light: #2D6B42;
    --forest-pale: #E2EDE6;
    --forest-bg: #E8F0EB;
    --sea: #2E6477;
    --sea-light: #3D8199;
    --sea-pale: #E0ECF0;
    --khaki: #9E8E6C;
    --orange: #B87A3D;
    --orange-warm: #C48844;
    --orange-pale: #F8EFE2;
    --brown: #4A3A24;
    --granite: #5C584F;
    --moss: #8FA888;
    --birch: #F0E7D8;
    --text-dark: #1A1A18;
    --text-body: #3E3B36;
    --text-muted: #7A756B;
    --white: #FFFFFF;
    --border: #DDD7CC;
    --border-light: #EBE6DC;
    --dark-cta: #4A6741;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--sand);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Navigation ─── */
nav {
    position: fixed;
    top: 1rem; left: 2rem; right: 2rem;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s ease;
}
nav.scrolled {
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border-color: transparent;
    top: 0.75rem;
}
.nav-logo {
    font-family: 'Cremona', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    /*font-style: italic;*/
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}
nav.scrolled .nav-logo { color: var(--text-dark); }

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
nav.scrolled .nav-menu a { color: var(--text-body); }
.nav-menu a:hover { color: var(--orange); }
nav.scrolled .nav-menu a:hover { color: var(--forest); }

.nav-cta {
    background: var(--dark-cta);
    color: var(--white);
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.nav-cta:hover {
    background: #3D5936;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74,103,65,0.3);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.35rem;
}
.burger-menu span {
    width: 25px; height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
nav.scrolled .burger-menu span { background: var(--text-dark); }

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    background: #1a1a18;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}
.hero-content {
    max-width: 960px;
    padding: 0 2rem;
    z-index: 3;
    position: relative;
}
.hero-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease forwards;
}
.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.08;
    margin-bottom: 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
    letter-spacing: -1px;
    max-width: 940px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    letter-spacing: 0.2px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
    flex-wrap: wrap;
}
.cta-primary {
    background: var(--dark-cta);
    color: var(--white);
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.cta-primary:hover {
    background: #3D5936;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(74,103,65,0.3);
}
.cta-primary::after { content: ' →'; }
.cta-secondary {
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cta-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Sections ─── */
section { padding: 6rem 2rem; }

.section-sand { background-color: var(--sand); }
.section-white { background-color: var(--white); }
.section-forest-pale { background-color: var(--forest-bg); }
.section-cream { background-color: var(--cream); }
.section-orange-pale { background-color: var(--orange-pale); }
.section-peach { background-color: var(--birch); }
.section-golden { background-color: var(--cream); }
.section-rose { background-color: var(--sand); }
.section-sage { background-color: var(--cream); }

.section-container { max-width: 1200px; margin: 0 auto; }

.section-label {
    display: inline-block;
    color: var(--forest);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0.7;
}
.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.section-title em, .section-title i {
    font-style: italic;
    color: var(--forest);
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}
.section-header {
    text-align: left;
    margin-bottom: 4rem;
}
.section-header .section-subtitle {
    margin: 0;
}
.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* ─── Manifesto ─── */
.manifesto {
    text-align: center;
    padding: 7rem 2rem;
    max-width: 750px;
    margin: 0 auto;
}
.manifesto-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.9;
    font-style: italic;
}
.manifesto-divider {
    width: 40px;
    height: 2px;
    background: var(--forest);
    margin: 2.5rem auto 0;
    border-radius: 2px;
}

/* ─── Rich Timeline ─── */
.timeline-rich {
    position: relative;
}
.timeline-rich-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}
.timeline-rich-item:last-child { margin-bottom: 0; }
.timeline-rich-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.timeline-rich-marker span {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
}
.timeline-rich-item:nth-child(2) .timeline-rich-marker { background: var(--forest); }
.timeline-rich-item:nth-child(3) .timeline-rich-marker { background: var(--sea); }
.timeline-rich-item:not(:last-child) .timeline-rich-marker::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 2.5rem);
    background: var(--border);
}
.timeline-rich-body {
    flex: 1;
    min-width: 0;
}
.timeline-rich-day {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.timeline-rich-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.timeline-rich-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.timeline-rich-places {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.timeline-place-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.timeline-place-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.timeline-place-chip img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* ─── Moments (quote grid) ─── */
.moments-quotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.moment-quote {
    padding: 3rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background 0.3s ease;
}
.moment-quote:hover { background: rgba(255,255,255,0.4); }
.moment-quote:nth-child(odd) { border-right: 1px solid var(--border); }
.moment-quote:nth-child(n+7) { border-bottom: none; }
.moment-quote-mark {
    font-family: 'DM Serif Display', serif;
    font-size: 5rem;
    color: var(--forest);
    opacity: 0.15;
    line-height: 0.5;
    margin-bottom: 1rem;
}
.moment-quote h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.moment-quote p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

/* ─── Places (Editorial alternating) ─── */
.places-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.place-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.place-item:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}
.place-item:nth-child(even) .place-img { order: 2; }
.place-item:nth-child(even) .place-text { order: 1; }
.place-img {
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
}
.place-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.place-item:hover .place-img img { transform: scale(1.03); }
.place-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    font-style: italic;
    color: var(--forest);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.place-text h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.place-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ─── Places ─── */
.places-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}
.places-scroll::-webkit-scrollbar { height: 6px; }
.places-scroll::-webkit-scrollbar-track { background: var(--border-light); border-radius: 10px; }
.places-scroll::-webkit-scrollbar-thumb { background: var(--forest); border-radius: 10px; }

.place-card {
    flex: 0 0 340px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.place-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.place-card img { width: 100%; height: 200px; object-fit: cover; }
.place-card-content { padding: 1.5rem; }
.place-card-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.place-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.place-card-tag {
    display: inline-block;
    background: var(--forest-pale);
    color: var(--forest);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--forest);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2.5rem;
    transition: all 0.3s ease;
}
.section-cta-link:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46,107,74,0.25);
}

/* ─── Accommodation ─── */
.accommodation-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
.accommodation-photos img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
}
.accommodation-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.accommodation-option {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}
.accommodation-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    border-color: transparent;
}
.accommodation-floor {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--forest);
    margin-bottom: 0.75rem;
}
.accommodation-option p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── Tour Cards ─── */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}
.tour-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
}
.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.07);
    border-color: transparent;
}
.tour-card-number {
    position: absolute;
    top: 10px; right: 20px;
    font-family: 'DM Serif Display', serif;
    font-size: 5rem;
    font-style: italic;
    color: rgba(0,0,0,0.04);
    font-weight: 700;
    z-index: 1;
    line-height: 1;
}
.tour-card-image {
    width: 100%; height: 260px;
    object-fit: cover;
}
.tour-card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}
.tour-card-date {
    display: inline-block;
    background: var(--forest-pale);
    color: var(--forest);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}
.tour-card-title {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.tour-card-program-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.tour-card-program-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}
.tour-card-program-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--forest);
    font-weight: 700;
}
.tour-card-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}
.tour-card-program {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.tour-card-price {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}
.tour-card-cta {
    background: var(--dark-cta);
    color: var(--white);
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.tour-card-cta:hover {
    background: var(--forest);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(29,74,46,0.25);
}

.scarcity-notice {
    background: transparent;
    border-left: none;
    padding: 2rem 0 0;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-radius: 0;
    text-align: center;
    letter-spacing: 0.3px;
}

/* ─── Reasons (vertical numbered list) ─── */
.reasons-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.reason-item {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}
.reason-item:hover {
    background: rgba(255,255,255,0.5);
}
.reason-item:nth-child(odd) {
    border-right: 1px solid var(--border);
}
.reason-item:nth-last-child(-n+2) {
    border-bottom: none;
}
.reason-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--forest);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.4;
}
.reason-body { flex: 1; }
.reason-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.reason-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── Team ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.team-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: transparent;
}
.team-card-image {
    width: 100%; height: 360px;
    object-fit: cover;
}
.team-card-content { padding: 2rem; }
.team-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.team-role {
    color: var(--forest);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.team-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.team-social {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--forest);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.team-social:hover { color: var(--sea); }

/* ─── Reviews ─── */
.reviews-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}
.reviews-slider::-webkit-scrollbar { height: 6px; }
.reviews-slider::-webkit-scrollbar-track { background: var(--border-light); border-radius: 10px; }
.reviews-slider::-webkit-scrollbar-thumb { background: var(--forest); border-radius: 10px; }

.review-card {
    flex: 0 0 360px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: none;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.05);
    border-color: transparent;
}
.review-stars {
    color: var(--khaki);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}
.review-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review-avatar {
    width: 40px; height: 40px;
    background: var(--forest-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    font-weight: 700;
    font-size: 0.9rem;
}
.review-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}
.review-tour {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
}
.faq-layout .faq-col:first-child {
    border-right: 1px solid var(--border);
    padding-right: 3rem;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    transition: color 0.3s ease;
    gap: 1rem;
}
.faq-question:hover { color: var(--forest); }
.faq-toggle {
    width: 28px; height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.faq-item.active .faq-toggle {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-left h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.contact-left p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.contact-info {
    margin-bottom: 1rem;
}
.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
.contact-value {
    color: var(--forest);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}
.contact-value:hover { text-decoration: underline; }

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
}
.form-group { margin-bottom: 1rem; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    /*margin-bottom: 0.5rem;*/
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--sand);
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(46,107,74,0.1);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-submit {
    background: var(--dark-cta);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}
.form-submit:hover {
    background: #3D5936;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74,103,65,0.3);
}

/* ─── Footer ─── */
footer {
    background: #1E1E1E;
    color: rgba(255,255,255,0.7);
    padding: 4rem 2rem 2rem;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-family: 'Cremona', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
}
.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.social-links { display: flex; gap: 1.5rem; }
.social-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.social-links a:hover { color: var(--white); }

/* ─── WhatsApp Float ─── */
.whatsapp-float {
    position: fixed;
    bottom: 4.5rem; right: 2rem;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
    width: 28px; height: 28px;
    fill: white;
}

/* ─── Floating Action Button ─── */
/* Контейнер: фиксируем в правом нижнем углу */
.fab-container {
  position: fixed;
  bottom: 4.5rem; right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column; /* Обычный столбик: меню сверху, кнопка снизу */
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Главная синяя кнопка */
.fab-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366; /* Цвет Telegram из видео */
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.2s;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.icon-close {
  display: none;
}

.fab-toggle:active {
  transform: scale(0.95);
}

/* --- СОСТОЯНИЕ: МЕНЮ ОТКРЫТО --- */
.fab-container.is-active .fab-toggle {
  background-color: #f0f0f0; /* Становится светло-серой */
  color: #333; /* Цвет иконки меняется на темный */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fab-container.is-active .icon-chat {
  display: none; /* Прячем чат */
}

.fab-container.is-active .icon-close {
  display: block; /* Показываем крестик */
}
/* -------------------------------- */

/* Выпадающее меню (скрыто по умолчанию) */
.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  /* Смещено чуть вниз для красивого выезда наверх */
  transform: translateY(20px) scale(0.8); 
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Появление меню при клике */
.fab-container.is-active .fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Стили для маленьких кнопок (WA, TG, Телефон) */
.fab-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.fab-item:hover {
  transform: scale(1.1);
}

/* Цвета кнопок */
.fab-wa { background-color: #25D366; } 
.fab-phone { background-color: #1a1a1a; }
.fab-tg { background-color: #0088cc; }

/* ─── Sticky CTA Bar ─── */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(26, 40, 34, 0.92);
    backdrop-filter: blur(16px);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}
.sticky-cta-text strong { color: var(--white); }
.sticky-cta-btn {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.sticky-cta-btn:hover {
    background: var(--forest-pale);
    transform: translateY(-1px);
}

/* ─── Spots Badge ─── */
.spots-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--forest);
    padding: 0;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}
.spots-dot {
    width: 6px; height: 6px;
    background: var(--forest);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ─── Social Proof Ticker ─── */
.social-proof {
    text-align: center;
    padding: 1rem 2rem;
    background: var(--forest);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.social-proof strong { color: var(--white); }

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.6rem; }
    nav { left: 1rem; right: 1rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--sand); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 999; }
    .nav-menu.active { display: flex; }
    .nav-menu a { color: var(--text-dark) !important; font-size: 1.2rem; }
    nav.menu-open { backdrop-filter: none; background: transparent; border-color: transparent; -webkit-backdrop-filter: none !important; transition: none !important;}
    .nav-logo { position: relative; z-index: 1001;}
    .nav-cta {display: none;}
    nav.menu-open .nav-logo { color: var(--text-dark) !important;}
    .burger-menu { display: flex; z-index: 1001; }
    .burger-menu.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg);}
    .burger-menu.active span:nth-child(2) { opacity: 0; }
    .burger-menu.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg);}
    nav.menu-open .burger-menu span { background: var(--text-dark) !important;}
    nav.scrolled .burger-menu.active span { background: var(--text-dark); }
    .hero-title { font-size: 2.6rem; }
    .hero-badge {margin-top: 1.5rem; margin-bottom: 1.5rem;}
    .section-title { font-size: 2rem; }
    nav { padding: 0.75rem 1.25rem; left: 0.75rem; right: 0.75rem; }
    .section-header { text-align: center; }
    .section-header .section-subtitle { margin: 0 auto; }
    .hero-stats { gap: 1.5rem; }
    .timeline-rich-item { flex-direction: column; gap: 1rem; }
    .timeline-rich-marker::after { display: none; }
    .timeline-rich-title { font-size: 1.4rem; }
    .place-item, .place-item:nth-child(even) { grid-template-columns: 1fr; }
    .place-item:nth-child(even) .place-img { order: 0; }
    .place-item:nth-child(even) .place-text { order: 0; }
    .place-img { height: 240px; }
    .tours-grid { grid-template-columns: 1fr; }
    .accommodation-photos { grid-template-columns: 1fr; }
    .accommodation-photos img { height: 200px; }
    .accommodation-details { grid-template-columns: 1fr; }
    .reasons-list { grid-template-columns: 1fr; }
    .reason-item:nth-child(odd) { border-right: none; }
    .reason-item:last-child { border-bottom: none; }
    .moments-quotes { grid-template-columns: 1fr; }
    .moment-quote:nth-child(odd) { border-right: none; }
    .moment-quote { border-bottom: 1px solid var(--border) !important; }
    .moment-quote:last-child { border-bottom: none !important; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-layout .faq-col:first-child { border-right: none; padding-right: 0; }
    .team-grid { grid-template-columns: 1fr; }
    #contacts .section-header { margin-bottom: 2rem;}
    #contacts .section-title { margin-bottom: 0.7rem;}
    .contact-form { padding: 1.5rem 2.5rem;}
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .whatsapp-float { right: 0.5rem;}
}
@media (max-width: 480px) {
    section { padding: 4.7rem 1.25rem; }
    .hero-title { font-size: 1.8rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .place-card { flex: 0 0 280px; }
    .review-card { flex: 0 0 300px; }
    .moment-quote { padding: 2rem 1.5rem; }
    .sticky-cta { gap: 1rem; padding: 0.7rem 1rem; }
    .sticky-cta-text { font-size: 0.75rem; }
}