:root {
            --primary-color: #7e9c67; /* Шалфейный зеленый */
            --secondary-color: #485c40; /* Темно-зеленый */
            --bg-color: #fafafa; /* Светлый фон */
            --text-color: #333333;
            --white: #ffffff;
            --accent: #a8a768;
            --radius: 12px;
            --shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: var(--secondary-color);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            color: var(--secondary-color);
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('11.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding-top: 80px;
        }

        .hero-content h1 {
            font-size: 4rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(126, 156, 103, 0.4);
            margin: 10px;
        }

        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }

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

        .btn-outline:hover {
            background: var(--white);
            color: var(--text-color);
        }

        /* Features */
        .features {
            padding: 80px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .feature-item {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: 0.3s;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            fill: var(--primary-color);
        }

        .feature-item h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* About */
        .about {
            padding: 80px 0;
            background-color: var(--white);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .about-img {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-img img {
            width: 300px;
            height: 300px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid var(--bg-color);
            box-shadow: var(--shadow);
        }

        .about-text {
            flex: 2;
            min-width: 300px;
        }

        .about-text h2 {
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .quote {
            font-style: italic;
            color: var(--primary-color);
            font-weight: 600;
            margin: 20px 0;
            display: block;
        }

        /* Pricing */
        .pricing {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 50px;
            color: var(--primary-color);
        }

        .accordion-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .accordion-header {
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            transition: 0.3s;
        }

        .accordion-header:hover {
            background: #f0f4ed;
        }

        .accordion-header h3 {
            font-size: 1.5rem;
            margin: 0;
            color: var(--secondary-color);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fafafa;
        }

        .price-list {
            padding: 30px;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            border-bottom: 1px dotted #ccc;
            padding-bottom: 5px;
        }

        .price-name {
            font-weight: 500;
            background: #fafafa;
            padding-right: 10px;
            position: relative;
            top: 1px;
        }

        .price-cost {
            font-weight: 700;
            color: var(--primary-color);
            background: #fafafa;
            padding-left: 10px;
            position: relative;
            top: 1px;
        }

        /* Reviews */
        .reviews {
            padding: 80px 0;
            background: var(--white);
        }

        .reviews-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 20px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) #f0f0f0;
        }

        .reviews-scroll::-webkit-scrollbar {
            height: 8px;
        }
        .reviews-scroll::-webkit-scrollbar-thumb {
            background-color: var(--primary-color);
            border-radius: 4px;
        }

        .review-card {
            min-width: 300px;
            max-width: 300px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .review-card img {
            width: 100%;
            display: block;
        }

        /* Contacts & Map */
        .contacts {
            padding: 80px 0;
        }

        .contacts-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contacts-info {
            flex: 1;
            min-width: 300px;
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
        }

        .contact-block {
            margin-bottom: 30px;
        }

        .contact-block h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .contact-link {
            font-size: 1.1rem;
            border-bottom: 1px solid var(--secondary-color);
            color: var(--secondary-color);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-icons svg {
            width: 40px;
            height: 40px;
            fill: var(--primary-color);
            transition: 0.3s;
        }

        .social-icons svg:hover {
            fill: var(--secondary-color);
        }

        .map-container {
            flex: 1;
            min-width: 300px;
            height: 450px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        /* Footer */
        footer {
            background: #dadec1;
            color: var(--secondary-color);
            text-align: center;
            padding: 20px 0;
            font-size: 0.9rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content {
                flex-direction: column;
            }
        }
/* Модальное окно записи */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none; /* по умолчанию скрыто */
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 999;
}

.modal-overlay.modal-open {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 420px;
    width: 100%;
    padding: 24px 22px 20px;
    position: relative;
}

.modal-title {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--secondary-color);
}

.modal-text {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 16px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: var(--text-color);
}

.modal-field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
}

.modal-field input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(126, 156, 103, 0.25);
}

.modal-submit {
    width: 100%;
    margin-top: 4px;
}

.modal-note {
    margin-top: 8px;
    font-size: 11px;
    color: var(--muted-color, #777);
    line-height: 1.4;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--muted-color, #777);
    padding: 0;
}

.modal-close:hover {
    color: var(--secondary-color);
}

@media (max-width: 480px) {
    .modal {
        max-width: 100%;
        padding: 20px 16px 18px;
    }
}
/* Карточки галереи (фото + видео) */
.gallery-scroll .gallery-item {
    cursor: pointer;
    position: relative;
}

.gallery-scroll .gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Значок проигрывания на видео */
.gallery-item-video .gallery-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
    pointer-events: none;
}

/* Оверлей */
.photo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1000;
}

.photo-overlay.photo-overlay-open {
    display: flex;
}

.photo-overlay-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

/* Картинка в оверлее */
.photo-overlay-img {
    max-width: 100%;
    max-height: 100%;
    display: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Видео в оверлее */
.photo-overlay-video {
    max-width: 100%;
    max-height: 100%;
    display: none;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Общие, показываем активный тип */
.photo-overlay-img.is-active,
.photo-overlay-video.is-active {
    display: block;
}

.photo-overlay-close {
    position: absolute;
    top: -10px;
    right: -10px;
    border: none;
    background: #ffffff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.photo-overlay-close:hover {
    background: #f5f5f5;
}
.about-photo-rect {
    width: 100%;
    max-width: 420px;     /* можно поменять под себя */
    margin: 20px auto 0;  /* отступ сверху и центрирование */
    border-radius: 0;     /* сам блок — без круга */
    overflow: hidden;
}

.about-photo-rect img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;     /* картинка тоже без скругления */
}
