:root{
  --bg: #f4eee7;
  --surface: rgba(255,255,255,.54);
  --surface-strong: rgba(255,255,255,.74);
  --card: rgba(255,255,255,.68);
  --card-solid: #f8f3ed;
  --text: #181614;
  --muted: #766d64;
  --border: rgba(24,22,20,.10);
  --accent: #161311;
  --accent-line: #e7130a;
  --shadow: 0 16px 40px rgba(32,23,15,.08);

--texture-hero: url("/assets/hutir_texture_1.webp");
--texture-catalog: url("/assets/hutir_texture_2.webp");
--hero-house: url("/assets/hutir_house.webp");
}

/* ------------------------------
   Floating chat button (WA/TG)
-------------------------------- */
.hh-chat-widget{
  position:fixed;
  right:18px;
  bottom:22px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}

.hh-chat-widget__fab{
  width:56px;
  height:56px;
  border-radius:999px;
  border:1px solid rgba(24,22,20,.10);
  background:var(--accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 18px 44px rgba(24,22,20,.18);
  cursor:pointer;
}

.hh-chat-widget__fab i{
  font-size:22px;
  line-height:1;
}

.hh-chat-widget__fab:focus-visible{
  outline:3px solid rgba(231,19,10,.35);
  outline-offset:3px;
}

.hh-chat-widget__menu{
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}

.hh-chat-widget.is-open .hh-chat-widget__menu{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

.hh-chat-widget__item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(24,22,20,.10);
  color:var(--text);
  text-decoration:none;
  box-shadow: 0 14px 34px rgba(24,22,20,.10);
  backdrop-filter: blur(10px);
}

.hh-chat-widget__item i{
  font-size:18px;
  line-height:1;
}

.hh-chat-widget__item span{
  font-weight:600;
  font-size:14px;
  letter-spacing:.01em;
}

.hh-chat-widget__item:hover{
  transform: translateY(-1px);
}

.hh-chat-widget__item:active{
  transform: translateY(0);
}

.hh-chat-widget__item--wa i{
  color:#25D366;
}

.hh-chat-widget__item--tg i{
  color:#229ED9;
}

.hh-chat-widget__item--vb i{
  color:#7360F2;
}

@media (max-width: 560px){
  .hh-chat-widget{
    right:14px;
    bottom:16px;
  }
  .hh-chat-widget__fab{
    width:52px;
    height:52px;
  }
}

*{ box-sizing:border-box; }

[hidden]{
  display:none !important;
}

html{
  scrollbar-gutter: stable;
}

#pkgPanel,
#pkgBody{
  overflow-anchor: none;
}

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:"Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background: var(--bg);
  position: relative;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.38)),
    var(--texture-hero) center top / cover no-repeat;
}

img{
  max-width:100%;
  display:block;
}

.hh-container{
  width:min(1200px, calc(100% - 48px));
  margin:0 auto;
}

.hh-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.hh-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(244,238,231,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(24,22,20,.06);
}

.hh-header .hh-container{
  min-height:78px;
}

.hh-header__actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.hh-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
  flex:0 0 auto;
  min-width:0;
}

.hh-logo-mark{
  width:auto;
  height:24px;
  flex:0 0 auto;
}

.hh-logo-word{
  width:auto;
  height:20px;
  flex:0 0 auto;
}

.hh-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.hh-nav a,
.hh-link{
  color:var(--text);
  text-decoration:none;
  transition:opacity .2s ease, color .2s ease;
}

.hh-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding-bottom:2px;
  font-size:15px;
  font-weight:500;
  opacity:.84;
}

.hh-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:2px;
  border-radius:999px;
  background:var(--accent-line);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .24s ease;
}

.hh-nav a:hover,
.hh-nav a:focus-visible,
.hh-link:hover{
  opacity:1;
  color:#000;
}

.hh-nav a:hover::after,
.hh-nav a:focus-visible::after{
  transform:scaleX(1);
}

.hh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:52px;
  padding:0 22px;
  border-radius:16px;
  border:1px solid #161311;
  background:#161311;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  letter-spacing:-.01em;
  box-shadow:0 10px 24px rgba(22,19,17,.14);
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.hh-btn[hidden]{
  display:none !important;
}

.hh-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(22,19,17,.16);
}

.hh-btn--ghost{
  background:rgba(255,255,255,.42);
  color:var(--text);
  box-shadow:none;
  border-color:rgba(24,22,20,.18);
  backdrop-filter: blur(5px);
}

.hh-header__cta{
  min-height:50px;
  padding:0 20px;
  border-radius:16px;
  white-space:nowrap;
}

.hh-muted{
  color:var(--muted);
  line-height:1.6;
}

.hh-section{
  padding:38px 0 56px;
}

.hh-section__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
}

.hh-section__head--tight{
  margin-bottom:24px;
}

.hh-section__head h2,
.hh-showcase__copy h2,
.hh-lead__head h2,
.hh-footer__title{
  margin:0;
}

.hh-section__head h2,
.hh-showcase__copy h2,
.hh-lead__head h2{
  font-size:clamp(30px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:800;
}

.hh-hero{
  position:relative;
  overflow:hidden;
}

.hh-hero--reference{
  min-height:680px;
  padding:52px 0 48px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.12)),
    var(--texture-hero) center center / cover no-repeat;
}

.hh-hero--reference::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(80% 80% at 16% 24%, rgba(255,255,255,.50) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(90deg, rgba(244,238,231,.92) 0%, rgba(244,238,231,.78) 23%, rgba(244,238,231,.32) 49%, rgba(244,238,231,0) 74%);
  pointer-events:none;
}

.hh-hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(320px, 510px) minmax(380px, 1fr);
  align-items:center;
  gap:16px;
  min-height:580px;
}

.hh-hero__copy{
  padding:34px 0 24px;
}

.hh-hero__copy h1{
  margin:0 0 18px;
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:800;
}

.hh-hero__copy .hh-muted{
  max-width:530px;
  font-size:22px;
  line-height:1.52;
}

.hh-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.hh-hero__actions--single #homeHeroSecondaryBtn{
  background:var(--text);
  color:#fff;
  border-color:var(--text);
  box-shadow:0 10px 24px rgba(17, 12, 8, .14);
}

.hh-hero__actions--single #homeHeroSecondaryBtn:hover{
  background:#000;
  color:#fff;
  border-color:#000;
  transform:translateY(-1px);
}

.hh-hero__media{
  align-self:end;
  justify-self:end;
  width:min(100%, 760px);
  transform:translate(6%, 6%);
  filter:drop-shadow(0 30px 50px rgba(49,36,24,.18));
}

.hh-hero-slider{
  position:relative;
  width:100%;
}

.hh-hero-slider__track{
  position:relative;
  width:100%;
  min-height:1px;
}

.hh-hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:translateX(24px) scale(.985);
  transition:
    opacity .75s ease,
    transform .9s ease,
    visibility .75s ease;
  pointer-events:none;
}

.hh-hero-slide.is-active{
  position:relative;
  opacity:1;
  visibility:visible;
  transform:translateX(0) scale(1);
  pointer-events:auto;
}

.hh-hero-slide img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.65) 14%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.65) 14%, #000 22%, #000 100%);
}

.hh-hero-slider__dots{
  position:absolute;
  left:0;
  right:0;
  bottom:-18px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}

.hh-hero-slider__dot{
  width:9px;
  height:9px;
  border:0;
  border-radius:999px;
  padding:0;
  background:rgba(33, 24, 17, .18);
  box-shadow:none;
  cursor:pointer;
  transition:
    transform .2s ease,
    background-color .2s ease,
    width .2s ease;
}

.hh-hero-slider__dot.is-active{
  width:26px;
  background:rgba(33, 24, 17, .78);
}

.hh-hero-slider__dot:hover{
  transform:scale(1.06);
}

.hh-section--catalog{
  position:relative;
  isolation:isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.16)),
    var(--texture-catalog) center center / cover no-repeat;
}

.hh-section--catalog::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.08));
  pointer-events:none;
}

.hh-section--catalog .hh-container{
  position:relative;
  z-index:1;
}

.hh-section--home-catalog{
  padding-top:34px;
  padding-bottom:66px;
  background:transparent;
}

.hh-section--home-catalog::before{
  display:none;
}

.hh-section--home-catalog .hh-section__head h2{
  font-size:clamp(28px, 3vw, 40px);
  letter-spacing:-.04em;
}

.hh-catalog-head{
  display:grid;
  gap:20px;
  margin-bottom:30px;
}

.hh-catalog-head__copy h1{
  margin:0;
  max-width:820px;
  font-size:clamp(34px, 6vw, 76px);
  line-height:.94;
  letter-spacing:-.055em;
  font-weight:800;
}

.hh-catalog-filters{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 240px));
  gap:12px;
  align-items:center;
}

.hh-filter-select{
  width:100%;
  min-height:58px;
  padding:0 50px 0 20px;
  border-radius:999px;
  border:1.5px solid rgba(24,22,20,.14);
  background-color:rgba(255,255,255,.78);
  color:var(--text);
  font:inherit;
  font-size:18px;
  font-weight:500;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  outline:none;
  box-shadow:0 10px 22px rgba(41,30,22,.05);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23635b54' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 18px center;
  background-size:18px 18px;
}

.hh-filter-select:focus{
  border-color:#161311;
  box-shadow:0 0 0 4px rgba(22,19,17,.08);
}

.hh-section--catalog #cards{
  gap:24px;
}

.hh-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(auto-fit, minmax(290px, 1fr));
}

.hh-grid--home{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.hh-card{
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.58);
  box-shadow:0 18px 34px rgba(41,30,22,.06);
  backdrop-filter: blur(2px);
}

.hh-card--house{
  padding:0;
  display:flex;
  flex-direction:column;
}

.hh-card__media{
  position:relative;
  overflow:hidden;
  border-radius:30px 30px 0 0;
}

.hh-card__img{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:320px;
  aspect-ratio:16/10;
  background:linear-gradient(180deg, #e7dfd8 0%, #d9d0c7 100%);
  border-radius:0;
  overflow:hidden;
}

.hh-card__img-el{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.hh-card__badge{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 16px;
  border-radius:14px;
  background:#a87412;
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:-.01em;
  box-shadow:0 12px 20px rgba(89,65,19,.18);
}

.hh-card__body{
  padding:18px 18px 16px;
}

.hh-card__body--house{
  padding:20px 18px 18px;
}

.hh-card__eyebrow{
  margin:0 0 6px;
  color:var(--muted);
  font-size:15px;
  line-height:1.35;
  font-weight:500;
}

.hh-card__title{
  margin:0;
  font-size:clamp(22px, 2.2vw, 30px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.03em;
}

.hh-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  min-height:28px;
}

.hh-card__specs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.hh-card__spec{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.72);
  color:#4f4841;
  font-size:14px;
  font-weight:500;
  line-height:1;
}

.hh-card__spec i{
  font-size:15px;
  line-height:1;
  color:#6b635c;
  flex:0 0 auto;
}

.hh-card__spec span{
  display:inline-block;
  transform:translateY(.5px);
}

.hh-pill{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.50);
  border:1px solid rgba(24,22,20,.06);
  color:#9a9189;
  font-size:12px;
  font-weight:500;
}

.hh-card__price{
  margin-top:18px;
  font-size:clamp(22px, 2.8vw, 28px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.03em;
}

.hh-card__actions{
  margin-top:18px;
}

.hh-card__btn{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  padding:0 22px;
  border-radius:20px;
  border:1px solid rgba(24,22,20,.08);
  background:#ece4da;
  color:var(--text);
  text-decoration:none;
  font-size:16px;
  font-weight:700;
  letter-spacing:-.01em;
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.hh-card__btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 24px rgba(41,30,22,.08);
  background:#e6ddd2;
}

.hh-card__btn--disabled{
  opacity:.6;
  pointer-events:none;
}

.hh-card .hh-link{
  display:inline-block;
  margin-top:14px;
  font-size:16px;
  font-weight:700;
  letter-spacing:-.02em;
}

.hh-card--placeholder{
  border-style:dashed;
  opacity:.9;
}

.hh-card--placeholder .hh-card__img{
  background:
    radial-gradient(140px 140px at 20% 24%, rgba(22,19,17,.06), transparent 68%),
    linear-gradient(135deg, rgba(255,255,255,.52), rgba(245,239,232,.88));
}

.hh-why{
  padding:0 0 42px;
}

.hh-why__card{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  min-height:430px;
  padding:42px 42px 38px;
  background:
    radial-gradient(1200px 420px at -8% -10%, rgba(255,255,255,.88), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(244,238,231,.96));
  border:1px solid rgba(24,22,20,.06);
  box-shadow:0 26px 46px rgba(27,20,14,.10);
}

.hh-why__card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(58% 95% at 16% 12%, rgba(255,255,255,.55), transparent 62%),
    linear-gradient(90deg, rgba(248,244,239,.82) 0%, rgba(248,244,239,.44) 34%, rgba(248,244,239,.08) 58%, rgba(248,244,239,0) 72%);
  pointer-events:none;
}

.hh-why__copy{
  position:relative;
  z-index:2;
  max-width:min(58%, 760px);
}

.hh-why__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(24,22,20,.08);
  color:#7f756c;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
}

.hh-why__copy h2{
  margin:16px 0 0;
  max-width:680px;
}

.hh-why__copy > p{
  margin:14px 0 0;
  max-width:620px;
  color:#6d645d;
  font-size:20px;
  line-height:1.6;
}

.hh-why__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:28px;
  max-width:760px;
}

.hh-why-item{
  position:relative;
  z-index:2;
  display:flex;
  gap:14px;
  min-height:132px;
  padding:18px 18px 17px;
  border-radius:24px;
  background:rgba(255,255,255,.64);
  border:1px solid rgba(24,22,20,.06);
  box-shadow:0 14px 28px rgba(31,22,14,.06);
  backdrop-filter:blur(10px);
}

.hh-why-item__icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(180deg, #f8f2eb 0%, #ede0d1 100%);
  border:1px solid rgba(75,58,47,.08);
  color:#4f3d31;
  box-shadow:0 10px 20px rgba(38,28,20,.08);
}

.hh-why-item__icon i{
  font-size:22px;
  line-height:1;
}

.hh-why-item__body h3{
  margin:2px 0 0;
  font-size:21px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.hh-why-item__body p{
  margin:8px 0 0;
  color:#6f655d;
  font-size:15px;
  line-height:1.6;
}

.hh-why__media{
  position:absolute;
  right:-8px;
  bottom:-8px;
  width:min(46%, 560px);
  z-index:1;
  filter:drop-shadow(0 24px 36px rgba(41,30,22,.12));
}

.hh-why__media img{
  width:100%;
  height:auto;
  object-fit:contain;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.52) 16%, #000 30%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.52) 16%, #000 30%, #000 100%);
}

.hh-section--projects{
  padding:12px 0 56px;
}

.hh-section__head--projects{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  gap:18px;
}

.hh-projects__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(24,22,20,.08);
  color:#7f756c;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
}

.hh-projects__intro{
  margin:14px 0 0;
  max-width:760px;
  font-size:18px;
  line-height:1.65;
  color:#5f554d;
}

.hh-projects__controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.hh-projects__dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:56px;
}

.hh-projects__dots[hidden]{
  display:none !important;
}

.hh-projects__dot{
  width:8px;
  height:8px;
  border:0;
  border-radius:999px;
  padding:0;
  background:rgba(24,22,20,.18);
  cursor:pointer;
  transition:width .18s ease, background-color .18s ease, opacity .18s ease;
}

.hh-projects__dot.is-active{
  width:24px;
  background:#fff;
  box-shadow:0 0 0 1px rgba(24,22,20,.08);
}

.hh-projects__bottom-nav{
  display:flex;
  justify-content:center;
  margin-top:18px;
}

.hh-projects__nav{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.82);
  color:var(--text);
  box-shadow:0 14px 28px rgba(31,22,14,.06);
  cursor:pointer;
  transition:transform .18s ease, background-color .18s ease, opacity .18s ease;
}

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

.hh-projects__nav:disabled{
  opacity:.38;
  cursor:default;
  transform:none;
}

.hh-projects__nav i{
  font-size:18px;
  line-height:1;
}

.hh-projects__viewport{
  margin-top:24px;
  overflow-x:auto;
  overflow-y:visible;
  scrollbar-width:none;
  -ms-overflow-style:none;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
}

.hh-projects__viewport::-webkit-scrollbar{
  display:none;
}

.hh-projects__track{
  display:flex;
  gap:20px;
}

.hh-project-card{
  flex:0 0 min(420px, calc(100vw - 56px));
  scroll-snap-align:start;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.62);
  box-shadow:0 18px 34px rgba(41,30,22,.06);
  backdrop-filter:blur(2px);
}

.hh-project-card__media{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10;
  background:#ddd2c7;
  touch-action:pan-y;
  cursor:zoom-in;
}

.hh-project-card__slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:scale(1.02);
  transition:
    opacity .32s ease,
    transform .42s ease,
    visibility .32s ease;
}

.hh-project-card__slide.is-active{
  opacity:1;
  visibility:visible;
  transform:scale(1);
}

.hh-project-card__slide img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  background:linear-gradient(180deg, #ddd2c7 0%, #d3c7bb 100%);
}

.hh-project-card__photos{
  position:absolute;
  top:16px;
  right:16px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:0 12px;
  border-radius:14px;
  background:rgba(22,19,17,.66);
  color:#fff;
  font-size:14px;
  font-weight:700;
  box-shadow:0 12px 20px rgba(15,10,7,.18);
  backdrop-filter:blur(8px);
}

.hh-project-card__photos i{
  font-size:15px;
  line-height:1;
}

.hh-project-card__gallery-nav{
  position:absolute;
  top:50%;
  z-index:3;
  width:42px;
  height:42px;
  margin-top:-21px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#1d1712;
  box-shadow:0 10px 18px rgba(0,0,0,.10);
  cursor:pointer;
  transition:transform .18s ease, opacity .18s ease;
}

.hh-project-card__gallery-nav:hover{
  transform:translateY(-1px);
}

.hh-project-card__gallery-nav--prev{
  left:14px;
}

.hh-project-card__gallery-nav--next{
  right:14px;
}

.hh-project-card__gallery-nav i{
  font-size:16px;
  line-height:1;
}

.hh-project-card__dots{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:3;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}

.hh-project-card__dot{
  position:relative;
  width:32px;
  height:32px;
  border:0;
  border-radius:999px;
  padding:0;
  background:transparent;
  cursor:pointer;
}

.hh-project-card__dot::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.56);
  transform:translate(-50%, -50%);
  transition:width .18s ease, background-color .18s ease;
}

.hh-project-card__dot.is-active::before{
  width:24px;
  background:#fff;
}

.hh-project-card__body{
  padding:20px 18px 18px;
}

.hh-project-card__eyebrow{
  margin:0 0 6px;
  color:#675d55;
  font-size:13px;
  line-height:1.35;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hh-project-card__title{
  margin:0;
  font-size:clamp(24px, 2vw, 30px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.03em;
}

.hh-project-card__meta{
  display:grid;
  gap:10px;
  margin-top:18px;
}

.hh-project-card__meta-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-height:44px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(24,22,20,.07);
  background:rgba(255,255,255,.76);
}

.hh-project-card__meta-icon{
  width:20px;
  flex:0 0 20px;
  color:#6e645c;
  font-size:16px;
  line-height:1.3;
}

.hh-project-card__meta-label{
  display:block;
  margin:0 0 2px;
  color:#675d55;
  font-size:12px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.hh-project-card__meta-value{
  display:block;
  color:var(--text);
  font-size:15px;
  line-height:1.45;
  font-weight:600;
}

@media (max-width: 900px){
  .hh-section__head--projects{
    align-items:flex-start;
    flex-direction:column;
  }

  .hh-projects__intro{
    font-size:16px;
    line-height:1.6;
  }

  .hh-project-card{
    flex-basis:min(380px, calc(100vw - 48px));
  }
}

@media (max-width: 640px){
  .hh-section--projects{
    padding:6px 0 48px;
  }

  .hh-projects__eyebrow{
    min-height:28px;
    padding:0 11px;
    font-size:11px;
    letter-spacing:.16em;
  }

  .hh-projects__viewport{
    margin-top:20px;
  }

  .hh-projects__track{
    gap:14px;
  }

  .hh-project-card{
    flex-basis:calc(100vw - 32px);
    border-radius:24px;
  }

  .hh-project-card__gallery-nav{
    width:38px;
    height:38px;
    margin-top:-19px;
  }

  .hh-project-card__gallery-nav--prev{
    left:10px;
  }

  .hh-project-card__gallery-nav--next{
    right:10px;
  }

  .hh-project-card__photos{
    top:12px;
    right:12px;
    min-height:34px;
    padding:0 10px;
    font-size:13px;
  }

  .hh-project-card__body{
    padding:16px 14px 14px;
  }

  .hh-project-card__title{
    font-size:24px;
  }

  .hh-project-card__meta{
    margin-top:14px;
    gap:8px;
  }

  .hh-project-card__meta-row{
    min-height:40px;
    padding:10px 12px;
    border-radius:16px;
  }

  .hh-project-card__meta-value{
    font-size:14px;
  }
}

.hh-section--lead{
  padding-top:18px;
  padding-bottom:72px;
}

#lead{
  scroll-margin-top: 96px;
}

.hh-lead__head{
  text-align:center;
  margin-bottom:26px;
}

.hh-lead__head .hh-muted{
  max-width:640px;
  margin:12px auto 0;
  font-size:18px;
}

.hh-panel{
  width:min(880px, 100%);
  margin:0 auto;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.56);
  box-shadow:0 18px 34px rgba(41,30,22,.06);
  backdrop-filter: blur(4px);
}

.hh-panel--lead{
  background:rgba(255,255,255,.58);
}

.hh-form{
  display:grid;
  gap:12px;
  margin:0;
}

.hh-form input,
.hh-form textarea,
.hh-form select{
  width:100%;
  min-height:54px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(24,22,20,.10);
  background:rgba(255,255,255,.78);
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.hh-form textarea{
  min-height:130px;
  resize:vertical;
}

.hh-form input:focus,
.hh-form textarea:focus,
.hh-form select:focus{
  border-color:rgba(24,22,20,.22);
  box-shadow:0 0 0 4px rgba(24,22,20,.06);
  background:#fff;
}

.hh-ok{
  color:#0d7b38;
  font-weight:700;
}

.hh-contacts{
  margin-top:22px;
}

.hh-contact-actions{
  display:flex;
  align-items:stretch;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.hh-contact-actions--footer{
  display:grid;
  gap:12px;
  justify-content:stretch;
}

.hh-contact-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:14px;
  min-height:62px;
  padding:12px 18px 12px 12px;
  border-radius:20px;
  border:1px solid rgba(24,22,20,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,243,238,.90));
  color:var(--text);
  text-decoration:none;
  box-shadow:0 14px 30px rgba(41,30,22,.08);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  opacity:1 !important;
}

.hh-contact-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 38px rgba(41,30,22,.12);
  border-color:rgba(24,22,20,.18);
}

.hh-contact-btn__icon{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:14px;
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18);
}

.hh-contact-btn__icon svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
}

.hh-contact-btn__meta{
  display:grid;
  gap:4px;
  min-width:0;
}

.hh-contact-btn__label{
  font-size:11px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
}

.hh-contact-btn__value{
  font-size:16px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-.02em;
  white-space:nowrap;
}

.hh-contact-btn--phone .hh-contact-btn__icon{
  background:linear-gradient(135deg, #1a1614 0%, #41342c 100%);
}

.hh-contact-btn--instagram{
  background:linear-gradient(180deg, rgba(255,249,246,.96), rgba(255,255,255,.92));
}

.hh-contact-btn--instagram .hh-contact-btn__icon{
  background:linear-gradient(135deg, #833ab4 0%, #fd1d1d 55%, #fcb045 100%);
}

.hh-contact-actions--footer .hh-contact-btn{
  width:100%;
  min-height:58px;
  justify-content:flex-start;
}

.hh-contact-actions--footer .hh-contact-btn__value{
  font-size:15px;
  white-space:normal;
}

.hh-footer__contacts{
  display:grid;
  gap:12px;
}

.hh-footer__contacts .hh-footer__cta{
  width:100%;
}

.hh-burger{
  display:none;
  width:46px;
  height:46px;
  padding:0;
  border-radius:14px;
  border:1px solid rgba(24,22,20,.12);
  background:rgba(255,255,255,.58);
  cursor:pointer;
  align-items:center;
  justify-content:center;
}

.hh-burger span,
.hh-burger span::before,
.hh-burger span::after{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  border-radius:999px;
  position:relative;
}

.hh-burger span::before,
.hh-burger span::after{
  content:"";
  position:absolute;
  left:0;
}

.hh-burger span::before{ top:-6px; }
.hh-burger span::after{ top:6px; }

.hh-mnav{
  position:fixed;
  inset:0;
  z-index:999;
  display:none;
  background:rgba(13,10,8,.32);
}

.hh-mnav.show{
  display:block;
}

.hh-mnav__panel{
  position:absolute;
  top:14px;
  right:14px;
  left:14px;
  padding:16px;
  border-radius:24px;
  border:1px solid rgba(24,22,20,.08);
  background:#f8f2ec;
  box-shadow:0 30px 60px rgba(18,13,8,.16);
}

.hh-mnav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}

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

.hh-mnav__close{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(24,22,20,.12);
  background:#fff;
  font:inherit;
  cursor:pointer;
}

.hh-mnav__links{
  display:grid;
  gap:10px;
}

.hh-mnav__links a{
  padding:13px 14px;
  border-radius:14px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.58);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
}

.hh-mnav__cta{
  width:100%;
  margin-top:12px;
}

.hh-footer{
  padding:0 0 26px;
}

.hh-footer__grid{
  display:grid;
  grid-template-columns:1.2fr .75fr .75fr;
  gap:28px;
  padding:28px;
  border-radius:28px;
  background:rgba(255,255,255,.46);
  border:1px solid rgba(24,22,20,.08);
  box-shadow:0 18px 34px rgba(41,30,22,.05);
  backdrop-filter: blur(2px);
}

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

.hh-footer__brand .hh-muted{
  margin:14px 0 0;
  max-width:390px;
}

.hh-footer__col{
  display:grid;
  align-content:start;
  gap:10px;
}

.hh-footer__title{
  font-size:15px;
  font-weight:800;
  letter-spacing:-.02em;
}

.hh-footer__col a{
  color:var(--text);
  text-decoration:none;
  opacity:.84;
}

.hh-footer__nav-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  width:fit-content;
  padding:4px 0;
  transition:transform .18s ease, opacity .18s ease;
}

.hh-footer__nav-link:hover{
  transform:translateX(2px);
}

.hh-footer__nav-icon{
  width:32px;
  height:32px;
  flex:0 0 32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-size:17px;
  line-height:1;
  color:#4b3a2f;
  background:linear-gradient(180deg, #f8f3ee 0%, #efe5da 100%);
  border:1px solid rgba(75, 58, 47, 0.10);
  box-shadow:0 6px 14px rgba(28, 20, 14, 0.06);
  transform:none;
  opacity:1;
}

.hh-footer__col a:hover{
  opacity:1;
}

.hh-footer__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid #161311;
  background:#161311;
  color:#fff !important;
  opacity:1 !important;
}

.hh-footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:16px 4px 0;
}

/* utility / compatibility */
.hh-brand__name{ font-weight:800; }
.hh-brand__name b{ font-weight:800; }
.hh-section--soft,
.hh-section--alt{ background:transparent; }

.hh-pack-head,
.hh-tabs,
.hh-acc{
  display:grid;
  gap:10px;
}

.hh-pack-card{
  border-radius:20px;
  background:rgba(255,255,255,.56);
  border:1px solid rgba(24,22,20,.08);
  padding:18px;
}

.hh-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  width:fit-content;
  border-radius:999px;
  border:1px solid rgba(24,22,20,.10);
  background:#fff;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}

.hh-tab.is-active{
  background:#161311;
  color:#fff;
  border-color:#161311;
}

.hh-pack-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
}

.hh-table{
  width:100%;
  border-collapse:collapse;
}

.hh-table td{
  padding:10px 0;
  border-bottom:1px solid rgba(24,22,20,.08);
}

.hh-table td:first-child{
  color:var(--muted);
}

.hh-detail{
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) minmax(340px, .82fr);
  gap:16px;
  align-items:start;
}

.hh-detail__side{
  display:grid;
  gap:16px;
  align-content:start;
}

.hh-detail--top{
  margin-bottom:16px;
}

.hh-detail--top--single{
  grid-template-columns:1fr;
}

.hh-detail--top--single .hh-detail__side{
  display:none;
}

.hh-empty-media{
  min-height:inherit;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
  color:var(--muted);
  font-weight:600;
}

.hh-detail-meta{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 420px);
  gap:16px;
  align-items:start;
  margin-bottom:16px;
}

.hh-desc-panel,
.hh-specs-panel{
  align-self:start;
}

.hh-gallery{
  overflow:hidden;
  padding:14px;
  border-radius:28px;
  border:1px solid rgba(24,22,20,.08);
  background:var(--surface-strong);
  box-shadow:0 18px 34px rgba(41,30,22,.06);
  backdrop-filter: blur(4px);
}

.hh-gallery__main,
.hh-plans__main{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:380px;
  border-radius:22px;
  border:1px solid rgba(24,22,20,.08);
  background:#e7dfd7 center/cover no-repeat;
  touch-action:pan-y;
}

.hh-media-zoom-wrap{
  position:relative;
}

.hh-media-zoom-btn{
  position:absolute;
  top:14px;
  right:14px;
  z-index:5;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.92);
  color:var(--text);
  box-shadow:0 10px 24px rgba(24,22,20,.14);
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.hh-media-zoom-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(24,22,20,.18);
  background:#fff;
}

.hh-media-zoom-btn i{
  font-size:18px;
  line-height:1;
}

.hh-media-frame{
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:#e7dfd7 center/cover no-repeat;
  opacity:0;
  visibility:hidden;
  transform:scale(1.02);
  transition:
    opacity .32s ease,
    transform .42s ease,
    visibility .32s ease;
  will-change:opacity, transform;
}

.hh-media-frame.is-current{
  z-index:2;
  opacity:1;
  visibility:visible;
  transform:scale(1);
}

.hh-media-frame.is-next{
  z-index:3;
}

.hh-plans__main .hh-media-frame{
  background-size:contain;
}

.hh-media-frame.is-enter{
  opacity:1;
  visibility:visible;
  transform:scale(1);
}

.hh-gallery__main .hh-media-node,
.hh-plans__main .hh-media-node,
.hh-media-frame .hh-media-node{
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:inherit;
}

/* Для відео показуємо весь кадр, без обрізання */
.hh-gallery__main video.hh-media-node,
.hh-plans__main video.hh-media-node,
.hh-media-frame video.hh-media-node{
  object-fit:contain;
  background:#111;
}

.hh-plans__main{
  background-size:contain;
}

.hh-gallery__hint{
  padding:10px 2px 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.hh-specs-panel{
  align-self:start;
}

.hh-detail__side #plansPanel .hh-plans__main{
  min-height:320px;
}

.hh-detail__side #plansPanel .hh-plan-thumb{
  width:92px;
  height:64px;
}

.hh-thumbs,
.hh-plans__thumbs{
  display:flex;
  gap:10px;
  padding-top:12px;
  overflow:auto;
}

.hh-thumb,
.hh-plan-thumb{
  flex:0 0 auto;
  width:92px;
  height:64px;
  padding:0;
  border-radius:16px;
  border:1px solid rgba(24,22,20,.08);
  background:#eee center/cover no-repeat;
  cursor:pointer;
  opacity:.82;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.hh-plan-thumb{
  width:108px;
  height:76px;
}

.hh-thumb,
.hh-plan-thumb{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hh-thumb__media,
.hh-plan-thumb__media{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:inherit;
  pointer-events:none;
}

.hh-plan-thumb__media{
  object-fit:contain;
  background:#f7f2ed;
}

.hh-thumb--video,
.hh-plan-thumb--video{
  background:#111;
}

.hh-thumb__play,
.hh-plan-thumb__play{
  position:absolute;
  right:8px;
  bottom:8px;
  width:24px;
  height:24px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.72);
  color:#fff;
  font-size:12px;
  line-height:1;
  pointer-events:none;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.hh-thumb:hover,
.hh-thumb.is-active,
.hh-plan-thumb:hover,
.hh-plan-thumb.is-active{
  transform:translateY(-1px);
  border-color:rgba(24,22,20,.22);
  box-shadow:0 10px 20px rgba(24,22,20,.08);
  opacity:1;
}

.hh-gallery__main.is-zoomable,
.hh-plans__main.is-zoomable,
.hh-plan-zoom{
  cursor:zoom-in;
}

.hh-no-scroll{
  overflow:hidden;
}

.hh-lightbox{
  position:fixed;
  inset:0;
  z-index:3000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(15,15,15,.78);
  backdrop-filter:blur(4px);
}

.hh-lightbox[hidden]{
  display:none !important;
}

.hh-lightbox__dialog{
  position:relative;
  width:min(96vw, 1200px);
  max-height:92vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hh-lightbox__dialog--gallery{
  width:min(96vw, 1320px);
  height:min(86vh, 980px);
}

.hh-lightbox__stage{
  position:relative;
  overflow:hidden;
  width:100%;
  height:100%;
  min-height:320px;
  touch-action:pan-y;
}

.hh-lightbox__stage.is-dragging{
  cursor:grabbing;
}

.hh-lightbox__stage::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  pointer-events:none;
}

.hh-lightbox__current,
.hh-lightbox__ghost{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  max-width:none;
  max-height:none;
  border-radius:18px;
  background:transparent;
  will-change:transform, opacity;
}

.hh-lightbox__current{
  z-index:2;
  transition:none;
}

.hh-lightbox__current .hh-media-node,
.hh-lightbox__ghost .hh-media-node{
  display:block;
  width:100%;
  height:100%;
  max-width:none;
  max-height:none;
  object-fit:contain;
  object-position:center;
  border-radius:18px;
  background:transparent;
}

.hh-lightbox__current img.hh-media-node{
  transform-origin:center center;
  transition:transform .18s ease;
  cursor:zoom-in;
  will-change:transform;
}

.hh-lightbox__current img.hh-media-node.is-zoomed{
  transition:none;
}

.hh-lightbox__current video.hh-media-node,
.hh-lightbox__ghost video.hh-media-node{
  background:#111;
}

.hh-lightbox__ghost.is-drag-prev,
.hh-lightbox__ghost.is-drag-next{
  z-index:1;
}

.hh-lightbox__img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  transform-origin:center center;
  transition:transform .18s ease;
  cursor:zoom-in;
  will-change:transform;
}

.hh-lightbox__img.is-zoomed{
  transition:none;
}

.hh-lightbox__stage.is-zoomed{
  touch-action:none;
  cursor:grab;
}

.hh-lightbox__zoom{
  position:absolute;
  top:12px;
  right:64px;
  z-index:5;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.hh-lightbox__zoom i{
  pointer-events:none;
}

.hh-lightbox__close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:5;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.hh-lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:54px;
  height:54px;
  border:none;
  border-radius:999px;
  background:rgba(17,17,17,.88);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.hh-lightbox__nav--prev{
  left:18px;
}

.hh-lightbox__nav--next{
  right:18px;
}

.hh-lightbox__nav:disabled{
  opacity:.35;
  cursor:default;
}

.hh-lightbox__counter{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(17,17,17,.74);
  color:#fff;
  font-size:14px;
  font-weight:600;
  letter-spacing:.02em;
}

.hh-detail .hh-panel,
.hh-detail-bottom .hh-panel{
  width:100%;
  margin:0;
  border-radius:28px;
  background:var(--surface-strong);
}

.hh-detail-bottom{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:0;
}

.hh-detail-bottom--stack{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.hh-detail-bottom__left,
.hh-detail-bottom__right{
  display:grid;
  align-content:start;
  gap:16px;
}

.hh-detail-bottom--no-plans{
  grid-template-columns:1fr;
}

.hh-detail-bottom--no-plans .hh-detail-bottom__left{
  display:none;
}

.hh-plans{
  display:grid;
  gap:12px;
}

.hh-pack-head{
  gap:6px;
}

.hh-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.hh-pack-body{
  margin-top:14px;
}

.hh-pack-card{
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.34);
}

.hh-pack-title{
  margin-bottom:12px;
  font-size:24px;
  font-weight:700;
  letter-spacing:-.03em;
}

.hh-acc{
  display:grid;
  gap:10px;
}

.hh-acc-item{
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.62);
}

.hh-acc-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border:0;
  background:transparent;
  text-align:left;
  font:inherit;
  font-weight:700;
  color:var(--text);
  cursor:pointer;
}

.hh-acc-btn:hover{
  background:rgba(22,19,17,.03);
}

.hh-acc-ico{
  flex:0 0 auto;
  font-size:20px;
  line-height:1;
  transition:transform .18s ease;
}

.hh-acc-item.is-open .hh-acc-ico{
  transform:rotate(45deg);
}

.hh-acc-body{
  display:none;
  padding:0 16px 16px;
  color:var(--muted);
  line-height:1.65;
}

.hh-acc-item.is-open .hh-acc-body{
  display:block;
}

@media (max-width: 1120px){
  .hh-hero__grid{
    grid-template-columns:minmax(300px, 460px) 1fr;
  }

  .hh-grid--home{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

.hh-why__copy{
  max-width:min(62%, 720px);
}

.hh-why__media{
  width:min(44%, 500px);
}
}

@media (max-width: 900px){
  .hh-container{
    width:calc(100% - 32px);
  }

  .hh-detail,
  .hh-detail-bottom{
    grid-template-columns:1fr;
  }

  .hh-detail-meta{
  grid-template-columns:1fr;
}

  .hh-detail__side{
  grid-template-columns:1fr;
}

  .hh-gallery__main,
  .hh-plans__main{
    min-height:280px;
  }

  .hh-nav,
  .hh-header__cta{
    display:none;
  }

  .hh-burger{
    display:inline-flex;
  }

  .hh-logo-word{
    height:18px;
  }

  .hh-header .hh-container{
    min-height:72px;
  }

  .hh-hero--reference{
    min-height:auto;
    padding:34px 0 14px;
  }

  .hh-hero__grid{
    grid-template-columns:1fr;
    gap:10px;
    min-height:auto;
  }

  .hh-hero__copy{
    padding:18px 0 4px;
  }

.hh-hero__copy h1{
  font-size:clamp(28px, 10vw, 40px);
  line-height:1.05;
  letter-spacing:-.04em;
}

  .hh-hero__copy .hh-muted{
    font-size:17px;
  }

.hh-hero__media{
  width:100%;
  max-width:640px;
  justify-self:center;
  transform:none;
  margin-top:8px;
}

.hh-hero-slide{
  transform:translateY(18px) scale(.985);
}

.hh-hero-slide.is-active{
  transform:translateY(0) scale(1);
}

.hh-hero-slide img{
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.96) 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.96) 0%, #000 72%, transparent 100%);
}

.hh-hero-slider__dots{
  bottom:-10px;
}

  .hh-grid--home{
    grid-template-columns:1fr 1fr;
  }

 .hh-why__card{
  min-height:auto;
  padding:30px 24px 250px;
}

.hh-why__copy{
  max-width:100%;
}

.hh-why__copy > p{
  font-size:18px;
}

.hh-why__grid{
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.hh-why-item{
  min-height:124px;
  padding:16px;
  border-radius:22px;
}

.hh-why-item__body h3{
  font-size:19px;
}

.hh-why-item__body p{
  font-size:14px;
}

.hh-why__media{
  right:-18px;
  bottom:-4px;
  width:min(84%, 430px);
}

  .hh-footer__grid{
    grid-template-columns:1fr;
  }
  
    .hh-catalog-filters{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .hh-container{
    width:calc(100% - 28px);
  }
  
    .hh-contact-actions{
    flex-direction:column;
  }

  .hh-contact-btn{
    width:100%;
  }

  .hh-contact-btn__value{
    white-space:normal;
  }
  
    .hh-lightbox__dialog--gallery{
    width:min(94vw, 94vw);
    height:min(68vh, 560px);
  }

  .hh-lightbox__stage{
    min-height:240px;
  }
  
      .hh-media-frame.from-right{
    transform:translate3d(16px,0,0);
  }

  .hh-media-frame.from-left{
    transform:translate3d(-16px,0,0);
  }

  .hh-gallery,
  .hh-detail .hh-panel,
  .hh-detail-bottom .hh-panel{
    padding:12px;
    border-radius:22px;
  }

  .hh-gallery__main,
  .hh-plans__main{
    min-height:220px;
    border-radius:18px;
  }

  .hh-detail__side #plansPanel .hh-plans__main{
  min-height:220px;
}

  .hh-thumb,
  .hh-plan-thumb{
    width:84px;
    height:58px;
    border-radius:14px;
  }
  
    .hh-gallery__hint{
    font-size:12px;
  }

  .hh-lightbox{
    padding:12px;
  }

  .hh-lightbox__close{
    top:8px;
    right:8px;
    width:38px;
    height:38px;
    font-size:18px;
  }

  .hh-lightbox__nav{
    width:42px;
    height:42px;
    font-size:26px;
  }

  .hh-lightbox__nav--prev{
    left:8px;
  }

  .hh-lightbox__nav--next{
    right:8px;
  }

  .hh-lightbox__counter{
    bottom:10px;
    font-size:13px;
    padding:7px 10px;
  }

  .hh-hero__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hh-btn,
  .hh-btn--ghost,
  .hh-header__cta{
    width:100%;
  }

  .hh-grid--home{
    grid-template-columns:1fr;
  }

.hh-card__img{
  min-height:240px;
  aspect-ratio:16/10;
}

.hh-card__badge{
  left:14px;
  bottom:14px;
  min-height:36px;
  padding:0 14px;
  font-size:13px;
}

.hh-card__title{
  font-size:clamp(20px, 7vw, 26px);
}

.hh-card__spec{
  min-height:38px;
  padding:0 12px;
  font-size:13.5px;
}

.hh-card__btn{
  min-height:54px;
  font-size:15px;
}

.hh-filter-select{
  min-height:54px;
  font-size:17px;
}

.hh-why__card{
  padding:24px 16px 24px;
  border-radius:26px;
}

.hh-why__copy h2,
.hh-lead__head h2,
.hh-section__head h2{
  font-size:clamp(28px, 10vw, 40px);
}

.hh-why__eyebrow{
  min-height:28px;
  padding:0 11px;
  font-size:11px;
  letter-spacing:.16em;
}

.hh-why__copy > p{
  font-size:16px;
  line-height:1.55;
}

.hh-why__grid{
  grid-template-columns:1fr;
  gap:12px;
  margin-top:22px;
}

.hh-why-item{
  min-height:auto;
  gap:12px;
  padding:15px 14px;
  border-radius:20px;
}

.hh-why-item__icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:14px;
}

.hh-why-item__icon i{
  font-size:19px;
}

.hh-why-item__body h3{
  font-size:18px;
}

.hh-why-item__body p{
  margin-top:6px;
  font-size:14px;
  line-height:1.55;
}

.hh-why__media{
  position:relative;
  width:100%;
  max-width:none;
  left:auto;
  right:auto;
  bottom:auto;
  transform:none;
  margin-top:16px;
}

.hh-why__media img{
  display:block;
  width:100%;
  height:auto;
  max-height:420px;
  object-fit:cover;
  object-position:center;
  border-radius:20px;
  -webkit-mask-image:none;
  mask-image:none;
}

  .hh-panel{
    padding:18px;
    border-radius:22px;
  }

  .hh-footer__grid{
    padding:22px 18px;
  }

  .hh-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
.hh-desc-text{
  max-width: none;
  white-space: pre-line;
}

.hh-about-shell{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:24px;
  align-items:stretch;
}

.hh-about-copy{
  max-width:none;
}

.hh-about-copy--hero{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:100%;
  padding:34px;
  border-radius:30px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.58);
  box-shadow:0 18px 34px rgba(41,30,22,.06);
}

.hh-kicker{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin-bottom:16px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(24,22,20,.12);
  background:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.hh-about-copy h1{
  margin:0;
  font-size:clamp(34px, 5vw, 62px);
  line-height:1.02;
  letter-spacing:-.05em;
}

.hh-about-copy p + p{
  margin-top:12px;
}

.hh-about-lead{
  font-size:18px;
}

.hh-about-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.hh-about-media{
  margin:0;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.58);
  box-shadow:0 18px 34px rgba(41,30,22,.06);
  min-height:100%;
}

.hh-about-media img{
  width:100%;
  height:100%;
  display:block;
  aspect-ratio:4/3;
  object-fit:cover;
}

.hh-about-details{
  padding-top:0;
}

.hh-about-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(0, .9fr);
  gap:24px;
}

.hh-about-card{
  padding:30px;
  border-radius:30px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.58);
  box-shadow:0 18px 34px rgba(41,30,22,.06);
}

.hh-about-card h2{
  margin:0 0 10px;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.06;
  letter-spacing:-.04em;
}

.hh-about-card__eyebrow{
  margin-bottom:12px;
  color:var(--accent-line);
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.hh-about-details-list{
  margin-top:22px;
}

.hh-about-detail{
  display:grid;
  grid-template-columns:160px minmax(0, 1fr);
  gap:16px;
  padding:18px 0;
  border-top:1px solid rgba(24,22,20,.08);
}

.hh-about-detail:first-child{
  padding-top:0;
  border-top:0;
}

.hh-about-detail__label{
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
}

.hh-about-detail__value,
.hh-about-detail__value a{
  color:var(--text);
  text-decoration:none;
  line-height:1.7;
}

.hh-about-detail__phones{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.hh-about-socials{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.hh-about-social{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
  padding:18px 18px 18px 20px;
  border-radius:24px;
  border:1px solid rgba(24,22,20,.08);
  background:rgba(255,255,255,.72);
  color:var(--text);
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hh-about-social:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 24px rgba(22,19,17,.08);
  border-color:rgba(24,22,20,.14);
}

.hh-about-social__icon,
.hh-about-social__arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.hh-about-social__icon{
  width:54px;
  height:54px;
  border-radius:18px;
  color:#fff;
  font-size:24px;
  box-shadow:0 10px 22px rgba(24,22,20,.14);
}

.hh-about-social__meta{
  min-width:0;
  display:grid;
  gap:3px;
}

.hh-about-social__name{
  font-size:17px;
  font-weight:700;
  line-height:1.15;
}

.hh-about-social__value{
  color:var(--muted);
  line-height:1.35;
  overflow-wrap:anywhere;
}

.hh-about-social__arrow{
  width:42px;
  height:42px;
  border-radius:999px;
  background:rgba(24,22,20,.04);
  color:#3c342f;
  font-size:18px;
}

.hh-about-social--instagram .hh-about-social__icon{
  background:linear-gradient(135deg,#833ab4 0%,#c13584 35%,#fd1d1d 68%,#fcb045 100%);
}

.hh-about-social--tiktok .hh-about-social__icon{
  background:linear-gradient(135deg,#161311 0%,#161311 36%,#25f4ee 36%,#25f4ee 52%,#fe2c55 52%,#fe2c55 68%,#161311 68%,#161311 100%);
}

.hh-about-social--threads .hh-about-social__icon{
  background:linear-gradient(135deg,#0f0f0f 0%,#1d1d1d 100%);
}

@media (max-width: 980px){
  .hh-about-shell,
  .hh-about-grid{
    grid-template-columns:1fr;
  }

  .hh-about-shell{
    grid-template-areas:
      "media"
      "copy";
  }

  .hh-about-copy--hero{
    grid-area:copy;
  }

  .hh-about-media{
    grid-area:media;
    min-height:auto;
  }
}

@media (max-width: 640px){
  .hh-about-copy--hero,
  .hh-about-card{
    padding:22px;
    border-radius:24px;
  }

  .hh-about-media{
    margin:0;
    border-radius:24px;
  }

  .hh-about-media img{
    width:100%;
    height:auto;
    aspect-ratio:auto;
    object-fit:initial;
  }

  .hh-about-detail{
    grid-template-columns:1fr;
    gap:6px;
  }

  .hh-about-social{
    gap:14px;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    padding:16px 18px;
  }

  .hh-about-social__icon{
    width:50px;
    height:50px;
    border-radius:16px;
    font-size:22px;
  }

  .hh-about-social__arrow{
    width:38px;
    height:38px;
    font-size:16px;
  }

  .hh-about-social__value{
    text-align:left;
  }
}


.ad-grid--five{
  grid-template-columns:repeat(5, minmax(0, 1fr));
}

@media (max-width: 1100px){
  .ad-grid--five{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .ad-grid--five{
    grid-template-columns:1fr;
  }
}
