:root{
  --bg: #0f1113;
  --surface: #1a1c1f;
  --surface2:#14161a;
  --text: #e9edf2;
  --muted:#b7c0cc;
  --line: rgba(255,255,255,.10);

  --gold:#caa25a;
  --gold2:#9b7a3e;
  --accent:#ff9b2f;

  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.35);

  --containerW: 90vw;
  --containerMax: 1400px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg); 
  color:var(--text);
}

html.preload-bright body{
  background: #fff4d6; 
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width: min(var(--containerW), var(--containerMax));
  margin: 0 auto;
  padding-bottom: 20px;
}

@media (max-width: 900px){
  .container{ width: 92vw; }
}

.section{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.center{ text-align:center; }

.h2{
  color:#000;
  margin: 0 auto 18px;     
  width: fit-content;     
  position: relative;

  font-size: clamp(20px, 2.2vw, 40px);
  letter-spacing:.06em;
  font-weight:700;
  text-align: center;     
}

.h2::after{
  content:"";
  display:block;
  width:100%;               
  height:2px;
  margin-top:8px;
  background: #000;
  border-radius:2px;
}

.contactsBlock__title::after{ display: none; }

.h3{
  color: #000;
  margin:0 0 16px;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight:700;
  line-height:1.25;
}


                                                    /* ===== NAVBAR ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
  isolation: isolate;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid var(--line);

  --topbar-bg: url("/assets/img/backround.webp");
}

.topbar::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;

  background:

    var(--topbar-bg) center / cover no-repeat;
}

.topbar__inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 56px;
}

.topbar__center{
  justify-self: center;
  display: flex;
  gap: 28px;
}

.topbar__right{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__center .nav__link{
  font-size: 16px;       
  font-weight: 00;
  color: #000;             
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 12px;
}

.topbar__center .nav__link:hover{
  background: rgba(0,0,0,.06);
  transform: translateY(-1px);
}

.mnav{
  position: relative;
  z-index: 1;
}

.nav{display:flex; gap:18px; align-items:center}
.nav__link{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  transition: .2s ease;
}
.nav__link:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.topbar__right{display:flex; align-items:center; gap:10px}

.lang{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  cursor:pointer;
}
.lang__pill{padding:0 4px}
.lang__sep{opacity:.6}
.lang .is-active{color:var(--text); font-weight:700}

.iconbtn{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}

.burger{
  display:none;
  width:42px; height:38px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  padding:10px;
}
.burger span{
  display:block;
  width:22px;
  height:3px;
  background:#111;
  border-radius:3px;
  margin:3px 0;
  opacity:1;
  align-self:center;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 2px 4px rgba(0,0,0,.06);
  transition: transform .22s cubic-bezier(.2,.9,.2,1), opacity .18s linear, width .18s ease;
}

.mnav{
  display: block;           
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;           
  border-top: 1px solid var(--line);
  transition: max-height .28s ease, padding .28s ease;
}

.mnav.is-open{
  max-height: 340px;      
  padding: 10px 18px 16px;  
}

.mnav__link{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
}
.mnav__link:hover{background: rgba(255,255,255,.06); color:var(--text)}


                                                      /* ADAPTIVE */
@media (max-width: 980px){

  .topbar__inner{
    padding-top: 6px;         
    height: 56px;            
  }

  .topbar__right{
    margin-top: 2px;
  }
}


                                                  /* ===== HERO ===== */
.hero{position:relative}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45), transparent 45%),
    radial-gradient(1000px 600px at 60% 10%, rgba(202,162,90,.22), transparent 60%);
  pointer-events:none;
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.hero__topline{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px}
.tag{
  font-size:12px; color:var(--muted);
  padding:8px 10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:999px;
}
.hero__title{
  margin:0 0 10px;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight:900;
  line-height:1.05;
  letter-spacing:.01em;
}
.hero__lead{
  margin:0 0 18px;
  color:var(--muted);
  max-width: 56ch;
}

.btn{
  display:inline-flex;
  align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(202,162,90,.35);
  background: linear-gradient(135deg, rgba(202,162,90,.22), rgba(255,155,47,.10));
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  font-weight:700;
  transition:.2s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(202,162,90,.55)}
.btn--ghost{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  box-shadow:none;
  color:var(--text);
}

.hero__card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__cardHead{
  display:flex; align-items:center; gap:10px;
  padding:14px 14px 12px;
  border-bottom:1px solid var(--line);
}
.miniLogo{
  width:40px; height:26px; border-radius:8px;
  background: linear-gradient(135deg, rgba(202,162,90,.9), rgba(155,122,62,.9));
}
.hero__cardTitle{font-weight:800; letter-spacing:.06em}
.hero__cardBody{padding:14px}
.kv{padding:10px 0; border-bottom:1px dashed rgba(255,255,255,.12)}
.kv:last-child{border-bottom:none}
.kv__k{font-size:12px; color:var(--muted); margin-bottom:6px}
.kv__v{font-size:13px; line-height:1.35}

.about__list a{
  position: relative;
  color: inherit;
  text-decoration: none;
  display: inline;
  padding-bottom: 4px; 
}

.about__list a::after{
  content: "";              
  position: absolute;         
  left: 0;
  right: 0;
  bottom: 0;

  height: 4px;
  border-radius: 50%;

  background: rgba(255, 185, 50, 1);
  filter: blur(4px);

  box-shadow:
    0 0 10px rgba(255, 185, 50, 0.9),
    0 0 20px rgba(255, 185, 50, 0.6);

  opacity: 0;                 
  transition: opacity .25s ease;
}

/* включаем свечение */
.about__list a:hover::after{
  opacity: 1;
}

/* Restore list markers for about lists (show bullets even with flex layout) */
#about .about__list li{
  position: relative;
  padding-left: 26px;
}

#about .about__list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0.18em;
  color: rgba(0,0,0,.85);
  font-size: 1.05em;
  line-height: 1;
}


                                          /* ===== SURFACE / sectionInner ===== */
.sectionInner{
  width: 100%;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

                                                /* ===== DIRECTIONS ===== */
#about{
  --about-shift: 0px;
  --about-gutter: clamp(12px, 4.2vw, 110px);
  --about-list-indent: clamp(14px, 2.2vw, 42px);
  position: relative;
  padding-bottom: 96px;
}

#about .about__title{
  color:#000;
  font-size: clamp(28px, 3vw, 54px);
  margin-bottom: clamp(18px, 2.5vw, 40px);  
  width: fit-content;
  position: relative;
  text-align:center;
  font-weight: 900;
}

#about .about__title::after{
  content:"";
  display:block;
  width:100%;
  height:3px;
  margin: 6px auto 0;
  background: rgba(0,0,0,.55);
  border-radius: 999px;
}

#about .about__directions{
  display:grid;
  grid-template-columns: var(--about-gutter) minmax(0, 1fr);
  gap: 14px;
  padding: 0;
}

#about .directions__left{
  grid-column: 2;
  padding-left: 0;
  transform: translateX(var(--about-shift));
  min-width: 0;
}

#about .subtitle{
  color:#000;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(22px, 2.2vw, 45px); 
  margin: 0 0 10px;
}

#about .about__list{
  margin: 0;
  padding-left: 22px;             
  margin-left: var(--about-list-indent); 
}

#about .about__list li{
  color: #000;
  font-size: 1.85em;  
  line-height: 2;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
}

#about .directions__right{
  grid-column: 2;
}

#about .about__note{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;

  margin: 0;
  text-align: center;

  font-size: clamp(14px, 1.4vw, 36px);
  line-height: 1.35;
  color: #000;

  padding: 22px 16px;
}

                                                 /*  ADAPTIVE  */
@media (max-width: 600px){
  #about{
    --about-gutter: 0px;
    --about-list-indent: 0px;
  }

  #about .about__directions{
    display: block;
  }

  #about .directions__left{
    transform: none;
    margin-top: 6px;
    padding-left: 12px;
  }

  #about .subtitle{
    text-align: left;
  }

  #about .about__list{
    margin-left: 0;
    padding-left: 14px; 
  }

  #about .about__list li{
    font-size: 1.25em;
  }

  #about .about__note{
    text-align: center;
    left: 12px;
    right: auto;
    max-width: calc(100% - 24px);
  }
}

@media (min-width: 601px) and (max-width: 900px){
  #about{
    font-size: 1.1rem;
    padding-bottom: 92px;
    --about-gutter: clamp(14px, 4vw, 48px);
  }

  #about .subtitle{ font-size: 22px; }

  #about .about__note{
    font-size: 14px;
    left: 16px;
    right: 16px;
    width: auto;
  }
}

@media (min-width: 1600px){
  #about{
    font-size: 1.2rem;

    --about-gutter: 200px;        /* больше расстояние от края */
    --about-shift: -360px;        /* сильнее увод влево */
    --about-list-indent: 72px;    /* дыхание перед списком */
    padding-bottom: 160px;
  }

  #about .about__directions{
    gap: 36px;                    /* воздух между блоками */
  }

  #about .about__title{
    margin-bottom: 48px;        
    font-size: 68px;
  }

  #about .subtitle{
    font-size: 56px;
    margin-bottom: 26px;
    letter-spacing: 0.03em;     
  }

  #about .about__list{
    margin-top: 8px;
    padding-left: 28px;
  }

  #about .about__list li{
    display: block;           
  }

  #about .about__list li a{
    display: flex;            
    align-items: flex-start;
    gap: 14px;               
    text-decoration: none;
  }

  #about .about__list li,
  #about .about__list li a{
    white-space: nowrap;
  }

  #about .about__note{
    left: 48px;
    right: 48px;
    font-size: 36px;
    padding: 28px 22px;            /* воздух внутри */
    bottom: 0px;
  }
}


@media (max-width: 1440px){
  #about{
    --about-gutter: 48px;
    --about-shift: -20px;
  }
}

@media (max-width: 1280px){
  #about{
    --about-gutter: 22px;
    --about-shift: 0px;
    --about-list-indent: 18px;
  }
}  
                                              /* ===== PRODUCT ===== */
.product{
  --pt-shift: 0px;
  --pt-list-extra: -18px;
  --pt-list-shift: 0px;
  --pt-text-shift: 0px;
  --pt-block-shift: 0px;  
}

.product__grid.product__grid--topTitle{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto 1fr;
  gap: 18px 28px;
  padding: 18px;
  align-items: start;
  transform: translateX(var(--pt-block-shift));
}

.product__grid--topTitle .product__title{
  grid-column: 1 / -1;
  grid-row: 1;

  margin: 0 auto;
  max-width: 72ch;
  text-wrap: balance;

  color:#000;
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(22px, 1.9vw, 42px);
  text-align: center;
  text-transform: uppercase;

  --pt-shift: 0px;
  transform: translateX(var(--pt-shift));
}

.product__title{
  text-align: center;
}

.product__grid--topTitle .product__title,
.product__grid--topTitle .product__text{
  transform: translateX(var(--pt-text-shift));
}


.product__title span{
  display: block;
}

.product__title .line-1{
  max-width: 42ch;    
  margin: 0 auto 6px;
}

.product__title .line-2{
  max-width: 580ch;   
  margin: 0 auto;
}


.product__grid--topTitle .product__text{
  grid-column: 1;
  grid-row: 2;

  translate: var(--pt-list-shift) 0;
}

.product__grid--topTitle .product__list{
  margin: 12px 0 0;
  padding-left: 22px;
}

.product__grid--topTitle .product__list li{
  color:#000;
  line-height: 1.6;
  font-size: clamp(20px, 1.9vw, 36px)  !important;
}

.product__grid--topTitle .product__media{
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.product__grid--topTitle .imgFrame{
  max-height: 300px;
  aspect-ratio: 16 / 9;
}
.product__grid--topTitle .imgFrame img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (min-width: 901px) {
  #scrap-metal .product__list li{
    font-size: clamp(18px, 1.5vw, 30px) !important;
  }
}
                                                    /*  ADAPTIVE  */
@media (min-width: 1024px) and (max-width: 1599px){
  .product{
    --pt-block-shift: 60px;   
  }

  .product__grid.product__grid--topTitle{
    padding-top: 26px;    
    padding-bottom: 28px; 
    gap: 22px 22px;       
  }

  .product__grid--topTitle .product__title{
    margin-bottom: 16px;   
  }

  .product__grid--topTitle .product__list{
    margin-top: 18px;     
  }

  .product__grid--topTitle .product__list li{
    line-height: 2;    
  }
}


@media (min-width: 1600px){
  .product{
    --pt-text-shift: -100px; 
  }

  .product__grid.product__grid--topTitle{
    padding: clamp(28px, 2.2vw, 44px);
    gap: clamp(22px, 1.8vw, 32px) clamp(34px, 2.4vw, 56px);
  }

  .product__grid--topTitle .product__title{
    max-width: 110ch;
  }

  .product__title .line-1,
  .product__title .line-2{
    max-width: none;
    white-space: nowrap;
  }

  .product__grid--topTitle .product__text{
    padding-top: clamp(4px, .6vw, 12px);
  }

  .product__grid--topTitle .product__list{
    margin-top: clamp(18px, 1.4vw, 28px);
    padding-left: clamp(26px, 1.6vw, 36px);
  }

  .product__grid--topTitle .product__list li{
    font-size: clamp(26px, 1.7vw, 40px) !important;
    line-height: 1.75;
  }

  .product__grid--topTitle .product__media{
    padding-top: clamp(6px, .8vw, 16px);
  }

  .product__grid--topTitle .imgFrame{
    max-height: clamp(400px, 24vw, 560px); 
    overflow: hidden;                   
  }

  .product__grid--topTitle .imgFrame img{
    transform: scale(1.04);              
    transform-origin: center;
  }
}

@media (max-width: 900px){
  .product__grid.product__grid--topTitle{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .product__grid--topTitle .product__title{
    grid-column: 1;
    grid-row: 1;
    transform: none;     
    text-align: center;
  }

  .product__grid--topTitle .product__text{
    grid-column: 1;
    grid-row: 2;
  }

  .product__grid--topTitle .product__media{
    grid-column: 1;
    grid-row: 3;
    margin-top: 14px;
  }
  .product__grid--topTitle .product__list li{
    font-size: 16px !important;
    line-height: 1.55;
  }
}

@media (max-width: 600px){
  .product__grid--topTitle .imgFrame{
    max-width: 92%;
    margin: 0 auto;
    border-radius: 14px;
  }
}

                                        /* Product №2 */
.product--rebar{
  --pt-shift: 0px;        
  --pt-list-shift: 0px;    
}

.product__grid.product__grid--twoPhotos{
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: auto 1fr;
  gap: 18px 28px;
  padding: 18px;
  align-items: start;
}

.product__grid--twoPhotos .product__title{
  grid-column: 1 / -1;
  grid-row: 1;

  margin: 0 auto;
  max-width: 60ch;
  text-wrap: balance;

  color:#000;
  font-weight: 900;
  line-height: 1.12;
  font-size: clamp(22px, 1.9vw, 42px);
  text-align: left;
  text-transform: uppercase;

  translate: var(--pt-shift) 0;
}

.product__grid--twoPhotos .product__text{
  grid-column: 1;
  grid-row: 2;
  min-width: 0;

  translate: var(--pt-list-shift) 0;
}

.product__grid--twoPhotos .product__list{
  margin: 10px 0 0;
  padding-left: 22px;
}

.product__grid--twoPhotos .product__list li{
  color:#000;
  line-height: 1.55;
  font-weight: 500;
  font-size: clamp(18px, 1.4vw, 28px);
}

.product__grid--twoPhotos .product__media--stack{
  grid-column: 2;
  grid-row: 2;

  display: grid;
  grid-auto-rows: max-content;
  gap: 14px;

  align-self: start;
  justify-items: end;         
}

.product__grid--twoPhotos .imgFrame{
  width: 380px;
  height: clamp(170px, 14vw, 255px); 
  overflow: hidden;     
  overflow: hidden;
}

.product__grid--twoPhotos .imgFrame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.product__grid--twoPhotos .imgFrame--top{ aspect-ratio: 16 / 9; }
.product__grid--twoPhotos .imgFrame--bottom{ aspect-ratio: 16 / 10; }

                                                /*  ADAPTIVE  */
@media (min-width: 1024px) and (max-width: 1599px){
  .product--rebar{
    --list-font-size:24px;
    --pt-list-shift: 60px;  
    --pt-shift: -200px;
  }
  .product__grid--twoPhotos .product__list li{
  color: #000;
  font-weight: 500;

  font-size: var(--list-font-size);
  line-height: 1.35;
}

}

@media (min-width: 1600px){
  .product--rebar{
    --pt-shift: -170px;    
    --pt-list-shift: -70px;
  }
}

@media (max-width: 900px){
  /* сетка блока */
  .product__grid.product__grid--twoPhotos{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 16px;
    gap: 14px;
  }

  .product__grid--twoPhotos .product__title{
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    max-width: 100%;
    text-align: center;
  }

  .product__grid--twoPhotos .product__text{
    grid-column: 1;
    grid-row: 2;
    translate: 0 0;
  }

  .product__grid--twoPhotos .product__media--stack{
    grid-column: 1;
    grid-row: 3;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    justify-items: center;
  }

  .product__grid--twoPhotos .imgFrame{
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .product__grid--twoPhotos .product__list{
    padding-left: 18px;
    margin-top: 8px;
  }
}

@media (max-width: 600px){
  .product__grid--twoPhotos .product__list li{
    font-size: 15px;
    line-height: 1.45;
  }
}

@media (max-width: 940px){
  .hero__grid{grid-template-columns: 1fr}
  .directions{grid-template-columns: 1fr}
  .product__grid{grid-template-columns: 1fr}
  .product__grid--reverse{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
}
                                            /* EQUIP PROMO */
.equipPromo__title{
  margin: 28px auto 36px;
  margin-bottom: 100px;
  padding: 14px 28px;

  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 40px);
  line-height: 1.15;
  letter-spacing: .04em;

  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.equipPromo__stage{
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 420px;
  margin: 0 auto;
}

.equipPromo__img{
  position: absolute;
  width: 550px;
  height: 350px;
  overflow: hidden;

  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.equipPromo__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.equipPromo__img--left{
  left: -190px;
  top: -90px;
  z-index: 1;
}

.equipPromo__img--mid{
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
}

.equipPromo__img--right{
  right: -180px;
  top: 90px;
  z-index: 3;
}


@media (max-width: 1800px){
  .equipPromo__stage{
    max-width: 1000px;
    height: 360px;
  }

  .equipPromo__img{
    width: 430px;
    height: 265px;
  }

  .equipPromo__img--left{
    left: -130px;
    top: -70px;
  }

  .equipPromo__img--mid{
    top: 8px;
  }

  .equipPromo__img--right{
    right: -130px;
    top: 70px;
  }

  .equipPromo__title{
    font-size: clamp(20px, 2.1vw, 34px);
    margin-bottom: 80px;
  }
}

@media (min-width: 1200px){
  .equipPromo{
    padding-bottom: 40px;
  }
}

@media (max-width: 900px){
  .equipPromo__stage{
    max-width: 92%;
    height: 320px;
  }

  .equipPromo__img{
    width: 360px;
    height: 230px;
  }

  .equipPromo__img--left{
    left: -70px;
    top: -55px;
  }

  .equipPromo__img--mid{
    top: 12px;
  }

  .equipPromo__img--right{
    right: -70px;
    top: 65px;
  }

  .equipPromo__title{
    font-size: 22px;
    padding: 12px 18px;
    margin-bottom: 60px;
  }
}

@media (max-width: 600px){
  .equipPromo__title{
    font-size: 18px;
    line-height: 1.2;
    padding: 10px 14px;
    margin: 18px auto 18px;
    margin-bottom: 18px;
  }

  .equipPromo__stage{
    max-width: 92%;
    height: auto;            
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 auto;
  }

  .equipPromo__img{
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;

    width: 100%;
    height: 160px;           
    border-radius: 14px;
  }

  .equipPromo__img--left{  grid-column: 1; z-index: 1; }
  .equipPromo__img--mid{   grid-column: 2; z-index: 1; }

  .equipPromo__img--right{
    grid-column: 1 / -1;
    height: 180px;            
    z-index: 1;
  }
}

                                        /* ====== Big hub block ====== */
.productsHub{
  position: relative;
  overflow: hidden;
}
.productsHub::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("/assets/img/backround.webp") center/cover no-repeat;
  z-index: 0;
}

.productsHub .container,
.productsHub .sectionInner{
  position: relative;
  z-index: 1;
}

.productsHub__title{
  font-weight: 900;
  padding-top: 10px;
}
.productsHub__title::after{
  display: none;
}

.productsHub__stack{
  width: 100%;
  max-width: 1900px;           
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 32px;                      
  padding: 0 clamp(14px, 2vw, 44px);
}

.productsHub__stack .hubWrap{
  width: min(98%, 1760px);        
  border-radius: 28px;
}

.productsHub__stack .hubWrap:nth-child(1),
.productsHub__stack .hubWrap:nth-child(3){
  margin-left: 0;
  margin-right: auto;
  transform: none;
}
.productsHub__stack .hubWrap:nth-child(2){
  margin-left: auto;
  margin-right: 0;
  transform: none;
}

.hubCard{
  border-radius: 28px;

  background: url(/assets/img/backround.webp);

  backdrop-filter: blur(8px);

  box-shadow:
    0 28px 80px rgba(0,0,0,.45),
    0 2px 0 rgba(255,255,255,.28) inset;

  overflow: hidden;
}

.hubCard__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  align-items: stretch;
}

.hubCard__text{
  padding: 36px 42px;            
  min-width: 0;
}

.hubCard__h{
  margin: 0 0 14px;
  font-weight: 900;
  font-size: 30px;                
  line-height: 1.2;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  padding-top: 20px;
}

.hubCard__p{
  margin: 0 0 14px;
  color: rgba(0,0,0,.80);
  line-height: 1.55;
  font-size: 17px;
}

.hubCard .list{
  margin: 0;
  padding-left: 22px;             
}
.hubCard .list li{
  color: #000;
  line-height: 1.65;
  font-size: 18px;
}

.hubCard__media{
  padding: 0;
  display:flex;
  align-items: stretch;
}

.hubCard__media .imgFrame{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: rgba(0,0,0,.10);
}
.hubCard__media .imgFrame img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
}

.hubCard--reverse .hubCard__grid{
  grid-template-columns: .9fr 1.1fr;
}
.hubCard--reverse .hubCard__text{ order: 2; }
.hubCard--reverse .hubCard__media{ order: 1; }

.hubCard--equip{
  padding: 18px 22px 24px;
}

.hubCard__equipTitle{
  margin: 8px auto 18px;
  padding: 12px 16px;
  width: fit-content;
  max-width: 92%;

  text-align: center;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #000;
}

.hubCard__equipRow{
  position: relative;
  height: 300px;                 
}

.equipTile{
  position: absolute;
  width: 420px;                  
  height: 260px;

  border-radius: 16px;
  overflow: hidden;

  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
}
.equipTile img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.hubWrap--equip .equipTile:nth-child(1){ left: 0;   top: 0;   z-index: 1; }
.hubWrap--equip .equipTile:nth-child(2){ left: 50%; top: 22px; transform: translateX(-50%); z-index: 2; }
.hubWrap--equip .equipTile:nth-child(3){ right: 0;  top: 44px; z-index: 3; }

.productsHub__stack .hubWrap--equip{
  margin-left: 0 !important;
  margin-right: auto !important;
  transform: translateX(-180px) !important; 
  width: min(98%, 1750px) !important; 
}

.productsHub__stack .hubWrap--equip .hubCard{
  margin: 0 !important;
}
                                                /* ADAPTIVE */
@media (min-width: 1600px){
  .productsHub__stack{
    max-width: 1920px;
    padding: 0 40px;                
  }

  .productsHub__stack .hubWrap{
    width: min(100%, 1880px);        
  }

  .productsHub__stack .hubWrap:nth-child(1),
  .productsHub__stack .hubWrap:nth-child(3){
    transform: translateX(-180px);   
  }

  .productsHub__stack .hubWrap:nth-child(2){
    transform: translateX(180px);   
  }

    .productsHub__stack .hubWrap:nth-child(2) .hubCard__grid{
    grid-template-columns: 0.76fr 1.24fr; 
  }
}

@media (min-width: 1200px) and (max-width: 1599px){
  .productsHub__stack{
    max-width: 1500px;
    padding: 0 26px;
    padding-bottom: 30px;
  }

  .productsHub__stack .hubWrap{
    width: min(96%, 1380px);
  }

  .hubWrap--equip .equipTile:nth-child(1){ left: 10%;   top: 0;   z-index: 1; }
  .hubWrap--equip .equipTile:nth-child(2){ left: 50%; top: 22px; transform: translateX(-50%); z-index: 2; }
  .hubWrap--equip .equipTile:nth-child(3){ right: 10%;  top: 44px; z-index: 3; }

  .productsHub__stack .hubWrap:nth-child(1),
  .productsHub__stack .hubWrap:nth-child(3){
    transform: translateX(-80px);
  }

  .productsHub__stack .hubWrap:nth-child(2){
    transform: translateX(80px);
  }

  .productsHub__stack .hubWrap--equip{
    transform: translateX(-80px) !important; 
    width: min(96%, 1380px) !important;
  }

  .hubCard__equipRow{ height: 250px; }

  .equipTile{
    width: 360px;
    height: 220px;
  }
}

@media (max-width: 980px){
  .productsHub__stack .hubWrap--equip{
    transform: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hubCard__grid{
    grid-template-columns:1fr;
  }

  .hubCard__text{
    padding:20px 16px;
  }

  .hubCard__h{
    font-size:20px;         
    line-height:1.25;
    margin-bottom:10px;
  }

  .hubCard__p{
    font-size:15px;         
    line-height:1.55;
    margin-bottom:12px;
  }

  .hubCard .list{
    padding-left:18px;
  }

  .hubCard .list li{
    font-size:15px;         
    line-height:1.5;
    margin-bottom:6px;
  }

 /* 2-й блок */
  .hubCard--reverse .hubCard__grid{
    display: flex !important;
    flex-direction: column !important;
  }

  .hubCard--reverse .hubCard__text{
    order: 1 !important;
  }

  .hubCard--reverse .hubCard__media{
    order: 2 !important;
    width: 100%;
    margin-top: 10px;      
    padding: 0 16px 8px;         
    box-sizing: border-box;
  }

  .hubCard--reverse .hubCard__media--double{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0;               
  }

  .hubCard--reverse .hubCard__media--double .imgFrame{
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
  }

  .hubCard--reverse .hubCard__media--double img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* 3 блок */
  .hubCard__equipRow{
    position:relative;
    height:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .equipTile{
    position:relative;
    width:100%;
    height:150px;
    transform:none!important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
  }

  .hubCard__equipRow .equipTile:nth-child(1),
  .hubCard__equipRow .equipTile:nth-child(2),
  .hubCard__equipRow .equipTile--wide{
    height: 150px !important;
  }

  .equipTile:nth-child(3){
    grid-column:1 / -1;
    height:175px;
  }

  .productsHub__title,
  .productsHub h2{
    font-size: 28px;         
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .hubCard__h{
    font-size: 18px;         
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .hubCard__p{
    font-size: 15px;
    line-height: 1.55;
  }

  .hubCard .list li{
    font-size: 14.5px;
    line-height: 1.5;
  }
}

@media (max-width: 560px){
  .hubCard__media{ min-height: 210px; }
  .equipTile{ height: 170px; }
  .equipTile--wide{ height: 200px; }
}

                                                /*  SECTION BAR  */
:root{
  --sb-left: clamp(18px, 2vw, 80px); 
  --sb-shift-desktop: clamp(0px, 4vw, 90px);
  --topbar-h: 56px;
  --sb-font: clamp(14px, 1.1vw, 18px);
}

@media (min-width: 1200px){
  :root{
    --sb-font: clamp(16px, 3vw, 28px);
  }

  .sectionBar{
  display: grid;
  align-items: center;

  grid-template-columns: 1fr 160px 1fr;

  column-gap: clamp(14px, 2vw, 26px);
  }

  .sectionBar__right{
  justify-self: end;       
  text-align: left;       
  font-size: 0.7em !important;

  max-width: 420px;        
  width: max-content;     
  margin-right: 100px;
  }

  .sectionBar__center{ margin-left: 0; }

}

.sectionBar{
  display:grid;
  align-items:center;

  grid-template-columns: minmax(360px, 1fr) 160px minmax(260px, 1fr);
  column-gap: clamp(14px, 2vw, 26px);

  padding: clamp(9px, 1vw, 14px) clamp(16px, 2vw, 28px); 
  background: rgba(51,49,49);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);

  overflow:hidden;
  font-size: var(--sb-font);
}

[data-sectionbar]{
  position: sticky;
  top: var(--topbar-h);
  z-index: 49;         
}

[data-sectionbar] .sectionBar{
  border-top: 0;       
}

[data-sectionbar] .sectionBar__left {
  gap: clamp(16px, 2.3vw, 38px);
}
[data-sectionbar] .sectionBar__center,
[data-sectionbar] .sectionBar__right{
  opacity: 0;
  transform: translateX(-12px);
  transition: transform .6s cubic-bezier(.2,.9,.2,1), opacity .55s cubic-bezier(.2,.9,.2,1);
}

.sectionBar--visible{
  opacity: 1;
  transform: none;
}

.sectionBar__left{ opacity:0; transform: translateX(-12px); }
.sectionBar__center{ opacity:0; transform: translateX(-12px); }
.sectionBar__right{ opacity:0; transform: translateX(-12px); }

.sectionBar--visible .sectionBar__left{ opacity:1; transform: translateX(0); transition: transform .6s cubic-bezier(.2,.9,.2,1), opacity .55s cubic-bezier(.2,.9,.2,1); transition-delay: calc(var(--sb-delay, 0s) + 0s); }
.sectionBar--visible .sectionBar__center{ opacity:1; transform: translateX(0); transition: transform .6s cubic-bezier(.2,.9,.2,1), opacity .55s cubic-bezier(.2,.9,.2,1); transition-delay: calc(var(--sb-delay, 0s) + 0.08s); }
.sectionBar--visible .sectionBar__right{ opacity:1; transform: translateX(0); transition: transform .6s cubic-bezier(.2,.9,.2,1), opacity .55s cubic-bezier(.2,.9,.2,1); transition-delay: calc(var(--sb-delay, 0s) + 0.16s); }

[data-sectionbar]{ width:100%; }

[data-sectionbar][data-variant="full"] .sectionBar{
  width: 100%;
  max-width: none;
  margin: 0;
}
                                                    /* ===== LEFT ===== */
.sectionBar__left{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: clamp(18px, 2.6vw, 44px);

  padding-left: clamp(18px, 2vw, 90px);
}

.sectionBar__name{
  font-weight: 600;
  letter-spacing: .06em;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.sectionBar__lines{
  padding-top: 6px;
  display:flex;
  flex-direction:column;
  gap: clamp(8px, 1vw, 14px);
}
.sectionBar__lines span{
  display:block;
  height: clamp(6px, .6vw, 10px);
  border-radius: 999px;
  background: rgba(255,155,47,.95);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.sectionBar__lines span:first-child{ width: clamp(240px, 10vw, 190px); }
.sectionBar__lines span:last-child { width: clamp(300px, 14vw, 240px); opacity:.9; }


                                                /* ===== LOGO ===== */
.sectionBar__center{
  width: clamp(88px, 7.6vw, 132px); 
  height: clamp(88px, 7.6vw, 132px); 
  position: relative;

  justify-self: center;
  margin-left: clamp(-22px, -1.2vw, -10px);
}

.sectionBar__center .tile{
  position:absolute;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(176,131,84), rgba(116,87,53));
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  transform: skewX(-12deg);
}

.sectionBar__center .t1{  left: clamp(10px, 1vw, 18px);  top:  clamp(2px, .5vw, 4px);  width: clamp(46px, 4.5vw, 60px);  height: clamp(46px, 4.5vw, 60px);}
.sectionBar__center .t2{  left: clamp(64px, 6vw, 82px);  top:  clamp(18px, 1.8vw, 26px);  width: clamp(28px, 2.8vw, 36px);  height: clamp(28px, 2.8vw, 36px); opacity:.95;}
.sectionBar__center .t3{ left: clamp(6px, .8vw, 11px); top: clamp(56px, 5.2vw, 72px); width: clamp(28px, 2.8vw, 36px); height: clamp(28px, 2.8vw, 36px); opacity:.95;}
.sectionBar__center .t4{ left: clamp(44px, 4.2vw, 58px); top: clamp(56px, 5.2vw, 72px); width: clamp(46px, 4.5vw, 60px); height: clamp(46px, 4.5vw, 60px);}


                                                /* ===== RIGHT ===== */
.sectionBar__right{
  display:flex;
  flex-direction:column;
  gap: clamp(5px, .7vw, 10px);

  justify-self: end;       
  align-items: flex-start; 
  text-align: left;

  font-size: 0.8em;
  line-height: 1.1;
  color:#fff;

  min-width: 0;     
}

.sectionBar__row{
  display:flex;
  gap: 10px;
  align-items: baseline;
  justify-content: flex-start;
}
.sectionBar__row span{ font-weight: 600; opacity:.95; }
.sectionBar__row b{ font-weight: 600; opacity:.95;}

.sectionBar__addr{
  max-width: clamp(260px, 24vw, 420px);
  margin-top: 1px;

  font-weight: 600;
  line-height: 1.25;
  opacity:.95;

  text-align:left;
  white-space: normal;

  display:-webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow:hidden;
}

.section:has([data-sectionbar][data-variant="full"]) {
  padding-top: 0;
}



                                            /*  ADAPTIVE  */
@media (min-width: 900px){
  .sectionBar{
    padding-right: clamp(16px, 2vw, 28px);
  }

  .sectionBar__addr{
    display: flex;
    flex-direction: column;
    gap: 2px;

    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: unset;
  }

  .sectionBar__addr .addr-line{
    display:block;
    white-space: nowrap;
  }
}

@media (min-width: 1600px){
  .sectionBar{
    padding-right: clamp(16px, 2vw, 28px);
  }

  .sectionBar__right{  
  font-size: 28px;
  margin-right: 180px;
  }
}


@media (max-width: 600px){
  [data-sectionbar]{
    width: 100%;
    left: auto;
    transform: none;
  }

  .sectionBar{
    grid-template-columns: minmax(150px, 1fr) 64px minmax(150px, 1fr);
    column-gap: 10px;

    padding: 10px 12px;
    border-radius: 0;           
    font-size: 12px;             
  }

  /* LEFT */
  .sectionBar__left{
    gap: 10px;
    padding-left: 0;           
    min-width: 0;
  }

  .sectionBar__name{
    font-size: 14px;
    letter-spacing: .05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;      
  }

  .sectionBar__lines{
    padding-top: 2px;
    gap: 6px;
  }

  .sectionBar__lines span{
    height: 5px;
  }

  .sectionBar__lines span:first-child{ width: 110px; }
  .sectionBar__lines span:last-child { width: 145px; }

  .sectionBar__center{
    width: 56px;
    height: 56px;
    margin-left: 0;
  }

  .sectionBar__center .tile{
    border-radius: 5px;
  }

  .sectionBar__center .t1{ left: 8px;  top: 2px;  width: 26px; height: 26px; }
  .sectionBar__center .t2{ left: 36px; top: 10px; width: 16px; height: 16px; }
  .sectionBar__center .t3{ left: 6px;  top: 32px; width: 16px; height: 16px; }
  .sectionBar__center .t4{ left: 24px; top: 32px; width: 26px; height: 26px; }

  /* RIGHT */
  .sectionBar__right{
    gap: 6px;
    font-size: 10px;
    line-height: 1.15;
    min-width: 0;
  }

  .sectionBar__row{
    gap: 6px;
    flex-wrap: wrap;              
  }

  .sectionBar__row span,
  .sectionBar__row b{
    font-weight: 600;
  }

  .sectionBar__addr{
    max-width: 100%;
    font-size: 10px;
    line-height: 1.2;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

@media (max-width: 360px){
  .sectionBar{
    grid-template-columns: minmax(130px, 1fr) 52px minmax(130px, 1fr);
    column-gap: 8px;
    padding: 9px 10px;
  }

  .sectionBar__name{ font-size: 13px; }

  .sectionBar__center{
    width: 50px;
    height: 50px;
  }

  .sectionBar__lines span:first-child{ width: 95px; }
  .sectionBar__lines span:last-child { width: 125px; }

  .sectionBar__addr{ font-size: 10px; }
}

                                                  /*  CONTACTS */
.contactMini{
  position: relative;
  overflow: hidden;
  width: min(520px, 92vw);
  margin: 0 auto;
  padding: 14px;
  border-radius: 26px;

  background: rgba(255,245,220,.40);
  border: 2px solid rgba(255,255,255,.75);

  box-shadow:
    0 80px 180px rgba(0,0,0,0.70),
    0 32px 84px rgba(0,0,0,0.40),
    0 8px 28px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,.8);

  backdrop-filter: blur(14px);
  text-align: center;
}

.contactMini::before{
  content:"";
  position:absolute;
  inset:-60px;
  pointer-events:none;
  z-index: 0;

  background:
    radial-gradient(420px 280px at 18% 16%,
      rgba(255,255,255,.55),
      rgba(255,255,255,.18) 40%,
      transparent 72%),
    linear-gradient(135deg,
      rgba(255,255,255,.20) 0%,
      transparent 48%);

  mix-blend-mode: screen;
  opacity: .75;
  filter: blur(1px);
}

.contactMini::after{
  content:"";
  position:absolute;
  inset:-80px;
  pointer-events:none;
  z-index: 0;

  background:
    radial-gradient(160px 120px at 26% 18%,
      rgba(255,255,255,.85),
      rgba(255,255,255,.25) 40%,
      transparent 70%),
    linear-gradient(120deg,
      transparent 35%,
      rgba(255,255,255,.18) 45%,
      rgba(255,255,255,.05) 52%,
      transparent 62%);

  mix-blend-mode: screen;
  opacity: .55;
  filter: blur(.6px);
}

.contactMini > *{
  position: relative;
  z-index: 1;
}

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

.contactMini__item + .contactMini__item{
  margin-top: 16px;
}

.contactMini__icon{
  width: 144px;        
  height: 128px;
  margin-right: -44px;

  display:grid;
  place-items:center;
  flex: 0 0 auto;

  position: relative;

  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );

  background: linear-gradient(135deg, #ffd35b, #ff9c1e);
  border: 2px solid rgba(255,255,255,.92);

  box-shadow:
    0 20px 36px rgba(0,0,0,.30),
    inset 0 2px 0 rgba(255,255,255,.65),
    inset 0 0 0 2px rgba(0,0,0,.12);

  color: #fff;
  z-index: 2;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .22s ease;
}

.contactMini__icon::after{
  content:"";
  position:absolute;
  inset: 8px;

  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );

  background: radial-gradient(circle at 28% 22%,
    rgba(255,255,255,.50),
    transparent 58%);
  pointer-events:none;
  opacity: .85;
}

.contactMini__icon svg{
  width: 74px;           
  height: 74px;
  display:block;

  transform: translateY(1px);

  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,.35))
    drop-shadow(0 2px 4px rgba(0,0,0,.22));
}

.contactMini__icon svg *{
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contactMini__row{
  flex: 1;
  padding: 18px 22px 20px 44px;
  border-radius: 20px;

  background: linear-gradient(
    180deg,
    rgba(255, 245, 235, .98),
    rgba(255, 236, 210, .90)
  );

  border: 1px solid rgba(0,0,0,.10);

  box-shadow:
    0 14px 28px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.95);

  transition: box-shadow .22s ease, transform .18s ease;

  font-weight: 900;
  font-size: clamp(20px, 1.6vw, 30px);
  letter-spacing: .01em;
  color: rgba(0,0,0,.85);
}

.contactMini__item:hover .contactMini__row{
  box-shadow:
    0 10px 30px rgba(255,155,47,0.32),
    0 18px 36px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,1);
  transform: translateY(-2px);
}

.contactMini__item:hover .contactMini__icon{
  transform: translateY(-2px);
  box-shadow:
    0 28px 48px rgba(0,0,0,0.46),
    0 10px 30px rgba(255,155,47,0.16),
    inset 0 2px 0 rgba(255,255,255,.65),
    inset 0 0 0 2px rgba(0,0,0,.12);
}

                                                    /* ADAPTIVE */
@media (max-width: 560px){
  .contactMini{
    width: min(420px, 90vw);
    margin: 0 auto;
    padding: 12px;
    border-radius: 22px;
  }

  .contactMini__item + .contactMini__item{
    margin-top: 12px;
  }

  .contactMini__icon{
    width: 104px;         
    height: 96px;         
    margin-right: -32px;  
  }

  .contactMini__icon svg{
    width: 52px;          
    height: 52px;
  }

  .contactMini__row{
    padding: 14px 18px 16px 40px; 
    border-radius: 18px;

    font-size: 18px;     
    letter-spacing: .005em;
  }

  .contactMini__item:hover .contactMini__row,
  .contactMini__item:hover .contactMini__icon{
    transform: translateY(-1px);
  }
}

@media (max-width: 380px){
  .contactMini__icon{
    width: 96px;
    height: 88px;
    margin-right: -28px;
  }

  .contactMini__icon svg{
    width: 46px;
    height: 46px;
  }

  .contactMini__row{
    font-size: 16.5px;
    padding: 12px 16px 14px 36px;
  }
}

.reveal{
  opacity: 0;
  transform: translateY(8px) scale(.997);
  transition: opacity .9s cubic-bezier(.2,.9,.2,1), transform .9s cubic-bezier(.2,.9,.2,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal--visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-reveal] > *{
  transform-origin: left center;
}
                                                        /* FOOTER */
.footerMini{
  position:relative;
  padding: 12px 0 0px;
  background: rgba(255,255,255,.22);
  border-top: 1px solid rgba(255,255,255,.35);
}

.footerMini__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  color: rgba(0,0,0,.65);
  font-weight:600;
  font-size: clamp(14px, 1.2vw, 26px);
}

                                                          /* ADAPTIVE */
@media (max-width: 980px){
  .topbar::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background: url("/assets/img/backround.webp") center/cover no-repeat;
  }

  .topbar__center,
  .nav{
    display:none !important;
  }

  .topbar__right{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .iconbtn{
    width:38px;
    height:38px;
    border-radius:12px;
    background: rgba(255,255,255,.88) !important;
    border:1px solid rgba(0,0,0,.14) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.95);
    color:#111 !important;
  }

  .burger{
    display:inline-flex !important;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    gap:4px;

    width:48px;
    height:44px;
    padding:10px;
    border-radius:12px;

    background: rgba(255,255,255,.88) !important;
    border:1px solid rgba(0,0,0,.14) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.95);
  }

  .burger span{
    display:block !important;
    width:24px !important;
    height:3px !important;
    background:#111 !important;
    border-radius:3px !important;
    margin:3px 0 !important;
    opacity:1 !important;
  }

  .mnav{
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top:1px solid rgba(0,0,0,.12);
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height .48s cubic-bezier(.2,.9,.2,1),
      padding .36s cubic-bezier(.2,.9,.2,1),
      opacity .36s ease,
      transform .36s cubic-bezier(.2,.9,.2,1);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .mnav.is-open{
    background-image: url("/assets/img/backround.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 0; 

    max-height: 720px;
    padding: 12px 18px 16px;

    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mnav__link{
    color:#111 !important;
    display: block !important;        
    margin: 8px auto !important;
    padding: 10px 16px !important;
    width: min(92%, 360px) !important;
    text-align: center !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;

    /* start slightly up and hidden */

    color: #000000 !important;
    transform: translateY(-6px);
    opacity: 0;
    transition: transform .34s cubic-bezier(.2,.9,.2,1), opacity .28s ease, background .18s ease;
  }

  .mnav.is-open .mnav__link{
    transform: translateY(0);
    opacity: 1;
  }

  .mnav.is-open .mnav__link:nth-child(1){ transition-delay: .06s; }
  .mnav.is-open .mnav__link:nth-child(2){ transition-delay: .10s; }
  .mnav.is-open .mnav__link:nth-child(3){ transition-delay: .14s; }
  .mnav.is-open .mnav__link:nth-child(4){ transition-delay: .18s; }

  button#burgerBtn.burger{
    display:inline-flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:0px !important;

    width:38px !important;
    height:38px !important;
    padding:10px !important;

    position:relative !important; 
    overflow:hidden !important;
  }

  button#burgerBtn.burger > span{
    display:block !important;
    flex:0 0 auto !important;

    width:24px !important;
    height:3px !important;
    margin:3px 0 !important;

    background-color:#000 !important; 
    border-radius:3px !important;
    opacity:1 !important;

    position:relative !important;
    z-index:2 !important;
  }
}

                                              /* DARK THEME */
html.dark{
  color-scheme: dark;

  --bg: #14181d;
  --bg2:#0f1317;

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);

  --gold: #ffbf4a;
  --goldSoft: rgba(255,191,74,.35);
  --goldLine: rgba(255,191,74,.55);

  --card: rgba(18,22,28,.78);
  --line: rgba(255,191,74,.22);

  --shadow: 0 28px 80px rgba(0,0,0,.55);
}

html.dark [data-bg]{
  background-image: none !important;
}

html.dark .topbar::before,
html.dark .topbar::after,
html.dark .productsHub::before,
html.dark .mnav.is-open{
  background-image: none !important;
  background: none !important;
}

html.dark .productsHub::before{
  display: none !important;
}

html.dark body{
  color: var(--text);

  background:
    radial-gradient(1100px 620px at 18% 12%, rgba(255,191,74,.22), transparent 62%),
    radial-gradient(820px 520px at 85% 0%, rgba(255,255,255,.05), transparent 58%),

    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='121' viewBox='0 0 140 121'%3E%3Cg fill='none' stroke='%23ffbf4a' stroke-opacity='0.65' stroke-width='2.4'%3E%3Cpath d='M35 2 L70 22 L70 60 L35 80 L0 60 L0 22 Z'/%3E%3Cpath d='M105 2 L140 22 L140 60 L105 80 L70 60 L70 22 Z'/%3E%3Cpath d='M70 60 L105 80 L105 118 L70 138 L35 118 L35 80 Z'/%3E%3C/g%3E%3C/svg%3E"),

    linear-gradient(180deg, var(--bg), var(--bg2));

  background-size:
    auto,
    auto,
    140px 121px,
    auto;

  background-attachment: fixed;
}

html.dark p,
html.dark li,
html.dark span,
html.dark .subtitle,
html.dark .note,
html.dark .product__text,
html.dark .hubCard__p{
  color: var(--muted);
}

html.dark .h2,
html.dark .h3,
html.dark .hubCard__h,
html.dark .product__title,
html.dark .equipPromo__title{
  color: var(--text) !important;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

html.dark .h2::after{
  background: rgba(255,255,255,.12) !important;
}

html.dark .topbar__center .nav__link,
html.dark #about .about__title,
html.dark .equipPromo__title,
html.dark .hubCard__h,
html.dark .hubCard__p,
html.dark .hubCard .list li,
html.dark .product__grid--topTitle .product__list li,
html.dark .product__grid--twoPhotos .product__list li,
html.dark .mnav__link,
html.dark .contactMini__row{
  color: var(--text) !important;
}

html.dark #about .about__list a,
html.dark #about .about__list a:visited,
html.dark #about .about__list a *{
  color: var(--text) !important;
}


                                                /* NAV / HEADER / MOBILE MENU   */
html.dark .topbar{
  background: rgba(18,22,28,.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

html.dark .nav__link{
  color: rgba(255,255,255,.75);
}
html.dark .nav__link:hover{
  color: var(--text);
  background: rgba(255,255,255,.04) !important;
}

html.dark .mnav__link{
  color: var(--text) !important;
  background: transparent !important;
}
html.dark .mnav__link:hover{
  background: rgba(255,255,255,.04) !important;
}

html.dark .mnav.is-open{
  background: var(--card) !important;
  border-top: 1px solid var(--line) !important;
  pointer-events: auto !important;
}

html.dark .hubCard,
html.dark .contactMini,
html.dark .imgFrame,
html.dark .equipTile,
html.dark .sectionInner{
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

                                                  /* ABOUT   */
html.dark #about .sectionInner{
  max-width: 1400px;
  margin: 0 auto;
}

html.dark #about .subtitle{
  color: var(--text) !important;
  text-align: left;
}

html.dark #about .directions{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 20px;                
  align-items: start;
  justify-content: center;
}

html.dark #about .directions__left,
html.dark #about .directions__right{
  min-width: 0;
}

html.dark #about .directions__right{
  justify-self: start;
  width: 100%;
}

html.dark #about .directions.about__directions{
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 14px;                 

  box-sizing: border-box;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;

  padding: 20px 22px;       
  border-radius: 24px;      

  background:
    radial-gradient(1000px 460px at 50% 0%,
      rgba(255,191,74,.12), transparent 62%),
    rgba(18,22,28,.28);

  border: 1px solid rgba(255,191,74,.18);
  box-shadow:
    0 26px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 0 1px rgba(255,191,74,.06);

  backdrop-filter: blur(10px);
}

html.dark #about .directions__left{
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  text-align: center;

  padding: 12px 14px;      
  border-radius: 18px;      
  background: rgba(18,22,28,.18);
  border: 1px solid rgba(255,255,255,.06);
}

html.dark #about .about__list{
  display: inline-block;
  text-align: left;

  margin: 6px 0 0;         
  padding: 0;

  line-height: 1.22;        
  max-width: 1200px;

  position: relative;
  z-index: 1;
}

html.dark #about .about__list li{
  margin: 6px 0;            
}

html.dark #about .about__list a,
html.dark #about .about__list a:visited{
  color: var(--text) !important;
}

html.dark #about .about__list a{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 6px 10px;         
  border-radius: 12px;      
}
html.dark #about .about__list a:hover{
  background: rgba(255,191,74,.08);
  box-shadow: inset 0 0 0 1px rgba(255,191,74,.14);
}

html.dark #about .directions__right{
  width: 100%;
  display: flex;
  justify-content: center;
  position: static !important;
}

html.dark #about .about__note{
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;

  padding: 12px 16px;       
  margin: 6px 0 0 !important;
  border-radius: 16px;     

  background:
    linear-gradient(180deg,
      rgba(255,255,255,.06),
      rgba(255,255,255,.02)),
    rgba(18,22,28,.72);

  border: 1px solid rgba(255,191,74,.26);
  box-shadow:
    0 20px 60px rgba(0,0,0,.50),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 24px rgba(255,191,74,.10);

  backdrop-filter: blur(12px);

  color: var(--text) !important;
  text-align: center;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  position: static !important;
  float: none !important;
  inset: auto !important;
  transform: none !important;
}

html.dark #about .about__note,
html.dark #about .about__note *{
  color: var(--text) !important;
}

                                                          /* ADAPTIVE */
@media (min-width: 1600px){

  html.dark #about{
    --about-shift: 0px !important;
    --about-list-indent: 0px !important;
  }

  html.dark #about > .container{
    max-width: 1600px !important;
    width: 100% !important;
  }

  html.dark #about .sectionInner{
    max-width: 1920px !important;
    width: 100% !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  html.dark #about .directions.about__directions{
    max-width: 1920px !important;
    margin: 0 auto !important;
  }

  html.dark #about .directions__left{
    width: 100% !important;
    max-width: 1700px !important;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    transform: none !important;
  }

  html.dark #about .about__list{
    max-width: 1500px !important;

    margin-left: 0 !important;
    margin-right: auto !important;

    transform: translateX(-120px);

    padding-left: 0 !important;
  }

  html.dark #about .about__list a{
    display: flex !important;
    align-items: flex-start !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  html.dark #about .about__list a .dot{
    flex: 0 0 auto !important;
    margin-top: .35em !important;
  }

  html.dark #about .about__note{
    max-width: 1600px !important;
    margin: 0 auto !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
}

@media (max-width: 520px){
  html.dark #about .directions.about__directions{
    padding: 22px 16px;
    border-radius: 22px;
  }

  html.dark #about .directions__left{
    padding: 12px 12px;
  }

  html.dark #about .about__note{
    white-space: normal;
  }
}

html.dark .productsHub::before{
  display:none !important;
  background:none !important;
}

html.dark .productsHub .sectionInner{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

                                                      /* WIDE LAYOUT */
@media (min-width: 1600px){

  html.dark section.section > .container{
    max-width: 1800px !important;
    width: min(1800px, 100%) !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  html.dark header.topbar .container{
    max-width: 1400px !important;
  }

  html.dark .sectionInner{
    max-width: 1800px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html.dark #about .directions.about__directions{
    max-width: 1700px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html.dark #about .directions__left{
    margin-left: 0 !important;
    margin-right: auto !important;

    max-width: 1450px !important;
    width: 100% !important;

    padding-left: 40px !important;
    padding-right: 24px !important;
  }

  html.dark #about .about__list{
    margin-left: 0 !important;
    margin-right: auto !important;
    max-width: 1350px !important;
    padding-left: 0 !important;
  }

  html.dark .product__grid{
    max-width: 1700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html.dark .product__title{
    max-width: 1700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html.dark .product__text .product__list{
    margin-left: clamp(80px, 1.8vw, 82px) !important;
  }
  
  html.dark #rebar .product__text{
    padding-left: clamp(80px, 1.8vw, 82px);
  }
}
                                                            /* 3 PHOTO */
html.dark #equipment .equipPromo__stage{
  min-height: 0;          
  padding-bottom: 0;     
}

@media (min-width: 1600px){
  html.dark #equipment .equipPromo__stage{
    min-height: 0;
    padding-bottom: 0;
  }
}

                                                            /*    DARK: ProductsHub__stack     */
html.dark .productsHub__stack{
  display:flex !important;
  flex-direction:column !important;
  gap: 32px !important;

  width: 100% !important;
  max-width: 1900px !important;
  margin: 0 auto !important;

  padding: 0 clamp(14px, 2vw, 44px) !important;
}

html.dark .productsHub__stack .hubWrap{
  width: min(98%, 1760px) !important;
  border-radius: 28px;
  margin-left: 0;
  margin-right: 0;
}

html.dark .productsHub__stack .hubWrap:nth-child(1),
html.dark .productsHub__stack .hubWrap:nth-child(3){
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* ПРАВАЯ */
html.dark .productsHub__stack .hubWrap:nth-child(2){
  margin-left: auto !important;
  margin-right: 0 !important;
}

                                                        /*    DARK: hubCard    */
html.dark .hubCard{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(18,22,28,.72) !important;

  border: 1px solid rgba(255,191,74,.22) !important;

  box-shadow:
    0 28px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(255,191,74,.06) !important;

  backdrop-filter: blur(12px) !important;
}

html.dark .hubCard__h{
  color: var(--text) !important;
}
html.dark .hubCard__p{
  color: var(--muted) !important;
}
html.dark .hubCard .list li{
  color: var(--text) !important;
}

                                                          /* ADAPTIVE */
@media (min-width: 1200px){
  html.dark .hubWrap--equip .hubCard__equipRow{
    position: relative;
    height: 320px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-bottom: 20px;
  }

  html.dark .hubWrap--equip .equipTile{
    position: relative;
    transition: transform .35s ease;
  }

  html.dark .hubWrap--equip .equipTile:nth-child(1){
    transform: translateX(70px) translateY(-30px);
    z-index: 2;
  }

  html.dark .hubWrap--equip .equipTile:nth-child(2){
    transform: translateX(-760px) translateY(-16px);
    z-index: 3;
  }

  html.dark .hubWrap--equip .equipTile:nth-child(3){
    transform: translateX(10px) translateY(14px);
    z-index: 4;
  }
}


@media (min-width: 1600px){
  html.dark #equipment .sectionInner{
    padding-left: 280px !important;
    padding-right: 220px !important;
    padding-bottom: 40px !important;
    overflow: visible !important;
    box-sizing: border-box;
  }

  html.dark #equipment .equipPromo__stage{
    max-width: 100% !important;
  }

  html.dark .productsHub__stack .hubWrap{
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }

  html.dark .productsHub__stack .hubWrap:nth-child(1),
  html.dark .productsHub__stack .hubWrap:nth-child(3){
    margin-right: auto !important;
    transform: translateX(-100px) !important; 
  }

  html.dark .productsHub__stack .hubWrap:nth-child(2){
    margin-left: auto !important;
    transform: translateX(100px) !important; 
  }

  html.dark .productsHub__stack .hubWrap--equip{
    margin-right: auto !important;
    transform: translateX(-120px) !important;
  }
}

@media (max-width: 1199px){
  html.dark .productsHub__stack .hubWrap--equip{
    transform: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) and (max-width: 1599px){
  html.dark .hubWrap--equip .hubCard__equipRow{
    position: relative;
    height: 320px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-bottom: 20px;
    overflow: hidden; 
  }

  html.dark .hubWrap--equip .equipTile{
    position: relative;
    transition: transform .35s ease;
  }

  html.dark .hubWrap--equip .equipTile:nth-child(1){
    transform: translateX(-90px) translateY(-24px);
    z-index: 2;
  }

  html.dark .hubWrap--equip .equipTile:nth-child(2){
    transform: translateX(-600px) translateY(-10px);
    z-index: 3;
  }

  html.dark .hubWrap--equip .equipTile:nth-child(3){
    transform: translateX(130px) translateY(18px);
    z-index: 4;
  }
}


                                                          /* CONTACTS */
html.dark .contactMini__row{
  position: relative;
  z-index: 1;

  padding: 8px 14px;
  border-radius: 14px;

  background:
    linear-gradient(180deg,
      rgba(255,255,255,.10),
      rgba(255,255,255,.04));

  backdrop-filter: blur(6px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 6px 18px rgba(0,0,0,.35);

  color: rgba(255,255,255,.95) !important;
}

html.dark .contactMini__icon{
  background:
    radial-gradient(circle at 30% 30%,
      rgba(255,220,140,.45),
      rgba(255,191,74,.18));

  border: 1px solid rgba(255,191,74,.55);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 0 18px rgba(255,191,74,.35);

  color: #ffbf4a;
}

/* svg внутри — настоящий gold */
html.dark .contactMini__icon svg{
  stroke: #ffbf4a;
  filter: drop-shadow(0 0 6px rgba(255,191,74,.45));
}

html.dark .contactMini__item:hover .contactMini__icon{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.30),
    0 0 26px rgba(255,191,74,.55);
}

html.dark .contactMini__item:hover .contactMini__row{
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.06));
}

                                                          /* FOOTER */
html.dark .footerMini{
  background: rgba(18,22,28,.75);
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.70);
}

html.dark .footerMini,
html.dark .footerMini *{
  color: rgba(255,255,255,.70) !important;
}

html.dark .sectionBar__row b{
  color: var(--muted);
}

html.dark .sectionBar__name{
  color: var(--muted);
}