  :root {
    --white: #FFFFFF;
    --off-white: #F9F8F6;
    --burgundy: #8B1A2A;
    --burgundy-light: #A52236;
    --burgundy-pale: #F7EAEC;
    --graphite: #1E1E1E;
    --graphite-mid: #3D3D3D;
    --graphite-light: #7A7A7A;
    --graphite-pale: #EDECE9;
    --border: rgba(30,30,30,0.10);
    --accent: #C0392B;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--graphite);
    overflow-x: hidden;
    max-width: 100vw;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ── LANGUAGE SPLASH ── */
  #lang-splash {
    max-width: 100vw;
    overflow: hidden;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .splash-inner {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    padding: 52px 60px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    min-width: 420px;
  }

  .splash-logo {
    margin-bottom: 48px;
    text-align: center;
  }

  .splash-logo img {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
  }

  .splash-logo svg { width: 180px; height: auto; margin-bottom: 20px; display: block; margin-left: auto; margin-right: auto; }

  .splash-brand {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
  }

  .splash-brand span {
    display: block;
    font-size: 13px;
    letter-spacing: 8px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
  }

  .splash-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(30,30,30,0.5);
    margin-bottom: 32px;
  }

  .splash-buttons {
    display: flex;
    gap: 16px;
  }

  .splash-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 48px;
    border: 1px solid #8B1A2A;
    background: #8B1A2A;
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 2px;
    min-width: 180px;
    width: 180px;
    box-sizing: border-box;
  }

  .splash-btn:hover {
    border-color: var(--burgundy-light);
    background: var(--burgundy-light);
  }

  .splash-btn .flag {
    font-size: 36px;
    line-height: 1;
  }

  .splash-btn .lang-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
  }

  .splash-btn .lang-sub {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  /* ── НАВИГАЦИЯ ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 60px 0 20px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }

  nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

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

  .logo-mark {
    width: 52px;
    height: 34px;
    object-fit: contain;
    display: block;
  }

  .logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--graphite);
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .logo-text span {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--graphite-light);
    font-weight: 400;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin-right: 24px;
  }

  .nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--graphite-mid);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--burgundy);
    transition: width 0.3s ease;
  }

  .nav-links a:hover,
  .nav-links a.active { color: var(--burgundy); }
  .nav-links a:hover::after,
  .nav-links a.active::after { width: 100%; }

  .nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 11px !important;
    letter-spacing: 1.2px;
    transition: background 0.2s !important;
  }

  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--burgundy-light) !important; }

  .lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--graphite-pale);
    border-radius: 2px;
    padding: 3px;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--graphite-light);
    border-radius: 1px;
    transition: all 0.2s;
  }

  .lang-btn.active {
    background: var(--white);
    color: var(--graphite);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }

  /* ── СТРАНИЦЫ ── */
  .page { display: none; padding-top: 72px; min-height: 100vh; }
  .page.active { display: block; }

  /* ── АНИМАЦИИ ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }

  .reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.45s; }

  /* ── ГЛАВНАЯ ── */
  .hero {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 64px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--burgundy);
  }

  .hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--graphite);
    margin-bottom: 28px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--burgundy);
  }

  .hero-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--graphite-mid);
    max-width: 420px;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .btn-primary {
    background: var(--burgundy);
    color: var(--white);
    padding: 15px 34px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--burgundy-light); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--graphite);
    padding: 15px 34px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1.5px solid rgba(30,30,30,0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-outline:hover { border-color: var(--graphite); color: var(--graphite); }

  .hero-right {
    position: relative;
    background: var(--graphite);
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, #fff 39px, #fff 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, #fff 39px, #fff 40px);
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .hero-panel-svg {
    width: 80%;
    opacity: 0;
    transform: scale(0.92) rotate(-3deg);
    transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
  }

  .hero-panel-svg.visible {
    opacity: 1;
    transform: scale(1) rotate(-3deg);
  }

  /* Секции */
  section { padding: 100px 64px; }

  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
  }

  .section-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 1.5px;
    background: var(--burgundy);
  }

  .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--graphite);
    margin-bottom: 20px;
  }

  .section-title em { font-style: italic; color: var(--burgundy); }

  /* Преимущества */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 56px;
  }

  .feature-card {
    background: var(--white);
    padding: 48px 40px;
    transition: background 0.25s;
  }

  .feature-card:hover { background: var(--off-white); }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
  }

  .feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--graphite);
  }

  .feature-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--graphite-mid);
  }

  /* Разделитель */
  .divider-strip {
    background: var(--graphite);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
  }

  .divider-text {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }

  .divider-text em { color: #E85A6A; font-style: italic; }

  /* ── О КОМПАНИИ ── */
  .about-hero {
    padding: 80px 64px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.12;
    color: var(--graphite);
  }

  .about-hero-title em { font-style: italic; color: var(--burgundy); }

  .about-hero-right { padding-bottom: 24px; }

  .about-hero-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--graphite-mid);
    margin-bottom: 28px;
  }

  .about-line {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 60px 0;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 64px 80px;
  }

  .value-card {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.25s, box-shadow 0.25s;
  }

  .value-card:hover {
    border-color: var(--burgundy);
    box-shadow: 0 4px 24px rgba(139,26,42,0.07);
  }

  .value-num {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: rgba(139,26,42,0.15);
    line-height: 1;
    margin-bottom: 16px;
  }

  .value-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .value-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--graphite-mid);
  }

  /* Команда */
  .team-strip {
    background: var(--off-white);
    padding: 80px 64px;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
  }

  .team-card {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }

  .team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--graphite);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
  }

  .team-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .team-role {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--burgundy);
    font-weight: 500;
  }

  /* ── УСЛУГИ ── */
  .services-header {
    padding: 80px 64px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .services-list { padding: 0 64px 80px; }

  .service-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: start;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: padding-left 0.3s, background 0.25s, color 0.2s;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 2px;
  }

  .service-item:hover {
    padding-left: 28px;
    background: var(--burgundy-pale);
  }
  .service-item:hover .service-num { color: var(--burgundy); }
  .service-item:hover .service-name { color: var(--burgundy); }
  .service-item.expanded {
    background: var(--burgundy-pale);
    padding-left: 28px;
  }
  .service-item.expanded .service-num { color: var(--burgundy); }
  .service-item.expanded .service-name { color: var(--burgundy); }

  .service-num {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: rgba(139,26,42,0.2);
    padding-top: 4px;
  }

  .service-name {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 10px;
  }

  .service-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--graphite-mid);
  }

  .service-arrow {
    font-size: 20px;
    color: var(--graphite-light);
    padding-top: 8px;
    transition: color 0.2s, transform 0.2s;
  }

  .service-item:hover .service-arrow {
    color: var(--burgundy);
    transform: translateX(4px);
  }

  /* Процесс */
  .process-strip {
    background: var(--graphite);
    padding: 80px 64px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    margin-top: 56px;
  }

  .process-step {
    background: var(--graphite);
    padding: 40px 32px;
  }

  .process-step-num {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 20px;
  }

  .process-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
  }

  .process-step-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
  }

  /* ── КАТАЛОГ ── */
  .catalog-header { padding: 80px 64px 60px; }

  .catalog-filters {
    display: flex;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 9px 22px;
    border: 1.5px solid var(--border);
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--graphite-mid);
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
  }

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

  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 0 64px 80px;
    background: var(--border);
  }

  .product-card {
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .product-card:hover { transform: scale(1.015); z-index: 2; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }

  .product-visual {
    height: 220px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .product-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
  }

  .product-info { padding: 28px 28px 32px; }

  .product-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--graphite-light);
    margin-bottom: 8px;
  }

  .product-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 8px;
  }

  .product-specs {
    font-size: 13px;
    font-weight: 400;
    color: var(--graphite-mid);
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    justify-content: space-between;
  }

  .price-num {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--graphite);
  }

  .price-unit {
    font-size: 12px;
    color: var(--graphite-light);
  }

  .product-btn {
    background: var(--burgundy);
    border: none;
    color: var(--white);
    padding: 9px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 2px;
  }

  .product-btn:hover {
    background: var(--burgundy-light);
  }

  /* ── PRODUCT MODAL ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.75);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(4px);
  }

  .modal-overlay.open { display: flex; }

  .modal-box {
    background: var(--white);
    max-width: 860px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 2px;
    position: relative;
    animation: modalIn 0.3s ease;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--graphite-pale);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--graphite);
    z-index: 10;
    transition: background 0.2s;
  }

  .modal-close:hover { background: var(--border); }

  .modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .modal-visual {
    background: #FFFFFF;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
  }

  .modal-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
    transition: opacity 0.2s;
  }

  .modal-visual img:hover { opacity: 0.9; }

  .modal-visual-wrap { display: flex; flex-direction: column; }

  .modal-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: var(--white);
    overflow-x: auto;
  }

  .modal-thumbs img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.55;
    border: 1px solid var(--border);
    transition: opacity 0.2s, border-color 0.2s;
    flex-shrink: 0;
  }

  .modal-thumbs img:hover { opacity: 0.85; }
  .modal-thumbs img.active { opacity: 1; border-color: var(--burgundy); }

  /* Lightbox */
  #lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
  }
  #lightbox.open { display: flex; }
  #lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.5);
  }
  #lightbox-close {
    position: absolute;
    top: 20px; right: 28px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  #lightbox-close:hover { opacity: 1; }

  #lightbox-prev, #lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0 16px;
    user-select: none;
  }
  #lightbox-prev { left: 8px; }
  #lightbox-next { right: 8px; }
  #lightbox-prev:hover, #lightbox-next:hover { opacity: 1; }

  #lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    opacity: 0.8;
    letter-spacing: 0.5px;
  }

  .modal-content {
    padding: 48px 40px 40px;
  }

  .modal-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 12px;
  }

  .modal-name {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .modal-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--graphite-mid);
    margin-bottom: 28px;
  }

  .modal-specs-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--graphite-light);
    margin-bottom: 14px;
  }

  .modal-specs-list {
    list-style: none;
    margin-bottom: 28px;
  }

  .modal-specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 400;
  }

  .modal-specs-list li:last-child { border-bottom: none; }

  .modal-specs-list li strong {
    font-weight: 600;
    color: var(--graphite);
  }

  .modal-specs-list li span {
    color: var(--graphite-mid);
  }

  .modal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .modal-price {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--graphite);
  }

  .modal-price-unit {
    font-size: 13px;
    color: var(--graphite-light);
    margin-top: 4px;
  }

  /* ── КОНТАКТЫ ── */
  .contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 72px);
  }

  .contacts-left {
    padding: 80px 64px;
    background: #E8E6E2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .contacts-right { padding: 80px 64px; }

  .contact-info-list { margin-top: 48px; }

  .contact-info-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }

  .contact-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--graphite-light);
    margin-bottom: 8px;
  }

  .contact-info-value {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--graphite);
  }

  .contact-info-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-info-value a:hover { color: var(--burgundy); }

  /* Форма */
  .form-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
  }

  .form-title em { font-style: italic; color: var(--burgundy); }

  .form-group { margin-bottom: 24px; }

  .form-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--graphite-light);
    margin-bottom: 8px;
  }

  .form-input,
  .form-textarea,
  .form-select {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1.5px solid var(--border);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--graphite);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }

  .form-input:focus,
  .form-textarea:focus,
  .form-select:focus {
    border-bottom-color: var(--burgundy);
  }

  .form-textarea { resize: none; height: 80px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .form-submit {
    margin-top: 12px;
    width: 100%;
    background: var(--graphite);
    color: var(--white);
    padding: 18px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 2px;
  }

  .form-submit:hover { background: var(--burgundy); }

  /* ── ФУТЕР ── */
  footer {
    background: #141414;
    padding: 56px 64px 32px;
    color: var(--white);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .footer-brand span { color: var(--burgundy); }

  .footer-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,0.4);
  }

  .footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }

  .footer-links a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }

  .footer-links a:hover { color: var(--white); }

  .footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.25);
  }


  /* ══ MOBILE HAMBURGER ══ */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--graphite);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    z-index: 99;
    padding: 20px 24px 32px;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--graphite-mid);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: color 0.2s;
  }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a:hover, .mobile-nav a.active { color: var(--burgundy); }
  .mobile-lang {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  /* ══ SECTION DIVIDERS on Home/About/Services ══ */
  .content-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy) 0%, rgba(139,26,42,0.3) 60%, transparent 100%);
    margin: 60px 0 0 0;
  }
  .section-highlight {
    background: rgba(30,30,30,0.04);
    border-left: 3px solid var(--burgundy);
    border-radius: 0 4px 4px 0;
  }
  .section-highlight-graphite {
    background: rgba(30,30,30,0.055);
    position: relative;
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .lang-toggle { display: none; }
    .hamburger { display: flex; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 48px 20px 40px; }
    .hero-title { font-size: 36px !important; }
    .hero-right { height: 240px; }
    .hero-desc { font-size: 14px; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .btn-primary, .btn-outline { padding: 13px 24px; font-size: 11px; width: 100%; text-align: center; }

    section { padding: 60px 20px; }
    .section-title { font-size: 28px !important; }
    .about-hero-title { font-size: 30px !important; }

    .why-grid { grid-template-columns: 1fr !important; gap: 24px !important; }

    .features-grid { grid-template-columns: 1fr; gap: 1px; }
    .feature-card { padding: 32px 20px; }

    .divider-strip { padding: 40px 20px; grid-template-columns: 1fr; gap: 24px; }
    .divider-text { font-size: 22px; }

    .about-hero { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 0; width: 100%; overflow: hidden; }
    .values-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 20px 60px; }

    .services-header { grid-template-columns: 1fr; gap: 24px; padding: 48px 20px 40px; }
    .services-list { padding: 0 20px 60px; }
    .service-item { grid-template-columns: 48px 1fr auto; gap: 12px; padding: 24px 12px 24px 12px !important; }
    .service-name { font-size: 18px; }
    .service-num { font-size: 24px; }
    .service-detail { padding: 0 12px 20px 72px; }
    .service-detail ul { grid-template-columns: 1fr; }

    .process-strip { padding: 60px 20px; }
    .process-grid { grid-template-columns: 1fr 1fr; }

    .catalog-header { padding: 48px 20px 40px; }
    .catalog-grid { grid-template-columns: 1fr; padding: 0 20px 60px; gap: 16px; background: transparent; }
    .product-card { padding-bottom: 0; }
    .product-card[data-cat="kit"] { grid-column: span 1 !important; display: block !important; }
    .product-card[data-cat="kit"] .product-visual { height: 200px; }
    .product-card[data-cat="kit"] > .product-visual { display: block; width: 100%; }

    .contacts-layout { grid-template-columns: 1fr; min-height: auto; }
    .contacts-left { padding: 48px 20px; }
    .contacts-right { padding: 40px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .form-title { font-size: 24px; }

    .modal-overlay { padding: 12px; align-items: flex-start; padding-top: 60px; }
    .modal-inner { grid-template-columns: 1fr; }
    .modal-visual { min-height: 160px; }
    .modal-thumbs img { width: 44px; height: 44px; }
    .modal-content { padding: 24px 20px 20px; }
    .modal-price-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .modal-price { font-size: 22px; white-space: nowrap; }
    .modal-price-row .btn-primary { width: 100%; text-align: center; }

    footer { padding: 40px 20px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }

    .splash-btn { padding: 20px 32px; min-width: 160px; width: 160px; }
    .splash-buttons { flex-direction: row; gap: 16px; justify-content: center; }

    .logo-text { display: none; }
    .logo-mark { width: auto !important; height: 44px !important; }

    .content-divider { margin: 0 !important; }
  }

  @media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-title { font-size: 26px !important; }
    .splash-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .splash-btn { width: 200px; }
  }


  /* ══ SERVICE ACCORDION ══ */
  .service-detail {
    display: none;
    padding: 0 16px 20px 112px;
    border-bottom: 1px solid var(--border);
    margin-top: 0;
    position: relative;
    z-index: 1;
    background: var(--white);
  }
  .service-detail.open { display: block; }
  .service-detail-inner {
    background: rgba(139,26,42,0.04);
    border-left: 3px solid var(--burgundy);
    padding: 20px 24px;
    border-radius: 0 4px 4px 0;
  }
  .service-detail ul {
    list-style: none;
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .service-detail ul li {
    font-size: 13px;
    color: var(--graphite-mid);
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
  }
  .service-detail ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 1px;
    background: var(--burgundy);
  }
  .service-detail-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 8px;
  }
  .service-item.expanded .service-arrow { color: var(--burgundy); transform: rotate(90deg); }
  @media (max-width: 768px) {
    .service-detail { padding: 0 0 20px 64px; }
    .service-detail ul { grid-template-columns: 1fr; }
  }

  /* ── Новини ── */
  .news-grid, .home-news-widget {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: start;
    gap: 24px;
    padding: 48px 64px 80px;
    background: transparent;
  }

  .news-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .news-card:hover { transform: scale(1.015); z-index: 2; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }

  .news-card-visual {
    height: 220px;
    background: var(--graphite-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .news-card-info { padding: 28px 28px 32px; }

  .news-card-date {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 8px;
  }

  .news-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 8px;
  }

  .news-card-excerpt {
    font-size: 13px;
    font-weight: 400;
    color: var(--graphite-mid);
    line-height: 1.65;
  }

  .news-article-body p { margin-bottom: 16px; color: var(--graphite-mid); line-height: 1.75; }

  @media (max-width: 900px) {
    .news-grid, .home-news-widget { grid-template-columns: 1fr; padding: 0 20px 60px; gap: 16px; background: transparent; }
  }

  /* ── Скролл ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: var(--graphite-pale); border-radius: 2px; }
