@font-face {
  font-family: "Peyda";
  src: url("../fonts/Peyda.woff2") format("woff2-variations"),
       url("../fonts/Peyda.woff") format("woff-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

html,
body,
button,
input,
textarea,
select {
  font-family: "Peyda", Tahoma, sans-serif !important;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.6rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.045em !important;
}

h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.65rem) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.035em !important;
}

.site-header {
  pointer-events: none;
}

.site-header-shell {
  position: relative;
  pointer-events: auto;
  padding-inline: clamp(1.6rem, 3vw, 2.6rem) !important;
  border-radius: 0 !important;
  clip-path: polygon(1.35rem 0, calc(100% - 1.35rem) 0, 100% 1.35rem, 100% calc(100% - 1.35rem), calc(100% - 1.35rem) 100%, 1.35rem 100%, 0 calc(100% - 1.35rem), 0 1.35rem);
  filter: drop-shadow(0 16px 24px rgba(25, 23, 23, .14));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.site-header-shell::before {
  position: absolute;
  top: -.05rem;
  right: 2rem;
  width: 5rem;
  height: .18rem;
  border-radius: 0 0 999px 999px;
  background: #f8a01b;
  content: "";
}

.header-brand-note {
  padding-right: 1.1rem;
  border-right: 1px solid rgba(36,34,35,.11);
  color: #8f8a8b;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.6;
}

.site-nav-link {
  position: relative;
}

.site-nav-link::after {
  position: absolute;
  right: 1rem;
  bottom: .42rem;
  left: 1rem;
  height: .13rem;
  border-radius: 999px;
  background: #f8a01b;
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .25s ease, transform .25s ease;
}

.site-nav-link:hover::after,
.site-nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav-link[aria-current="page"] {
  color: #242223;
  background: #f3f1ed;
}

.inner-page {
  padding-top: 7.4rem;
}

.page-hero {
  position: relative;
  max-width: 1320px;
  min-height: 31rem;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 2rem;
  color: #fff;
  background: #242223;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), calc(100% - 3rem) 100%, 0 100%);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,18,19,.14), rgba(20,18,19,.45) 48%, rgba(20,18,19,.96));
  content: "";
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 31rem;
  max-width: 47rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}

.page-hero__content h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3.8vw, 3.5rem) !important;
}

.page-hero__content p:not(.section-kicker) {
  max-width: 38rem;
  margin-top: 1.25rem;
  color: rgba(255,255,255,.66);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

.page-section {
  max-width: 1280px;
  margin-inline: auto;
  padding: 6rem 1.25rem;
}

.page-section--tight {
  padding-top: 2rem;
}

.detail-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36,34,35,.08);
  border-radius: 1.55rem;
  background: #fff;
  box-shadow: 0 20px 60px rgba(35,31,32,.06);
}

.detail-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: .22rem;
  border-radius: 0 0 0 999px;
  background: #f8a01b;
  content: "";
}

.detail-card__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 1rem;
  color: #242223;
  background: #f8a01b;
}

.page-image-card {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  border-radius: 1.8rem;
  background: #242223;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 0 100%);
}

.page-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-field {
  display: grid;
  gap: .55rem;
}

.form-field label {
  color: #5f5a5b;
  font-size: .76rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.6rem;
  padding-inline: 1rem;
  border: 1px solid #dedad5;
  border-radius: 1rem;
  outline: none;
  color: #242223;
  background: #faf9f7;
  font-size: .9rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field textarea {
  min-height: 9rem;
  padding-block: 1rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #f8a01b;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(248,160,27,.12);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(248,160,27,.11), transparent 24rem),
    #211f20;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern-hp.png");
  background-size: 110px auto;
  opacity: .035;
  content: "";
}

.footer-consult-card {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: 1.7rem;
  color: #242223;
  background: #f8a01b;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.8rem), calc(100% - 1.8rem) 100%, 0 100%);
}

.footer-consult-card::after {
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern-hp-dark.png");
  background-size: 96px auto;
  opacity: .08;
  content: "";
}

.footer-consult-card > * {
  position: relative;
  z-index: 1;
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
  color: rgba(255,255,255,.54);
  font-size: .82rem;
  font-weight: 750;
  transition: color .2s ease, transform .2s ease;
}

.footer-nav-link::before {
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: #f8a01b;
  content: "";
}

.footer-nav-link:hover {
  color: #fff;
  transform: translateX(-.2rem);
}

.footer-social {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .9rem;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.035);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-social:hover {
  border-color: #f8a01b;
  color: #242223;
  background: #f8a01b;
  transform: translateY(-2px);
}

section[id] {
  scroll-margin-top: 7rem;
}

.elevator-nav {
  display: none;
}

.elevator-mobile-trigger,
.elevator-mobile-backdrop,
.elevator-mobile-head {
  display: none;
}

.elevator-panel {
  position: relative;
  width: 7.4rem;
  padding: .7rem;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 1.25rem;
  background:
    linear-gradient(105deg, rgba(255,255,255,.78), rgba(255,255,255,.12) 24%, rgba(0,0,0,.08) 48%, rgba(255,255,255,.5) 72%, rgba(0,0,0,.12)),
    #b9b9b7;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.18),
    inset 0 1px 8px rgba(255,255,255,.7),
    0 20px 55px rgba(26,23,24,.22);
}

.elevator-panel::before,
.elevator-panel::after {
  position: absolute;
  width: .38rem;
  height: .38rem;
  border: 1px solid rgba(0,0,0,.32);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f8f8f6, #7b7b79 72%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  content: "";
}

.elevator-panel::before { top: .42rem; right: .42rem; }
.elevator-panel::after { bottom: .42rem; left: .42rem; }

.elevator-display {
  position: relative;
  display: grid;
  min-height: 5.25rem;
  place-items: center;
  overflow: hidden;
  border: 2px solid #8a8987;
  border-radius: .8rem;
  color: #f8a01b;
  background:
    radial-gradient(circle at 50% 0, rgba(248,160,27,.13), transparent 62%),
    #151415;
  box-shadow: inset 0 0 22px rgba(0,0,0,.85), 0 1px 0 rgba(255,255,255,.55);
}

.elevator-display strong {
  margin-top: .5rem;
  font-family: "Courier New", monospace !important;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-shadow: 0 0 13px rgba(248,160,27,.68);
}

.elevator-display small {
  max-width: 5.5rem;
  padding-bottom: .55rem;
  overflow: hidden;
  color: rgba(255,255,255,.58);
  font-size: .57rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.elevator-direction {
  position: absolute;
  top: .42rem;
  right: .55rem;
  color: #f8a01b;
  font-size: .62rem;
  opacity: .75;
  transition: transform .3s ease;
}

.elevator-nav.is-moving .elevator-direction {
  animation: elevator-arrow .55s ease both;
}

.elevator-floors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .62rem;
  padding: .85rem .15rem .55rem;
}

.elevator-floor {
  position: relative;
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  justify-self: center;
  border: 2px solid #686765;
  border-radius: 50%;
  color: #3b393a;
  background:
    radial-gradient(circle at 35% 30%, #fff 0, #d9d8d5 48%, #92918f 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.5),
    0 2px 4px rgba(0,0,0,.3);
  font-size: .68rem;
  font-weight: 900;
  transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.elevator-floor:hover {
  transform: translateY(-1px);
}

.elevator-floor.is-active {
  border-color: #f8a01b;
  color: #fff;
  background: radial-gradient(circle at 40% 35%, #ffbf58, #f8a01b 58%, #ac5e00);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.3),
    0 0 0 3px rgba(248,160,27,.2),
    0 0 18px rgba(248,160,27,.55);
}

.elevator-floor em {
  position: absolute;
  top: 50%;
  left: calc(100% + 1.6rem);
  z-index: 3;
  min-width: max-content;
  padding: .48rem .7rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .55rem;
  color: #fff;
  background: rgba(27,25,26,.94);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  font-size: .67rem;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-.35rem, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.elevator-floor:hover em,
.elevator-floor:focus-visible em {
  opacity: 1;
  transform: translate(0, -50%);
}

.elevator-floor:focus-visible {
  outline: 3px solid rgba(248,160,27,.38);
  outline-offset: 3px;
}

.elevator-panel-brand {
  display: block;
  padding: .1rem .25rem .35rem;
  color: rgba(36,34,35,.55);
  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-align: center;
}

@keyframes elevator-arrow {
  0% { opacity: .4; transform: translateY(.25rem); }
  50% { opacity: 1; transform: translateY(-.15rem); }
  100% { opacity: .75; transform: translateY(0); }
}

.catalog-card h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem) !important;
}

.system-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem) !important;
}

.honeycomb-pattern {
  background-image: url("../images/pattern-hp.png") !important;
  background-repeat: repeat !important;
  background-size: 112px auto !important;
  background-position: 0 0 !important;
  mask-image: linear-gradient(90deg, transparent 4%, #000 72%) !important;
}

.honeycomb-dark {
  background-image: url("../images/pattern-hp-dark.png") !important;
  background-repeat: repeat !important;
  background-size: 112px auto !important;
  background-position: 0 0 !important;
  mask-image: linear-gradient(90deg, transparent 8%, #000 88%) !important;
}

.solution-card i,
.catalog-card i,
.system-card i {
  transition: transform .35s ease;
}

.solution-card:hover i {
  transform: translateY(-2px);
}

.contact-location {
  justify-content: flex-start;
  text-align: right;
}

.contact-location i {
  flex: 0 0 1rem;
  margin-top: .22rem;
  text-align: center;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .6rem;
  width: fit-content;
}

.footer-contact-link i {
  flex: 0 0 1rem;
  width: 1rem;
  text-align: center;
}

.cabin-section {
  padding: 6rem 1.25rem 8rem;
  background:
    linear-gradient(180deg, rgba(248, 160, 27, .055), transparent 24rem),
    #f7f6f3;
}

.cabin-section__inner {
  max-width: 1280px;
  margin-inline: auto;
}

.cabin-heading {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.cabin-heading h2 {
  margin-top: 1.25rem;
  font-weight: 900;
}

.cabin-heading > p {
  max-width: 38rem;
  color: #686364;
  font-size: .95rem;
  font-weight: 500;
  line-height: 2;
}

.cabin-browser {
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid rgba(36, 34, 35, .09);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 28px 90px rgba(35, 31, 32, .08);
}

.cabin-filterbar {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(36, 34, 35, .08);
  background: #fff;
}

.cabin-filterbar__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cabin-filterbar__title span {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 900;
}

.cabin-filterbar__title i { color: #f8a01b; }

.cabin-filterbar__title small {
  color: #928d8e;
  font-size: .72rem;
  font-weight: 700;
}

.cabin-filters {
  display: flex;
  gap: .55rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scrollbar-width: thin;
  scrollbar-color: #d8d4d0 transparent;
}

.cabin-filter {
  flex: 0 0 auto;
  min-height: 2.6rem;
  padding: .65rem 1rem;
  border: 1px solid #e8e5e2;
  border-radius: 999px;
  color: #686364;
  background: #faf9f7;
  font-size: .78rem;
  font-weight: 800;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}

.cabin-filter:hover {
  border-color: #f8a01b;
  color: #242223;
  transform: translateY(-1px);
}

.cabin-filter.is-active {
  border-color: #242223;
  color: #fff;
  background: #242223;
}

.cabin-filter-more {
  display: none;
}

.cabin-filter:focus-visible,
.cabin-controls button:focus-visible,
.cabin-thumb:focus-visible {
  outline: 3px solid rgba(248, 160, 27, .38);
  outline-offset: 3px;
}

.cabin-stage {
  display: grid;
  background: #242223;
}

.cabin-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 22rem;
  padding: 2rem;
  color: #fff;
  background-image:
    linear-gradient(135deg, rgba(248, 160, 27, .1), transparent 42%),
    url("../images/pattern-hp-dark.png");
  background-size: auto, 112px auto;
}

.cabin-model-number {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding-inline: .75rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.04);
  font-size: .68rem;
  font-weight: 800;
}

.cabin-model-code {
  margin-top: 3rem;
  color: #f8a01b;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.cabin-info h3 {
  margin-top: .55rem;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
}

.cabin-model-description {
  max-width: 24rem;
  margin-top: 1.25rem;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.9;
}

.cabin-controls {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.cabin-controls button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.cabin-controls button:hover {
  border-color: #f8a01b;
  color: #242223;
  background: #f8a01b;
}

.cabin-controls span {
  min-width: 3.8rem;
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  font-weight: 800;
  text-align: center;
}

.cabin-gallery {
  position: relative;
  min-width: 0;
  padding: .75rem;
  background:
    linear-gradient(135deg, rgba(248,160,27,.15), transparent 34%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 18px),
    #242223;
  box-shadow: inset 1px 0 0 rgba(255,255,255,.07);
}

.cabin-swiper {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(248,160,27,.22);
  border-radius: 1.45rem;
  background: #151415;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.cabin-swiper .swiper-wrapper {
  display: flex;
}

.cabin-swiper .swiper-slide {
  flex: 0 0 100%;
  min-width: 0;
  height: auto;
}

.cabin-swiper .swiper-pagination {
  right: auto !important;
  bottom: 1rem !important;
  left: 1rem !important;
  display: flex;
  width: auto !important;
  align-items: center;
  gap: .35rem;
  padding: .55rem .7rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
}

.cabin-swiper .swiper-pagination-bullet {
  width: .42rem;
  height: .42rem;
  margin: 0 !important;
  border-radius: 999px;
  background: #fff;
  opacity: .42;
  transition: width .25s ease, opacity .25s ease, background .25s ease;
}

.cabin-swiper .swiper-pagination-bullet-active {
  width: 1.5rem;
  background: #f8a01b;
  opacity: 1;
}

.cabin-main-frame {
  position: relative;
  display: grid;
  min-height: 29rem;
  overflow: hidden;
  place-items: center;
  border-radius: 1.45rem;
  background: #161516;
}

.cabin-main-frame img {
  width: 100%;
  height: 100%;
  min-height: 29rem;
  max-height: 43rem;
  object-fit: contain;
  transition: opacity .22s ease, transform .45s ease;
}

.cabin-image-label {
  position: absolute;
  z-index: 5;
  top: 1.75rem;
  right: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 2.35rem;
  padding-inline: .85rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(10px);
  font-size: .68rem;
  font-weight: 800;
}

.cabin-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  margin-top: .75rem;
  padding: .7rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.15rem;
  background: rgba(10,9,10,.42);
}

.cabin-thumb {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 2px solid transparent;
  border-radius: .85rem;
  background: #242223;
  opacity: .58;
  transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}

.cabin-thumb:hover { opacity: .85; }

.cabin-thumb.is-active {
  border-color: #f8a01b;
  opacity: 1;
  transform: translateY(-2px);
}

.cabin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .cabin-section { padding-inline: 3rem; }
  .cabin-heading { grid-template-columns: .9fr 1.1fr; }
  .cabin-filterbar { padding: 1.5rem; }
  .cabin-stage { grid-template-columns: minmax(17rem, .7fr) minmax(0, 1.6fr); }
  .cabin-info { min-height: 43rem; padding: 3rem; }
  .cabin-gallery { padding: 1rem; }
  .cabin-main-frame,
  .cabin-main-frame img { min-height: 35rem; }
}

@media (min-width: 1024px) {
  .footer-consult-card {
    grid-template-columns: 1fr auto;
    padding: 2rem 2.25rem;
  }

  .cabin-filters {
    flex-wrap: wrap;
    overflow: visible;
  }

  .cabin-filter.is-overflow {
    display: none;
  }

  .cabin-filters.is-expanded .cabin-filter.is-overflow {
    display: inline-flex;
    animation: cabin-filter-in .28s ease both;
  }

  .cabin-filters:not(.is-expanded) .cabin-filter.is-overflow.is-active {
    display: inline-flex;
  }

  .cabin-filter-more {
    display: inline-flex;
    min-height: 2.6rem;
    align-items: center;
    gap: .55rem;
    padding: .65rem 1rem;
    border: 1px dashed #c6c1bc;
    border-radius: 999px;
    color: #514d4e;
    background: #f1efeb;
    font-size: .82rem;
    font-weight: 900;
    transition: color .25s ease, border-color .25s ease, background .25s ease;
  }

  .cabin-filter-more:hover,
  .cabin-filter-more[aria-expanded="true"] {
    border-color: #f8a01b;
    color: #242223;
    background: #fff5e5;
  }

  .cabin-filter-more small {
    font-size: .66rem;
    font-weight: 800;
  }
}

@media (min-width: 1280px) {
  h2 { white-space: nowrap; }
}

@media (min-width: 1180px) {
  .elevator-nav {
    position: fixed;
    top: 50%;
    left: 1rem;
    z-index: 60;
    display: block;
    transform: translateY(-50%);
  }

  .elevator-nav::before {
    position: absolute;
    top: -2rem;
    bottom: -2rem;
    left: 50%;
    z-index: -1;
    width: 1px;
    background: linear-gradient(transparent, rgba(36,34,35,.18) 18%, rgba(36,34,35,.18) 82%, transparent);
    content: "";
  }
}

@keyframes cabin-filter-in {
  from { opacity: 0; transform: translateY(-.35rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  h1 { font-size: clamp(2.4rem, 12vw, 3.35rem) !important; }
  h2 { font-size: clamp(1.35rem, 5.8vw, 1.55rem) !important; }
  .inner-page { padding-top: 6.2rem; }
  .page-hero { min-height: 29rem; border-radius: 1.5rem; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%); }
  .page-hero__content { min-height: 29rem; padding: 2rem 1.5rem; }
  .page-hero__content h1 { font-size: clamp(1.9rem, 9vw, 2.65rem) !important; }
  .page-section { padding-block: 4.5rem; }
  .honeycomb-pattern,
  .honeycomb-dark { background-size: 86px auto !important; }

  .elevator-nav {
    position: fixed;
    right: .75rem;
    bottom: .75rem;
    z-index: 60;
    display: block;
  }

  .elevator-mobile-trigger {
    position: relative;
    z-index: 3;
    display: flex;
    width: 4.15rem;
    min-height: 6rem;
    flex-direction: column;
    gap: .42rem;
    align-items: center;
    justify-content: center;
    padding: .42rem;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 1.1rem;
    color: #242223;
    background:
      linear-gradient(115deg, rgba(255,255,255,.85), rgba(255,255,255,.16) 33%, rgba(0,0,0,.08) 62%, rgba(255,255,255,.55)),
      #bbbcb9;
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,.2),
      0 14px 34px rgba(25,22,23,.28);
    transition: opacity .25s ease, transform .25s ease;
  }

  .elevator-trigger-screen {
    display: grid;
    width: 3.2rem;
    min-height: 3.35rem;
    place-items: center;
    border: 2px solid #777775;
    border-radius: .68rem;
    color: #f8a01b;
    background: #151415;
    box-shadow: inset 0 0 16px rgba(0,0,0,.9);
  }

  .elevator-trigger-screen small {
    align-self: end;
    color: rgba(255,255,255,.4);
    font-family: "Courier New", monospace !important;
    font-size: .38rem;
    letter-spacing: .1em;
  }

  .elevator-trigger-screen strong {
    align-self: start;
    font-family: "Courier New", monospace !important;
    font-size: 1.15rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(248,160,27,.65);
  }

  .elevator-trigger-label {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .58rem;
    font-weight: 900;
  }

  .elevator-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: block;
    visibility: hidden;
    background: rgba(20,18,19,.38);
    opacity: 0;
    backdrop-filter: blur(3px);
    transition: visibility .25s ease, opacity .25s ease;
  }

  .elevator-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: grid;
    visibility: hidden;
    width: calc(100vw - 1.5rem);
    max-width: 24rem;
    grid-template-areas:
      "head head"
      "display floors";
    grid-template-columns: 4.8rem minmax(0, 1fr);
    gap: .65rem;
    align-items: center;
    padding: .7rem;
    border-radius: 1.15rem;
    opacity: 0;
    transform: translateY(calc(100% + 1rem)) scale(.97);
    transform-origin: bottom right;
    transition: visibility .3s ease, opacity .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
  }

  .elevator-nav.is-mobile-open .elevator-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .elevator-nav.is-mobile-open .elevator-mobile-backdrop {
    visibility: visible;
    opacity: 1;
  }

  .elevator-nav.is-mobile-open .elevator-mobile-trigger {
    opacity: 0;
    pointer-events: none;
    transform: translateY(.5rem) scale(.92);
  }

  .elevator-mobile-head {
    display: flex;
    grid-area: head;
    align-items: center;
    justify-content: space-between;
    padding: .05rem .15rem .45rem;
    border-bottom: 1px solid rgba(36,34,35,.14);
  }

  .elevator-mobile-head div {
    display: grid;
    gap: .05rem;
  }

  .elevator-mobile-head small {
    color: rgba(36,34,35,.5);
    font-size: .5rem;
    font-weight: 800;
  }

  .elevator-mobile-head strong {
    font-size: .78rem;
    font-weight: 900;
  }

  .elevator-mobile-head button {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgba(36,34,35,.2);
    border-radius: 50%;
    color: #242223;
    background: rgba(255,255,255,.45);
  }

  .elevator-panel::before,
  .elevator-panel::after {
    width: .28rem;
    height: .28rem;
  }

  .elevator-display {
    width: 4.8rem;
    min-height: 5rem;
    grid-area: display;
    border-radius: .65rem;
  }

  .elevator-display strong {
    margin-top: .55rem;
    font-size: 1.45rem;
  }

  .elevator-display small {
    max-width: 4.1rem;
    padding-bottom: .5rem;
    font-size: .5rem;
  }

  .elevator-direction {
    top: .28rem;
    right: .38rem;
    font-size: .48rem;
  }

  .elevator-floors {
    display: grid;
    grid-area: floors;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .5rem .35rem;
    padding: .1rem;
  }

  .elevator-floor {
    width: 2.35rem;
    height: 2.35rem;
    font-size: .62rem;
  }

  .elevator-floor em,
  .elevator-panel-brand {
    display: none;
  }

  .mobile-call-button {
    bottom: 1rem !important;
  }

  .cabin-section { padding-top: 5rem; padding-bottom: 6rem; }
  .cabin-browser { margin-top: 2rem; border-radius: 1.5rem; }
  .cabin-filterbar { padding: 1rem; }
  .cabin-stage { display: flex; flex-direction: column; }
  .cabin-info { min-height: auto; order: 2; padding: 1.5rem; }
  .cabin-model-code { margin-top: 1.75rem; }
  .cabin-gallery { order: 1; padding: .55rem; }
  .cabin-main-frame,
  .cabin-main-frame img { min-height: 24rem; max-height: 31rem; }
  .cabin-thumbnails { gap: .4rem; margin-top: .55rem; }
  .cabin-thumb { border-radius: .65rem; }
}

/* =========================================================
   Hydropack 1.1 — lightweight navigation transitions & catalog
   ========================================================= */
body { overflow-x: hidden; }

@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: hp-page-out .18s ease both; }
  ::view-transition-new(root) { animation: hp-page-in .22s ease both; }
}
@keyframes hp-page-out { to { opacity: .25; transform: translateY(-4px); } }
@keyframes hp-page-in { from { opacity: .2; transform: translateY(5px); } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
}

/* Desktop header dropdowns */
.desktop-main-nav { position: relative; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: .38rem; }
.nav-dropdown-toggle > i { font-size: .62rem; opacity: .48; transition: transform .18s ease; }
.nav-dropdown:hover .nav-dropdown-toggle > i,
.nav-dropdown:focus-within .nav-dropdown-toggle > i { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;
  z-index: 80;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(.5rem);
  border: 1px solid rgba(36,34,35,.09);
  background: rgba(255,255,255,.985);
  box-shadow: 0 28px 80px rgba(25,22,23,.16);
  transition: visibility .18s ease, opacity .18s ease, transform .18s ease;
}
.nav-dropdown:hover > .nav-dropdown-panel,
.nav-dropdown:focus-within > .nav-dropdown-panel {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.product-mega-menu {
  width: min(980px, calc(100vw - 6rem));
  max-height: min(72vh, 660px);
  overflow: auto;
  padding: 1.1rem;
  clip-path: polygon(1rem 0, 100% 0, 100% calc(100% - 1rem), calc(100% - 1rem) 100%, 0 100%, 0 1rem);
}
.product-mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .4rem .35rem 1rem;
  border-bottom: 1px solid rgba(36,34,35,.08);
}
.product-mega-head div { display: grid; gap: .18rem; }
.product-mega-head small { color: #a29c9d; font-size: .58rem; font-weight: 800; letter-spacing: .16em; direction: ltr; }
.product-mega-head strong { font-size: 1rem; font-weight: 900; }
.product-mega-head > a { display: inline-flex; align-items: center; gap: .45rem; color: #7b7576; font-size: .72rem; font-weight: 800; }
.product-mega-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: .65rem; padding-top: .9rem; }
.product-mega-group { min-width: 0; padding: .8rem; border-radius: 1rem; background: #f7f5f1; }
.product-mega-title { display: block; color: #242223; font-size: .82rem; font-weight: 900; line-height: 1.7; }
.product-mega-title:hover { color: #b36b00; }
.product-mega-children { display: grid; gap: .2rem; margin-top: .55rem; padding-top: .5rem; border-top: 1px solid rgba(36,34,35,.07); }
.product-mega-children a { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .36rem 0; color: #716b6c; font-size: .72rem; font-weight: 700; }
.product-mega-children a i { color: #f8a01b; font-size: .55rem; opacity: 0; transform: translateX(4px); transition: opacity .16s ease, transform .16s ease; }
.product-mega-children a:hover { color: #242223; }
.product-mega-children a:hover i { opacity: 1; transform: translateX(0); }
.downloads-dropdown { width: 410px; padding: 1rem; }
.downloads-dropdown-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .2rem .15rem .75rem; border-bottom: 1px solid rgba(36,34,35,.08); }
.downloads-dropdown-head strong { font-size: .85rem; font-weight: 900; }
.downloads-dropdown-head a { color: #8b8586; font-size: .68rem; font-weight: 800; }
.downloads-dropdown-list { display: grid; max-height: 360px; overflow: auto; padding-top: .5rem; }
.downloads-dropdown-list > a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .72rem .55rem; border-bottom: 1px solid rgba(36,34,35,.06); color: #242223; }
.downloads-dropdown-list > a span { display: grid; gap: .12rem; font-size: .75rem; font-weight: 800; }
.downloads-dropdown-list > a small { color: #9b9596; font-size: .61rem; font-weight: 700; }
.downloads-dropdown-list > a i { color: #f8a01b; }
.downloads-empty { margin: 0; padding: 1rem .4rem .25rem; color: #8d8788; font-size: .75rem; }
.simple-dropdown { width: 210px; padding: .55rem; }
.simple-dropdown a { display: flex; align-items: center; justify-content: space-between; padding: .75rem .8rem; border-radius: .75rem; color: #3e3a3b; font-size: .78rem; font-weight: 800; }
.simple-dropdown a:hover { background: #f5f2ed; }

/* Mobile nested navigation */
.mobile-nav-scroll { min-height: 0; flex: 1; overflow-y: auto; padding-left: .15rem; }
.mobile-top-link,
.mobile-submenu-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: .75rem; border-bottom: 1px solid rgba(255,255,255,.1); padding: 1rem 0; color: #fff; font-size: 1rem; font-weight: 900; text-align: right; }
.mobile-top-link i { color: rgba(255,255,255,.35); font-size: .68rem; }
.mobile-submenu-toggle i { color: #ffb13c; font-size: .75rem; transition: transform .2s ease; }
.mobile-nav-accordion.is-open .mobile-submenu-toggle i { transform: rotate(180deg); }
.mobile-submenu-panel { display: none; padding: .35rem 0 .8rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav-accordion.is-open .mobile-submenu-panel { display: block; }
.mobile-submenu-panel > a,
.mobile-product-group > a { display: block; padding: .62rem .75rem; color: rgba(255,255,255,.78); font-size: .78rem; font-weight: 800; }
.mobile-submenu-panel > a small { display: block; margin-bottom: .15rem; color: rgba(255,255,255,.35); font-size: .58rem; }
.mobile-submenu-all { color: #ffb13c !important; }
.mobile-product-group { padding: .2rem 0; }
.mobile-product-group > div { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .2rem; padding: 0 .75rem .45rem; }
.mobile-product-group > div a { padding: .38rem .45rem; border-right: 1px solid rgba(248,160,27,.35); color: rgba(255,255,255,.52); font-size: .7rem; font-weight: 700; }

/* Shared section heading */
.home-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.home-section-heading h2 { margin-top: .8rem; font-size: clamp(1.9rem,3vw,3.25rem) !important; font-weight: 900; }
.home-section-heading > p { max-width: 29rem; color: #716b6c; font-size: .9rem; font-weight: 500; line-height: 2; }
.home-section-link { display: inline-flex; align-items: center; gap: .6rem; color: #3b3738; font-size: .8rem; font-weight: 900; }
.home-section-link i { color: #f8a01b; }

/* Home videos */
.home-video-section { background: #242223; color: #fff; }
.home-video-section .section-kicker { color: #ffb13c; }
.home-video-section .home-section-heading > p { color: rgba(255,255,255,.5); }
.home-video-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; margin-top: 2.5rem; }
.home-video-card { min-width: 0; padding: .75rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.home-video-card h3 { min-height: 3.1rem; padding: .45rem .35rem .8rem; color: #fff; font-size: .9rem; font-weight: 900; line-height: 1.8; }
.home-video-frame { position: relative; overflow: hidden; aspect-ratio: 16/9; background: #111; }
.home-video-frame iframe,
.home-video-frame video { display: block; width: 100%; height: 100%; border: 0; object-fit: cover; }

/* Blog cards / archives */
.home-blog-section { background: #f6f5f2; }
.home-blog-grid,
.blog-archive-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.blog-card { overflow: hidden; border: 1px solid rgba(36,34,35,.08); background: #fff; box-shadow: 0 18px 55px rgba(35,31,32,.055); }
.blog-card-image { display: block; overflow: hidden; aspect-ratio: 16/10; background: #ddd; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.035); }
.blog-card-body { padding: 1.25rem; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; color: #9b9596; font-size: .65rem; font-weight: 800; }
.blog-card h2,
.blog-card h3 { margin-top: .75rem; color: #242223; font-size: 1.15rem !important; font-weight: 900; line-height: 1.7; }
.blog-card p { margin-top: .65rem; color: #736d6e; font-size: .8rem; line-height: 2; }
.blog-card-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; color: #3f3a3b; font-size: .75rem; font-weight: 900; }
.blog-card-link i { color: #f8a01b; }
.blog-archive-head { padding-top: 8.3rem; background: #242223; color: #fff; }
.blog-archive-head .page-section { padding-top: 4.8rem; padding-bottom: 4.8rem; }
.blog-archive-head h1 { margin-top: .8rem; font-size: clamp(2.4rem,5vw,4.8rem) !important; }
.blog-archive-head p:not(.section-kicker),
.blog-archive-description { max-width: 44rem; margin-top: 1rem; color: rgba(255,255,255,.56); font-size: .95rem; line-height: 2; }
.blog-archive-section { padding-top: 4.5rem; }
.blog-pagination { margin-top: 3rem; }
.blog-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; }
.blog-pagination a,
.blog-pagination span { display: grid; min-width: 2.5rem; height: 2.5rem; place-items: center; padding-inline: .75rem; background: #fff; border: 1px solid rgba(36,34,35,.09); color: #514c4d; font-size: .72rem; font-weight: 800; }
.blog-pagination .current { background: #242223; color: #fff; }

/* Single blog */
.blog-single-head { padding: 7.5rem .75rem 0; }
.blog-single-hero { position: relative; min-height: 38rem; max-width: 1320px; margin: 0 auto; overflow: hidden; background: #242223; }
.blog-single-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-single-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(15,14,14,.22),rgba(15,14,14,.55) 48%,rgba(15,14,14,.96)); }
.blog-single-hero-content { position: relative; z-index: 2; display: flex; min-height: 38rem; max-width: 55rem; flex-direction: column; justify-content: flex-end; padding: 3rem; color: #fff; }
.blog-single-meta { display: flex; flex-wrap: wrap; gap: .75rem 1.2rem; color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 800; }
.blog-single-meta a { color: #ffb13c; }
.blog-single-hero h1 { margin-top: 1rem; font-size: clamp(2.2rem,5vw,4.6rem) !important; line-height: 1.25 !important; }
.blog-single-hero-content > p { max-width: 44rem; margin-top: 1.1rem; color: rgba(255,255,255,.68); font-size: .95rem; line-height: 2; }
.blog-single-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 2rem; align-items: start; }
.blog-single-content { padding: clamp(1.5rem,3vw,3rem); background: #fff; border: 1px solid rgba(36,34,35,.07); }
.blog-prose { color: #5f5a5b; font-size: 1rem; line-height: 2.15; }
.blog-prose h2 { margin: 2.2rem 0 .8rem; color: #242223; font-size: 1.7rem !important; font-weight: 900; }
.blog-prose h3 { margin: 1.8rem 0 .65rem; color: #242223; font-size: 1.3rem; font-weight: 900; }
.blog-prose p { margin: 0 0 1rem; }
.blog-prose ul,
.blog-prose ol { margin: 1rem 0; padding-right: 1.3rem; }
.blog-prose li { margin: .35rem 0; }
.blog-single-sidebar { position: sticky; top: 7.5rem; }
.blog-sidebar-card { padding: 1.6rem; background: #242223; color: #fff; }
.blog-sidebar-card h2 { margin-top: .75rem; font-size: 1.3rem !important; font-weight: 900; line-height: 1.7; }
.blog-sidebar-card a { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.2rem; padding: .75rem 1rem; background: #f8a01b; color: #242223; font-size: .75rem; font-weight: 900; }

/* Catalog overview */
.product-catalog-groups { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; margin-top: 2.5rem; }
.catalog-group-card { position: relative; min-height: 13rem; padding: 1.4rem; overflow: hidden; border: 1px solid rgba(36,34,35,.08); background: #fff; }
.catalog-group-number { position: absolute; top: 1rem; left: 1rem; color: #ddd7d4; font-size: 2.5rem; font-weight: 900; }
.catalog-group-card h3 { max-width: 75%; font-size: 1.12rem; font-weight: 900; line-height: 1.7; }
.catalog-group-links { display: grid; gap: .2rem; margin-top: 1.1rem; }
.catalog-group-links a,
.catalog-group-direct { display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding: .45rem 0; border-top: 1px solid rgba(36,34,35,.06); color: #706a6b; font-size: .75rem; font-weight: 800; }
.catalog-group-links a i,
.catalog-group-direct i { color: #f8a01b; font-size: .6rem; }

/* Product single gallery/downloads */
.product-cabin-gallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.product-single-aside { display: grid; gap: 1rem; align-content: start; }
.product-download-box { padding: 1.25rem; border: 1px solid rgba(36,34,35,.08); background: #fff; }
.product-download-box__head { padding-bottom: .85rem; border-bottom: 1px solid rgba(36,34,35,.08); }
.product-download-box__head span { color: #aaa3a4; font-size: .58rem; font-weight: 900; letter-spacing: .15em; }
.product-download-box__head h2 { margin-top: .2rem; font-size: 1.1rem !important; font-weight: 900; }
.product-download-box > a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem .1rem; border-bottom: 1px solid rgba(36,34,35,.06); color: #514c4d; font-size: .76rem; font-weight: 800; }
.product-download-box > a:last-child { border-bottom: 0; }
.product-download-box > a i { color: #f8a01b; }

/* Downloads page */
.downloads-page-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.download-product-card { padding: 1.35rem; border: 1px solid rgba(36,34,35,.08); background: #fff; }
.download-product-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(36,34,35,.07); }
.download-product-head span { color: #aaa3a4; font-size: .56rem; font-weight: 900; letter-spacing: .16em; }
.download-product-head h2 { margin-top: .15rem; font-size: 1.15rem !important; font-weight: 900; }
.download-product-head > i { color: #f8a01b; font-size: 1.4rem; }
.download-file-list { display: grid; }
.download-file-list a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem .2rem; border-bottom: 1px solid rgba(36,34,35,.06); color: #625d5e; font-size: .78rem; font-weight: 800; }
.download-file-list a:last-child { border-bottom: 0; }
.download-file-list i { color: #f8a01b; }
.downloads-empty-state { display: grid; min-height: 18rem; place-items: center; align-content: center; gap: .8rem; border: 1px dashed rgba(36,34,35,.18); color: #797374; background: #fff; text-align: center; }
.downloads-empty-state i { color: #f8a01b; font-size: 2rem; }
.downloads-empty-state h2 { font-size: 1.2rem !important; font-weight: 900; }

@media (max-width: 1199px) {
  .desktop-main-nav .site-nav-link { padding-inline: .62rem !important; font-size: .72rem !important; }
}
@media (max-width: 1023px) {
  .home-video-grid,
  .home-blog-grid,
  .blog-archive-grid,
  .product-catalog-groups { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .blog-single-layout { grid-template-columns: 1fr; }
  .blog-single-sidebar { position: static; }
}
@media (max-width: 767px) {
  .home-section-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .home-video-grid,
  .home-blog-grid,
  .blog-archive-grid,
  .product-catalog-groups,
  .downloads-page-grid,
  .product-cabin-gallery { grid-template-columns: 1fr; }
  .blog-single-head { padding-top: 6.7rem; }
  .blog-single-hero,
  .blog-single-hero-content { min-height: 31rem; }
  .blog-single-hero-content { padding: 1.5rem; }
  .blog-single-hero h1 { font-size: 2.25rem !important; }
  .blog-archive-head { padding-top: 6.2rem; }
  .mobile-product-group > div { grid-template-columns: 1fr; }
}

/* Keep the original cut-corner header shape without clipping mega menus. */
.site-header-shell {
  isolation: isolate;
  overflow: visible !important;
  clip-path: none !important;
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}
.site-header-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(1.35rem 0, calc(100% - 1.35rem) 0, 100% 1.35rem, 100% calc(100% - 1.35rem), calc(100% - 1.35rem) 100%, 1.35rem 100%, 0 calc(100% - 1.35rem), 0 1.35rem);
  background: rgba(255,255,255,.94);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
  filter: drop-shadow(0 16px 24px rgba(25,23,23,.14));
  backdrop-filter: blur(18px);
  content: "";
}
.site-header-shell::before { z-index: 1; }


/* =========================================================
   Hydropack 1.1.1 — submenu bridge, product/blog redesign,
   requested mobile footer alignment
   ========================================================= */

/* Keep pointer continuity between a top-level item and its dropdown. */
@media (min-width: 1024px) {
  .nav-dropdown::after {
    position: absolute;
    top: 100%;
    right: -.55rem;
    left: -.55rem;
    height: .85rem;
    content: "";
  }
  .nav-dropdown-panel { top: calc(100% + .48rem); }
}

/* Product single */
.product-single-page { padding-top: 7.4rem; background: #f6f5f2; }
.product-single-hero-wrap { padding: .75rem .75rem 0; }
.product-single-hero-new {
  display: grid;
  grid-template-columns: minmax(0,1.02fr) minmax(320px,.78fr);
  min-height: 34rem;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  background: #242223;
  color: #fff;
}
.product-single-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem,5vw,5rem); }
.product-single-eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; margin-bottom: 1.2rem; }
.product-single-eyebrow span { color: #ffb13c; font-size: .62rem; font-weight: 900; letter-spacing: .17em; direction: ltr; }
.product-single-eyebrow b { color: rgba(255,255,255,.42); font-size: .65rem; font-weight: 800; letter-spacing: .12em; }
.product-single-hero-copy h1 { max-width: 800px; font-size: clamp(2.7rem,5vw,5.1rem) !important; line-height: 1.15 !important; font-weight: 950; }
.product-single-lead { max-width: 760px; margin-top: 1.25rem; color: rgba(255,255,255,.62); font-size: .98rem; font-weight: 600; line-height: 2.05; }
.product-single-terms { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.5rem; }
.product-single-terms a { padding: .48rem .72rem; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.68); font-size: .68rem; font-weight: 800; }
.product-single-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.product-primary-action,
.product-secondary-action { display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; gap: .65rem; padding: .7rem 1.15rem; border-radius: .8rem; font-size: .76rem; font-weight: 900; }
.product-primary-action { background: #f8a01b; color: #242223; }
.product-secondary-action { border: 1px solid rgba(255,255,255,.15); color: #fff; background: rgba(255,255,255,.035); }
.product-single-media { position: relative; min-height: 34rem; overflow: hidden; background: #efece6; }
.product-single-media::after { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; content: ""; }
.product-single-media img { width: 100%; height: 100%; min-height: 34rem; object-fit: cover; }
.product-single-media.is-placeholder { display: grid; place-items: center; background: linear-gradient(145deg,#f8a01b,#e78e0c); color: #242223; }
.product-single-placeholder-mark { display: grid; justify-items: center; gap: 1.3rem; text-align: center; }
.product-single-placeholder-mark > i { font-size: 5rem; }
.product-single-placeholder-mark span { font-size: .78rem; font-weight: 950; letter-spacing: .16em; line-height: 1.65; }
.product-single-media-index { position: absolute; right: 1.2rem; bottom: 1.1rem; z-index: 2; padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.14); background: rgba(20,19,19,.72); color: #fff; font-size: .58rem; font-weight: 900; letter-spacing: .1em; }
.product-gallery-section { padding-top: 3rem; }
.product-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.4rem; }
.product-section-heading span { color: #aaa2a3; font-size: .6rem; font-weight: 900; letter-spacing: .16em; }
.product-section-heading h2 { margin-top: .3rem; font-size: 1.65rem !important; font-weight: 950; }
.product-section-heading > p { max-width: 34rem; color: #7b7576; font-size: .82rem; line-height: 1.9; }
.product-cabin-gallery--new { gap: .75rem; }
.product-gallery-frame { position: relative; overflow: hidden; min-height: 23rem; background: #e6e2dc; }
.product-gallery-frame img { width: 100%; height: 100%; min-height: 23rem; object-fit: cover; }
.product-gallery-frame figcaption { position: absolute; right: .8rem; bottom: .8rem; padding: .45rem .7rem; background: rgba(36,34,35,.82); color: #fff; font-size: .65rem; font-weight: 800; }
.product-single-body-section { padding-top: 4rem; }
.product-single-layout-new { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 1.25rem; align-items: start; }
.product-content-card { padding: clamp(1.6rem,3.5vw,3.5rem); border: 1px solid rgba(36,34,35,.08); background: #fff; box-shadow: 0 20px 65px rgba(32,28,29,.045); }
.product-content-head { padding-bottom: 1.45rem; margin-bottom: 1.8rem; border-bottom: 1px solid rgba(36,34,35,.08); }
.product-content-head span { color: #aaa2a3; font-size: .58rem; font-weight: 900; letter-spacing: .16em; }
.product-content-head h2 { margin-top: .3rem; font-size: 1.65rem !important; font-weight: 950; }
.product-prose { max-width: 820px; color: #5d5859; font-size: 1rem; line-height: 2.2; }
.product-prose > p:first-child { color: #3d393a; font-size: 1.06rem; font-weight: 650; }
.product-prose h2 { position: relative; margin: 2.4rem 0 .8rem; padding-right: 1rem; color: #242223; font-size: 1.35rem !important; font-weight: 950; }
.product-prose h2::before { position: absolute; top: .45rem; right: 0; width: .28rem; height: 1.15rem; border-radius: 999px; background: #f8a01b; content: ""; }
.product-prose p { margin: 0 0 1rem; }
.product-prose ul,
.product-prose ol { margin: 1rem 0; padding-right: 1.25rem; }
.product-prose li { margin: .4rem 0; }
.product-single-aside--new { position: sticky; top: 7.5rem; }
.product-consult-card { position: relative; overflow: hidden; padding: 1.6rem; background: #242223; color: #fff; }
.product-consult-card::after { position: absolute; inset: 0; opacity: .04; background-image: url("../images/pattern-hp.png"); background-size: 100px auto; content: ""; }
.product-consult-card > * { position: relative; z-index: 1; }
.product-consult-card > span { color: #ffb13c; font-size: .58rem; font-weight: 900; letter-spacing: .15em; }
.product-consult-card > i { display: grid; width: 3rem; height: 3rem; place-items: center; margin-top: 1.2rem; border-radius: .8rem; background: #f8a01b; color: #242223; font-size: 1.15rem; }
.product-consult-card h2 { margin-top: 1.1rem; font-size: 1.35rem !important; font-weight: 950; line-height: 1.75; }
.product-consult-card p { margin-top: .75rem; color: rgba(255,255,255,.5); font-size: .78rem; line-height: 1.95; }
.product-consult-card a { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: 1.3rem; padding: .8rem 1rem; background: #f8a01b; color: #242223; font-size: .75rem; font-weight: 950; }
.product-download-box--new { margin-top: 0; }

/* Editorial single article */
.blog-article-page { padding-top: 6.4rem; background: #f6f5f2; }
.blog-article-header { background: #242223; color: #fff; }
.blog-article-header-inner { max-width: 1040px; margin: 0 auto; padding: clamp(4rem,8vw,7rem) 1.25rem clamp(4.6rem,9vw,8rem); text-align: center; }
.blog-article-kicker { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem 1rem; color: rgba(255,255,255,.43); font-size: .68rem; font-weight: 800; }
.blog-article-kicker a { color: #ffb13c; }
.blog-article-header h1 { max-width: 900px; margin: 1.35rem auto 0; font-size: clamp(2.5rem,5vw,4.8rem) !important; line-height: 1.3 !important; font-weight: 950; }
.blog-article-deck { max-width: 760px; margin: 1.3rem auto 0; color: rgba(255,255,255,.6); font-size: 1rem; line-height: 2; }
.blog-article-feature-wrap { position: relative; z-index: 2; max-width: 1180px; margin: clamp(-3.5rem,-5vw,-2.2rem) auto 0; padding-inline: .75rem; }
.blog-article-feature { overflow: hidden; aspect-ratio: 16/8.3; background: #d8d3cc; box-shadow: 0 28px 90px rgba(30,27,28,.14); }
.blog-article-feature img { width: 100%; height: 100%; object-fit: cover; }
.blog-article-content-section { padding-top: 4.2rem; }
.blog-article-layout-new { display: grid; grid-template-columns: minmax(0,820px) 285px; justify-content: center; gap: 1.25rem; align-items: start; }
.blog-article-content-card { padding: clamp(1.6rem,4vw,3.8rem); border: 1px solid rgba(36,34,35,.07); background: #fff; }
.blog-article-content-marker { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1.15rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(36,34,35,.08); color: #aaa3a4; font-size: .58rem; font-weight: 900; letter-spacing: .13em; direction: ltr; }
.blog-prose--new { color: #565152; font-size: 1rem; line-height: 2.25; }
.blog-prose--new > p:first-child { color: #383435; font-size: 1.08rem; font-weight: 650; line-height: 2.25; }
.blog-prose--new h2 { position: relative; margin: 2.6rem 0 .9rem; padding-right: 1.05rem; font-size: 1.55rem !important; }
.blog-prose--new h2::before { position: absolute; top: .45rem; right: 0; width: .3rem; height: 1.3rem; border-radius: 99px; background: #f8a01b; content: ""; }
.blog-prose--new h3 { margin-top: 2rem; font-size: 1.25rem !important; }
.blog-prose--new blockquote { margin: 2rem 0; padding: 1.3rem 1.5rem; border-right: 3px solid #f8a01b; background: #f6f3ee; color: #403c3d; }
.blog-prose--new img { margin: 1.8rem 0; }
.blog-article-aside { position: sticky; top: 7.5rem; }
.blog-article-consult { padding: 1.45rem; background: #242223; color: #fff; }
.blog-article-consult > span { color: #ffb13c; font-size: .56rem; font-weight: 900; letter-spacing: .14em; }
.blog-article-consult h2 { margin-top: .8rem; font-size: 1.2rem !important; font-weight: 950; line-height: 1.8; }
.blog-article-consult a { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: 1.1rem; padding: .8rem .9rem; background: #f8a01b; color: #242223; font-size: .72rem; font-weight: 950; }
.blog-related-section { background: #ebe8e2; }
.blog-related-head { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; }
.blog-related-head span { color: #999294; font-size: .58rem; font-weight: 900; letter-spacing: .15em; }
.blog-related-head h2 { margin-top: .25rem; font-size: 1.7rem !important; font-weight: 950; }
.blog-related-head > a { display: inline-flex; align-items: center; gap: .5rem; color: #514c4d; font-size: .75rem; font-weight: 900; }
.blog-related-head > a i { color: #f8a01b; }
.blog-related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.blog-related-card { overflow: hidden; background: #fff; }
.blog-related-image { display: block; overflow: hidden; aspect-ratio: 16/10; background: #d8d4ce; }
.blog-related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-related-card:hover .blog-related-image img { transform: scale(1.03); }
.blog-related-card > div { padding: 1.15rem; }
.blog-related-card > div > span { color: #9b9495; font-size: .62rem; font-weight: 800; }
.blog-related-card h3 { margin-top: .55rem; font-size: 1rem; font-weight: 950; line-height: 1.8; }
.blog-related-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: .85rem; color: #494445; font-size: .7rem; font-weight: 900; }
.blog-related-link i { color: #f8a01b; }

/* Requested footer alignment */
.footer-consult-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.footer-consult-copy { display: grid; justify-items: center; }
.footer-consult-copy h3 { text-align: center; }
.footer-consult-action { width: fit-content; }

@media (min-width: 1024px) {
  .footer-consult-card { grid-template-columns: none; padding: 2rem 2.25rem; }
}

@media (max-width: 1023px) {
  .product-single-hero-new { grid-template-columns: 1fr; }
  .product-single-media { min-height: 26rem; }
  .product-single-media img { min-height: 26rem; }
  .product-single-layout-new,
  .blog-article-layout-new { grid-template-columns: 1fr; }
  .product-single-aside--new,
  .blog-article-aside { position: static; }
  .blog-related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 767px) {
  .product-single-page { padding-top: 6.2rem; }
  .product-single-hero-wrap { padding-inline: .45rem; }
  .product-single-hero-copy { padding: 2rem 1.25rem 2.3rem; }
  .product-single-hero-copy h1 { font-size: 2.65rem !important; }
  .product-single-lead { font-size: .9rem; }
  .product-single-actions > a { flex: 1 1 auto; }
  .product-single-media,
  .product-single-media img { min-height: 23rem; }
  .product-section-heading { align-items: start; flex-direction: column; gap: .6rem; }
  .product-gallery-frame,
  .product-gallery-frame img { min-height: 20rem; }
  .product-single-body-section { padding-top: 2.5rem; }

  .blog-article-page { padding-top: 5.7rem; }
  .blog-article-header-inner { padding: 3.4rem 1rem 5rem; }
  .blog-article-header h1 { font-size: 2.45rem !important; }
  .blog-article-deck { font-size: .9rem; }
  .blog-article-feature-wrap { margin-top: -2.2rem; padding-inline: .45rem; }
  .blog-article-feature { aspect-ratio: 4/3; }
  .blog-article-content-section { padding-top: 2.7rem; }
  .blog-related-head { align-items: start; flex-direction: column; gap: .65rem; }
  .blog-related-grid { grid-template-columns: 1fr; }

  .footer-main-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 2rem 1rem !important; }
  .footer-brand-block { grid-column: 1 / -1; text-align: center; }
  .footer-brand-block > p { margin-inline: auto; text-align: center; }
  .footer-logo { margin-inline: auto; }
  .footer-socials { justify-content: center; }
  .footer-links-block { min-width: 0; }
  .footer-links-block > p { text-align: right; }
  .footer-nav-link { width: 100%; }
  .footer-contact-links { gap: .7rem !important; }
  .footer-contact-link { align-items: flex-start; gap: .45rem; font-size: .68rem; line-height: 1.7; overflow-wrap: anywhere; }
  .footer-contact-link i { flex: 0 0 auto; margin-top: .15rem; }
  .footer-consult-card { padding: 1.5rem 1rem; }
  .footer-consult-copy p,
  .footer-consult-copy h3 { width: 100%; text-align: center; }
  .footer-consult-action { margin-inline: auto; }
}

/* =========================================================
   Hydropack 1.1.2 — refined motion, clean product post type,
   redesigned product/article singles and alignment fixes
   ========================================================= */

/* The blur layer must use exactly the same cut-corner geometry as the navbar. */
.site-header-shell::after {
  clip-path: polygon(1.35rem 0, calc(100% - 1.35rem) 0, 100% 1.35rem, 100% calc(100% - 1.35rem), calc(100% - 1.35rem) 100%, 1.35rem 100%, 0 calc(100% - 1.35rem), 0 1.35rem) !important;
  -webkit-clip-path: polygon(1.35rem 0, calc(100% - 1.35rem) 0, 100% 1.35rem, 100% calc(100% - 1.35rem), calc(100% - 1.35rem) 100%, 1.35rem 100%, 0 calc(100% - 1.35rem), 0 1.35rem) !important;
  filter: none !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), inset 0 -10px 30px rgba(255,255,255,.08) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

/* CTA text/icon alignment — no visual offset inside button boxes. */
.hp-centered-button,
.footer-consult-action,
.product-primary-action,
.product-secondary-action,
.hp-product-v2-cta,
.hp-product-v2-side__note a,
.hp-product-v2-final > a,
.hp-article-v2-consult > a {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
a[class*="bg-[#f8a01b]"][class*="flex"],
a[class*="bg-[#f8a01b]"][class*="inline-flex"],
a[class*="bg-[#242223]"][class*="flex"],
a[class*="bg-[#242223]"][class*="inline-flex"],
a[class*="bg-[#282526]"][class*="flex"],
a[class*="bg-[#282526]"][class*="inline-flex"] {
  justify-content: center;
  text-align: center;
}

/* Homepage solution glass cards. */
.solution-card {
  background: rgba(255,255,255,.065);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
  backdrop-filter: blur(15px) saturate(1.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}

/* Product groups: clear hover response for both parents and children. */
.catalog-group-card {
  isolation: isolate;
  transition: transform .32s cubic-bezier(.22,1,.36,1), border-color .28s ease, box-shadow .32s ease, background-color .28s ease;
}
.catalog-group-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: .22rem;
  background: #f8a01b;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.catalog-group-card:hover {
  z-index: 2;
  border-color: rgba(248,160,27,.42);
  background: #fffdfa;
  box-shadow: 0 22px 55px rgba(36,34,35,.10);
  transform: translateY(-6px);
}
.catalog-group-card:hover::before { transform: scaleX(1); }
.catalog-group-number { transition: color .28s ease, transform .32s cubic-bezier(.22,1,.36,1); }
.catalog-group-card:hover .catalog-group-number { color: rgba(248,160,27,.22); transform: translateY(-3px); }
.catalog-group-card h3 a { transition: color .2s ease; }
.catalog-group-card h3 a:hover { color: #e88c08; }
.catalog-group-links a,
.catalog-group-direct {
  margin-inline: -.45rem;
  padding-inline: .45rem;
  border-radius: .55rem;
  transition: color .2s ease, background-color .2s ease, padding .22s ease;
}
.catalog-group-links a:hover,
.catalog-group-direct:hover {
  padding-right: .7rem;
  color: #242223;
  background: rgba(248,160,27,.10);
}
.catalog-group-links a i,
.catalog-group-direct i { transition: transform .22s ease; }
.catalog-group-links a:hover i,
.catalog-group-direct:hover i { transform: translateX(-4px); }

/* Lightweight reveal system. JS only adds these classes when supported. */
@media (prefers-reduced-motion: no-preference) {
  .hp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .68s ease, transform .72s cubic-bezier(.22,1,.36,1);
    transition-delay: var(--hp-reveal-delay, 0ms);
  }
  .hp-reveal.hp-reveal--scale { transform: translateY(18px) scale(.985); }
  .hp-reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
  .hp-reveal img { transition: transform .8s cubic-bezier(.22,1,.36,1); }
  .hp-reveal:hover > img,
  .hp-reveal:hover figure > img { transform: scale(1.018); }
}
@media (prefers-reduced-motion: reduce) {
  .hp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* -------------------- Product single v2 -------------------- */
.hp-product-v2 { padding-top: 7.15rem; overflow: hidden; background: #f6f5f2; }
.hp-product-v2-hero { padding: .75rem; }
.hp-product-v2-hero__frame {
  position: relative;
  min-height: min(76vh, 760px);
  max-width: 1440px;
  margin-inline: auto;
  overflow: hidden;
  color: #fff;
  background: #242223;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), calc(100% - 3rem) 100%, 0 100%);
}
.hp-product-v2-hero__frame.no-image { background: radial-gradient(circle at 20% 30%, rgba(248,160,27,.24), transparent 34rem), #242223; }
.hp-product-v2-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hp-product-v2-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,18,19,.25), rgba(20,18,19,.56) 48%, rgba(20,18,19,.94)); }
.hp-product-v2-hero__content { position: relative; z-index: 2; display: flex; min-height: min(76vh, 760px); flex-direction: column; justify-content: space-between; padding: clamp(1.4rem,4vw,4rem); }
.hp-product-v2-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; width: fit-content; padding: .55rem .75rem; border: 1px solid rgba(255,255,255,.14); background: rgba(20,18,19,.22); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: rgba(255,255,255,.62); font-size: .68rem; font-weight: 800; }
.hp-product-v2-breadcrumb a { color: #ffb13c; }
.hp-product-v2-breadcrumb i { font-size: .52rem; opacity: .5; }
.hp-product-v2-titleblock { max-width: 850px; margin-top: auto; padding-top: 7rem; }
.hp-product-v2-en { display: inline-block; margin-bottom: .75rem; color: #ffb13c; font-size: .68rem; font-weight: 950; letter-spacing: .18em; }
.hp-product-v2-titleblock h1 { max-width: 900px; font-size: clamp(3.2rem,7vw,7rem) !important; line-height: 1.02 !important; font-weight: 950; letter-spacing: -.065em !important; }
.hp-product-v2-titleblock p { max-width: 680px; margin-top: 1.2rem; color: rgba(255,255,255,.68); font-size: clamp(.9rem,1.2vw,1.08rem); font-weight: 600; line-height: 2; }
.hp-product-v2-hero__bottom { display: flex; align-items: end; justify-content: space-between; gap: 1.2rem; margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.16); }
.hp-product-v2-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.hp-product-v2-tags a { padding: .45rem .72rem; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.04); font-size: .66rem; font-weight: 800; }
.hp-product-v2-cta { display: inline-flex; min-height: 3.35rem; align-items: center; gap: .65rem; padding: .75rem 1.15rem; border-radius: .9rem; color: #242223; background: #f8a01b; font-size: .76rem; font-weight: 950; transition: background-color .22s ease, transform .22s ease; }
.hp-product-v2-cta:hover { background: #fff; transform: translateY(-2px); }
.hp-product-v2-index { position: absolute; left: 1.5rem; bottom: 1.4rem; z-index: 3; color: rgba(255,255,255,.38); font-size: .55rem; font-weight: 900; letter-spacing: .16em; }

.hp-product-v2-body { max-width: 1240px; margin-inline: auto; padding: clamp(4.5rem,8vw,8rem) 1.25rem; }
.hp-product-v2-body__intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.55fr); gap: 2rem; align-items: end; padding-bottom: 2rem; border-bottom: 1px solid rgba(36,34,35,.11); }
.hp-product-v2-label { color: #f09a15; font-size: .6rem; font-weight: 950; letter-spacing: .17em; }
.hp-product-v2-body__intro h2 { margin-top: .45rem; font-size: clamp(2rem,4vw,3.7rem) !important; line-height: 1.18 !important; font-weight: 950; }
.hp-product-v2-body__intro > p { color: #777172; font-size: .86rem; font-weight: 650; line-height: 1.95; }
.hp-product-v2-body__grid { display: grid; grid-template-columns: minmax(0,1fr) 310px; gap: clamp(2rem,5vw,5rem); align-items: start; padding-top: clamp(2.5rem,5vw,4.5rem); }
.hp-product-v2-prose { max-width: 780px; color: #5c5758; font-size: 1rem; line-height: 2.3; }
.hp-product-v2-prose > p:first-child { color: #353132; font-size: 1.12rem; font-weight: 670; line-height: 2.25; }
.hp-product-v2-prose h2 { position: relative; margin: 2.8rem 0 .95rem; padding-right: 1.25rem; color: #242223; font-size: 1.55rem !important; font-weight: 950; }
.hp-product-v2-prose h2::before { position: absolute; top: .36rem; right: 0; width: .32rem; height: 1.45rem; border-radius: 99px; background: #f8a01b; content: ""; }
.hp-product-v2-prose p { margin-bottom: 1.15rem; }
.hp-product-v2-prose ul,
.hp-product-v2-prose ol { margin: 1.2rem 0; padding-right: 1.35rem; }
.hp-product-v2-side { position: sticky; top: 7.5rem; display: grid; gap: .85rem; }
.hp-product-v2-side__note { padding: 1.45rem; color: #fff; background: #242223; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%); }
.hp-product-v2-side__note > span { color: #ffb13c; font-size: .54rem; font-weight: 950; letter-spacing: .16em; }
.hp-product-v2-side__note > strong { display: block; margin-top: .9rem; font-size: 1.18rem; font-weight: 950; line-height: 1.75; }
.hp-product-v2-side__note > p { margin-top: .7rem; color: rgba(255,255,255,.52); font-size: .76rem; line-height: 1.95; }
.hp-product-v2-side__note a { display: flex; min-height: 3rem; align-items: center; gap: .55rem; margin-top: 1.15rem; padding: .65rem .8rem; border-radius: .7rem; color: #242223; background: #f8a01b; font-size: .7rem; font-weight: 950; }
.hp-product-v2-downloads { border: 1px solid rgba(36,34,35,.09); background: #fff; }
.hp-product-v2-downloads__head { display: grid; gap: .2rem; padding: 1rem; border-bottom: 1px solid rgba(36,34,35,.08); }
.hp-product-v2-downloads__head span { color: #aaa3a4; font-size: .54rem; font-weight: 950; letter-spacing: .15em; }
.hp-product-v2-downloads__head strong { font-size: .92rem; font-weight: 950; }
.hp-product-v2-downloads > a { display: flex; align-items: center; justify-content: space-between; gap: .7rem; padding: .9rem 1rem; border-bottom: 1px solid rgba(36,34,35,.06); color: #5e595a; font-size: .72rem; font-weight: 850; transition: color .2s ease, background-color .2s ease; }
.hp-product-v2-downloads > a:last-child { border-bottom: 0; }
.hp-product-v2-downloads > a:hover { color: #242223; background: #faf7f1; }
.hp-product-v2-downloads i { color: #f8a01b; }

.hp-product-v2-gallery { max-width: 1440px; margin-inline: auto; padding: clamp(4rem,7vw,7rem) clamp(.75rem,3vw,2.5rem); background: #ebe8e2; }
.hp-product-v2-gallery__head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; max-width: 1240px; margin: 0 auto 2rem; }
.hp-product-v2-gallery__head span { color: #f09a15; font-size: .58rem; font-weight: 950; letter-spacing: .17em; }
.hp-product-v2-gallery__head h2 { margin-top: .35rem; font-size: clamp(1.8rem,3vw,3rem) !important; font-weight: 950; }
.hp-product-v2-gallery__head > p { max-width: 340px; color: #777172; font-size: .8rem; line-height: 1.9; }
.hp-product-v2-gallery__grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: minmax(240px, 31vw); gap: .7rem; max-width: 1240px; margin-inline: auto; }
.hp-product-v2-gallery__item { position: relative; overflow: hidden; background: #d9d4cd; }
.hp-product-v2-gallery__item.is-featured { grid-row: span 2; }
.hp-product-v2-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,1,.36,1); }
.hp-product-v2-gallery__item:hover img { transform: scale(1.025); }
.hp-product-v2-gallery__item figcaption { position: absolute; right: .7rem; bottom: .7rem; padding: .38rem .55rem; color: #fff; background: rgba(20,18,19,.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); font-size: .6rem; font-weight: 850; }

.hp-product-v2-final { display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 1240px; margin: clamp(4rem,8vw,7rem) auto; padding: clamp(1.8rem,4vw,3rem); color: #242223; background: #f8a01b; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%); }
.hp-product-v2-final span { color: rgba(36,34,35,.48); font-size: .56rem; font-weight: 950; letter-spacing: .16em; }
.hp-product-v2-final h2 { max-width: 700px; margin-top: .35rem; font-size: clamp(1.6rem,3vw,2.7rem) !important; font-weight: 950; }
.hp-product-v2-final > a { display: inline-flex; min-width: 190px; min-height: 3.5rem; align-items: center; gap: .65rem; padding: .75rem 1rem; border-radius: .85rem; color: #fff; background: #242223; font-size: .75rem; font-weight: 950; }

/* -------------------- Article single v2 -------------------- */
.hp-article-v2 { padding-top: 7.1rem; overflow: hidden; background: #f6f5f2; }
.hp-article-v2-progress { position: fixed; top: 0; right: 0; left: 0; z-index: 100; height: 3px; pointer-events: none; }
.hp-article-v2-progress span { display: block; width: 0; height: 100%; background: #f8a01b; transform-origin: right center; }
.hp-article-v2-header { max-width: 1120px; margin-inline: auto; padding: clamp(4rem,8vw,7rem) 1.25rem clamp(2.5rem,5vw,4rem); }
.hp-article-v2-header__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem .9rem; color: #999293; font-size: .67rem; font-weight: 850; }
.hp-article-v2-header__meta > * + *::before { display: inline-block; width: .25rem; height: .25rem; margin-left: .8rem; border-radius: 50%; background: #f8a01b; vertical-align: middle; content: ""; }
.hp-article-v2-header__meta a { color: #e9910f; }
.hp-article-v2-header h1 { max-width: 1020px; margin-top: 1.25rem; color: #242223; font-size: clamp(3rem,6.5vw,6.5rem) !important; line-height: 1.13 !important; font-weight: 950; letter-spacing: -.06em !important; }
.hp-article-v2-deck { max-width: 780px; margin-top: 1.4rem; color: #6b6566; font-size: clamp(.95rem,1.4vw,1.1rem); line-height: 2.05; }
.hp-article-v2-cover { position: relative; max-width: 1320px; margin-inline: auto; padding-inline: .75rem; }
.hp-article-v2-cover > img { display: block; width: 100%; aspect-ratio: 16/7.2; object-fit: cover; background: #ddd8d1; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 0 100%); }
.hp-article-v2-cover figcaption { display: flex; justify-content: space-between; gap: 1rem; padding: .65rem .15rem 0; color: #aaa3a4; font-size: .55rem; font-weight: 900; letter-spacing: .12em; }
.hp-article-v2-reading { display: grid; grid-template-columns: 82px minmax(0,780px); justify-content: center; gap: clamp(1.5rem,4vw,4rem); max-width: 1040px; margin-inline: auto; padding: clamp(4rem,7vw,7rem) 1.25rem; }
.hp-article-v2-rail { position: sticky; top: 8rem; align-self: start; display: grid; justify-items: center; gap: .2rem; padding: 1rem .5rem; border-left: 1px solid rgba(36,34,35,.10); color: #aaa3a4; text-align: center; }
.hp-article-v2-rail span { font-size: .48rem; font-weight: 950; letter-spacing: .14em; writing-mode: vertical-rl; transform: rotate(180deg); }
.hp-article-v2-rail b { margin-top: .7rem; color: #242223; font-size: 1.35rem; font-weight: 950; }
.hp-article-v2-rail small { font-size: .5rem; font-weight: 900; letter-spacing: .1em; }
.hp-article-v2-content { color: #565152; font-size: 1.03rem; line-height: 2.35; }
.hp-article-v2-content > p:first-child { color: #343031; font-size: 1.16rem; font-weight: 680; line-height: 2.25; }
.hp-article-v2-content p { margin-bottom: 1.2rem; }
.hp-article-v2-content h2 { position: relative; margin: 3.2rem 0 1rem; padding-top: 1.1rem; color: #242223; font-size: clamp(1.55rem,2.5vw,2rem) !important; font-weight: 950; }
.hp-article-v2-content h2::before { position: absolute; top: 0; right: 0; width: 3.2rem; height: .2rem; background: #f8a01b; content: ""; }
.hp-article-v2-content h3 { margin: 2.4rem 0 .8rem; color: #242223; font-size: 1.35rem !important; font-weight: 950; }
.hp-article-v2-content blockquote { margin: 2.2rem 0; padding: 1.5rem 1.7rem; border: 0; border-right: 4px solid #f8a01b; color: #3e393a; background: #ebe8e2; font-size: 1.05rem; font-weight: 700; line-height: 2.1; }
.hp-article-v2-content img { max-width: 100%; margin: 2rem auto; }
.hp-article-v2-content ul,
.hp-article-v2-content ol { margin: 1.25rem 0; padding-right: 1.4rem; }
.hp-article-v2-content li { margin: .45rem 0; }

.hp-article-v2-consult { display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 1080px; margin: 0 auto clamp(5rem,9vw,8rem); padding: clamp(1.8rem,4vw,3rem); color: #fff; background: #242223; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%); }
.hp-article-v2-consult span { color: #ffb13c; font-size: .56rem; font-weight: 950; letter-spacing: .16em; }
.hp-article-v2-consult h2 { max-width: 620px; margin-top: .4rem; font-size: clamp(1.55rem,3vw,2.6rem) !important; font-weight: 950; }
.hp-article-v2-consult > a { display: inline-flex; min-width: 190px; min-height: 3.45rem; align-items: center; gap: .65rem; padding: .75rem 1rem; border-radius: .85rem; color: #242223; background: #f8a01b; font-size: .74rem; font-weight: 950; }
.hp-article-v2-related { max-width: 1240px; margin-inline: auto; padding: 0 1.25rem clamp(5rem,8vw,7rem); }
.hp-article-v2-related__head { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; }
.hp-article-v2-related__head span { color: #aaa3a4; font-size: .56rem; font-weight: 950; letter-spacing: .15em; }
.hp-article-v2-related__head h2 { margin-top: .25rem; font-size: clamp(1.7rem,3vw,2.5rem) !important; font-weight: 950; }
.hp-article-v2-related__head > a { display: inline-flex; align-items: center; gap: .5rem; color: #554f50; font-size: .72rem; font-weight: 900; }
.hp-article-v2-related__head > a i { color: #f8a01b; }
.hp-article-v2-related__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .85rem; }
.hp-article-v2-card { background: #fff; transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; }
.hp-article-v2-card:hover { box-shadow: 0 22px 50px rgba(36,34,35,.09); transform: translateY(-5px); }
.hp-article-v2-card__image { display: block; overflow: hidden; aspect-ratio: 16/10; background: #ded9d2; }
.hp-article-v2-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.hp-article-v2-card:hover .hp-article-v2-card__image img { transform: scale(1.025); }
.hp-article-v2-card > div { padding: 1.15rem; }
.hp-article-v2-card > div > span { color: #a49d9e; font-size: .6rem; font-weight: 800; }
.hp-article-v2-card h3 { margin-top: .55rem; font-size: 1.02rem; font-weight: 950; line-height: 1.85; }
.hp-article-v2-card__link { display: inline-flex; align-items: center; gap: .45rem; margin-top: .9rem; color: #524d4e; font-size: .7rem; font-weight: 900; }
.hp-article-v2-card__link i { color: #f8a01b; }

@media (max-width: 1023px) {
  .hp-product-v2-body__grid { grid-template-columns: 1fr; }
  .hp-product-v2-side { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hp-product-v2-gallery__grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: minmax(260px,48vw); }
  .hp-product-v2-gallery__item.is-featured { grid-row: span 1; grid-column: span 2; }
  .hp-article-v2-related__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 767px) {
  .hp-product-v2,
  .hp-article-v2 { padding-top: 5.85rem; }
  .hp-product-v2-hero { padding: .4rem; }
  .hp-product-v2-hero__frame,
  .hp-product-v2-hero__content { min-height: 670px; }
  .hp-product-v2-hero__content { padding: 1.2rem; }
  .hp-product-v2-titleblock { padding-top: 5rem; }
  .hp-product-v2-titleblock h1 { font-size: 3.3rem !important; }
  .hp-product-v2-hero__bottom { align-items: stretch; flex-direction: column; }
  .hp-product-v2-cta { width: 100%; }
  .hp-product-v2-index { display: none; }
  .hp-product-v2-body { padding: 4rem 1rem; }
  .hp-product-v2-body__intro { grid-template-columns: 1fr; gap: 1rem; }
  .hp-product-v2-body__intro h2 { font-size: 2.35rem !important; }
  .hp-product-v2-body__grid { gap: 2rem; }
  .hp-product-v2-side { grid-template-columns: 1fr; }
  .hp-product-v2-gallery { padding: 4rem .5rem; }
  .hp-product-v2-gallery__head { align-items: start; flex-direction: column; gap: .7rem; padding-inline: .5rem; }
  .hp-product-v2-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 380px; }
  .hp-product-v2-gallery__item.is-featured { grid-column: auto; }
  .hp-product-v2-final { align-items: stretch; flex-direction: column; margin: 3.5rem .5rem; }
  .hp-product-v2-final > a { width: 100%; }

  .hp-article-v2-header { padding: 3.5rem 1rem 2.3rem; }
  .hp-article-v2-header h1 { font-size: 3.15rem !important; }
  .hp-article-v2-cover { padding-inline: .45rem; }
  .hp-article-v2-cover > img { aspect-ratio: 4/3; }
  .hp-article-v2-cover figcaption { padding-inline: .15rem; }
  .hp-article-v2-reading { grid-template-columns: 1fr; padding: 3.5rem 1rem; }
  .hp-article-v2-rail { display: none; }
  .hp-article-v2-content { font-size: .98rem; line-height: 2.25; }
  .hp-article-v2-content > p:first-child { font-size: 1.07rem; }
  .hp-article-v2-consult { align-items: stretch; flex-direction: column; margin: 0 .5rem 4.5rem; }
  .hp-article-v2-consult > a { width: 100%; }
  .hp-article-v2-related { padding-inline: 1rem; }
  .hp-article-v2-related__head { align-items: start; flex-direction: column; gap: .7rem; }
  .hp-article-v2-related__grid { grid-template-columns: 1fr; }

  .catalog-group-card:hover { transform: translateY(-3px); }
}
