:root {
    --sand: #e8dccc;
    --dark-green: #2c3e2b;
    --graphite: #2a2b2a;
    --wood: #6b4c3b;
    --fire: #e67e22;
    --water: #3a6b6b;
    --light-bg: #f9f6ef;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: #1e2a2e;
    line-height: 1.5;
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.header {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--sand);
    letter-spacing: 2px;
}
.btn-header {
    background: transparent;
    border: 1px solid var(--sand);
    color: var(--sand);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-header:hover {
    background: var(--sand);
    color: #1e2a2e;
}
/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}
.btn-primary {
    background: var(--sand);
    color: #1e2a2e;
}
.btn-primary:hover {
    background: #c9b384;
}
.btn-outline-light {
    background: transparent;
    border: 1px solid white;
    color: white;
}
.btn-outline-light:hover {
    background: white;
    color: #1e2a2e;
}
/* Общие секции */
section {
    padding: 80px 0;
}
h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-green);
}
/* Что это за экспедиция */
.about-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.about-text {
    flex: 2;
    font-size: 1.1rem;
    line-height: 1.6;
}
.about-text p {
    margin-bottom: 20px;
}
.about-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature {
    background: #e8dccc;
    padding: 12px;
    border-radius: 40px;
    text-align: center;
}
/* Для кого */
.reasons-grid, .notfor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}
.reason-card, .notfor-item {
    background: #f0ede5;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 500;
}

/* Кому не подойдёт */
.not-for {
    background: #f5f5f0;
    color: #1e2a2e;
}
.not-for .container {
    background: transparent;
    padding: 40px;
    border-radius: 30px;
}
.notfor-item {
    background: white;
    color: #1e2a2e;
    border: 1px solid #ddd;
}
.notfor-note {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    color: #1e2a2e;
}
.not-for h2 {
    color: #1e2a2e;
}
/* Таблица было/стало */
.changes {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/calm-water-bg.jpg') center/cover fixed;
}
.changes .container {
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 30px;
}
.changes h2 {
    color: #1e2a2e;
}
.changes-table {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.changes-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #eee;
}
.changes-row.header {
    background: var(--dark-green);
    color: white;
    font-weight: 600;
}
.changes-row div {
    padding: 16px 20px;
}
/* Программа экспедиции */
.program {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/fishing-bg.jpg') center/cover fixed;
}
.program .container {
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 30px;
}
.program-days {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.day {
    background: white;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.day h3 {
    color: var(--fire);
    margin-bottom: 12px;
}
/* Что включено */
.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.included-grid span {
    background: #e8dccc;
    padding: 10px 20px;
    border-radius: 40px;
}
/* Условия участия */
.terms-content {
    background: white;
    padding: 30px;
    border-radius: 24px;
    text-align: center;
}
.terms-content p {
    margin-bottom: 12px;
}
.link {
    color: var(--fire);
}
/* Эксклюзивность */
.exclusive {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/campfire-night.jpg') center/cover fixed;
    color: white;
}
.exclusive .container {
    background: rgba(0,0,0,0.4);
    padding: 40px;
    border-radius: 30px;
}
.exclusive h2 {
    color: white;
}
.exclusive-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.exclusive-grid div {
    background: rgba(0,0,0,0.7);
    padding: 12px 20px;
    border-radius: 40px;
}
/* Галерея */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}
.gallery-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    transition: 0.3s;
}
.gallery-item:hover {
    transform: scale(1.02);
}
/* Форма */
.form-section {
    background: var(--dark-green);
    color: white;
    text-align: center;
}
.form-section h2 {
    color: white;
}
.lead-form {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lead-form input {
    padding: 14px 16px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
}
.lead-form button {
    width: 100%;
}
.form-note {
    font-size: 0.8rem;
    opacity: 0.7;
}
/* Футер */
.footer {
    background: #1e2a2e;
    color: #ccc;
    text-align: center;
    padding: 30px 0;
}
.footer a {
    color: var(--sand);
}
/* Модалка */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
}
.modal-close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}
.modal-content input {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border-radius: 40px;
    border: 1px solid #ccc;
}
/* Адаптив */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .about-grid {
        flex-direction: column;
    }
    .changes-row {
        font-size: 0.85rem;
    }
    h2 {
        font-size: 1.8rem;
    }
}