  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #FDF9F2;
            color: #2C2A29;
            line-height: 1.5;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .header {
            background: rgba(30, 26, 22, 0.95);
            backdrop-filter: blur(8px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(210, 180, 140, 0.3);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            flex-wrap: wrap;
            gap: 12px;
        }

        .logo {
            font-size: 26px;
            font-weight: 800;
            color: #E7C27D;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: #FFFFFF;
            font-weight: 500;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(231, 194, 125, 0.15);
            padding: 6px 14px;
            border-radius: 60px;
            backdrop-filter: blur(4px);
        }
        .header-phone a {
            color: #E7C27D;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: -0.2px;
            white-space: nowrap;
        }
        .header-phone i {
            font-size: 16px;
            color: #E7C27D;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            color: #F5EFE6;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            font-size: 15px;
        }
        .nav-links a:hover {
            color: #E7C27D;
        }
        .btn-call-nav {
            background: #E7C27D;
            color: #2C2A29 !important;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 700;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 8px;
        }
        .burger span {
            width: 26px;
            height: 2px;
            background: #E7C27D;
            transition: 0.2s;
            border-radius: 2px;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 73px;
            left: 0;
            width: 100%;
            background: #1E1C19;
            z-index: 99;
            padding: 28px 24px;
            border-top: 1px solid #E7C27D40;
            box-shadow: 0 20px 30px rgba(0,0,0,0.4);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        .mobile-menu a {
            color: #F5EFE6;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 6px 0;
        }
        .mobile-menu a:hover {
            color: #E7C27D;
        }

        @media (max-width: 860px) {
            .nav-links {
                display: none;
            }
            .burger {
                display: flex;
            }
            .navbar {
                justify-content: space-between;
            }
            .header-phone a {
                font-size: 14px;
            }
            .header-phone {
                padding: 5px 12px;
            }
            .logo {
                font-size: 20px;
            }
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #1F2A1C 0%, #2C2A1F 100%);
            color: white;
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/images/bg.jpg');
            background-size: cover;
            opacity: 0.72;
            pointer-events: none;
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        .hero-text {
            flex: 1;
        }
        .hero-text h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .hero-text p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 28px;
            max-width: 500px;
        }
        .hero-highlight {
            color: #E7C27D;
        }
        .price-indicator {
            background: rgba(231, 194, 125, 0.12);
            border-left: 4px solid #E7C27D;
            padding: 14px 20px;
            border-radius: 16px;
            margin-bottom: 28px;
            backdrop-filter: blur(4px);
        }
        .price-indicator .price-range {
            font-size: 26px;
            font-weight: 800;
            color: #E7C27D;
            line-height: 1.2;
        }
        .price-indicator .price-desc {
            font-size: 13px;
            opacity: 0.85;
            margin-top: 6px;
        }
        .btn-primary {
            background: #E7C27D;
            border: none;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 60px;
            cursor: pointer;
            transition: 0.3s;
            color: #1F2A1C;
            display: inline-block;
            text-decoration: none;
        }
        .btn-primary:hover {
            background: #D4AE60;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 32px;
            }
            .hero {
                padding: 40px 0 60px;
            }
			.hero:before {
				background-position-x: -141px;
			}
            .hero-grid {
                gap: 28px;
				 flex-direction: column;
            }
            .price-indicator .price-range {
                font-size: 22px;
            }
        }

       

        /* Блок Почему кедр */
        .cedar-why {
            padding: 60px 0;
            background: #F5EFE6;
        }
        .cedar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }
        .cedar-feature {
            background: white;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
        }
        .cedar-feature i {
            font-size: 36px;
            color: #D4AE60;
            margin-bottom: 16px;
        }
        .cedar-feature h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .cedar-feature p {
            font-size: 14px;
            color: #4A443C;
            line-height: 1.5;
        }
        .cedar-quote {
            background: #1F2A1C;
            color: #E7C27D;
            padding: 20px;
            border-radius: 20px;
            text-align: center;
            font-style: italic;
            margin-top: 32px;
        }

        /* Блок фото технологий укладки */
        .tech-photo-section {
            padding: 60px 0;
            background: #FFFFFF;
        }
        .photo-tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }
        .photo-tech-card {
            background: #FCF9F4;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #EDE3D4;
        }
        .photo-placeholder {
            background: #D9D0C2;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6B5A4A;
            font-size: 14px;
            gap: 8px;
			    overflow: hidden;
        }
        .photo-placeholder i {
            font-size: 32px;
        }
        .photo-tech-card .content {
            padding: 20px;
        }
        .photo-tech-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .photo-tech-card p {
            font-size: 14px;
            color: #4A443C;
            line-height: 1.5;
        }

        /* Проекты (карточки) */
        .section-title {
            font-size: 36px;
            text-align: center;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .section-sub {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
            color: #4F4A44;
            font-size: 15px;
            padding: 0 16px;
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 20px;
        }
        .project-card {
            background: #FFFFFF;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #EEE5D8;
            display: flex;
            flex-direction: column;
        }
        .project-card:hover {
            transform: translateY(-4px);
        }
        .card-gallery {
            position: relative;
            cursor: pointer;
        }
        .card-main-img, .card-gallery video {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
        }
        .card-thumb-strip {
            display: flex;
            gap: 8px;
            padding: 12px 16px;
            background: #FCF8F2;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
        }
        .card-thumb {
            flex: 0 0 70px;
            height: 50px;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            border: 2px solid transparent;
            opacity: 0.7;
            transition: 0.1s;
        }
        .card-thumb.active-card-thumb {
            border-color: #E7C27D;
            opacity: 1;
        }
        .project-content {
            padding: 20px;
            flex: 1;
        }
        .project-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .params-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 14px 0;
            border-top: 1px solid #EDE3D4;
            border-bottom: 1px solid #EDE3D4;
            padding: 12px 0;
        }
        .param-item {
            background: #F0E9DF;
            padding: 5px 12px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .param-item i {
            color: #E7C27D;
            font-size: 12px;
        }
        .project-desc {
            font-size: 14px;
            margin: 12px 0;
            color: #4A443C;
        }
        .project-price {
            font-size: 26px;
            font-weight: 800;
            color: #1F2A1C;
            margin: 12px 0 4px;
        }
        .time-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #E7C27D20;
            padding: 5px 12px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 600;
            margin: 8px 0;
        }
        .btn-order {
            background: #2C2A29;
            color: #E7C27D;
            border: none;
            padding: 12px 20px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            width: 100%;
            transition: 0.2s;
            margin-top: 16px;
        }
        .btn-order:hover {
            background: #1F2A1C;
            color: white;
        }

        .advantages {
            padding: 60px 0;
            background: #FCF7F0;
        }
        .adv-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
            margin-top: 40px;
        }
        .adv-item {
            flex: 1;
            min-width: 220px;
            text-align: center;
            padding: 16px;
        }
        .adv-icon {
            font-size: 48px;
            color: #D4AE60;
            margin-bottom: 16px;
        }
        .adv-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .adv-item p {
            font-size: 14px;
        }

        .process {
            background: #FFFFFF;
            padding: 60px 0;
        }
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
        .step {
            background: #FDF9F2;
            border-radius: 24px;
            text-align: center;
            padding: 20px;
            border: 1px solid #EDE3D4;
        }
        .step-img {
            height: 140px;
            background-size: cover;
            background-position: center;
            border-radius: 16px;
            margin-bottom: 14px;
        }
        .step h4 {
            font-size: 18px;
            font-weight: 800;
        }
        .step p {
            font-size: 13px;
        }

        .big-cedar {
            background: #1F2A1C;
            color: white;
            padding: 50px 0;
            text-align: center;
        }
        .big-cedar h2 {
            font-size: 28px;
            font-weight: 800;
        }
        .big-cedar p {
            font-size: 15px;
            max-width: 600px;
            margin: 16px auto 0;
        }

        .footer {
            background: #1E1C19;
            color: #BFB7A8;
            padding: 40px 0 28px;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 40px;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h4 {
            color: #E7C27D;
            margin-bottom: 16px;
            font-size: 18px;
        }
        .footer-col p, .footer-col a {
            color: #BFB7A8;
            text-decoration: none;
            line-height: 1.7;
            font-size: 14px;
        }
        .map-container {
            margin-top: 12px;
            border-radius: 20px;
            overflow: hidden;
            height: 200px;
            width: 100%;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            border-top: 1px solid #403a32;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .footer-grid {
                flex-direction: column;
                gap: 28px;
            }
            .map-container {
                height: 180px;
            }
            .container {
                padding: 0 20px;
            }
            .section-title {
                font-size: 28px;
            }
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Лайтбокс */
        .lightbox-global {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.94);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .lightbox-global.active {
            display: flex;
        }
        .lightbox-media-box {
            max-width: 90vw;
            max-height: 65vh;
        }
        .lightbox-media-box img, .lightbox-media-box video {
            max-width: 100%;
            max-height: 65vh;
            border-radius: 16px;
        }
        .lightbox-thumbs-row {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            overflow-x: auto;
            max-width: 90vw;
            padding: 8px;
        }
        .lightbox-thumb-item {
            width: 70px;
            height: 50px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            border: 2px solid transparent;
            opacity: 0.6;
        }
        .lightbox-thumb-item.active-light {
            border-color: #E7C27D;
            opacity: 1;
        }
        .close-lightbox {
            position: absolute;
            top: 20px;
            right: 25px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 2001;
        }
        .lightbox-nav-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            transform: translateY(-50%);
        }
        .nav-arrow {
            background: rgba(0,0,0,0.6);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }