:root {
    --primary-color: #fcfcfc;
    --text-color: #2b2b2b;
    --accent-color: #b08968; /* vignette accent */
    --accent-light: #b08968;
    --hover-color: #b08968;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600; /* Made slightly bolder for better glow effect */
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    color: var(--accent-color); /* Set to the new #b08968 */
    text-shadow: 0 0 10px rgba(176, 137, 104, 0.4), 0 0 20px rgba(176, 137, 104, 0.2); /* Beautiful glow */
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(252, 252, 252, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header.scrolled {
    box-shadow: var(--shadow-soft);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(176, 137, 104, 0.4), 0 0 15px rgba(176, 137, 104, 0.2);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1));
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--accent-color);
    text-shadow: 0px 0px 8px rgba(176, 137, 104, 0.25);
}

/* Burger Menu for Mobile */
.burger {
    display: none;
    align-items: center;
    gap: 10px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(176, 137, 104, 0.25);
    border-radius: 999px;
    cursor: pointer;
    z-index: 101;
}

.burger-label {
    display: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-color);
}

.burger-lines {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-lines span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Установите свое фоновое изображение в html файле (style="background-image: url('...');") или здесь */
    background: #e0e0e0 url('../img/hero-bg.webp') center center/100% auto no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(176, 137, 104, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #b08968 0%, #b08968 100%);
    color: #fff;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #b08968 0%, #b08968 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 8px 25px rgba(176, 137, 104, 0.5);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--accent-light);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--accent-light);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(234, 208, 172, 0.4);
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.benefit-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for Locations Grid */
.locations-grid .location-card.fade-in {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.locations-grid .location-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.locations-grid .location-card:nth-child(1) { transition-delay: 0.1s; }
.locations-grid .location-card:nth-child(2) { transition-delay: 0.2s; }
.locations-grid .location-card:nth-child(3) { transition-delay: 0.3s; }
.locations-grid .location-card:nth-child(4) { transition-delay: 0.4s; }
.locations-grid .location-card:nth-child(5) { transition-delay: 0.5s; }
.locations-grid .location-card:nth-child(6) { transition-delay: 0.6s; }
.locations-grid .location-card:nth-child(7) { transition-delay: 0.7s; }
.locations-grid .location-card:nth-child(8) { transition-delay: 0.8s; }

/* Media Queries - Basic Mobile Nav */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(252, 252, 252, 0.98);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .nav-list a {
        font-size: 1.5rem;
    }
    
    .burger {
        display: inline-flex;
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(8px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }
    .burger-label { display: inline-block; }
    .burger.active .burger-lines span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .burger.active .burger-lines span:nth-child(2) { opacity: 0; }
    .burger.active .burger-lines span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* Base Utility Classes */
.bg-light { background-color: #f7f5f2; }
.overflow-hidden { overflow: hidden; }

/* Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.location-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: var(--shadow-soft);
    /* Transition is managed by fade-in initially, then we apply hover transitions specifically */
}
.location-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.location-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.location-card:hover {
    transform: translateY(-5px);
}
.location-card:hover::after {
    opacity: 1;
}
.location-card:hover img {
    transform: scale(1.08); /* slight smooth zoom on hover */
}
.location-info {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 40px 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.location-card:hover .location-info {
    transform: translateY(0);
    padding-bottom: 35px; /* Lift the info slightly */
}
.location-info h3 { 
    font-weight: 500; 
    font-size: 1.3rem; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.btn-sm { 
    padding: 10px 20px; 
    font-size: 0.85rem; 
    letter-spacing: 1px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.service-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(176, 137, 104, 0.05);
}
.service-card:hover { 
    transform: translateY(-10px) !important; 
    box-shadow: 0 15px 30px rgba(176, 137, 104, 0.15) !important; 
    z-index: 2;
}

/* Эффектные переходы для появления карточек (маскировка загрузки фото) */
.services-grid .service-card.fade-in {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    filter: blur(8px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.services-grid .service-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Stagger (поочередное появление) */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.6s; }

/* Красивое масштабирование самого фото внутри карточки при появлении */
.service-img {
    overflow: hidden;
    position: relative;
    background: #f4f4f4; /* Фон-заглушка (скелетон) пока грузится картинка */
}

/* Анимация "скелетона" (переливающегося блика) для img */
.service-img::before {
    content: "";
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: imageSkeletonShimmer 2s infinite;
    z-index: 1;
}

.services-grid .service-card.fade-in.visible .service-img::before {
    opacity: 0;
    transition: opacity 1s ease 0.5s; /* Плавно убираем скелетон после появления */
}

@keyframes imageSkeletonShimmer {
    0% { left: -150%; }
    100% { left: 200%; }
}

.service-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transform: scale(1.15); /* Картинка изначально увеличена для появления */
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 1s ease;
    will-change: transform;
}

.services-grid .service-card.fade-in.visible .service-img img {
    transform: scale(1); /* Плавно отдаляется при появлении */
}

.clickable-service:hover .service-img img,
.service-card:hover .service-img img {
    transform: scale(1.05); /* Немного увеличивается при наведении */
}
.service-content { padding: 25px; text-align: center; }
.service-content h3 { 
    font-weight: 500; 
    margin-bottom: 10px; 
    color: var(--accent-color); 
    text-shadow: 0 2px 4px rgba(176, 137, 104, 0.2);
}
.service-content p { font-size: 0.95rem; color: #666; }

/* Premium Vignette Modal */
.vignette-premium-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    background: rgba(18, 17, 15, 0.62);
    backdrop-filter: blur(14px);
    transition: opacity 0.35s ease;
}

.vignette-premium-modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.vp-modal-shell {
    position: relative;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
    background: linear-gradient(160deg, #fcfbf8 0%, #f7f3ed 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 36px 80px rgba(16, 14, 12, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.965) translateY(10px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.vignette-premium-modal.visible .vp-modal-shell {
    transform: scale(1) translateY(0);
}

.vp-close {
    position: absolute;
    right: 18px;
    top: 12px;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(176, 137, 104, 0.45);
    background: rgba(255, 255, 255, 0.96);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    color: #2d2a27;
    box-shadow: 0 8px 20px rgba(22, 18, 15, 0.2);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 8;
}

.vp-close-icon {
    font-size: 1.4rem;
    line-height: 1;
    transform-origin: center;
    transition: transform 0.25s ease;
}

.vp-close-text {
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.vp-top-title {
    text-align: center;
    padding: 14px 64px 8px;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #2d221b;
}

.vp-instagram-fab {
    position: fixed;
    left: 22px;
    bottom: 20px;
    min-width: 146px;
    height: 50px;
    border-radius: 999px;
    border: 1px solid rgba(176, 137, 104, 0.42);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 240, 233, 0.98) 100%);
    color: #5f4635;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    box-shadow: 0 16px 34px rgba(26, 20, 16, 0.2);
    transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background-color 0.22s ease;
    z-index: 1401;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.vp-instagram-fab svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

.vp-instagram-fab span {
    line-height: 1;
}

.vp-instagram-fab:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 36px rgba(26, 20, 16, 0.28);
    color: #b08968;
}

.vp-locations-fab {
    position: fixed;
    right: 22px;
    bottom: 86px;
    min-height: 52px;
    max-width: 200px;
    border-radius: 999px;
    border: 1px solid rgba(176, 137, 104, 0.46);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 240, 233, 0.98) 100%);
    color: #5f4635;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    box-shadow: 0 16px 34px rgba(26, 20, 16, 0.22);
    z-index: 1401;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.vp-locations-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(26, 20, 16, 0.3);
    color: #b08968;
}

.vp-faq-fab {
    position: fixed;
    right: 22px;
    bottom: 152px;
    min-height: 52px;
    max-width: 220px;
    border-radius: 999px;
    border: 1px solid rgba(176, 137, 104, 0.46);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 240, 233, 0.98) 100%);
    color: #5f4635;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    box-shadow: 0 16px 34px rgba(26, 20, 16, 0.22);
    z-index: 1401;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.vp-faq-fab-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(176, 137, 104, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.vp-faq-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(26, 20, 16, 0.3);
    color: #b08968;
}

.vp-close:hover {
    background-color: #fff;
    box-shadow: 0 12px 24px rgba(22, 18, 15, 0.26);
}

.vp-close:hover .vp-close-icon {
    transform: rotate(90deg);
}

.vp-modal-header {
    text-align: center;
    padding: 34px 90px 14px;
}

.vp-modal-header h2 {
    font-size: 2.1rem;
    letter-spacing: 0.04em;
    color: #1f1b18;
    margin-bottom: 8px;
}

.vp-modal-header p {
    color: #5f554e;
    font-size: 0.98rem;
}

.vp-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 56px 8px 14px;
    background: linear-gradient(180deg, rgba(252, 251, 248, 0.98) 0%, rgba(252, 251, 248, 0.9) 70%, rgba(252, 251, 248, 0) 100%);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(124, 99, 73, 0.12);
}

.vp-nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(176, 137, 104, 0.45);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    color: #3e332b;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.vp-nav-toggle-bars {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.vp-nav-toggle-bars span {
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.vp-nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.vp-nav-link {
    border: 1px solid rgba(176, 137, 104, 0.45);
    background: rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    color: #3e332b;
    padding: 8px 14px;
    font-size: 0.86rem;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.vp-nav-link:hover,
.vp-nav-link.is-active {
    color: #fff;
    background: #b08968;
    border-color: #b08968;
    box-shadow: 0 8px 18px rgba(176, 137, 104, 0.28);
}

.vp-modal-body {
    padding: 8px 48px 36px;
    overflow: auto;
}

.vp-pricing {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 247, 242, 0.9) 100%);
    border: 1px solid rgba(124, 99, 73, 0.14);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(45, 37, 30, 0.08);
    padding: 34px 32px;
    margin: 4px 0 30px;
}

.vp-pricing-header {
    text-align: center;
    margin-bottom: 22px;
}

.vp-pricing-header h3 {
    margin: 0 0 10px;
    color: #1f1915;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
    letter-spacing: 0.02em;
}

.vp-pricing-header p {
    margin: 0;
    color: #625951;
    line-height: 1.6;
}

.vp-pricing-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    background: linear-gradient(160deg, #f6f1e9 0%, #f3eee6 100%);
    border: 1px solid rgba(176, 137, 104, 0.24);
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 24px;
}

.vp-notice-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(176, 137, 104, 0.2);
    color: #5b4737;
    font-weight: 700;
}

.vp-pricing-notice h4 {
    margin: 2px 0 8px;
    font-size: 1rem;
    color: #30261f;
}

.vp-pricing-notice ul {
    margin: 0;
    padding-left: 18px;
    color: #54483f;
    line-height: 1.55;
}

.vp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.vp-price-card {
    background: #fff;
    border: 1px solid rgba(124, 99, 73, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(21, 16, 12, 0.08);
    padding: 18px 16px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.45s ease;
    opacity: 0;
    transform: translateY(18px);
}

.vp-price-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vp-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(21, 16, 12, 0.14);
}

.vp-price-card h4 {
    margin: 0;
    color: #2b221c;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.vp-price {
    margin: 10px 0 6px;
    color: #231c17;
    font-weight: 700;
    font-size: 1.3rem;
}

.vp-pages {
    margin: 0;
    color: #5a4e45;
    font-size: 0.95rem;
}

.vp-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(176, 137, 104, 0.35), rgba(176, 137, 104, 0.08));
    margin: 14px 0 12px;
}

.vp-price-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
    color: #4d4138;
    font-size: 0.9rem;
    line-height: 1.45;
}

.vp-price-card li::before {
    content: "- ";
    color: #715845;
}

.vp-price-card-premium {
    border-color: rgba(176, 137, 104, 0.35);
    box-shadow: 0 14px 30px rgba(85, 67, 51, 0.16);
}

.vp-template-list {
    display: grid;
    gap: 34px;
}

.vp-template-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(247, 241, 232, 0.8) 100%);
    border: 1px solid rgba(124, 99, 73, 0.11);
    border-radius: 18px;
    padding: 28px;
    scroll-margin-top: 92px;
}

.vp-template-section h3 {
    text-align: center;
    margin-bottom: 24px;
    color: #3f332b;
    letter-spacing: 0.02em;
}

.vp-album-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(246, 240, 232, 0.88) 100%);
    border: 1px solid rgba(124, 99, 73, 0.13);
    border-radius: 18px;
    padding: 28px 26px;
}

.vp-album-item h4 {
    text-align: center;
    margin: 22px 0 10px;
    color: #3b2f28;
    letter-spacing: 0.02em;
}

.vp-book-scene {
    perspective: 1900px;
    perspective-origin: 50% 50%;
    overflow: visible;
}

.vp-book-core {
    position: relative;
    width: min(640px, 100%);
    aspect-ratio: 5 / 3.2;
    margin: 0 auto;
    transform-style: preserve-3d;
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.28, 1);
    will-change: transform;
}

.vp-album:hover .vp-book-core {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.03);
}

.vp-book-core::before {
    content: "";
    position: absolute;
    inset: auto 10% -34px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(35, 29, 23, 0.42), rgba(35, 29, 23, 0));
    filter: blur(9px);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.vp-album:hover .vp-book-core::before {
    transform: translateY(2px) scale(1.06);
    opacity: 0.95;
}

.vp-spine-shadow {
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    height: 100%;
    transform: translateX(-50%) translateZ(2px);
    background: linear-gradient(to right, rgba(16, 12, 10, 0.3), rgba(255, 255, 255, 0.04), rgba(16, 12, 10, 0.32));
    border-radius: 99px;
    z-index: 1;
}

.vp-leaf {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    transform-origin: left center;
    transform-style: preserve-3d;
    transition: transform 1.55s cubic-bezier(0.16, 0.82, 0.2, 1), filter 1.55s ease;
    will-change: transform;
    --vp-curve: 0deg;
    transform: translateZ(0);
}

.vp-leaf::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.vp-leaf.vp-is-dragging::after {
    opacity: 0.8;
}

.vp-face {
    position: absolute;
    inset: 0;
    border-radius: 0 13px 13px 0;
    overflow: hidden;
    backface-visibility: hidden;
    border: 1px solid rgba(19, 16, 14, 0.09);
    background-color: #fff;
}

.vp-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vp-face::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 34%, rgba(0, 0, 0, 0.08) 88%);
}

.vp-face.vp-back {
    transform: rotateY(180deg);
    border-radius: 13px 0 0 13px;
}



.vp-album-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.vp-control {
    border: 1px solid rgba(71, 55, 43, 0.2);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.82rem;
    color: #44372f;
    cursor: pointer;
    transition: all 0.22s ease;
}

.vp-control:hover {
    background: #b08968;
    color: #fff;
    border-color: #b08968;
}

.vp-leaf {
    z-index: 2;
}

.vp-album.vp-animating {
    pointer-events: none;
}

.vp-album.vp-dragging .vp-leaf {
    transition: none !important;
}

.vp-album.vp-animating .vp-book-core {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.01);
}

@media (max-width: 1100px) {
    .vp-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vp-book-core {
        width: min(700px, 100%);
    }
}

@media (max-width: 768px) {
    .vignette-premium-modal {
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
    }

    .vp-modal-shell {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
    }

    .vp-close {
        top: 14px;
        right: 14px;
        height: 40px;
        padding: 0 11px;
    }

    .vp-top-title {
        padding: 12px 56px 8px;
        font-size: 0.98rem;
    }

    .vp-instagram-fab {
        left: 12px;
        bottom: 14px;
        min-width: 132px;
        height: 46px;
        padding: 0 14px;
        font-size: 0.88rem;
    }

    .vp-locations-fab {
        right: 12px;
        bottom: 74px;
        min-height: 46px;
        max-width: 172px;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .vp-faq-fab {
        right: 12px;
        bottom: 126px;
        min-height: 46px;
        max-width: 190px;
        padding: 0 12px;
        font-size: 0.78rem;
        gap: 6px;
    }

    .vp-faq-fab-icon {
        width: 20px;
        height: 20px;
        font-size: 0.82rem;
    }

    .vp-modal-body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 10px 12px 24px;
    }

    .vp-sticky-nav {
        justify-content: space-between;
        padding: 10px 12px;
    }

    .vp-nav-toggle {
        display: inline-flex;
    }

    .vp-nav-menu {
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        gap: 6px;
        padding: 10px;
        border: 1px solid rgba(124, 99, 73, 0.16);
        border-radius: 14px;
        background: rgba(252, 251, 248, 0.98);
        box-shadow: 0 12px 30px rgba(30, 23, 17, 0.16);
    }

    .vp-sticky-nav.is-open .vp-nav-menu {
        display: flex;
    }

    .vp-nav-link {
        width: 100%;
        text-align: left;
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .vp-pricing {
        padding: 20px 16px;
        margin-bottom: 22px;
    }

    .vp-pricing-header {
        margin-bottom: 16px;
    }

    .vp-pricing-notice {
        padding: 12px;
        margin-bottom: 16px;
    }

    .vp-pricing-grid {
        gap: 14px;
    }

    .vp-template-list {
        gap: 24px;
    }

    .vp-template-section {
        padding: 16px;
    }

    .vp-book-core {
        width: min(860px, calc(100vw - 34px));
    }

    .vp-album-item {
        padding: 16px 14px;
    }

    .vp-book-core {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    .vp-album:hover .vp-book-core,
    .vp-album.vp-animating .vp-book-core {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    .vp-album-controls {
        margin-top: 10px;
    }
}

@media (max-width: 520px) {
    .vp-close {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
    }

    .vp-close-text {
        font-size: 0.84rem;
    }

    .vp-instagram-fab {
        left: 10px;
        bottom: 12px;
        min-width: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        gap: 0;
    }

    .vp-instagram-fab span {
        display: none;
    }

    .vp-locations-fab {
        right: 8px;
        bottom: 68px;
        min-height: 42px;
        max-width: 136px;
        padding: 0 10px;
        border-radius: 16px;
        font-size: 0.74rem;
        letter-spacing: 0;
    }

    .vp-faq-fab {
        right: 8px;
        bottom: 116px;
        min-height: 42px;
        max-width: 154px;
        padding: 0 8px;
        border-radius: 16px;
        font-size: 0.7rem;
        letter-spacing: 0;
    }

    .vp-faq-fab-icon {
        width: 18px;
        height: 18px;
        font-size: 0.74rem;
    }

    .vp-modal-body {
        padding: 10px 10px 20px;
    }

    .vp-sticky-nav {
        top: 0;
        padding: 8px 10px;
    }

    .vp-template-section {
        border-radius: 14px;
        padding: 14px;
        scroll-margin-top: 82px;
    }

    .vp-pricing-grid {
        grid-template-columns: 1fr;
    }

    .vp-template-section h3 {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .vp-album-item {
        border-radius: 14px;
        padding: 12px;
    }

    .vp-book-core {
        width: calc(100vw - 24px);
        min-height: 220px;
    }

    .vp-album-item h4 {
        margin: 14px 0 8px;
        font-size: 0.92rem;
    }
}

/* Features (Why Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: var(--accent-color);
    color: #fff;
}
.feature-item h4 { font-weight: 500; font-size: 1.1rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.9rem; color: #555; }

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.team-card {
    background: #fff;
    box-shadow: var(--shadow-soft);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); }
.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: var(--transition);
}
.team-card:hover img { filter: grayscale(0%); }
.team-info { padding: 25px 20px; }
.team-info h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 5px; }
.team-info .role {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-info p { font-size: 0.9rem; color: #666; }

/* Booking Calendar mock */
.booking-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.booking-info h3 { margin-bottom: 15px; font-weight: 400; font-size: 1.5rem; }
.booking-info p { color: #666; margin-bottom: 30px; font-size: 0.95rem; }
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
.cal-day {
    padding: 15px 5px;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cal-day.available { background: #faf9f7; }
.cal-day.available:hover {
    background: var(--accent-light);
    border-color: var(--accent-color);
}
.cal-day.booked {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}
.cal-day.selected {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}
.day-name { font-size: 0.75rem; text-transform: uppercase; margin-bottom: 5px; }
.day-num { font-size: 1.2rem; font-weight: 500; }
.booking-action {
    background: #faf9f7;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Contacts & Footer */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}
.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(176, 137, 104, 0.05);
    border: 1px solid rgba(176, 137, 104, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info h3 { font-size: 1.8rem; font-weight: 400; margin-bottom: 15px; text-shadow: 0 2px 4px rgba(176, 137, 104, 0.1); }
.contact-info p { color: #555; margin-bottom: 30px; font-size: 1.05rem; line-height: 1.6; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(176, 137, 104, 0.1);
    transition: transform 0.3s ease;
}
.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.contact-item:hover {
    transform: translateX(5px);
}
.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(176, 137, 104, 0.3));
}
.contact-item h4 { font-weight: 500; margin-bottom: 5px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: #333; }
.contact-item p, .contact-item a { color: #666; text-decoration: none; transition: var(--transition); font-size: 1.05rem; }
.contact-item a:hover { color: var(--accent-color); text-shadow: 0 0 8px rgba(176, 137, 104, 0.4); }

.contact-item-instagram {
    align-items: flex-start;
}

.instagram-links-list {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.instagram-links-item {
    background: rgba(176, 137, 104, 0.06);
    border: 1px solid rgba(176, 137, 104, 0.14);
    border-radius: 10px;
    padding: 10px 12px;
    display: grid;
    gap: 4px;
}

.instagram-links-label {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.35;
}

.instagram-links-item a {
    font-weight: 600;
    color: #5a4a3f;
}

.btn-glow {
    box-shadow: 0 8px 25px rgba(176, 137, 104, 0.5);
    transition: all 0.4s ease;
}
.btn-glow:hover {
    box-shadow: 0 12px 35px rgba(176, 137, 104, 0.7);
    transform: translateY(-3px);
}

/* Social Icons specific colors */
.contact-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 25px;
}
.whatsapp-icon i { 
    color: #25D366; 
    transition: transform 0.3s ease; 
}
.instagram-icon i {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}
.contact-icon-link:hover i { transform: scale(1.2); }

.footer { 
    background: #1a1a1a; 
    color: #ccc; 
    padding: 60px 0 0; 
    text-align: center; 
    border-top: 5px solid var(--accent-color);
}

.footer-content {
    margin-bottom: 0;
    padding-bottom: 0;
}
.footer-logo { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 20px; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.footer-logo-text {
    font-size: 1.4rem; 
    color: #fff; 
    font-weight: 500; 
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(176, 137, 104, 0.4);
}
.footer-logo-img { height: 50px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 12px 0 16px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.footer-social-link i {
    font-size: 1.2rem;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(176, 137, 104, 0.75);
    box-shadow: 0 10px 22px rgba(176, 137, 104, 0.26);
}

.footer-content p {
    margin-bottom: 0;
}

/* Vignette Clickable Card */
.clickable-service {
    cursor: pointer;
    position: relative;
}
.clickable-service::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.4s ease;
    z-index: 10;
    pointer-events: none;
}
.clickable-service:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(176, 137, 104, 0.25);
    border-color: var(--accent-color);
}
.service-hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px 8px 0 0;
}
.clickable-service:hover .service-hover-overlay {
    opacity: 1;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}
.modal.visible { display: flex; align-items: center; justify-content: center; animation: fadeIn 0.3s; }

/* Legacy vignette modal styles removed */

.close-modal {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 40px; font-weight: 300; color: #333;
    cursor: pointer; z-index: 1010; transition: var(--transition);
}
.close-modal:hover { color: var(--accent-color); transform: scale(1.1); }
.modal-content {
    width: 90%; max-width: 1000px;
    position: relative;
}

/* --- Card Stack Gallery Styles --- */
.slider-container {
    position: relative; 
    width: 100%; 
    height: 75vh;
    max-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}
.slider {
    position: relative; 
    width: 90%; 
    height: 90%;
    max-width: 600px;
    max-height: 800px;
}
.slide { 
    position: absolute;
    width: 100%; 
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #fff;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-out;
    will-change: transform, opacity;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    user-select: none;
    touch-action: none;
}
.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
    pointer-events: none;
    border-radius: 20px;
}
.slide.active-slide:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.slide:active {
    cursor: grabbing;
}
.slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.8); border: none;
    width: 50px; height: 50px; border-radius: 50%;
    cursor: pointer; font-size: 1.2rem; color: #333;
    box-shadow: var(--shadow-soft); transition: var(--transition);
    z-index: 10;
}
.slider-btn:hover { background: #fff; color: var(--accent-color); }
.prev-slide { left: 10px; }
.next-slide { right: 10px; }
.slider-dots {
    position: absolute; bottom: -30px; left: 0; width: 100%;
    display: flex; justify-content: center; gap: 10px;
    z-index: 10;
}
.dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition);
}
.dot.active { background: #fff; transform: scale(1.2); }

@media (max-width: 768px) {
    .contacts-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .hero {
        min-height: 100svh;
        overflow: hidden;
        background-color: #e0e0e0;
        background-image: url('../img/herobgphoto.jpeg');
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: inherit;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transform: scale(1.06);
        filter: blur(14px) brightness(0.78);
    }
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background-image: inherit;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .hero-overlay { z-index: 2; }
    .hero-content { z-index: 3; }
    .section { padding: 50px 0; }
    .section-title { font-size: 2rem; }
}


/* --- New Mobile Features Slider --- */
.mobile-slider-wrapper {
    width: 100%;
    padding: 30px 0 60px 0;
    margin: 60px auto 0; /* Опустили слайдер ниже заголовка */
    overflow: visible; /* Чтобы тени и масштабированные карточки не обрезались */
}

.mobile-features-swiper {
    width: 100%;
    padding-bottom: 80px; /* Room for shadow and pagination */
    overflow: visible !important; /* Let slides be visible */
}

.mobile-features-swiper .swiper-wrapper {
    align-items: stretch; /* Карточки одинаковой высоты */
}

.mobile-features-swiper .swiper-slide {
    height: auto; /* Allow the slide to stretch */
}

/* Base state for all cards */
.mobile-feature-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08); /* Добавлены четкие границы */
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, box-shadow 0.5s ease;
    opacity: 0.6; /* Slightly more visible on sides */
    transform: scale(0.9); /* Smaller on sides to contrast with active */
    transform-origin: center top; /* Все карточки выровнены по верхнему краю */
    display: flex;
    flex-direction: column;
    height: 100%; /* Stretch card exactly to the slide's height */
}

/* Active card state */
.mobile-features-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05); /* Увеличение по центру */
    border: 1px solid rgba(176, 137, 104, 0.3); /* Оранжевая граница у активного слайда */
    box-shadow: 0 20px 40px rgba(176, 137, 104, 0.15); /* Stronger premium soft glow */
    z-index: 2;
}

/* Image styling - strictly square */
.card-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.mobile-features-swiper .swiper-slide-active .card-image-wrapper img {
    transform: scale(1.05); /* Slight prestige zoom on central image */
}

/* Text block below image */
.card-text-wrapper {
    padding: 25px 20px;
    text-align: center;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-text-wrapper h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
    line-height: 1.3;
}

.card-text-wrapper p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Custom modern pagination */
.custom-mobile-pagination.swiper-pagination-bullets {
    bottom: 5px; /* Подняли пагинацию, чтобы не конфликтовала */
}

.custom-mobile-pagination .swiper-pagination-bullet {
    background: #d4d4d4;
    opacity: 0.6;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.custom-mobile-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 24px;
    border-radius: 4px;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(176, 137, 104,0.4);
}

/* Why Us Floating Experience */
.why-us-teaser {
    margin: 10px auto 0;
    max-width: 760px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff 0%, #f7f3ee 100%);
    border: 1px solid rgba(176, 137, 104, 0.18);
    box-shadow: 0 16px 40px rgba(22, 18, 14, 0.08);
    text-align: center;
    padding: 28px 24px;
}

.why-us-teaser p {
    margin: 0 0 14px;
    color: #3f3731;
    font-size: 1.02rem;
}

.why-us-teaser-btn {
    border: 1px solid rgba(176, 137, 104, 0.38);
    border-radius: 999px;
    background: #fff;
    color: #3f332b;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 22px;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-us-teaser-btn:hover {
    transform: translateY(-2px);
    border-color: #b08968;
    box-shadow: 0 10px 22px rgba(176, 137, 104, 0.2);
}

.why-us-floating-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1402;
    min-height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(176, 137, 104, 0.42);
    background: linear-gradient(145deg, #ffffff 0%, #f1ebe3 100%);
    color: #3a2f28;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0 24px;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(20, 16, 13, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-us-floating-btn:hover {
    transform: translateY(-4px);
    border-color: #b08968;
    box-shadow: 0 20px 42px rgba(20, 16, 13, 0.26), 0 0 26px rgba(176, 137, 104, 0.22);
}

.why-us-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(18, 15, 12, 0.46);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.42s ease;
}

.why-us-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.why-us-modal-card {
    width: min(760px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    position: relative;
    border-radius: 28px;
    background: linear-gradient(160deg, #ffffff 0%, #f9f5ef 100%);
    border: 1px solid rgba(176, 137, 104, 0.16);
    box-shadow: 0 30px 68px rgba(16, 13, 11, 0.34);
    padding: 28px 24px 24px;
    transform: scale(0.94) translateY(16px);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-us-modal.is-visible .why-us-modal-card {
    transform: scale(1) translateY(0);
}

.why-us-modal-close {
    position: absolute;
    right: 16px;
    top: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: #332922;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-modal-close:hover {
    transform: rotate(90deg);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.why-us-modal-card h3 {
    margin: 0 0 18px;
    padding-right: 54px;
    color: #2f241d;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    letter-spacing: 0.01em;
}

.why-us-list {
    display: grid;
    gap: 12px;
}

.why-us-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(176, 137, 104, 0.14);
    border-radius: 18px;
    padding: 14px 14px 13px;
    box-shadow: 0 8px 20px rgba(20, 16, 13, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-us-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(20, 16, 13, 0.14);
}

.why-us-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(176, 137, 104, 0.22);
    background: linear-gradient(160deg, #fff 0%, #f2ece5 100%);
    display: grid;
    place-items: center;
    color: #7a5f4b;
}

.why-us-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.why-us-item h4 {
    margin: 0 0 3px;
    font-size: 1rem;
    font-weight: 700;
    color: #2f2822;
}

.why-us-item p {
    margin: 0;
    font-size: 0.92rem;
    color: #5a4f45;
    line-height: 1.48;
}

.why-us-accent {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(176, 137, 104, 0.1);
    border: 1px solid rgba(176, 137, 104, 0.2);
    color: #433830;
    font-weight: 600;
    text-align: center;
}

.faq-modal {
    position: fixed;
    inset: 0;
    z-index: 1201;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(18, 15, 12, 0.46);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.42s ease;
}

.faq-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.faq-modal-card {
    width: min(760px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    position: relative;
    border-radius: 28px;
    background: linear-gradient(160deg, #ffffff 0%, #f9f5ef 100%);
    border: 1px solid rgba(176, 137, 104, 0.16);
    box-shadow: 0 30px 68px rgba(16, 13, 11, 0.34);
    padding: 28px 24px 24px;
    transform: scale(0.94) translateY(16px);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-modal.is-visible .faq-modal-card {
    transform: scale(1) translateY(0);
}

.faq-modal-close {
    position: absolute;
    right: 16px;
    top: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: #332922;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-modal-close:hover {
    transform: rotate(90deg);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.faq-modal-card h3 {
    margin: 0 0 18px;
    padding-right: 54px;
    color: #2f241d;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    letter-spacing: 0.01em;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(176, 137, 104, 0.14);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(20, 16, 13, 0.06);
}

.faq-item h4 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #2f2822;
}

.faq-item p,
.faq-item li {
    margin: 0;
    font-size: 0.92rem;
    color: #5a4f45;
    line-height: 1.5;
}

.faq-item ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.faq-label {
    margin: 10px 0 6px !important;
    font-weight: 700;
    color: #433830 !important;
}

@media (max-width: 768px) {
    .why-us-floating-btn {
        right: 12px;
        bottom: 14px;
        min-height: 50px;
        padding: 0 18px;
        font-size: 0.84rem;
    }

    .why-us-modal {
        padding: 12px;
    }

    .why-us-modal-card {
        border-radius: 22px;
        padding: 20px 14px 16px;
        max-height: 90vh;
    }

    .why-us-item {
        grid-template-columns: 32px 1fr;
        border-radius: 14px;
        padding: 12px;
    }

    .why-us-icon {
        width: 30px;
        height: 30px;
    }

    .why-us-item h4 {
        font-size: 0.95rem;
    }

    .why-us-item p {
        font-size: 0.86rem;
    }

    .faq-modal {
        padding: 12px;
    }

    .faq-modal-card {
        border-radius: 22px;
        padding: 20px 14px 16px;
        max-height: 90vh;
    }

    .faq-item {
        border-radius: 14px;
        padding: 12px;
    }

    .faq-item h4 {
        font-size: 0.95rem;
    }

    .faq-item p,
    .faq-item li {
        font-size: 0.86rem;
    }
}

/* --- Love Story Modal --- */
.ls-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.ls-modal.visible {
    display: flex;
    opacity: 1;
}
.ls-modal-content {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.ls-modal.visible .ls-modal-content {
    transform: scale(1);
}
.ls-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    z-index: 10;
}
.ls-modal-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
}
.ls-close-modal {
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}
.ls-close-modal:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}
.ls-modal-body {
    padding: 40px;
}
.ls-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.ls-package {
    background: #faf9f5;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.ls-package.ls-pkg-standart {
    background: #fff;
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(176, 137, 104,0.1);
    z-index: 2;
}
.ls-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.ls-package.ls-pkg-standart:hover {
    transform: scale(1.05) translateY(-5px);
}
.ls-pkg-header {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}
.ls-pkg-list {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}
.ls-pkg-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}
.ls-pkg-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-color);
    font-size: 0.9rem;
}
.ls-pkg-outfits {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px dashed rgba(0,0,0,0.05);
}
.ls-pkg-outfits h5 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #333;
}
.ls-pkg-outfits ul {
    list-style: none;
    padding-left: 5px;
}
.ls-pkg-outfits li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}
.ls-pkg-outfits li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}
.ls-pkg-price {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.ls-pkg-price.highlight {
    color: var(--accent-color);
}
.ls-pkg-price span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
    margin-top: 5px;
}
.ls-conditions {
    display: flex;
    gap: 40px;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
}
.ls-cond-left, .ls-cond-right {
    flex: 1;
}
.ls-conditions ul {
    list-style: none;
}
.ls-conditions li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.ls-cond-left li i {
    color: #999;
    margin-top: 3px;
}
.ls-cond-right h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}
.ls-cond-right span {
    color: #999;
    font-size: 0.85rem;
}
@media (max-width: 992px) {
    .ls-packages { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .ls-package.ls-pkg-standart { transform: scale(1); }
    .ls-package.ls-pkg-standart:hover { transform: translateY(-5px); }
    .ls-conditions { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
    .ls-packages { grid-template-columns: 1fr; }
    .ls-modal-header { padding: 20px; }
    .ls-modal-header h2 { font-size: 1.5rem; }
    .ls-modal-body { padding: 20px; }
}
.old-price {
    text-decoration: line-through;
    color: #a0a0a0;
    font-size: 1rem;
    font-weight: 400;
    margin-right: 8px;
    display: inline-block;
}
.ls-pkg-duration {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.ls-pkg-duration i {
    color: var(--accent-color);
}
.extra-person {
    font-size: 0.9rem;
    color: #555;
    background: #fff;
    border: 1px dashed rgba(176, 137, 104, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}
.extra-person i {
    color: var(--accent-color);
    margin-right: 5px;
    font-size: 0.8rem;
}
.group-pricing-block {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.group-pricing-block .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.group-pricing-block .price-row span {
    color: #666;
}
.group-pricing-block .price-row b {
    color: var(--text-color);
}
.group-pricing-block .price-row b.highlight {
    color: var(--accent-color);
    font-size: 1.15rem;
}

.group-info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
.group-text-panel {
    background: #faf9f5;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
}
.group-text-panel h5 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.group-text-panel h5 i {
    color: var(--accent-color);
    font-size: 1.3rem;
}
.group-text-panel p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}
.group-text-panel p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .group-info-grid {
        grid-template-columns: 1fr;
    }
}
/* Wedding Modal Styles */
.wedding-section-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #4a4a4a;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.wedding-section-title i {
    color: #b08968;
    margin-right: 10px;
}
.wedding-packages {
    display: grid;
    gap: 20px;
}
@media (min-width: 900px) {
    .wedding-packages {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }
}

