   /* ===== МРАМОРНЫЙ СТИЛЬ ===== */
        * { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
        }
        
        body { 
            font-family: 'Georgia', 'Times New Roman', serif; 
            line-height: 1.7; 
            color: #2c2c2c;
            background-color: #e8e0d8;
            background-image: 
                radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.2) 0%, transparent 60%),
                repeating-linear-gradient(45deg, 
                    rgba(200, 190, 180, 0.05) 0px, 
                    rgba(200, 190, 180, 0.05) 2px,
                    rgba(255, 255, 255, 0.02) 2px, 
                    rgba(255, 255, 255, 0.02) 4px
                );
        }
        
        .container { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 20px; 
        }
        
        /* ===== МРАМОРНАЯ ТЕКСТУРА ДЛЯ СЕКЦИЙ ===== */
        section { 
            padding: 80px 0; 
            position: relative;
        }
        
        .marble-bg {
            background: 
                radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.3) 0%, transparent 50%),
                linear-gradient(135deg, #d4cdc4 0%, #e8e0d8 30%, #d4cdc4 60%, #c8c0b8 100%);
            background-size: 200% 200%;
            position: relative;
        }
        
        .marble-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(45deg, 
                    transparent 0px, 
                    transparent 3px,
                    rgba(255,255,255,0.03) 3px, 
                    rgba(255,255,255,0.03) 4px
                ),
                repeating-linear-gradient(-45deg, 
                    transparent 0px, 
                    transparent 5px,
                    rgba(200,190,180,0.05) 5px, 
                    rgba(200,190,180,0.05) 6px
                );
            pointer-events: none;
        }
        
        .marble-dark {
            background: 
                radial-gradient(ellipse at 40% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
                linear-gradient(135deg, #8a7e72 0%, #a8988a 30%, #8a7e72 60%, #7a6e62 100%);
            background-size: 200% 200%;
            position: relative;
            color: #f0ece8;
        }
        
        .marble-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(45deg, 
                    transparent 0px, 
                    transparent 5px,
                    rgba(255,255,255,0.02) 5px, 
                    rgba(255,255,255,0.02) 6px
                );
            pointer-events: none;
        }
        
        .marble-dark .card,
        .marble-dark .project-card,
        .marble-dark .step-item,
        .marble-dark .contacts-grid,
        .marble-dark .about-grid {
            background: rgba(60, 50, 45, 0.7);
            backdrop-filter: blur(10px);
            border-color: rgba(255, 215, 0, 0.2);
            color: #f0ece8;
        }
        
        .marble-dark h2,
        .marble-dark h3,
        .marble-dark h4 {
            color: #f5f0ea;
        }
        
        .marble-dark .project-card p,
        .marble-dark .card p {
            color: #d0c8c0;
        }
        
        /* ===== ЗОЛОТЫЕ АКЦЕНТЫ ===== */
        .gold {
            color: #c9a84c;
        }
        
        .gold-border {
            border-color: #c9a84c !important;
        }
        
        .gold-text {
            color: #c9a84c;
        }
        
        .gold-bg {
            background: linear-gradient(135deg, #c9a84c, #b8943a);
        }
        
        h2 { 
            font-size: 2.6em; 
            margin-bottom: 40px; 
            text-align: center; 
            color: #2c2c2c;
            position: relative;
            padding-bottom: 20px;
            font-weight: normal;
            letter-spacing: 3px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c9a84c, transparent);
        }
        
        h2::before {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            color: #c9a84c;
            font-size: 1.2em;
            background: #e8e0d8;
            padding: 0 15px;
        }
        
        .marble-dark h2::before {
            background: #8a7e72;
        }
        
        /* ===== ШАПКА ===== */
        .header { 
            background: rgba(255, 255, 255,);
            padding: 18px 0; 
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        }
        
        .nav { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            flex-wrap: wrap;
        }
        
        .logo { 
            font-size: 2em; 
            font-weight: normal; 
            color: #2c2c2c; 
            letter-spacing: 4px;
            font-family: 'Georgia', serif;
        }
        
        .logo span {
            color: #c9a84c;
        }
        
        .nav-links a { 
            margin-left: 35px; 
            text-decoration: none; 
            color: #4a3f3a; 
            font-weight: normal;
            transition: color 0.3s;
            letter-spacing: 1px;
            font-size: 1em;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #c9a84c;
            transition: width 0.3s;
        }
        
        .nav-links a:hover { 
            color: #c9a84c; 
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .contact-info { 
            color: #4a3f3a; 
            font-weight: normal;
            letter-spacing: 1px;
        }
        
        .contact-info span {
            color: #c9a84c;
        }
        
        /* ===== СЕТКИ ===== */
        .grid-3 { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 35px; 
        }

       .grid-2 { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 30px; 
        }
        
        .grid-steps { 
            display: grid; 
            grid-template-columns: repeat(7, 1fr); 
            gap: 20px; 
        }
        
        /* ===== КАРТОЧКИ ===== */
        .project-card { 
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 25px; 
            border-radius: 8px; 
            text-align: center; 
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            transition: transform 0.4s, box-shadow 0.4s;
            border: 1px solid rgba(201, 168, 76, 0.15);
            cursor: pointer;
        }
        
        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(201, 168, 76, 0.15);
            border-color: rgba(201, 168, 76, 0.4);
        }
        
        .project-card h3 {
            color: #2c2c2c;
            margin: 18px 0 8px;
            font-weight: normal;
            letter-spacing: 1px;
        }
        
        .project-card p {
            color: #6a5f55;
            font-size: 0.95em;
        }
        
        .project-image {
            height: 220px;
            border-radius: 4px;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #d4cdc4 0%, #e8e0d8 50%, #d4cdc4 100%);
        }
        
        .project-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.5em;
            opacity: 0;
            transition: opacity 0.4s;
            background: rgba(44, 44, 44, 0.6);
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c9a84c;
        }
        
        .project-card:hover .project-image::after {
            opacity: 1;
        }
        
        /* ===== КАРТОЧКИ ДЛЯ ДРУГИХ РАЗДЕЛОВ ===== */
        .card { 
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 30px; 
            border-radius: 8px; 
            text-align: center; 
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            transition: transform 0.4s, box-shadow 0.4s;
            border: 1px solid rgba(201, 168, 76, 0.12);
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 45px rgba(201, 168, 76, 0.12);
        }
        
        .card h3 {
            color: #2c2c2c;
            font-weight: normal;
            letter-spacing: 1px;
        }
        
        .card p {
            color: #6a5f55;
        }
        
        /* ===== СКРЫТЫЕ ЭЛЕМЕНТЫ ===== */
        .portfolio-item {
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .portfolio-item.hidden {
            display: none;
        }
        
        .step-item { 
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            padding: 18px 12px; 
            border-radius: 30px; 
            text-align: center; 
            font-size: 0.9em; 
            font-weight: normal;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(201, 168, 76, 0.2);
            color: #2c2c2c;
            letter-spacing: 0.5px;
            transition: all 0.3s;
        }
        
        .step-item:hover {
            background: rgba(201, 168, 76, 0.1);
            border-color: #c9a84c;
        }
        
        /* ===== КНОПКИ ===== */

.btn {
            display: inline-block;
            padding: 12px 38px;
            margin-top: 15px;
            font-family: 'Georgia', 'Times New Roman', serif;
            font-size: 0.85em;
            font-weight: normal;
            letter-spacing: 3px;
            text-decoration: none;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            background: transparent;
            border: none;
            outline: none;
        }
        
        /* --- КНОПКА С ТОНЧАЙШИМ ЗОЛОТЫМ КОНТУРОМ (0.5px) --- */
        .btn-fine {
            color: #2c2c2c;
            padding: 13px 42px;
        }
        
        .btn-fine::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 0.5px solid rgba(201, 168, 76, 0.3);
            border-radius: 30px;
            transition: all 0.5s;
        }
        
        .btn-fine::after {
            content: '';
            position: absolute;
            top: 4px;
            left: 4px;
            right: 4px;
            bottom: 4px;
            border: 0.5px solid rgba(201, 168, 76, 0.1);
            border-radius: 26px;
            transition: all 0.5s;
        }
        
        .btn-fine .btn-dot-left {
            position: absolute;
            top: 50%;
            left: 14px;
            transform: translateY(-50%);
            width: 3px;
            height: 3px;
            background: #c9a84c;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.5s;
        }
        
        .btn-fine .btn-dot-right {
            position: absolute;
            top: 50%;
            right: 14px;
            transform: translateY(-50%);
            width: 3px;
            height: 3px;
            background: #c9a84c;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.5s;
        }
        
        .btn-fine .btn-line-top {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 0.5px;
            background: #c9a84c;
            opacity: 0;
            transition: all 0.5s;
        }
        
        .btn-fine .btn-line-bottom {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 0.5px;
            background: #c9a84c;
            opacity: 0;
            transition: all 0.5s;
        }
        
        .btn-fine:hover {
            color: #c9a84c;
            transform: translateY(-2px);
            letter-spacing: 4px;
        }
        
        .btn-fine:hover::before {
            border-color: rgba(201, 168, 76, 0.7);
            box-shadow: 0 0 30px rgba(201, 168, 76, 0.05);
        }
        
        .btn-fine:hover::after {
            border-color: rgba(201, 168, 76, 0.3);
        }
        
        .btn-fine:hover .btn-dot-left,
        .btn-fine:hover .btn-dot-right {
            opacity: 1;
        }
        
        .btn-fine:hover .btn-line-top,
        .btn-fine:hover .btn-line-bottom {
            opacity: 1;
            width: 30px;
        }
        
        .btn-fine:active {
            transform: translateY(0px) scale(0.98);
        }
        
        /* --- КНОПКА С ДВОЙНЫМ ТОНКИМ КОНТУРОМ (для темного фона) --- */
        .btn-fine-dark {
            color: #f5f0ea;
            padding: 13px 42px;
        }
        
        .btn-fine-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 0.5px solid rgba(201, 168, 76, 0.25);
            border-radius: 30px;
            transition: all 0.5s;
        }
        
        .btn-fine-dark::after {
            content: '';
            position: absolute;
            top: 4px;
            left: 4px;
            right: 4px;
            bottom: 4px;
            border: 0.5px solid rgba(201, 168, 76, 0.08);
            border-radius: 26px;
            transition: all 0.5s;
        }
        
        .btn-fine-dark .btn-diamond {
            position: absolute;
            top: -6px;
            right: 20px;
            font-size: 0.6em;
            color: #c9a84c;
            opacity: 0;
            transition: all 0.5s;
        }
        
        .btn-fine-dark .btn-diamond-left {
            position: absolute;
            bottom: -6px;
            left: 20px;
            font-size: 0.6em;
            color: #c9a84c;
            opacity: 0;
            transition: all 0.5s;
        }
        
        .btn-fine-dark:hover {
            color: #f5f0ea;
            transform: translateY(-2px);
            letter-spacing: 4px;
        }
        
        .btn-fine-dark:hover::before {
            border-color: rgba(201, 168, 76, 0.6);
            box-shadow: 0 0 40px rgba(201, 168, 76, 0.08);
        }
        
        .btn-fine-dark:hover::after {
            border-color: rgba(201, 168, 76, 0.2);
        }
        
        .btn-fine-dark:hover .btn-diamond,
        .btn-fine-dark:hover .btn-diamond-left {
            opacity: 1;
        }
        
        .btn-fine-dark:active {
            transform: translateY(0px) scale(0.98);
        }
        
        /* --- КНОПКА С ТОЧЕЧНЫМИ УГЛАМИ (изящная) --- */
        .btn-dot {
            color: #2c2c2c;
            padding: 12px 40px;
        }
        
        .btn-dot::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 0.5px solid rgba(201, 168, 76, 0.25);
            border-radius: 30px;
            transition: all 0.5s;
        }
        
        .btn-dot .dot-corner {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #c9a84c;
            border-radius: 50%;
            opacity: 0.2;
            transition: all 0.5s;
        }
        
        .btn-dot .dot-corner.tl {
            top: 6px;
            left: 6px;
        }
        
        .btn-dot .dot-corner.tr {
            top: 6px;
            right: 6px;
        }
        
        .btn-dot .dot-corner.bl {
            bottom: 6px;
            left: 6px;
        }
        
        .btn-dot .dot-corner.br {
            bottom: 6px;
            right: 6px;
        }
        
        .btn-dot .dot-line {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: calc(100% - 20px);
            height: 0.5px;
            background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
            transition: all 0.5s;
        }
        
        .btn-dot:hover {
            color: #c9a84c;
            transform: translateY(-2px);
            letter-spacing: 4px;
        }
        
        .btn-dot:hover::before {
            border-color: rgba(201, 168, 76, 0.5);
            box-shadow: 0 0 30px rgba(201, 168, 76, 0.05);
        }
        
        .btn-dot:hover .dot-corner {
            opacity: 0.8;
            transform: scale(1.3);
        }
        
        .btn-dot:hover .dot-line {
            background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
        }
        
        .btn-dot:active {
            transform: translateY(0px) scale(0.98);
        }
        
        /* --- КНОПКА ЗОЛОТАЯ ЗАЛИВКА С ТОНКИМ ОБОДКОМ --- */
        .btn-gold-fine {
            color: #fff;
            padding: 13px 42px;
        }
        
        .btn-gold-fine::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(135deg, #c9a84c, #b8943a);
            border-radius: 30px;
            z-index: -1;
            transition: all 0.5s;
        }
        
        .btn-gold-fine::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: linear-gradient(135deg, #c9a84c, #b8943a);
            border-radius: 28px;
            z-index: -1;
            transition: all 0.5s;
        }
        
        .btn-gold-fine .gold-shine {
            position: absolute;
            top: 4px;
            left: 4px;
            right: 4px;
            bottom: 4px;
            border: 0.5px solid rgba(255, 255, 255, 0.15);
            border-radius: 26px;
            z-index: -1;
            transition: all 0.5s;
        }
        
        .btn-gold-fine:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(201, 168, 76, 0.25);
            letter-spacing: 4px;
        }
        
        .btn-gold-fine:hover::before {
            background: linear-gradient(135deg, #dbb85c, #c9a84c);
        }
        
        .btn-gold-fine:hover::after {
            background: linear-gradient(135deg, #dbb85c, #c9a84c);
        }
        
        .btn-gold-fine:hover .gold-shine {
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .btn-gold-fine:active {
            transform: translateY(0px) scale(0.98);
        }
        
        /* --- КНОПКА-ССЫЛКА С ТОНКИМ ПОДЧЕРКИВАНИЕМ --- */
        .btn-link {
            color: #4a3f3a;
            padding: 6px 0;
            margin-top: 0;
            font-size: 0.9em;
            letter-spacing: 1.5px;
            position: relative;
            text-decoration: none;
            text-transform: none;
        }
        
        .btn-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 0.5px;
            background: linear-gradient(90deg, transparent, #c9a84c, transparent);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .btn-link:hover {
            color: #c9a84c;
        }
        
        .btn-link:hover::after {
            transform: scaleX(1);
        }
        
        /* --- ОТКЛЮЧЕННАЯ КНОПКА --- */
        .btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
            letter-spacing: 3px !important;
        }
        
        .btn:disabled::before,
        .btn:disabled::after {
            opacity: 0.3;
        }
        
        /* ===== АДАПТАЦИЯ КНОПОК ДЛЯ МОБИЛЬНЫХ ===== */
        @media (max-width: 768px) {
            .btn {
                padding: 10px 28px !important;
                font-size: 0.75em;
                letter-spacing: 2px;
            }
            
            .btn-fine .btn-dot-left,
            .btn-fine .btn-dot-right,
            .btn-fine .btn-line-top,
            .btn-fine .btn-line-bottom {
                display: none;
            }
            
            .btn-fine-dark .btn-diamond,
            .btn-fine-dark .btn-diamond-left {
                display: none;
            }
            
            .btn-dot .dot-line {
                display: none;
            }
            
            .btn-dot .dot-corner {
                width: 3px;
                height: 3px;
            }
            
            .btn-dot .dot-corner.tl,
            .btn-dot .dot-corner.tr {
                top: 4px;
            }
            
            .btn-dot .dot-corner.bl,
            .btn-dot .dot-corner.br {
                bottom: 4px;
            }
            
            .btn-dot .dot-corner.tl,
            .btn-dot .dot-corner.bl {
                left: 4px;
            }
            
            .btn-dot .dot-corner.tr,
            .btn-dot .dot-corner.br {
                right: 4px;
            }
        }
        


        .button { 
            display: inline-block; 
            padding: 14px 40px; 
            background: transparent; 
            color: #2c2c2c; 
            text-decoration: none; 
            border-radius: 30px; 
            margin-top: 15px; 
            font-weight: normal;
            border: 1px solid #c9a84c;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 2px;
            font-size: 0.9em;
            font-family: 'Georgia', serif;
        }
        
        .button:hover { 
            background: #c9a84c;
            color: #fff;
            box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
        }
        
        .button-gold {
            background: #c9a84c;
            color: #fff;
            border: 1px solid #c9a84c;
        }
        
        .button-gold:hover {
            background: #b8943a;
            border-color: #b8943a;
        }
        
        .button:disabled {
            opacity: 0.5;
            cursor: default;
            transform: none;
        }
        
        .button:disabled:hover {
            background: transparent;
            color: #2c2c2c;
            box-shadow: none;
        }
        
        /* ===== КАТЕГОРИИ ПОРТФОЛИО ===== */
        .portfolio-categories { 
            text-align: center; 
            margin-bottom: 40px; 
        }
        
        .portfolio-categories a { 
            margin: 0 20px; 
            color: #6a5f55; 
            text-decoration: none; 
            font-weight: normal;
            padding-bottom: 8px;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
            letter-spacing: 1px;
            cursor: pointer;
        }
        
        .portfolio-categories a:hover,
        .portfolio-categories a.active { 
            border-bottom-color: #c9a84c; 
            color: #2c2c2c;
        }
        
        /* ===== ГЕРОЙ ===== */
        .hero { 
            text-align: center; 
            padding: 120px 0; 
            background: 
                radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.5) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.3) 0%, transparent 50%),
                linear-gradient(135deg, #d4cdc4 0%, #e8e0d8 40%, #d4cdc4 70%, #c8c0b8 100%);
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(45deg, 
                    transparent 0px, 
                    transparent 4px,
                    rgba(255,255,255,0.03) 4px, 
                    rgba(255,255,255,0.03) 5px
                );
            pointer-events: none;
        }
        
        .hero h1 {
            font-size: 3.5em;
            color: #2c2c2c;
            margin-bottom: 20px;
            font-weight: normal;
            letter-spacing: 4px;
        }
        
        .hero h1 span {
            color: #c9a84c;
        }
        
        .hero p {
            color: #5a4f45;
            font-size: 1.2em;
            letter-spacing: 1px;
        }
        
        .hero .decor-line {
            width: 80px;
            height: 1px;
            background: #c9a84c;
            margin: 25px auto;
        }
        
        /* ===== МОДАЛЬНОЕ ОКНО ===== */
        .modal2 {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 44, 44, 0.92);
            backdrop-filter: blur(8px);
            overflow: auto;
        }
        
        .modal-content2 {
            position: relative;
            margin: auto;
            padding: 0;
            width: 90%;
            max-width: 900px;
            top: 50%;
            transform: translateY(-50%);
            animation: modalopen 0.5s ease;
        }
        
        @keyframes modalopen {
            from {opacity: 0; transform: translateY(-60%) scale(0.95);}
            to {opacity: 1; transform: translateY(-50%) scale(1);}
        }
        
        .modal-image2 {
            width: 100%;
            height: auto;
            max-height: 55vh;
            object-fit: contain;
            border-radius: 8px 8px 0 0;
            background: linear-gradient(135deg, #d4cdc4, #e8e0d8);
        }
        
        .modal-info2 {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            color: #2c2c2c;
            padding: 30px 35px;
            border-radius: 0 0 8px 8px;
            border-top: 3px solid #c9a84c;
        }
        
        .modal-info2 h2 {
            color: #2c2c2c;
            margin-bottom: 15px;
            text-align: left;
            font-size: 2em;
        }
        
        .modal-info2 h2:after,
        .modal-info2 h2:before {
            display: none;
        }
        
        .modal-info2 p {
            margin: 15px 0;
            line-height: 1.8;
            color: #4a3f3a;
        }
        
        .modal-info2 .details {
            display: flex;
            gap: 35px;
            margin: 20px 0;
            color: #c9a84c;
        }
        
        .modal-info2 .details span {
            font-size: 0.95em;
        }
        
        .close {
            position: absolute;
            top: -45px;
            right: 0;
            color: #f0ece8;
            font-size: 40px;
            font-weight: normal;
            cursor: pointer;
            transition: color 0.3s;
            font-family: 'Georgia', serif;
            line-height: 1;
        }
        
        .close:hover {
            color: #c9a84c;
        }
        
        /* ===== ФОРМЫ ===== */
        input, textarea { 
            width: 100%; 
            padding: 14px 18px; 
            margin: 10px 0; 
            border: 1px solid rgba(201, 168, 76, 0.3); 
            border-radius: 4px; 
            font-size: 1em;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(5px);
            color: #2c2c2c;
            transition: border-color 0.3s;
            font-family: 'Georgia', serif;
        }
        
        input:focus, textarea:focus {
            outline: none;
            border-color: #c9a84c;
            background: rgba(255, 255, 255, 0.7);
        }
        
        input::placeholder, textarea::placeholder {
            color: #9a8f85;
        }
        
        /* ===== КОНТАКТЫ ===== */
        .contacts-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 50px; 
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            padding: 45px;
            border-radius: 8px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(201, 168, 76, 0.1);
        }
        
        .contacts-info p {
            margin: 18px 0;
            font-size: 1.1em;
            color: #4a3f3a;
        }
        
        .contacts-info a {
            color: #c9a84c;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contacts-info a:hover {
            color: #b8943a;
        }
        
        /* ===== ПОДВАЛ ===== */
        .footer { 
            background: rgba(44, 44, 44, 0.95);
            color: #c8c0b8; 
            text-align: center; 
            padding: 35px 0;
            border-top: 1px solid rgba(201, 168, 76, 0.15);
        }
        
        .footer a {
            color: #c9a84c;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: #f0ece8;
        }
        
        .footer .gold {
            letter-spacing: 2px;
        }
        
        /* ===== ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ ===== */
        hr { 
            margin: 50px 0; 
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            padding: 45px;
            border-radius: 8px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(201, 168, 76, 0.1);
        }
        
        .about-text p {
            color: #4a3f3a;
            line-height: 1.9;
            font-size: 1.05em;
        }
        
        .advantages-list {
            list-style: none;
            margin-top: 25px;
        }
        
        .advantages-list li {
            margin: 14px 0;
            font-size: 1.05em;
            color: #4a3f3a;
        }
        
        .advantages-list li::before {
            content: '';
            color: #c9a84c;
            margin-right: 15px;
            font-size: 0.9em;
        }
        
        .price {
            font-size: 1.8em;
            color: #c9a84c;
            font-weight: normal;
            margin: 15px 0;
            letter-spacing: 1px;
        }
        
        .about-image {
            height: 350px;
            border-radius: 4px;
            background: linear-gradient(135deg, #d4cdc4 0%, #e8e0d8 50%, #d4cdc4 100%);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(201, 168, 76, 0.1);
        }
        
        .portfolio-footer {
            text-align: center;
            margin-top: 45px;
        }
        
        .projects-count {
            color: #8a7e72;
            font-size: 0.9em;
            margin-top: 12px;
            letter-spacing: 1px;
        }
        
        /* ===== АДАПТИВНОСТЬ ===== */
        @media (max-width: 768px) {
            .grid-3, .grid-steps, .contacts-grid, .about-grid {
                grid-template-columns: 1fr;
            }
            
            .nav {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-links a {
                margin: 0 15px;
            }
            
            .hero h1 {
                font-size: 2.2em;
            }
            
            .modal-content {
                width: 95%;
            }
            
            .modal-info .details {
                flex-direction: column;
                gap: 10px;
            }
            
            .modal-info {
                padding: 20px;
            }
            
            .logo {
                font-size: 1.6em;
            }
        }