/* ===========================
   CSS Variables - Color Palette
   =========================== */
:root {
    /* Silver and Black Color Palette - Silver as primary, Black as secondary */
    --color-espresso: #1a1a1a;
    --color-coffee: #2a2a2a;
    --color-mocha: #3a3a3a;
    --color-dark-brown: #4a4a4a;
    --color-medium-brown: #6a6a6a;
    --color-light-brown: #8a8a8a;
    --color-cream: #FFFFFF;
    --color-milk: #FFFFFF;
    --color-foam: #FFFFFF;
    --color-white: #FFFFFF;
    
    /* Primary colors - White tones (main) */
    --color-caramel: #FFFFFF;
    --color-gold: #FFFFFF;
    
    /* Secondary colors - Black tones (accent) */
    --color-black-primary: #000000;
    --color-black-secondary: #0a0a0a;
    --color-black-tertiary: #1a1a1a;
    
    /* Typography */
    --font-primary: 'Great Vibes', cursive;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-white);
    color: var(--color-black-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0,0,0,0.02) 0px, transparent 1px, transparent 1px, rgba(0,0,0,0.02) 2px),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.02) 0px, transparent 1px, transparent 1px, rgba(0,0,0,0.02) 2px),
        repeating-linear-gradient(45deg, rgba(0,0,0,0.015) 0px, transparent 1px, transparent 1px, rgba(0,0,0,0.015) 2px);
    background-size: 3px 3px, 3px 3px, 4px 4px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
    mix-blend-mode: overlay;
    animation: grain 0.8s steps(6) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   Preloader
   =========================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preloader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-primary);
    font-size: clamp(18px, 5vw, 36px);
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 1px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    padding: 0 20px;
    width: 90%;
    max-width: 600px;
    box-sizing: border-box;
}


/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-foam);
    backdrop-filter: blur(20px);
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 20px 0;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container .logo {
    margin-right: auto;
    z-index: 1001;
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    
    .nav-container .logo {
        margin-right: 0;
    }
}

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

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

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

.nav-link {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-black-primary);
    letter-spacing: 2px;
    position: relative;
    transition: var(--transition-fast);
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-black-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-black-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-black-primary);
    transition: var(--transition-fast);
    display: block;
    border-radius: 2px;
}

/* ===========================
   Hero + About Combined Section
   =========================== */
.hero-about {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: hidden;
    background: var(--color-white);
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Хиро.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-about::after {
    display: none;
}

.hero-about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    visibility: visible;
    opacity: 0.3;
}

.hero-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-about-content {
    position: relative;
    z-index: 3;
    background: transparent;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-intro {
    border-bottom: 1px solid var(--color-medium-brown);
    padding-bottom: 50px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(64px, 8vw, 96px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: var(--color-black-primary);
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    color: var(--color-black-primary);
}

.about-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.about-title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 400;
    color: var(--color-black-primary);
    margin-bottom: 10px;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: none;
}

.about-description {
    font-size: 22px;
    line-height: 2;
    color: var(--color-black-primary);
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 10px;
}

.about-location {
    font-size: 22px;
    line-height: 2;
    color: var(--color-black-primary);
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 25px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-medium-brown);
}

/* Stats removed */

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-black-primary);
    color: var(--color-white);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 12px;
    align-self: center;
}

.btn-primary:hover {
    background-color: var(--color-black-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator - Hidden */
.scroll-indicator {
    display: none;
}

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

/* ===========================
   Container & Section Styles
   =========================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: var(--section-padding) 0;
}

.services {
    padding-top: 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    color: var(--color-black-primary);
    position: relative;
    letter-spacing: 2px;
    text-shadow: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--color-caramel);
    opacity: 0.6;
}

/* ===========================
   Portfolio Section
   =========================== */
.portfolio {
    background-color: var(--color-milk);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--color-pistachio);
    border: 2px solid var(--color-praline);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 13px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-mocha);
    color: var(--color-biscotti);
    border-color: var(--color-mocha);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: var(--transition-smooth);
}

.portfolio-item.hide {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-image:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(107, 74, 58, 0.95), transparent);
    color: var(--color-biscotti);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-image:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Old About Section removed - now combined with Hero */

/* ===========================
   Intro Block
   =========================== */
.intro-block {
    background: var(--color-white);
    padding: 80px 0;
    position: relative;
}

.intro-header {
    text-align: center;
    margin-bottom: 50px;
}

.intro-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--color-black-primary);
    letter-spacing: 3px;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.intro-description {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-main-text {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--color-black-primary);
    font-weight: 300;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.intro-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.intro-services li {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-black-primary);
    font-weight: 300;
    position: relative;
    padding-left: 20px;
    opacity: 0.9;
}

.intro-services li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-black-primary);
    font-size: 20px;
}

.intro-features {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-features-title {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--color-black-primary);
    margin: 0 0 25px 0;
    letter-spacing: 2px;
    text-align: center;
}

.intro-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.intro-features-list li {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--color-black-primary);
    font-weight: 300;
    position: relative;
    padding-left: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.intro-features-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-black-primary);
    font-weight: 400;
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: var(--color-white);
    position: relative;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: var(--section-padding);
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 20px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.location-top-left {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
}

.location-top-right {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
}

.location-bottom-center {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    border: 2px solid var(--color-medium-brown) !important;
}

.location-white-cyclorama {
    grid-column: 1;
    grid-row: 4;
    width: 100%;
}

.service-card {
    position: relative;
    background-color: var(--color-foam);
    padding: 40px 60px;
    transition: var(--transition-smooth);
    border: 2px solid var(--color-medium-brown);
    aspect-ratio: 2.5 / 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
    align-items: start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 4px;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.4) 15%,
        rgba(0, 0, 0, 0.15) 35%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.15) 65%,
        rgba(0, 0, 0, 0.4) 85%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
    transition: var(--transition-smooth);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:last-child {
    border-right: none;
}

.service-card:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 15%,
        rgba(0, 0, 0, 0.2) 35%,
        rgba(0, 0, 0, 0.12) 50%,
        rgba(0, 0, 0, 0.2) 65%,
        rgba(0, 0, 0, 0.5) 85%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.service-card:hover {
    transform: translateY(-3px);
}

/* Фоновые изображения для каждой услуги */
.service-wedding {
    background-image: url('https://picsum.photos/1200/1400?random=10');
}

.service-family {
    background-image: url('images/Location/Red1.jpg');
}

.service-lovestory {
    background-image: url('images/Location/Winter1.jpg');
}

.service-portrait {
    background-image: url('images/Location/Home1.jpg');
}

.service-white-cyclorama {
    background-image: url('images/Location/White2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* White Cyclorama Block */
.white-cyclorama-block {
    grid-column: 1;
    grid-row: 4;
    width: 100%;
    background-color: var(--color-white);
    padding: 60px 60px 80px;
}

.white-cyclorama-title {
    font-family: var(--font-primary);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    color: var(--color-black-primary);
    letter-spacing: 2px;
    margin: 0 0 50px 0;
    line-height: 1.2;
    text-align: left;
}

.white-cyclorama-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.white-cyclorama-image-left,
.white-cyclorama-image-right {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.white-cyclorama-image-left img,
.white-cyclorama-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.white-cyclorama-image-right {
    position: relative;
}

.white-cyclorama-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 40px 35px 35px;
    z-index: 2;
}

.white-cyclorama-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-white);
    font-weight: 300;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.white-cyclorama-cta {
    margin-top: 40px;
    text-align: center;
}

.service-events {
    background-image: url('images/Мероприятия 1.png');
}

.service-icon {
    display: none;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin: 0;
}

.service-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-white);
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    grid-column: 1 / 3;
    grid-row: 2 / 4;
    align-self: end;
    margin: 0;
}

.service-price {
    display: none;
}

.btn-portfolio {
    display: none;
    grid-column: 3;
    grid-row: 1 / 4;
    align-self: center;
    text-decoration: none;
    color: var(--color-caramel);
    justify-self: end;
    font-size: 48px;
    color: var(--color-caramel);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
}

.service-card:hover .btn-portfolio {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.btn-portfolio:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

/* ===========================
   Wedding Services Fullwidth Section
   =========================== */
.wedding-services-fullwidth {
    width: 100%;
    background-color: var(--color-coffee);
    padding: 100px 0;
    margin-top: 80px;
}

.wedding-services-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.wedding-services-main-title {
    font-family: var(--font-primary);
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 400;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 80px;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.wedding-services-main-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--color-caramel);
    opacity: 0.6;
}

.wedding-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.wedding-service-block {
    background-color: var(--color-mocha);
    border: 1px solid var(--color-medium-brown);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.wedding-service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(42, 42, 42, 0.85));
    z-index: 1;
    transition: var(--transition-smooth);
}

.wedding-service-block > * {
    position: relative;
    z-index: 2;
}

.wedding-registry-walk {
    background-image: url('images/Brak/IMG_7682.jpeg');
}

.wedding-8h {
    background-image: url('images/Brak/IMG_7683 (1).jpeg');
}

.wedding-12h {
    background-image: url('images/Brak/IMG_7689.jpeg');
}

.wedding-registry-only {
    background-image: url('images/Brak/IMG_7707.png');
}

.wedding-service-block:hover {
    border-color: var(--color-caramel);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.wedding-service-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wedding-service-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-medium-brown);
}

.wedding-service-title {
    font-family: var(--font-primary);
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.wedding-service-title .bold-text,
.wedding-includes-list .bold-text {
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.wedding-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: rgba(192, 192, 192, 0.15);
    border: 1px solid var(--color-caramel);
    color: var(--color-caramel);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: flex-start;
}

.wedding-service-badge::before {
    content: '★';
    font-size: 12px;
}

.wedding-service-includes {
    margin-bottom: 25px;
    flex-grow: 1;
}

.wedding-includes-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.wedding-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 10px;
}

.wedding-includes-list::-webkit-scrollbar {
    width: 4px;
}

.wedding-includes-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

.wedding-includes-list::-webkit-scrollbar-thumb {
    background: var(--color-caramel);
    border-radius: 2px;
}

.wedding-includes-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-foam);
    font-weight: 300;
}

.wedding-includes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: var(--color-caramel);
    border-radius: 50%;
}

.wedding-service-price-section {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--color-medium-brown);
}

.wedding-price-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.wedding-price-value {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.btn-wedding-details {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background-color: var(--color-caramel);
    color: var(--color-espresso);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--color-caramel);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 11px;
    font-family: var(--font-secondary);
    text-align: center;
    margin-top: auto;
}

.btn-wedding-details:hover {
    background-color: var(--color-gold);
    color: var(--color-espresso);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.4);
}

/* ===========================
   Equipment Section
   =========================== */
.equipment-section {
    background: linear-gradient(to bottom, var(--color-milk) 0%, var(--color-milk) 50%, var(--color-white) 100%);
    padding: var(--section-padding) 0;
    position: relative;
}

.equipment-section .container {
    position: relative;
    z-index: 1;
}

.equipment-intro {
    text-align: center;
    font-size: 18px;
    color: var(--color-black-primary);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.equipment-grid {
    display: flex;
    flex-direction: row;
    gap: 25px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.equipment-grid::-webkit-scrollbar {
    display: none;
}

.equipment-item {
    background-color: var(--color-foam);
    border: 1px solid var(--color-medium-brown);
    overflow: visible;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    width: 260px;
    min-width: 260px;
    flex-shrink: 0;
    position: relative;
}

.equipment-item:hover {
    border-color: var(--color-caramel);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
    z-index: 10;
}

.equipment-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: var(--color-milk);
    position: relative;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.equipment-item:hover .equipment-image img {
    transform: scale(1.1);
}

.equipment-content {
    display: none;
}

.equipment-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-black-primary);
    margin: 0 0 10px 0;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-align: center;
}

.equipment-description {
    display: none;
}

.equipment-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.equipment-specs li {
    position: relative;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-black-primary);
    font-weight: 300;
    opacity: 0.9;
}

.equipment-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-black-primary);
    font-weight: 600;
    font-size: 16px;
}

.equipment-gallery-wrapper {
    position: relative;
    max-width: var(--container-width);
    margin: 60px auto 0;
    padding: 0 80px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.equipment-gallery {
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.equipment-gallery::-webkit-scrollbar {
    display: none;
}

.equipment-gallery-nav {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    z-index: 2;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}

.equipment-gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.equipment-gallery-nav:active {
    transform: scale(0.95);
}

.equipment-gallery-nav[style*="pointer-events: none"] {
    cursor: not-allowed;
    opacity: 0.3 !important;
}

.equipment-gallery-nav[style*="pointer-events: none"]:hover {
    transform: none;
    background: rgba(0, 0, 0, 0.6);
}

.equipment-gallery-item {
    flex: 0 0 auto;
    width: auto;
    height: 400px;
    overflow: hidden;
    background-color: var(--color-white);
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-gallery-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
    z-index: 10;
}

.equipment-gallery-item img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.equipment-gallery-item:hover img {
    transform: scale(1.05);
}

/* ===========================
   Mosaic Gallery Section
   =========================== */
.mosaic-gallery {
    padding: 0;
    margin: 0;
    background: linear-gradient(to bottom, var(--color-espresso) 0%, var(--color-espresso) 50%, var(--color-coffee) 100%);
    position: relative;
}

.mosaic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--color-mocha), var(--color-espresso));
    pointer-events: none;
    z-index: 1;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 1px;
    background-color: var(--color-mocha);
    position: relative;
    z-index: 2;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    background-color: var(--color-white);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.05);
}

/* Вертикальные размеры плиток */
.mosaic-extra-tall {
    grid-column: span 2;
    grid-row: span 3;
}

.mosaic-tall {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-medium {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-large {
    grid-column: span 2;
    grid-row: span 3;
}

.mosaic-wide {
    grid-column: span 2;
    grid-row: span 2;
}

/* Tablet */
@media (max-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
    }
    
    .mosaic-extra-tall {
        grid-column: span 2;
        grid-row: span 3;
    }
    
    .mosaic-tall {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .mosaic-medium {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .mosaic-large {
        grid-column: span 2;
        grid-row: span 3;
    }
    
    .mosaic-wide {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    
    .mosaic-extra-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .mosaic-large,
    .mosaic-tall,
    .mosaic-wide,
    .mosaic-medium {
        grid-column: span 1;
        grid-row: span 2;
    }
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background-color: var(--color-mocha);
}

.contact-content-centered {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--color-milk);
    line-height: 2;
    margin-bottom: 60px;
    opacity: 0.9;
    font-weight: 300;
}

.contact-details {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-foam);
    font-size: 16px;
}

.contact-item svg {
    color: var(--color-caramel);
    flex-shrink: 0;
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark-brown);
    color: var(--color-foam);
    border-radius: 50%;
    transition: var(--transition-fast);
    border: 1px solid var(--color-medium-brown);
}

.social-link:hover {
    background-color: var(--color-caramel);
    color: var(--color-espresso);
    border-color: var(--color-caramel);
    transform: translateY(-3px);
}

/* Contact form removed - only contact info displayed */

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-white) 100%);
    border-top: none;
    padding: var(--section-padding) 0 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 500px;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 1;
}

.footer-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

.footer-contacts {
    background-color: var(--color-foam);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-black-primary);
}

.footer-contacts-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-black-primary);
    margin: 0 0 30px 0;
    letter-spacing: 1.5px;
}

.footer-contact-info {
    margin-bottom: 30px;
}

.footer-contact-item {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-label {
    color: var(--color-black-primary);
    opacity: 0.7;
}

.footer-link {
    color: var(--color-black-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    opacity: 0.9;
}

.footer-link:hover {
    color: var(--color-black-primary);
    opacity: 1;
}

.footer-address {
    color: var(--color-black-primary);
    display: block;
    opacity: 0.9;
}

.footer-phone {
    color: var(--color-black-primary);
    text-decoration: none;
    opacity: 0.9;
    font-size: 16px;
    transition: var(--transition-fast);
}

.footer-phone:hover {
    color: var(--color-black-primary);
    opacity: 1;
}

.footer-legal {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-medium-brown);
}

.footer-legal-text {
    font-size: 12px;
    color: var(--color-black-primary);
    opacity: 0.7;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.footer-legal-link {
    font-size: 12px;
    color: var(--color-black-primary);
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal-link:hover {
    opacity: 1;
    color: var(--color-black-primary);
}

.footer-developer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--color-medium-brown);
    background-color: var(--color-foam);
}

.footer-developer-link {
    font-size: 12px;
    color: var(--color-black-primary);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.footer-developer-link:hover {
    opacity: 1;
    color: var(--color-black-primary);
}

/* ===========================
   Booking Modal
   =========================== */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.booking-modal-content {
    background-color: var(--color-white);
    margin: auto;
    padding: 40px;
    border: 2px solid var(--color-medium-brown);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-close {
    color: var(--color-black-primary);
    float: right;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.booking-modal-close:hover,
.booking-modal-close:focus {
    opacity: 1;
    transform: rotate(90deg);
}

.booking-modal-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 400;
    color: var(--color-black-primary);
    margin: 0 0 30px 0;
    letter-spacing: 2px;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form-group label {
    font-size: 14px;
    color: var(--color-black-primary);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--color-medium-brown);
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-secondary);
    color: var(--color-black-primary);
    background-color: var(--color-white);
    transition: var(--transition-fast);
    width: 100%;
    box-sizing: border-box;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
    outline: none;
    border-color: var(--color-black-primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.booking-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-submit-btn {
    padding: 16px 40px;
    background-color: var(--color-black-primary);
    color: var(--color-white);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 12px;
    font-family: var(--font-secondary);
    margin-top: 10px;
    border-radius: 4px;
}

.booking-submit-btn:hover {
    background-color: var(--color-black-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.booking-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking-form-group input.error,
.booking-form-group select.error,
.booking-form-group textarea.error {
    border-color: #D9534F;
    box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.1);
}

.error-message {
    color: #D9534F;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 400;
    line-height: 1.4;
}

/* ===========================
   WhatsApp Floating Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.btn-whatsapp {
    display: inline-block;
    padding: 12px 30px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ===========================
   Cookie Notice
   =========================== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-black-primary);
    color: var(--color-white);
    padding: 20px 40px;
    z-index: 10001;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-notice-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    opacity: 0.9;
}

.cookie-notice-btn {
    padding: 12px 30px;
    background-color: var(--color-white);
    color: var(--color-black-primary);
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .cookie-notice {
        padding: 15px 20px;
    }
    
    .cookie-notice-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-notice-btn {
        width: 100%;
    }
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark-brown);
    color: var(--color-foam);
    border-radius: 50%;
    transition: var(--transition-fast);
    border: 1px solid var(--color-medium-brown);
}

.footer-social-link:hover {
    background-color: var(--color-caramel);
    color: var(--color-espresso);
    border-color: var(--color-caramel);
    transform: translateY(-2px);
}

/* ===========================
   Location Pages
   =========================== */
.location-page {
    min-height: 100vh;
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-foam) 100%);
}

.location-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.location-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.location-title {
    font-family: var(--font-primary);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    color: var(--color-black-primary);
    margin: 0 0 20px 0;
    letter-spacing: 3px;
    text-shadow: none;
}

.home-comfort-page .location-title {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        -1px -1px 0 rgba(255, 255, 255, 0.9),
        1px -1px 0 rgba(255, 255, 255, 0.9),
        -1px 1px 0 rgba(255, 255, 255, 0.9),
        1px 1px 0 rgba(255, 255, 255, 0.9),
        -2px -2px 0 rgba(255, 255, 255, 0.7),
        2px -2px 0 rgba(255, 255, 255, 0.7),
        -2px 2px 0 rgba(255, 255, 255, 0.7),
        2px 2px 0 rgba(255, 255, 255, 0.7);
}

.location-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--color-black-primary);
    font-weight: 300;
    opacity: 0.9;
    text-shadow: none;
}

.home-comfort-page .location-subtitle {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        -1px -1px 0 rgba(255, 255, 255, 0.9),
        1px -1px 0 rgba(255, 255, 255, 0.9),
        -1px 1px 0 rgba(255, 255, 255, 0.9),
        1px 1px 0 rgba(255, 255, 255, 0.9),
        -2px -2px 0 rgba(255, 255, 255, 0.7),
        2px -2px 0 rgba(255, 255, 255, 0.7),
        -2px 2px 0 rgba(255, 255, 255, 0.7),
        2px 2px 0 rgba(255, 255, 255, 0.7);
}

.total-red-page .location-title,
.winter-tale-page .location-title {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        -1px -1px 0 rgba(255, 255, 255, 0.9),
        1px -1px 0 rgba(255, 255, 255, 0.9),
        -1px 1px 0 rgba(255, 255, 255, 0.9),
        1px 1px 0 rgba(255, 255, 255, 0.9),
        -2px -2px 0 rgba(255, 255, 255, 0.7),
        2px -2px 0 rgba(255, 255, 255, 0.7),
        -2px 2px 0 rgba(255, 255, 255, 0.7),
        2px 2px 0 rgba(255, 255, 255, 0.7);
}

.total-red-page .location-subtitle,
.winter-tale-page .location-subtitle {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        -1px -1px 0 rgba(255, 255, 255, 0.9),
        1px -1px 0 rgba(255, 255, 255, 0.9),
        -1px 1px 0 rgba(255, 255, 255, 0.9),
        1px 1px 0 rgba(255, 255, 255, 0.9),
        -2px -2px 0 rgba(255, 255, 255, 0.7),
        2px -2px 0 rgba(255, 255, 255, 0.7),
        -2px 2px 0 rgba(255, 255, 255, 0.7),
        2px 2px 0 rgba(255, 255, 255, 0.7);
}

.location-content {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--color-foam) 0%, var(--color-milk) 50%, var(--color-white) 100%);
}

.location-description {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.location-description h2 {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--color-black-primary);
    margin: 0 0 30px 0;
    letter-spacing: 2px;
    text-align: center;
}

.location-description p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--color-black-primary);
    margin: 0 0 25px 0;
    opacity: 0.9;
    font-weight: 300;
}

.location-gallery {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.location-gallery h2 {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--color-black-primary);
    margin: 0 0 40px 0;
    letter-spacing: 2px;
    text-align: center;
}

.location-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 15px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-medium-brown);
    border-radius: 4px;
    background-color: var(--color-dark-brown);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.collage-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.collage-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.collage-item:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
}

.collage-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2 / 4;
}

.collage-item:nth-child(5) {
    grid-column: 4;
    grid-row: 2 / 4;
}

.location-cta {
    text-align: center;
    padding: 0 40px;
}

/* ===========================
   Portfolio Modal
   =========================== */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.portfolio-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 100%;
    max-height: 95vh;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    z-index: 2;
    animation: modalSlideIn 0.5s ease;
    border: none;
    box-shadow: none;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: var(--color-caramel);
    color: var(--color-espresso);
    border-color: var(--color-caramel);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 13px;
    color: var(--color-foam);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

.modal-gallery {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

/* Скрываем scrollbar но оставляем функциональность */
.gallery-scroll::-webkit-scrollbar {
    height: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--color-medium-brown);
    border-radius: 3px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--color-caramel);
}

.gallery-item {
    min-width: 600px;
    height: 700px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: none;
}

.gallery-item:hover {
    transform: none;
    box-shadow: none;
}

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

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
}

.gallery-item-caption h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-item-caption p {
    font-size: 14px;
    opacity: 0.9;
}

.gallery-nav {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-foam);
    border: 1px solid var(--color-medium-brown);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.gallery-nav:hover {
    background: var(--color-caramel);
    color: var(--color-espresso);
    border-color: var(--color-caramel);
    transform: scale(1.05);
}

.gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-nav:disabled:hover {
    transform: scale(1);
    background: rgba(0, 0, 0, 0.8);
}

.modal-footer {
    text-align: center;
    padding-top: 30px;
    border-top: none;
}

.modal-cta {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--color-caramel);
    color: var(--color-espresso);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid var(--color-caramel);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 12px;
}

.modal-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-espresso);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-about {
        grid-template-columns: 1fr;
        min-height: 50vh;
        padding-top: 0;
    }
    
    .hero-about::before {
        height: 100%;
    }
    
    .hero-about-image {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-about-content {
        padding: 60px 40px;
        gap: 40px;
    }
    
    .contact-content-centered {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .location-bottom-center {
        max-width: 500px;
    }
    
    .service-card {
        padding: 70px 40px;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .service-card:nth-child(2) {
        border-right: 1px solid var(--color-medium-brown);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .white-cyclorama-block {
        padding: 50px 40px 70px;
    }
    
    .white-cyclorama-title {
        font-size: 52px;
        margin-bottom: 40px;
    }
    
    .white-cyclorama-image-left,
    .white-cyclorama-image-right {
        height: 500px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Затемнение фона при открытом меню */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--color-coffee);
        flex-direction: column;
        gap: 0;
        padding: 40px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin-bottom: 30px;
        list-style: none;
    }
    
    .nav-menu .nav-link {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        width: 100%;
        text-align: left;
        color: var(--color-white);
        opacity: 0.9;
        font-weight: 400;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu .nav-link:hover {
        opacity: 1;
        color: var(--color-white);
        padding-left: 10px;
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        order: 2;
        position: relative;
        z-index: 1001;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .intro-block {
        padding: 60px 0;
    }
    
    .intro-title {
        font-size: 28px;
    }
    
    .intro-main-text {
        font-size: 18px;
    }
    
    .intro-services li {
        font-size: 16px;
    }
    
    .intro-features-list {
        grid-template-columns: 1fr;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background-color: var(--color-white);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: var(--color-white);
    }
    
    .container {
        padding: 0 25px;
    }
    
    .nav-container {
        padding: 0 25px;
    }
    
    .hero-about {
        min-height: 40vh;
    }
    
    .hero-about::before {
        height: 100%;
        background-position: center bottom; /* Опускаем изображение вниз */
        background-size: cover;
        clip-path: inset(0 0 15% 0); /* Обрезаем снизу на 15% */
    }
    
    .hero-about-image {
        height: 40vh;
        min-height: 300px;
        clip-path: inset(0 0 15% 0); /* Обрезаем снизу на 15% */
    }
    
    .hero-about-content {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .hero-intro {
        padding-bottom: 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card:nth-child(2),
    .service-card:nth-child(4) {
        border-right: none;
    }
    
    .service-card {
        padding: 40px 25px 50px;
        aspect-ratio: auto;
        min-height: 300px;
        grid-template-rows: auto 1fr;
        gap: 15px;
    }
    
    .service-title {
        font-size: 24px;
        margin-bottom: 10px;
        grid-row: 1;
    }
    
    .service-description {
        font-size: 13px;
        line-height: 1.7;
        grid-row: 2;
        grid-column: 1 / -1;
        align-self: start;
        margin-top: 10px;
    }
    
    .service-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .wedding-services-fullwidth {
        padding: 80px 0;
        margin-top: 60px;
    }
    
    .wedding-services-container {
        padding: 0 25px;
    }
    
    .wedding-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .wedding-service-content {
        padding: 35px 25px;
    }
    
    .wedding-service-title {
        font-size: 22px;
    }
    
    .wedding-includes-title {
        font-size: 17px;
    }
    
    .wedding-price-value {
        font-size: 22px;
    }
    
    .modal-content {
        width: 95%;
        padding: 40px 25px;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .modal-title {
        font-size: 32px;
    }
    
    .modal-subtitle {
        font-size: 12px;
    }
    
    .gallery-item {
        min-width: 350px;
        height: 500px;
    }
    
    .gallery-nav {
        display: none;
    }
    
    .modal-footer {
        padding-top: 20px;
    }
    
    .modal-cta {
        padding: 14px 35px;
        font-size: 11px;
    }
    
    .equipment-grid {
        gap: 20px;
        padding: 0 25px;
        justify-content: flex-start;
    }
    
    .equipment-item {
        width: 240px;
        min-width: 240px;
    }
    
    .equipment-image {
        height: 310px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .footer-map {
        min-height: 350px;
        order: 2;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .footer-contacts {
        order: 1;
        padding: 35px 25px;
    }
    
    .equipment-content {
        padding: 30px 25px;
    }
    
    .equipment-image {
        height: 430px;
    }
    
    .equipment-gallery-wrapper {
        padding: 0 60px;
        margin-top: 50px;
    }
    
    .equipment-gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .equipment-gallery-item {
        height: 300px;
    }
    
    .location-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .location-title {
        font-size: 28px;
    }
    
    .location-subtitle {
        font-size: 14px;
    }
    
    .location-content {
        padding: 40px 0;
    }
    
    .location-description {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .location-description h2 {
        font-size: 24px;
    }
    
    .location-description p {
        font-size: 14px;
    }
    
    .location-gallery {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .location-gallery h2 {
        font-size: 24px;
    }
    
    .location-collage {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
        gap: 10px;
    }
    
    .collage-large {
        grid-column: 1;
        grid-row: 1;
    }
    
    .collage-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .collage-item:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }
    
    .collage-item:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
    }
    
    .collage-item:nth-child(5) {
        grid-column: 1;
        grid-row: 5;
    }
    
    .location-cta {
        padding: 0 20px;
    }
    
    .white-cyclorama-block {
        padding: 40px 30px 60px;
    }
    
    .white-cyclorama-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .white-cyclorama-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .white-cyclorama-image-left,
    .white-cyclorama-image-right {
        height: 400px;
    }
    
    .white-cyclorama-description {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .hero-about {
        min-height: 35vh;
    }
    
    .hero-about::before {
        height: 100%;
        background-position: center bottom; /* Опускаем изображение вниз */
        background-size: cover;
        clip-path: inset(0 0 20% 0); /* Обрезаем снизу на 20% */
    }
    
    .hero-about-image {
        height: 35vh;
        min-height: 250px;
        clip-path: inset(0 0 20% 0); /* Обрезаем снизу на 20% */
    }
    
    .hero-about-content {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .location-top-left,
    .location-top-right,
    .location-bottom-center {
        grid-column: 1;
    }
    
    .location-top-left {
        grid-row: 1;
    }
    
    .location-top-right {
        grid-row: 2;
    }
    
    .location-bottom-center {
        grid-row: 3;
        max-width: 100%;
        border: 2px solid var(--color-medium-brown) !important;
    }
    
    .white-cyclorama-block {
        padding: 30px 20px 50px;
    }
    
    .white-cyclorama-title {
        font-size: 28px;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }
    
    .white-cyclorama-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .white-cyclorama-image-left,
    .white-cyclorama-image-right {
        height: 300px;
    }
    
    .white-cyclorama-text-overlay {
        padding: 30px 25px 25px;
    }
    
    .white-cyclorama-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .service-card {
        border-right: none;
        padding: 35px 20px 45px;
        aspect-ratio: auto;
        min-height: 280px;
        grid-template-rows: auto 1fr;
        gap: 12px;
    }
    
    .location-bottom-center.service-card {
        border: 2px solid var(--color-medium-brown) !important;
    }
    
    .service-title {
        font-size: 22px;
        margin-bottom: 8px;
        grid-row: 1;
    }
    
    .service-description {
        font-size: 12px;
        line-height: 1.6;
        grid-row: 2;
        grid-column: 1 / -1;
        align-self: start;
        margin-top: 8px;
    }
    
    .service-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .intro-block {
        padding: 40px 0;
    }
    
    .intro-header {
        margin-bottom: 30px;
    }
    
    .intro-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .intro-description {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .intro-main-text {
        font-size: 16px;
    }
    
    .intro-services li {
        font-size: 14px;
    }
    
    .intro-features {
        padding: 0 20px;
    }
    
    .intro-features-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .intro-features-list li {
        font-size: 13px;
    }
    
    .location-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .location-title {
        font-size: 24px;
    }
    
    .location-subtitle {
        font-size: 12px;
    }
    
    .location-content {
        padding: 30px 0;
    }
    
    .location-description {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .location-description h2 {
        font-size: 20px;
    }
    
    .location-description p {
        font-size: 13px;
    }
    
    .location-gallery {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .location-gallery h2 {
        font-size: 20px;
    }
    
    .location-collage {
        grid-template-rows: repeat(5, 150px);
        gap: 8px;
    }
    
    .wedding-services-fullwidth {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .wedding-services-container {
        padding: 0 20px;
    }
    
    .wedding-services-main-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .wedding-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .wedding-service-content {
        padding: 30px 20px;
    }
    
    .wedding-service-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .wedding-service-title {
        font-size: 20px;
    }
    
    .wedding-service-badge {
        font-size: 9px;
        padding: 5px 10px;
    }
    
    .wedding-includes-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .wedding-includes-list li {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .wedding-service-price-section {
        margin-bottom: 20px;
        padding-top: 15px;
    }
    
    .wedding-price-title {
        font-size: 15px;
    }
    
    .wedding-price-value {
        font-size: 22px;
    }
    
    .btn-wedding-details {
        padding: 12px 20px;
        font-size: 10px;
    }
    
    .equipment-grid {
        gap: 15px;
        padding: 0 20px;
        justify-content: flex-start;
    }
    
    .equipment-item {
        width: 200px;
        min-width: 200px;
    }
    
    .equipment-image {
        height: 260px;
    }
    
    .equipment-gallery-wrapper {
        padding: 0 50px;
        margin-top: 40px;
    }
    
    .equipment-gallery-nav {
        width: 35px;
        height: 35px;
        display: none;
    }
    
    .equipment-gallery-item {
        height: 250px;
    }
    
    .equipment-content {
        padding: 20px;
    }
    
    .equipment-title {
        font-size: 18px;
    }
    
    .equipment-description {
        font-size: 12px;
    }
    
    .equipment-specs li {
        font-size: 11px;
    }
    
    .location-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .location-title {
        font-size: 36px;
    }
    
    .location-subtitle {
        font-size: 16px;
    }
    
    .location-content {
        padding: 60px 0;
    }
    
    .location-description {
        padding: 0 25px;
        margin-bottom: 60px;
    }
    
    .location-description p {
        font-size: 16px;
    }
    
    .location-gallery {
        padding: 0 25px;
        margin-bottom: 60px;
    }
    
    .location-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
        gap: 10px;
    }
    
    .collage-large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .collage-item:nth-child(2) {
        grid-column: 1;
        grid-row: 3;
    }
    
    .collage-item:nth-child(3) {
        grid-column: 2;
        grid-row: 3;
    }
    
    .collage-item:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
    }
    
    .collage-item:nth-child(5) {
        grid-column: 2;
        grid-row: 4;
    }
    
    .location-cta {
        padding: 0 25px;
    }
    
    .equipment-title {
        font-size: 22px;
    }
    
    .equipment-description {
        font-size: 14px;
    }
    
    .equipment-specs li {
        font-size: 13px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .footer-map {
        min-height: 300px;
        order: 2;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .footer-contacts {
        order: 1;
        padding: 30px 20px;
    }
    
    .footer-contacts-title {
        font-size: 24px;
    }
    
    .footer-social {
        flex-wrap: wrap;
    }
}

/* ===========================
   Smooth Scroll Animations
   =========================== */
.scroll-reveal {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================
   Tablet Optimizations (768px - 1024px)
   =========================== */
@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .hero-about {
        min-height: 60vh;
    }
    
    .hero-about-content {
        padding: 50px 40px;
        gap: 35px;
    }
    
    .intro-block {
        padding: 70px 0;
    }
    
    .intro-title {
        font-size: clamp(36px, 4vw, 44px);
    }
    
    .intro-main-text {
        font-size: clamp(20px, 2.5vw, 24px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 30px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 50px 40px;
        aspect-ratio: 2.2 / 1;
    }
    
    .service-title {
        font-size: 32px;
    }
    
    .service-description {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .white-cyclorama-block {
        padding: 50px 40px 70px;
    }
    
    .white-cyclorama-title {
        font-size: 56px;
    }
    
    .white-cyclorama-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .white-cyclorama-image-left,
    .white-cyclorama-image-right {
        height: 450px;
    }
    
    .white-cyclorama-description {
        font-size: 17px;
    }
    
    .equipment-section {
        padding: 80px 0;
    }
    
    .equipment-gallery-wrapper {
        padding: 0 60px;
    }
    
    .equipment-gallery-item {
        height: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr;
        min-height: 450px;
    }
    
    .footer-map {
        min-height: 450px;
    }
    
    .map-container {
        min-height: 450px;
    }
    
    .footer-contacts {
        padding: 40px 30px;
    }
    
    .location-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .location-content {
        padding: 60px 0;
    }
    
    .location-description {
        max-width: 800px;
    }
    
    .location-collage {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 180px);
        gap: 12px;
    }
    
    .collage-large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .collage-item:nth-child(2) {
        grid-column: 3;
        grid-row: 1;
    }
    
    .collage-item:nth-child(3) {
        grid-column: 3;
        grid-row: 2;
    }
    
    .collage-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    
    .collage-item:nth-child(5) {
        grid-column: 2 / 4;
        grid-row: 3;
    }
    
    .section-title {
        font-size: clamp(52px, 6vw, 64px);
        margin-bottom: 60px;
    }
    
    .booking-modal-content {
        max-width: 450px;
        padding: 35px;
    }
}

/* ===========================
   Mobile Landscape Mode (Horizontal)
   =========================== */
@media (max-width: 926px) and (orientation: landscape) {
    /* Прелоадер */
    .preloader {
        width: 100vw;
        height: 100vh;
    }
    
    .preloader-text {
        font-size: clamp(16px, 3vw, 28px);
        padding: 0 40px;
    }
    
    /* Навигация */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    /* Hero секция */
    .hero-about {
        min-height: 100vh;
        padding-top: 50px;
    }
    
    .hero-about::before {
        background-position: center center;
        clip-path: none;
    }
    
    .hero-about-content {
        padding: 20px 30px;
        gap: 15px;
    }
    
    .hero-title {
        font-size: clamp(28px, 5vw, 42px);
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    /* Intro блок */
    .intro-block {
        padding: 40px 0;
    }
    
    .intro-title {
        font-size: clamp(24px, 4vw, 32px);
        margin-bottom: 10px;
    }
    
    .intro-main-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .intro-services {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .intro-service {
        font-size: 11px;
        padding: 8px 15px;
    }
    
    /* Секция услуг */
    .services {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: clamp(28px, 5vw, 42px);
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 25px 20px;
        aspect-ratio: auto;
        min-height: 150px;
    }
    
    .service-title {
        font-size: clamp(18px, 3vw, 24px);
    }
    
    .service-description {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .service-price {
        font-size: 14px;
    }
    
    /* Белый циклорама */
    .white-cyclorama-block {
        padding: 40px 25px;
    }
    
    .white-cyclorama-title {
        font-size: clamp(28px, 5vw, 40px);
        margin-bottom: 25px;
    }
    
    .white-cyclorama-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .white-cyclorama-image-left,
    .white-cyclorama-image-right {
        height: 200px;
    }
    
    .white-cyclorama-description {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* Оборудование */
    .equipment-section {
        padding: 40px 0;
    }
    
    .equipment-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .equipment-gallery-wrapper {
        padding: 0 40px;
        margin-top: 30px;
    }
    
    .equipment-gallery-item {
        height: 180px;
    }
    
    .equipment-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    /* Локации */
    .location-hero {
        height: 60vh;
        min-height: 300px;
    }
    
    .location-hero-title {
        font-size: clamp(32px, 6vw, 48px);
    }
    
    .location-content {
        padding: 40px 0;
    }
    
    .location-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .location-collage {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 150px);
        gap: 8px;
    }
    
    .collage-large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .collage-item:nth-child(2) {
        grid-column: 3;
        grid-row: 1;
    }
    
    .collage-item:nth-child(3) {
        grid-column: 3;
        grid-row: 2;
    }
    
    .collage-item:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .collage-item:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }
    
    /* Мозаика */
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 120px;
    }
    
    /* Футер */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        min-height: 300px;
    }
    
    .footer-map {
        min-height: 250px;
    }
    
    .footer-contacts {
        padding: 25px 20px;
    }
    
    .footer-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-contact-item {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    /* Модальное окно бронирования */
    .booking-modal-content {
        max-width: 90%;
        max-height: 90vh;
        padding: 25px;
        overflow-y: auto;
    }
    
    .booking-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-textarea {
        min-height: 60px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    /* WhatsApp кнопка */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
    
    /* Cookie уведомление */
    .cookie-notice {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .cookie-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}

/* ===========================
   Small Landscape (height < 500px)
   =========================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-about {
        min-height: auto;
        height: auto;
        padding: 60px 0 30px;
    }
    
    .hero-about-content {
        padding: 15px 25px;
        gap: 10px;
    }
    
    .hero-title {
        font-size: clamp(24px, 4vw, 32px);
        margin-bottom: 5px;
    }
    
    .hero-subtitle {
        font-size: 9px;
    }
    
    .section-title {
        font-size: clamp(24px, 4vw, 36px);
        margin-bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-card {
        min-height: 120px;
        padding: 20px 15px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-description {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
    
    .booking-modal-content {
        max-height: 95vh;
        padding: 15px;
    }
    
    .form-group {
        margin-bottom: 8px;
    }
}

/* ===========================
   Medium Tablets (900px - 1024px)
   =========================== */
@media (min-width: 900px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 60px 50px;
    }
    
    .white-cyclorama-content {
        gap: 30px;
    }
    
    .white-cyclorama-image-left,
    .white-cyclorama-image-right {
        height: 500px;
    }
}

/* ===========================
   Small Tablets (768px - 900px)
   =========================== */
@media (min-width: 768px) and (max-width: 900px) {
    .services-grid {
        padding: 0 25px;
    }
    
    .service-card {
        padding: 45px 35px;
    }
    
    .service-title {
        font-size: 30px;
    }
    
    .service-description {
        font-size: 15px;
    }
    
    .white-cyclorama-block {
        padding: 45px 35px 65px;
    }
    
    .white-cyclorama-title {
        font-size: 48px;
    }
    
    .white-cyclorama-image-left,
    .white-cyclorama-image-right {
        height: 400px;
    }
}

