
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #C9A34A; /* Тёплое золотое (главный акцент) */
            --secondary-color: #A89A8F; /* Мягкий тауп/беж для вторичных элементов */
            --accent-color: #8F6B3A; /* Бронзово-золотой, заменяет зелёный */
            --dark-color: wheat; /* Тёмный тёплый цвет для текста */
            --light-color: #2A1F1A; /* Молочный фон */
            --text-color: #362F2A; /* Тёплый почти-чёрный */
            --shadow: 0 5px 15px rgba(33, 20, 8, 0.06);
            --vintage-shadow: 0 10px 30px rgba(54, 36, 12, 0.12);
            --border-radius: 10px;
        }
        
        body {
            font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
            line-height: 1.7;
            color: var(--text-color);
            overflow-x: hidden;
            background-color: var(--light-color);

         }

        @font-face {
            font-family: 'DesirableBrust';
            src: url('/fonts/Desirable_Bursh_Texture.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
            font-weight: 600;
            color: var(--dark-color);
            letter-spacing: 0.5px;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
            color: var(--accent-color);
        }
        
        /*.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 440px; /* Было 220px *//*
  height: 80px; /* Было 40px *//*
  background-image: url('https://i.pinimg.com/originals/03/cf/77/03cf77520c9219aa189141521737e625.png?nii=t');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
} */






        
        .section-title p.subtitle {
            font-family: 'Dancing Script', cursive;
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-top: 10px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: transparent;
            color: white;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Cormorant Garamond', serif;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /*.btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn:hover {
            background: var(--primary-color);
            box-shadow: 0 6px 12px rgba(33, 20, 8, 0.08);
        }
        
        .btn:hover::before {
            left: 100%;
        }*/
        
        .btn2 {
            display: inline-block;
            padding: 14px 32px;
            background-color: transparent;
            color: var(--dark-color);
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Cormorant Garamond', serif;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--dark-color);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-primary {
           /* background: var(--primary-color);*/
            color: #fff;
        }
        .btn3 {
    display: block;
    margin: 25px auto 0;
    padding: 12px 32px;
    background-color: transparent;
    color: var(--dark-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    border: 1px solid var(--dark-color);
    transition: all 0.35s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Ховер */
.btn3:hover {
    background: rgba(212, 167, 152, 0.45);
    border-color: rgba(212, 167, 152, 0.6);
    color: #2A1F1A;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

        
        /*.btn-primary:hover {
            background: #c99585;
        }*/
        
/* HEADER — ТЁМНЫЙ ПРЕМИАЛЬНЫЙ ВИНТАЖ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(42, 31, 26, 0.75);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(212, 167, 152, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);

    transition: all 0.35s ease;
}

/* ЛИПКОСТЬ ПРИ СКРОЛЛЕ */
.header.scrolled {
    background: rgba(42, 31, 26, 0.92);
    padding: 5px 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.45);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    transition: padding 0.3s ease;
}

/* ЛОГОТИП */
.logo {
    font-family: 'DesirableBrust', cursive;
    font-size: 2.4rem;
    font-weight: 700;
    color: wheat;
    text-decoration: none;

    text-shadow: 0 0 8px rgba(212, 167, 152, 0.35);
    letter-spacing: 1px;

    transition: color 0.3s ease, text-shadow 0.3s ease;
    z-index: 99;
}

.logo:hover {
    color: rgba(212, 167, 152, 0.95);
    text-shadow: 0 0 12px rgba(212, 167, 152, 0.55);
    z-index: 99;
}

/* НАВИГАЦИЯ */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 245, 230, 0.85);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* ВИНТАЖНОЕ ПОДЧЁРКИВАНИЕ */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(212, 167, 152, 0.9);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: rgba(212, 167, 152, 0.95);
}

.nav-links a:hover::after {
    width: 100%;
}

/* МОБИЛЬНАЯ КНОПКА */
.mobile-menu-btn {
    display: none;
    font-size: 1.6rem;
    background: rgba(212, 167, 152, 0.15);
    border: 1px solid rgba(212, 167, 152, 0.3);
    color: rgba(212, 167, 152, 0.95);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(212, 167, 152, 0.35);
}

        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(20, 12, 8, 0.55), rgba(20, 12, 8, 0.55)), url('images/fon1.jpg');
            background-size: cover;
            background-position: center;
            color: var(--light-color);
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            margin-top: 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.5) 100%);
            pointer-events: none;
        }

        .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(
        to bottom,
        rgba(20, 12, 8, 0) 0%,     /* полностью прозрачный */
        rgba(20, 12, 8, 0.4) 40%,  /* мягкое затемнение */
        #2A1F1A 100%               /* твой фон */
    );
    pointer-events: none;
    z-index: 1;
    }



        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 40px;
            /*background: rgba(248, 244, 233, 0.1);
            backdrop-filter: blur(5px);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: var(--vintage-shadow); */
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: white;
            /* text-shadow: 2px 2px 4px rgba(0,0,0,0.5); */
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
            font-weight: 300;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: wheat;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        
        /* About Section */
        .about-content {
    display: grid;
    grid-template-columns: 1fr; /* одна колонка */
    justify-items: center;      /* центрируем фото */
    text-align: center;         /* текст тоже по центру */
    gap: 40px;
}



        
        .about-image {
    max-width: 500px;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--vintage-shadow);
    border: 10px solid var(--light-color);
    transition: transform 0.5s ease;
}

        
        .about-image:hover {
            box-shadow: 0 18px 40px rgba(54, 36, 12, 0.08);
        }
        
        .about-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            border-radius: 13px;
            filter: sepia(0.2) brightness(1.05) contrast(1.05);
        }
        
        .about-text {
    max-width: 700px;
    margin: 0 auto;
}

        
        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .about-text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            line-height: 1.8;
            color: wheat;
        }
        
        .about-principles {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .principle {
    position: relative;
    padding-top: 60px; /* пространство для вылета ангела */
    background: rgba(230, 210, 170, 0.75);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible; /* важно, чтобы ангел не обрезался */
}


        
        .principle:hover {
            box-shadow: 0 12px 24px rgba(54, 36, 12, 0.08);
        }
        
        .principle-icon {
            width: 110px; /* увеличим размер */
            height: 110px;
    object-fit: contain;
    margin-bottom: -40px; /* поднимем вверх */
    transform: translateY(-40%); /* выдвигаем на 40% вверх */
    z-index: 2;
    position: relative;
    filter: sepia(0.3) brightness(1.1);
        }


        
        .principle h4 {
            margin-bottom: 10px;
            color: var(--accent-color);
        }
        
        .principle p {
            color: wheat;
        }


/* Atmosphere Section */
.atmosphere-section-alt {
    padding: 80px 0;
    background-color: #2A1F1A;
}

/* ВАЖНО: именно этот блок — родитель для абсолютных ангелов */
.atmosphere-wrapper {
    position: relative;
    padding: 60px 40px;
    overflow: visible;
    margin-top: -100px; /* чтобы ангелы заходили на предыдущий раздел */
}

/* Общий стиль ангелов */
.angel {
    position: absolute;
    filter: sepia(0.3) brightness(1.1);
    opacity: 0.8;
    pointer-events: none;
    z-index: 1; /* чтобы были под текстом, но над фоном */
}

/* Левый верхний ангел */
.angel-left {
    top: -19px;
    left: -87px;
    width: 300px;
    transform: scaleX(-1) rotate(-17deg);
}

/* Правый нижний ангел */
.angel-right {
    bottom: 0px;
    right: -20px;
    width: 270px;
    transform: scaleX(-1) rotate(0deg);
}

/* Текст */
.atmosphere-text {
    position: relative;
    z-index: 2;
    color: wheat;
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: center;
    max-width: 650px; /* вот это делает текст компактным */
    margin: 0 auto;   /* центрирует */
}


.atmosphere-text h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
}




/* Works Section */
#works {
    padding: 60px 0;
    background: #2A1F1A;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Фильтры */
.works-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.filter-btn {
    display: inline-block;
    padding: 12px 26px;
    background-color: transparent;
    color: var(--dark-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    border: 1px solid var(--dark-color);
    transition: all 0.35s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Ховер и актив — одинаковый стиль */
.filter-btn:hover,
.filter-btn.active {
    background: rgba(212, 167, 152, 0.45);
    border-color: rgba(212, 167, 152, 0.6);
    color: #2A1F1A;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}


/* Галерея */
.works-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-items: center; /* центрируем элементы */
}



.work-item {
    width: 100%;
    max-width: 380px; /* или 360–420px — подбери под стиль */
    margin: 0 auto;   /* чтобы центрировалось */
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid rgba(212, 167, 152, 0.25);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}



.work-item:hover {
    transform: scale(1.03);
}



/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 167, 152, 0.4);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: wheat;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-lightbox:hover {
    color: rgba(212, 167, 152, 0.9);
}






       
        
/* Price Section */
.duration {
    font-size: 0.85rem;
    color: #7a6a63;
    margin-top: 4px;
    font-style: italic;
}

.price-angel-wrapper {
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.price-angel {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    margin-bottom: -60px;
}


.angel-frame {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px; /* можно адаптировать */
    max-width: 90vw;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}


.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: rgba(42, 31, 26, 0.6); /* тёмный винтажный фон */
    border: 1px solid rgba(212, 167, 152, 0.25);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Заголовки */
.price-table th {
    background: rgba(212, 167, 152, 0.25); /* мягкий акцент */
    color: wheat;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 167, 152, 0.25);
}

/* Ячейки */
.price-table td {
    padding: 18px 20px;
    color: rgba(255, 245, 230, 0.9);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(212, 167, 152, 0.15);
}

/* Чередование строк */
.price-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

/* Ховер */
.price-table tr:hover {
    background: rgba(212, 167, 152, 0.12);
    transition: 0.25s ease;
}

/* Название услуги */
.price-table td:first-child {
    font-weight: 600;
    color: rgba(255, 235, 210, 0.95);
}

/* Цена */
.price-table td:last-child {
    font-weight: 700;
    color: rgba(212, 167, 152, 0.95);
    font-size: 1.15rem;
}
.price-description {
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 240, 225, 0.85); /* мягкий тёплый текст */
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    letter-spacing: 0.3px;
}

.price-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}


/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #2A1F1A; /* как works и atmosphere */
}

.reviews-title {
    text-align: center;
    font-size: 2.4rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Фильтры */
.reviews-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.reviews-filters .filter-btn {
    padding: 10px 22px;
    background-color: transparent;
    color: wheat;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    border: 1px solid rgba(212, 167, 152, 0.4);
    transition: all 0.35s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.reviews-filters .filter-btn:hover,
.reviews-filters .filter-btn.active {
    background: rgba(212, 167, 152, 0.45);
    border-color: rgba(212, 167, 152, 0.6);
    color: #2A1F1A;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

/* Select */
.rating-select {
    padding: 10px 16px;
    border-radius: 6px;
    background: rgba(212, 167, 152, 0.25);
    border: 1px solid rgba(212, 167, 152, 0.4);
    color: wheat;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    transition: 0.3s ease;
    appearance: none;
    padding-right: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.rating-select:hover {
    background: rgba(212, 167, 152, 0.35);
    border-color: rgba(212, 167, 152, 0.6);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

.rating-select:focus {
    outline: none;
    border-color: rgba(212, 167, 152, 0.8);
    box-shadow: 0 0 0 3px rgba(212, 167, 152, 0.25);
}

.rating-select option {
    background: #2A1F1A;
    color: wheat;
    font-family: 'Cormorant Garamond', serif;
    padding: 10px;
}

/* Статистика */
.reviews-stats {
    text-align: center;
    margin-bottom: 30px;
    color: rgba(255, 240, 225, 0.85);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Список отзывов */
.reviews-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}


/* Skeleton */
.review-skeleton {
    height: 220px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
}

/* Карточка отзыва */
.review-card {
    background: rgba(42, 31, 26, 0.6);
    border: 1px solid rgba(212, 167, 152, 0.25);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Рейтинг */
.review-rating {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #D4A798;
}

/* Фото */
.review-photo {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 167, 152, 0.25);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    object-fit: cover;
}

/* Текст */
.review-text {
    color: wheat;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Имя */
.review-name {
    font-weight: 600;
    color: rgba(255, 235, 210, 0.95);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

/* Дата */
.review-date {
    font-size: 0.9rem;
    color: rgba(255, 240, 225, 0.7);
}

/* Нет отзывов */
.no-reviews {
    text-align: center;
    color: rgba(255, 240, 225, 0.8);
    font-size: 1.2rem;
    padding: 20px;
}






        
/* Rent Section */
.rent {
    position: relative;
    padding: 60px 0;
    background: #2A1F1A; /* общий фон секции */
}

.rent-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Условия аренды */
.rent-conditions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Общий текст внутри блока аренды */
.rent p {
    color: rgba(255, 245, 230, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Заголовки внутри текста */
.rent h3 {
    color: rgba(212, 167, 152, 0.9);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Списки */
.rent ol {
    color: rgba(255, 245, 230, 0.9);
    line-height: 1.7;
    margin-left: 20px;
    margin-bottom: 20px;
}

.rent ol li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}


.condition {
    background: rgba(42, 31, 26, 0.65); /* тёмный винтажный фон */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border-top: 4px solid rgba(212, 167, 152, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.condition:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.condition i {
    color: rgba(212, 167, 152, 0.9);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.condition h4 {
    margin-bottom: 10px;
    color: wheat;
    font-weight: 600;
}

.condition p {
    color: rgba(255, 245, 230, 0.9);
    line-height: 1.6;
}

/* Блок цен */
.rent-prices {
    background: rgba(42, 31, 26, 0.65);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border: 1px solid rgba(212, 167, 152, 0.3);
}

.rent-prices h3 {
    color: rgba(212, 167, 152, 0.9);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(212, 167, 152, 0.4);
    font-weight: 600;
}

.rent-price-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 167, 152, 0.2);
}

.rent-price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rent-price-item h4 {
    margin-bottom: 8px;
    color: wheat;
    font-weight: 600;
}

.rent-price-item p {
    font-size: 1.4rem;
    color: rgba(212, 167, 152, 1);
    font-weight: 700;
}

        
/* Contacts Section */
#contacts {
    padding: 60px 0;
    background: #2A1F1A; /* общий фон секции */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* левая колонка + карта */
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* Один контактный элемент */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(42, 31, 26, 0.65); /* тёмный винтажный фон */
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(212, 167, 152, 0.25);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Иконка */
.contact-item i {
    width: 60px;
    height: 60px;
    background: rgba(212, 167, 152, 0.25);
    color: rgba(212, 167, 152, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Заголовок */
.contact-item h4 {
    margin-bottom: 5px;
    color: rgba(212, 167, 152, 0.9);
    font-weight: 600;
}

/* Текст */
.contact-item p {
    line-height: 1.6;
    color: rgba(255, 245, 230, 0.9);
}

/* Соцсети */
.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

/* Ссылки соцсетей */
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;

    background: rgba(212, 167, 152, 0.12);
    border-radius: 50%;
    color: rgba(212, 167, 152, 0.95);

    border: 1px solid rgba(212, 167, 152, 0.35);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
    text-decoration: none; /* убираем подчёркивание */
}

/* Hover эффект */
.social-icons a:hover {
    background: rgba(212, 167, 152, 0.45);
    color: #2A1F1A;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}


/* Карта */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    height: 400px;
    border: 1px solid rgba(212, 167, 152, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: sepia(0.15) contrast(1.05) brightness(0.95);
}

        
        
        
/* FAQ Section */
.faq {
    position: relative;
    padding: 60px 0;
    background: #2A1F1A; /* общий фон секции */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Элемент FAQ */
.faq-item {
    background: rgba(42, 31, 26, 0.65); /* тёмный винтажный фон */
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border-left: 4px solid rgba(212, 167, 152, 0.25);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-left-color: rgba(212, 167, 152, 0.6);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Вопрос */
.faq-question {
    padding: 22px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: wheat;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(212, 167, 152, 0.08);
}

/* Иконка */
.faq-icon {
    color: rgba(212, 167, 152, 0.9);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Ответ */
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    border-top: 1px dashed rgba(212, 167, 152, 0);
    color: rgba(255, 245, 230, 0.9);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 500px;
    border-top-color: rgba(212, 167, 152, 0.3);
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Форма (если используется в секции) */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: wheat;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(212, 167, 152, 0.4);
    border-radius: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.1);
    color: wheat;
    transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 167, 152, 0.8);
    box-shadow: 0 0 0 3px rgba(212, 167, 152, 0.25);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

        
       /* Footer */
footer {
    background: #2A1F1A;
    color: rgba(255, 245, 230, 0.9);
    padding: 70px 0 40px;
    position: relative;
}

/* Верхняя декоративная линия */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgba(212, 167, 152, 0.4),
        rgba(212, 167, 152, 0.8),
        rgba(212, 167, 152, 0.4)
    );
}

/* Сетка футера */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

/* Логотип */
.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: wheat;
}

.footer-logo span {
    color: rgba(212, 167, 152, 0.9);
}

/* Текст */
.footer-content p {
    opacity: 0.85;
    line-height: 1.7;
    color: rgba(255, 245, 230, 0.85);
}

/* Быстрые ссылки */
.footer-links a {
    color: rgba(255, 245, 230, 0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding-left: 0;
    position: relative;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: rgba(212, 167, 152, 0.9);
    padding-left: 10px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: rgba(212, 167, 152, 0.9);
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

/* Соцсети */
footer .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(212, 167, 152, 0.12);
    border-radius: 50%;
    color: rgba(212, 167, 152, 0.95);
    border: 1px solid rgba(212, 167, 152, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

footer .social-icons a:hover {
    background: rgba(212, 167, 152, 0.45);
    color: #2A1F1A;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Credits */
.footer-credits {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 10px;
    opacity: 0.6;
    font-size: 0.85rem;
    color: rgba(255, 245, 230, 0.7);
}

.footer-credits a {
    color: rgba(212, 167, 152, 0.9);
    text-decoration: none;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: rgba(255, 245, 230, 0.6);
}


        .desktop-only { display: block; }

        .phone-link {
        line-height: 1.6;
    color: rgba(255, 245, 230, 0.9);
    text-decoration: none;
}


.hidden {
    display: none !important;
}

.developer-credit {
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.45;
    color: rgba(255, 245, 230, 0.7);
    transition: opacity 0.3s ease;
}

.developer-credit a {
    color: rgba(212, 167, 152, 0.9);
    text-decoration: none;
    font-weight: 500;
}

.developer-credit:hover {
    opacity: 0.8;
}



        
        /* Responsive Styles */
        @media (max-width: 1100px) {
            
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .about-content{
                grid-template-columns: repeat(3, 1fr);
            }

            .rent-content, .contact-content {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }
        /* МОБИЛЬНОЕ МЕНЮ */

        @media (max-width: 768px) {
                .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;

        background: rgba(42, 31, 26, 0.95);
        backdrop-filter: blur(12px);

        flex-direction: column;
        align-items: center;
        padding: 35px 0;

        gap: 25px;

        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;

        transition: all 0.45s ease;
        border-top: 1px solid rgba(212, 167, 152, 0.25);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.4rem;
        color: rgba(255, 245, 230, 0.95);
    }

    .nav-links a::after {
        display: none;
    }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }

            .about-content { 
                grid-template-columns: 1fr; /* одна колонка */ 
                gap: 30px; 
            } 
            .about-text { 
                grid-column: 1; /* текст под фото */
            }


            .about-principles, .rent-conditions {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }

    /* Левый верхний ангел */
    .angel-left {
        width: 130px;
        top: -20px;
        left: -40px;
        transform: scaleX(-1) rotate(-10deg);
    }

    /* Правый нижний ангел */

    .angel-right {
        position: absolute;
        width: 200px;
        bottom: -25%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        z-index: 1;
    }



    .atmosphere-wrapper {
        padding: 40px 20px;
        margin-top: -60px; /* чтобы не залезало на предыдущий блок */
    }

    .atmosphere-text {
        max-width: 90%;
        font-size: 1rem;
        line-height: 1.55;
        z-index: 2;
    }

    .atmosphere-text h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr; /* одна колонка */
        gap: 30px;
    }

    .social-icons {
        justify-content: center; /* центрируем иконки */
        margin-top: 10px;
    }

    .map-container {
        height: 350px; /* адаптивная высота */
    }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .desktop-only { display: none; }

            .price-angel { max-width: 240px; }

}

        
        


        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            
            .price-table th, .price-table td {
                padding: 15px 10px;
                font-size: 0.9rem;
            }
            
            .booking-form {
                padding: 25px;
            }
        }


@media (max-width: 480px) {

    .works-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* по умолчанию 2 колонки */
        gap: 12px;
        justify-items: center;
        grid-auto-flow: dense;
    }

    /* Когда в категории только одно видимое фото — делаем 1 колонку */
    .works-gallery.single {
        grid-template-columns: 1fr;
    }

    .work-item {
        aspect-ratio: 4 / 5;
        max-width: 360px;
    }



    .works-filters {
        display: flex;
        flex-wrap: wrap; /* разрешаем перенос */
        width: 100%;
        padding: 0 10px;
        gap: 10px;
        justify-content: center;
    }

    .filter-btn {
        flex: 0 0 48%; /* две кнопки в строке */
        text-align: center;
        padding: 12px 0;
        box-sizing: border-box;
        font-size: 0.9rem;
    }


    /* Лайтбокс */
    #lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    }

    #lightbox.active {
    display: flex;
    }

    .lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    border: 1px solid rgba(212, 167, 152, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: wheat;
    cursor: pointer;
    }
}

