.pmf-cut {display:none;}

.hh-pf-gallery {
  width: 100%;
  background: #fff;
  color: #111;
}

.hh-pf-gallery__wrap {
  width: min(1680px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 0;
}

.hh-pf-gallery__back {
  margin-bottom: 18px;
}

.hh-pf-gallery__back-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.3;
  color: #111;
  text-decoration: none;
  transition: opacity .2s ease;
}

.hh-pf-gallery__back-link::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M15 5L8 12L15 19' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.hh-pf-gallery__back-link:hover {
  opacity: .66;
}

.hh-pf-gallery__grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-areas:
    "i1 i2 i3"
    "i1 i4 i5";
  gap: 12px;
}

.hh-pf-gallery__item {
  position: relative;
  overflow: hidden;
  background: #f3f3f3;
}

.hh-pf-gallery__item:nth-child(1) { grid-area: i1; }
.hh-pf-gallery__item:nth-child(2) { grid-area: i2; }
.hh-pf-gallery__item:nth-child(3) { grid-area: i3; }
.hh-pf-gallery__item:nth-child(4) { grid-area: i4; }
.hh-pf-gallery__item:nth-child(5) { grid-area: i5; }

.hh-pf-gallery__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hh-pf-gallery__picture--main {
  aspect-ratio: 4 / 3;
}

.hh-pf-gallery__picture--small {
  aspect-ratio: 16 / 9;
}

.hh-pf-gallery__picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .45s ease;
}

.hh-pf-gallery__item:hover img {
  transform: scale(1.03);
}

.hh-pf-gallery__open {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  padding: 14px 18px;
  cursor: pointer;
  transition:
    background .2s ease,
    transform .2s ease,
    opacity .2s ease;
  backdrop-filter: blur(8px);
}

.hh-pf-gallery__open:hover {
  background: #fff;
  transform: translateY(-1px);
}

.hh-pf-gallery__count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17,17,17,.84);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

@media (max-width: 1024px) {
  .hh-pf-gallery__wrap {
    width: min(100%, calc(100% - 32px));
  }

  .hh-pf-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "i1 i1"
      "i2 i3"
      "i4 i5";
  }

  .hh-pf-gallery__picture--main {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px) {
  .hh-pf-gallery__wrap {
    width: min(100%, calc(100% - 20px));
    padding-top: 18px;
  }

  .hh-pf-gallery__back {
    margin-bottom: 12px;
  }

  .hh-pf-gallery__back-link {
    font-size: 14px;
  }

  .hh-pf-gallery__grid {
    gap: 8px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "i1"
      "i2"
      "i3"
      "i4"
      "i5";
  }

  .hh-pf-gallery__picture--main,
  .hh-pf-gallery__picture--small {
    aspect-ratio: 16 / 10;
  }

  .hh-pf-gallery__open {
    left: 12px;
    bottom: 12px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .hh-pf-gallery__count {
    right: 12px;
    bottom: 12px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
}





























.hh-build-stages{
  background:#fff;
  color:#111;
}

.hh-build-stages__container{
  width:min(1360px, calc(100% - 48px));
  margin:0 auto;
  padding:72px 0;
}

.hh-build-stages__head{
  margin-bottom:32px;
}

.hh-build-stages__title{
  margin:0 0 22px;
  font-size:clamp(32px, 4vw, 54px);
  line-height:1.02;
  font-weight:500;
  letter-spacing:-0.03em;
}

.hh-build-stages__tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hh-build-stages__tag{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 16px;
  border:1px solid rgba(17,17,17,.12);
  border-radius:999px;
  font-size:14px;
  line-height:1;
  background:#fafafa;
}

.hh-build-accordion{
  border-top:1px solid rgba(17,17,17,.12);
}

.hh-build-accordion__item{
  border-bottom:1px solid rgba(17,17,17,.12);
}

.hh-build-accordion__trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:26px 0;
  border:0;
  background:none;
  color:#111;
  text-align:left;
  cursor:pointer;
}

.hh-build-accordion__trigger-text{
  font-size:clamp(22px, 2vw, 32px);
  line-height:1.1;
  font-weight:500;
  letter-spacing:-0.02em;
}

.hh-build-accordion__icon{
  position:relative;
  width:20px;
  height:20px;
  flex:0 0 20px;
}

.hh-build-accordion__icon::before,
.hh-build-accordion__icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:20px;
  height:1.5px;
  background:#111;
  transform:translate(-50%,-50%);
  transition:transform .28s ease, opacity .28s ease;
}

.hh-build-accordion__icon::after{
  transform:translate(-50%,-50%) rotate(90deg);
}

.hh-build-accordion__item.is-open .hh-build-accordion__icon::after{
  opacity:0;
  transform:translate(-50%,-50%) rotate(90deg) scaleX(.2);
}

.hh-build-accordion__content{
  display:none;
  padding:0 0 30px;
}

.hh-build-stage{
  display:block;
}

.hh-build-stage__group{
  display:grid;
  grid-template-columns:minmax(180px, 280px) 1fr;
  gap:28px;
}

.hh-build-stage__heading{
  margin:0;
  font-size:15px;
  line-height:1.3;
  font-weight:500;
  color:rgba(17,17,17,.58);
}

.hh-build-stage__list{
  display:block;
}

.hh-build-stage__row{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-height:58px;
  padding:16px 0;
  border:0;
  border-top:1px solid rgba(17,17,17,.08);
  background:none;
  color:#111;
  font-size:18px;
  line-height:1.4;
  text-align:left;
}

button.hh-build-stage__row{
  position:relative;
  cursor:pointer;
  transition:opacity .2s ease;
  padding-right:34px;
}

button.hh-build-stage__row:hover{
  opacity:.65;
}

button.hh-build-stage__row::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:18px;
  height:18px;
  transform:translateY(-50%);
  background-repeat:no-repeat;
  background-position:center;
  background-size:18px 18px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M8 5l8 7-8 7' stroke='%23111' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.hh-build-stage__list > :first-child{
  border-top:0;
}

/* LIGHTBOX */
.hh-stage-lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
}

.hh-stage-lightbox.is-open{
  display:block;
}

.hh-stage-lightbox__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.88);
}

.hh-stage-lightbox__wrap{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 80px 80px;
  box-sizing:border-box;
}

.hh-stage-lightbox__inner{
  position:relative;
  width:min(1320px, 100%);
}

.hh-stage-lightbox__title{
  margin:0 0 20px;
  color:#fff;
  font-size:22px;
  line-height:1.15;
  font-weight:500;
}

.hh-stage-lightbox__stage{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:320px;
}

.hh-stage-lightbox__img{
  display:block;
  max-width:100%;
  max-height:72vh;
  width:auto;
  height:auto;
  object-fit:contain;
}

.hh-stage-lightbox__close,
.hh-stage-lightbox__prev,
.hh-stage-lightbox__next{
  border:0;
  cursor:pointer;
  color:#fff;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
}

.hh-stage-lightbox__close{
  position:absolute;
  top:0;
  right:0;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:28px;
  line-height:1;
}

.hh-stage-lightbox__prev,
.hh-stage-lightbox__next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  font-size:30px;
  line-height:1;
}

.hh-stage-lightbox__prev{ left:-68px; }
.hh-stage-lightbox__next{ right:-68px; }

.hh-stage-lightbox__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:18px;
}

.hh-stage-lightbox__counter{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1;
}

.hh-stage-lightbox__thumbs{
  display:flex;
  gap:10px;
  overflow:auto;
  padding-bottom:4px;
}

.hh-stage-lightbox__thumb{
  width:88px;
  height:58px;
  padding:0;
  border:1px solid transparent;
  background:none;
  cursor:pointer;
  opacity:.6;
  flex:0 0 auto;
}

.hh-stage-lightbox__thumb.is-active{
  opacity:1;
  border-color:rgba(255,255,255,.7);
}

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

@media (max-width: 1024px){
  .hh-build-stage__group{
    grid-template-columns:1fr;
    gap:14px;
  }

  .hh-stage-lightbox__prev{
    left:12px;
  }

  .hh-stage-lightbox__next{
    right:12px;
  }

  .hh-stage-lightbox__inner{
    width:100%;
  }
}

@media (max-width: 767px){
  .hh-build-stages__container{
    width:min(100%, calc(100% - 20px));
    padding:44px 0;
  }

  .hh-build-stages__title{
    margin-bottom:16px;
  }

  .hh-build-stages__tags{
    gap:8px;
  }

  .hh-build-stages__tag{
    min-height:34px;
    padding:0 12px;
    font-size:12px;
  }

  .hh-build-accordion__trigger{
    padding:20px 0;
  }

  .hh-build-accordion__content{
    padding:0 0 18px;
  }

  .hh-build-stage__row{
    min-height:48px;
    padding:12px 0;
    font-size:16px;
  }

  .hh-stage-lightbox__wrap{
    padding:16px 12px 28px;
  }

  .hh-stage-lightbox__title{
    font-size:18px;
    margin-bottom:14px;
    padding-right:54px;
  }

  .hh-stage-lightbox__img{
    max-height:58vh;
  }

  .hh-stage-lightbox__close{
    width:42px;
    height:42px;
    font-size:24px;
  }

  .hh-stage-lightbox__prev,
  .hh-stage-lightbox__next{
    width:42px;
    height:42px;
    font-size:24px;
  }

  .hh-stage-lightbox__footer{
    display:block;
    margin-top:14px;
  }

  .hh-stage-lightbox__counter{
    margin-bottom:10px;
  }

  .hh-stage-lightbox__thumb{
    width:72px;
    height:48px;
  }
}