  * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; }
    body { background: #0d0b09; color: #e8dfd7; }
    ::selection { background: #c8a27b; color: #0d0b09; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    
    /* Header */
    header { background: rgba(13, 11, 9, 0.92); backdrop-filter: blur(12px); padding: 14px 0; position: sticky; top: 0; z-index: 999; border-bottom: 1px solid rgba(200, 162, 123, 0.2); }
    .header-flex { display: flex; justify-content: space-between; align-items: center; }
    .logo { font-size: 1.8rem; font-weight: 200; letter-spacing: 4px; color: #e8dfd7; }
    .logo span { font-weight: 500; color: #c8a27b; }
    .nav-menu { display: flex; gap: 36px; font-weight: 300; color: #d4c8bd; }
    .nav-menu a { font-size: 0.9rem; transition: 0.25s; border-bottom: 1px solid transparent; padding-bottom: 4px;  text-decoration: none;   color: #e8eaed}
    .nav-menu a:hover { border-bottom-color: #c8a27b; color: #fff; }
    .burger { display: none; font-size: 2rem; color: #e8dfd7; cursor: pointer; }

    /* Hero */
    .hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: #0d0b09; overflow: hidden; }
    .hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0.9; }
    .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 30%, rgba(13,11,9,0.1) 12%, #0a0806 100%); z-index: 2; }
    .hero-content { position: relative; z-index: 5; max-width: 820px; padding: 40px 20px; }
    .hero-content h1 { font-size: 4.6rem; font-weight: 200; line-height: 1.05; letter-spacing: -2px; color: #f5ede6; }
    .hero-content h1 strong { font-weight: 500; color: #c8a27b; }
    .hero-slogan { font-size: 1.8rem; font-weight: 300; font-style: italic; margin: 30px 0 32px; border-left: 6px solid #c8a27b; padding-left: 32px; color: #d4c8bd; }
    .btn { display: inline-block; background: #c8a27b; color: #0d0b09; padding: 16px 48px; border-radius: 60px; font-weight: 500; font-size: 1rem; letter-spacing: 2px; transition: 0.3s; border: none; cursor: pointer; box-shadow: 0 8px 32px rgba(200, 162, 123, 0.25); }
    .btn:hover { background: #dec2a8; transform: scale(1.03); box-shadow: 0 12px 40px rgba(200, 162, 123, 0.4); }

    section { padding: 90px 0; }
    .section-title { font-size: 2.6rem; font-weight: 200; letter-spacing: 3px; margin-bottom: 48px; text-align: center; color: #f5ede6; border-bottom: 2px solid #c8a27b; display: inline-block; padding-bottom: 14px; }
    .title-wrap { text-align: center; }

    /* Cards (типы) */
    .types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
    .type-card { background: #1a1613; border-radius: 32px; overflow: hidden; border: 1px solid rgba(200, 162, 123, 0.12); transition: 0.4s; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
    .type-card:hover { transform: translateY(-8px); border-color: rgba(200, 162, 123, 0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
    .type-card .card-img { height: 230px; background: #2a2420; position: relative; overflow: hidden; }
    .type-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
    .type-card .card-body { padding: 24px 24px 28px; }
    .type-card .card-body h4 { font-size: 1.6rem; font-weight: 300; color: #f5ede6; margin-bottom: 6px; }
    .type-card .card-body .sub { color: #b09a88; font-size: 0.9rem; margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
    .type-card .card-body .sub span { background: rgba(200, 162, 123, 0.12); padding: 2px 16px; border-radius: 30px; font-size: 0.7rem; letter-spacing: 0.5px; color: #c8a27b; }
    .type-card .card-body p { color: #c4b5a8; margin: 12px 0; line-height: 1.6; font-weight: 300; }
    .card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
    .card-tags span { background: rgba(200, 162, 123, 0.08); padding: 4px 18px; border-radius: 30px; font-size: 0.7rem; color: #c8a27b; border: 1px solid rgba(200, 162, 123, 0.08); }
    .btn-outline { background: transparent; border: 1px solid #c8a27b; color: #c8a27b; padding: 10px 28px; border-radius: 40px; font-weight: 400; letter-spacing: 1px; cursor: pointer; transition: 0.25s; font-size: 0.85rem; }
    .btn-outline:hover { background: #c8a27b; color: #0d0b09; }

    /* Equipment */
    .equip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
    .equip-item { background: #1a1613; border-radius: 28px; padding: 20px; border: 1px solid rgba(200, 162, 123, 0.08); text-align: center; transition: 0.3s; }
    .equip-item:hover { border-color: rgba(200, 162, 123, 0.25); transform: translateY(-4px); }
    .equip-item img { width: 100%; height: 150px; object-fit: cover; border-radius: 20px; background: #2a2420; }
    .equip-item h5 { margin: 14px 0 6px; font-weight: 400; font-size: 1.1rem; color: #f5ede6; }
    .equip-item p { color: #b09a88; font-weight: 300; font-size: 0.9rem; }
    .equip-item .tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 10px; }
    .equip-item .tags span { background: rgba(200, 162, 123, 0.08); padding: 2px 14px; border-radius: 20px; font-size: 0.65rem; color: #c8a27b; }

    /* Projects */
    .projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; }
    .project-card { background: #1a1613; border-radius: 32px; overflow: hidden; border: 1px solid rgba(200, 162, 123, 0.08); transition: 0.3s; }
    .project-card:hover { border-color: rgba(200, 162, 123, 0.2); }
    .project-card .project-gallery { padding: 16px; }
    .project-gallery .main-preview { width: 100%; height: 260px; background: #2a2420; border-radius: 24px; overflow: hidden; margin-bottom: 12px; }
    .project-gallery .main-preview img, .project-gallery .main-preview video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .thumb-row { display: flex; gap: 10px; flex-wrap: wrap; }
    .thumb-row .pthumb { width: 70px; height: 70px; border-radius: 16px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: 0.15s; background: #2a2420; }
    .thumb-row .pthumb.active { border-color: #c8a27b; }
    .thumb-row .pthumb img, .thumb-row .pthumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .project-card .card-body { padding: 0 20px 24px; }
    .project-card .card-body h4 { font-size: 1.4rem; font-weight: 300; color: #f5ede6; }
    .project-card .card-body p { color: #b09a88; margin: 8px 0 16px; font-weight: 300; }

    /* Modal */
    .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,8,6,0.92); backdrop-filter: blur(8px); z-index: 9999; justify-content: center; align-items: center; padding: 20px; }
    .modal.open { display: flex; }
    .modal-content { background: #1a1613; max-width: 820px; width: 100%; border-radius: 40px; padding: 32px; max-height: 90vh; overflow-y: auto; border: 1px solid rgba(200, 162, 123, 0.12); position: relative; }
    .modal-content::-webkit-scrollbar { width: 4px; }
    .modal-content::-webkit-scrollbar-track { background: transparent; }
    .modal-content::-webkit-scrollbar-thumb { background: #c8a27b; border-radius: 10px; }
    .modal-close { position: sticky; top: 0; float: right; background: rgba(200, 162, 123, 0.1); color: #e8dfd7; border: 1px solid rgba(200, 162, 123, 0.15); border-radius: 40px; padding: 6px 18px; font-size: 1.2rem; cursor: pointer; z-index: 10; transition: 0.2s; }
    .modal-close:hover { background: #c8a27b; color: #0d0b09; }
    .modal-gallery .modal-main { width: 100%; height: 340px; background: #2a2420; border-radius: 28px; overflow: hidden; margin-bottom: 14px; cursor: pointer; }
    .modal-gallery .modal-main img, .modal-gallery .modal-main video { width: 100%; height: 100%; object-fit: cover; }
    .modal-thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin: 8px 0; }
    .modal-thumbs .mthumb { width: 70px; height: 70px; border-radius: 16px; overflow: hidden; cursor: pointer; border: 2px solid transparent; background: #2a2420; }
    .modal-thumbs .mthumb.active { border-color: #c8a27b; }
    .modal-thumbs .mthumb img, .modal-thumbs .mthumb video { width: 100%; height: 100%; object-fit: cover; }
    .modal-desc { margin-top: 16px; }
    .modal-desc h3 { font-weight: 300; color: #f5ede6; font-size: 1.8rem; }
    .modal-desc p { color: #c4b5a8; font-weight: 300; line-height: 1.6; margin: 8px 0; }
    .modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
    .modal-tags span { background: rgba(200, 162, 123, 0.08); padding: 4px 18px; border-radius: 30px; font-size: 0.75rem; color: #c8a27b; border: 1px solid rgba(200, 162, 123, 0.08); }

    /* Production */
    .prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
    .prod-grid img { width: 100%; height: 190px; object-fit: cover; border-radius: 28px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); border: 1px solid rgba(200, 162, 123, 0.06); transition: 0.3s; }
    .prod-grid img:hover { transform: scale(1.02); border-color: rgba(200, 162, 123, 0.2); }

    /* Construction */
    .construction-block { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
    .construction-block .col { flex: 1 1 280px; background: #1a1613; border-radius: 40px; padding: 32px 28px; border: 1px solid rgba(200, 162, 123, 0.08); }
    .construction-block .col h3 { font-weight: 300; display: flex; gap: 14px; color: #f5ede6; font-size: 1.6rem; margin-bottom: 18px; }
    .construction-block .col h3 i { color: #c8a27b; }
    .construction-block .col ul { list-style: none; }
    .construction-block .col ul li { padding: 10px 0; border-bottom: 1px solid rgba(200, 162, 123, 0.06); display: flex; gap: 14px; align-items: center; color: #c4b5a8; font-weight: 300; }
    .construction-block .col ul li i { color: #c8a27b; width: 22px; }

    /* Steps */
    .steps-wrap { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
    .steps-wrap .step { background: #1a1613; border-radius: 60px; padding: 16px 34px; border: 1px solid rgba(200, 162, 123, 0.08); color: #c4b5a8; font-weight: 300; letter-spacing: 0.5px; transition: 0.2s; }
    .steps-wrap .step:hover { border-color: #c8a27b; color: #f5ede6; }

    /* Contacts */
    .contacts-grid { display: flex; flex-wrap: wrap; gap: 40px; background: #1a1613; border-radius: 48px; padding: 40px 36px; border: 1px solid rgba(200, 162, 123, 0.08); }
    .contacts-info { flex: 1 1 240px; }
    .contacts-info p { margin: 14px 0; font-size: 1rem; color: #c4b5a8; font-weight: 300; }
    .contacts-info i { width: 30px; color: #c8a27b; }
    .contacts-info strong { color: #f5ede6; font-weight: 400; }
    .map-container { flex: 2 1 360px; height: 240px; border-radius: 32px; overflow: hidden; background: #2a2420; border: 1px solid rgba(200, 162, 123, 0.06); }
    .map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.1); }

    footer { background: #0d0b09; border-top: 1px solid rgba(200, 162, 123, 0.06); color: #7a6b60; padding: 32px 0; text-align: center; font-weight: 300; letter-spacing: 1px; }

    @media (max-width: 800px) {
      .nav-menu { display: none; flex-direction: column; background: #1a1613; padding: 28px; border-radius: 30px; position: absolute; top: 74px; right: 12px; width: 210px; gap: 18px; border: 1px solid rgba(200, 162, 123, 0.1); }
      .nav-menu.open { display: flex; }
      .burger { display: block; }
      .hero-content h1 { font-size: 2.8rem; }
      .hero-slogan { font-size: 1.4rem; }
      .section-title { font-size: 2.2rem; }
      .projects-grid { grid-template-columns: 1fr; }
      .modal-content { padding: 20px; }
    }
    @media (max-width: 480px) {
      .hero-content h1 { font-size: 2.2rem; }
      .hero-slogan { font-size: 1.1rem; padding-left: 18px; }
      .btn { padding: 14px 32px; }
    }