/* =========================================================
   HB GROUP
   HOMEPAGE v4
   Premium desktop presentation + compact swipe-first mobile
========================================================= */

.home-page {
    overflow: hidden;
}

.home-section {
    position: relative;
    padding: 108px 0;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: var(--hb-blue-dark);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.home-kicker>span {
    width: 32px;
    height: 1px;
    flex: 0 0 32px;
    background: var(--hb-blue);
}

.home-kicker--light {
    color: var(--hb-blue-light);
}

.home-section h2,
.home-final h2,
.home-emergency h2 {
    margin: 0;
    font-size: clamp(36px, 4.3vw, 62px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.home-section h2 {
    color: #0b1119;
}

.home-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 50px;
}

.home-section-head>div {
    max-width: 850px;
}

.home-section-head>p {
    max-width: 520px;
    margin: 0 0 6px;
    color: #697482;
    font-size: 14px;
    line-height: 1.8;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #151b24;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: gap .25s ease, color .25s ease;
}

.home-text-link span {
    color: var(--hb-blue);
    font-size: 17px;
}

.home-text-link:hover {
    gap: 15px;
    color: var(--hb-blue-dark);
}

.home-text-link--light {
    color: #fff;
}

.home-mobile-swipe {
    display: none;
}

/* =========================================================
   JS REVEALS
========================================================= */

.js .home-reveal {
    opacity: 0;
    transition:
        opacity .75s cubic-bezier(.2, .7, .2, 1),
        transform .85s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.js .home-reveal--up {
    transform: translate3d(0, 42px, 0);
}

.js .home-reveal--left {
    transform: translate3d(-48px, 0, 0);
}

.js .home-reveal--right {
    transform: translate3d(48px, 0, 0);
}

.js .home-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* =========================================================
   HERO
========================================================= */

.home-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: #02050a;
}

.home-hero__media,
.home-hero__shade,
.home-hero__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-hero__media {
    z-index: -5;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    transform: scale(1.025);
    transition: transform .15s linear;
}

.home-hero__shade {
    z-index: -4;
    background:
        linear-gradient(90deg,
            rgba(1, 4, 9, .995) 0%,
            rgba(1, 4, 9, .97) 25%,
            rgba(1, 4, 9, .82) 46%,
            rgba(1, 4, 9, .36) 72%,
            rgba(1, 4, 9, .12) 100%),
        linear-gradient(0deg, rgba(1, 4, 9, .70) 0%, transparent 47%);
}

.home-hero__grid {
    z-index: -3;
    opacity: .15;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.home-hero__glow {
    position: absolute;
    z-index: -2;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(30px);
}

.home-hero__glow--blue {
    left: -340px;
    top: 20px;
    background: radial-gradient(circle, rgba(38, 140, 255, .18), transparent 68%);
}

.home-hero__glow--red {
    right: -360px;
    bottom: -360px;
    background: radial-gradient(circle, rgba(255, 56, 56, .14), transparent 68%);
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 62px;
    padding-bottom: 158px;
}

.home-hero__content {
    width: min(760px, 59%);
}

.home-hero__title {
    margin: 0;
    font-size: clamp(55px, 5.9vw, 92px);
    font-weight: 860;
    line-height: .92;
    letter-spacing: -0.058em;
}

.home-hero__line {
    display: block;
    overflow: hidden;
    padding-bottom: .06em;
}

.js .home-hero__line {
    opacity: 0;
    transform: translate3d(0, 105%, 0);
    animation: heroLineIn .9s cubic-bezier(.18, .8, .2, 1) forwards;
}

.js .home-hero__line:nth-child(1) {
    animation-delay: .12s;
}

.js .home-hero__line:nth-child(2) {
    animation-delay: .24s;
}

.js .home-hero__line:nth-child(3) {
    animation-delay: .36s;
}

@keyframes heroLineIn {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.home-hero__line--white {
    color: #fff;
}

.home-hero__line--blue {
    color: #55a8ff;
}

.home-animate {
    opacity: 1;
}

.js .home-animate {
    opacity: 0;
    animation: heroSmallIn .7s cubic-bezier(.2, .75, .2, 1) forwards;
    animation-delay: var(--animate-delay, .05s);
}

.js .home-animate[data-delay="260"] {
    animation-delay: .48s;
}

.js .home-animate[data-delay="340"] {
    animation-delay: .58s;
}

.js .home-animate[data-delay="430"] {
    animation-delay: .68s;
}

.js .home-animate--left {
    transform: translateX(-28px);
}

.js .home-animate--up {
    transform: translateY(24px);
}

@keyframes heroSmallIn {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.home-hero__lead {
    max-width: 610px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.75;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 35px;
}

.home-hero__quote {
    min-height: 58px;
    padding-inline: 29px;
}

.home-hero__quote svg {
    width: 17px;
    height: 17px;
    margin-left: 11px;
    transition: transform .25s ease;
}

.home-hero__quote:hover svg {
    transform: translateX(4px);
}

.home-hero__call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.home-hero__call-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    border: 1px solid rgba(85, 168, 255, .25);
    border-radius: 50%;
    background: rgba(38, 140, 255, .09);
    color: var(--hb-blue-light);
}

.home-hero__call-icon svg {
    width: 18px;
    height: 18px;
}

.home-hero__call>span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.home-hero__call small {
    margin-bottom: 5px;
    color: #8490a0;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-hero__call strong {
    font-size: 16px;
    font-weight: 850;
}

.home-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    margin-top: 31px;
    color: #a2acb9;
    font-size: 9px;
    font-weight: 760;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-hero__trust i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #39d98a;
    box-shadow: 0 0 10px rgba(57, 217, 138, .52);
}

.home-hero__rail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    border-top: 1px solid rgba(255, 255, 255, .09);
    background: rgba(2, 5, 10, .9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.home-hero__rail-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.home-hero__rail a {
    position: relative;
    min-height: 98px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 14px;
    padding: 18px 30px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: background .25s ease;
}

.home-hero__rail a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.home-hero__rail a:hover {
    background: rgba(38, 140, 255, .075);
}

.home-hero__rail a>span {
    grid-row: 1 / 3;
    align-self: center;
    color: var(--hb-blue-light);
    font-size: 9px;
    font-weight: 850;
}

.home-hero__rail strong {
    color: #fff;
    font-size: 12px;
    font-weight: 820;
}

.home-hero__rail small {
    margin-top: 2px;
    color: #707c8c;
    font-size: 9px;
}

/* =========================================================
   CREDENTIAL BAR
========================================================= */

.home-credentials {
    position: relative;
    z-index: 5;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid #e3e7eb;
}

.home-credentials__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-credential {
    position: relative;
    min-height: 106px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 23px 27px;
    overflow: hidden;
    border-right: 1px solid #e3e7eb;
    background: #ffffff;
    transition:
        background .3s ease,
        transform .3s ease;
}

.home-credential:first-child {
    border-left: 1px solid #e3e7eb;
}

.home-credential::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--hb-blue);
    transition: width .35s ease;
}

.home-credential:hover {
    background: #f8fafc;
}

.home-credential:hover::before {
    width: 100%;
}

.home-credential__number {
    flex: 0 0 auto;
    color: var(--hb-blue);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
}

.home-credential>div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-credential strong {
    color: #151c25;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -.01em;
}

.home-credential small {
    color: #8993a0;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================================================
   INTRO
========================================================= */

.home-intro {
    background: #fff;
}

.home-intro::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(38, 140, 255, .35));
}

.home-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 100px;
    align-items: end;
}

.home-intro__copy p {
    max-width: 610px;
    margin: 0 0 28px;
    color: #687381;
    font-size: 15px;
    line-height: 1.86;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 72px;
    border-top: 1px solid #e1e6eb;
    border-bottom: 1px solid #e1e6eb;
}

.home-trust-card {
    position: relative;
    min-height: 160px;
    padding: 26px 28px;
    border-right: 1px solid #e1e6eb;
}

.home-trust-card:first-child {
    border-left: 1px solid #e1e6eb;
}

.home-trust-card__number {
    display: block;
    margin-bottom: 25px;
    color: var(--hb-blue);
    font-size: 9px;
    font-weight: 850;
}

.home-trust-card strong {
    display: block;
    color: #111821;
    font-size: 19px;
    font-weight: 850;
}

.home-trust-card p {
    max-width: 230px;
    margin: 5px 0 0;
    color: #7a8491;
    font-size: 11px;
    line-height: 1.6;
}

/* =========================================================
   SERVICES
========================================================= */

.home-services {
    background:
        linear-gradient(rgba(255, 255, 255, .76), rgba(255, 255, 255, .76)),
        #f3f5f7;
    border-top: 1px solid #e8ebef;
    border-bottom: 1px solid #e8ebef;
}

.home-services__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-service-card {
    position: relative;
    min-height: 345px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    border: 1px solid #dfe4e9;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(13, 21, 31, .035);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.home-service-card:hover {
    transform: translateY(-7px);
    border-color: #c9d4df;
    box-shadow: 0 22px 50px rgba(13, 21, 31, .09);
}

.home-service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--hb-blue);
}

.home-service-card--heat .home-service-card__accent,
.home-service-card--emergency .home-service-card__accent {
    background: var(--hb-red);
}

.home-service-card__number {
    color: #98a2af;
    font-size: 9px;
    font-weight: 850;
}

.home-service-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin: 34px 0 35px;
    border: 1px solid rgba(38, 140, 255, .12);
    border-radius: 10px;
    background: rgba(38, 140, 255, .06);
    color: var(--hb-blue-dark);
}

.home-service-card--heat .home-service-card__icon,
.home-service-card--emergency .home-service-card__icon {
    border-color: rgba(255, 56, 56, .13);
    background: rgba(255, 56, 56, .055);
    color: var(--hb-red-dark);
}

.home-service-card__icon svg {
    width: 23px;
    height: 23px;
}

.home-service-card__content small {
    display: block;
    margin-bottom: 6px;
    color: #929daa;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-service-card h3 {
    margin: 0 0 11px;
    color: #111821;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.home-service-card p {
    margin: 0;
    color: #6e7885;
    font-size: 12px;
    line-height: 1.72;
}

.home-service-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 28px;
    color: #35404d;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.home-service-card__link b {
    color: var(--hb-blue);
    font-size: 18px;
    transition: transform .25s ease;
}

.home-service-card:hover .home-service-card__link b {
    transform: translateX(4px);
}

.home-service-card--heat .home-service-card__link b,
.home-service-card--emergency .home-service-card__link b {
    color: var(--hb-red);
}

.home-services__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

/* =========================================================
   COMMERCIAL FEATURE
========================================================= */

.home-commercial {
    overflow: hidden;
    background: #080a0e;
}

.home-commercial__panel {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    min-height: 590px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 16px;
    background:
        radial-gradient(circle at 13% 25%, rgba(38, 140, 255, .18), transparent 31%),
        linear-gradient(135deg, #11151b, #06070a 72%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.home-commercial__visual {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, .07);
    background:
        linear-gradient(155deg, rgba(38, 140, 255, .16), transparent 45%),
        #090d13;
}

.home-commercial__rings,
.home-commercial__rings::before,
.home-commercial__rings::after {
    position: absolute;
    border: 1px solid rgba(85, 168, 255, .15);
    border-radius: 50%;
}

.home-commercial__rings {
    width: 460px;
    height: 460px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-commercial__rings::before,
.home-commercial__rings::after {
    content: "";
    inset: 55px;
}

.home-commercial__rings::after {
    inset: 125px;
    border-color: rgba(85, 168, 255, .28);
}

.home-commercial__temperature {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -.05em;
}

.home-commercial__visual-label {
    position: absolute;
    left: 34px;
    bottom: 34px;
    color: #7f8b9c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-commercial__content {
    align-self: center;
    padding: 72px;
}

.home-commercial h2 {
    max-width: 760px;
    color: #fff;
}

.home-commercial__content>p {
    max-width: 680px;
    margin: 23px 0 0;
    color: #8e99a8;
    font-size: 14px;
    line-height: 1.82;
}

.home-commercial__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.home-commercial__features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
    background: rgba(255, 255, 255, .035);
    color: #c4ccd6;
    font-size: 9px;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.home-commercial__features i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hb-blue-light);
}

.home-commercial__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 34px;
}

.home-commercial__link {
    color: #d3dae3;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* =========================================================
   PROPERTY / HEATING
========================================================= */

.home-property {
    background: #fff;
}

.home-property__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(330px, .72fr);
    gap: 90px;
    align-items: center;
}

.home-property__content>p {
    max-width: 720px;
    margin: 23px 0 0;
    color: #6b7684;
    font-size: 14px;
    line-height: 1.84;
}

.home-property__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 36px;
}

.home-property__links a {
    min-height: 75px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 17px;
    padding: 0 21px;
    border: 1px solid #e0e5ea;
    border-radius: 8px;
    background: #fff;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-property__links a:hover {
    transform: translateY(-3px);
    border-color: rgba(38, 140, 255, .28);
    box-shadow: 0 13px 30px rgba(12, 20, 30, .06);
}

.home-property__links span {
    color: var(--hb-blue);
    font-size: 8px;
    font-weight: 850;
}

.home-property__links strong {
    color: #17202a;
    font-size: 13px;
    font-weight: 800;
}

.home-property__links b {
    color: var(--hb-blue);
    font-size: 17px;
}

.home-property__aside {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 14px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 56, 56, .15), transparent 35%),
        linear-gradient(145deg, #15171c, #07080a);
    box-shadow: 0 25px 60px rgba(13, 20, 30, .14);
}

.home-property__aside::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -110px;
    bottom: -110px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.home-property__eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #8792a1;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-property__aside>strong {
    display: block;
    color: #fff;
    font-size: clamp(30px, 3vw, 43px);
    font-weight: 900;
    letter-spacing: -.04em;
}

.home-property__aside p {
    max-width: 340px;
    margin: 15px 0 26px;
    color: #929daa;
    font-size: 12px;
    line-height: 1.72;
}

.home-property__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 25px;
}

.home-property__badges span {
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 5px;
    color: #9da8b6;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =========================================================
   WHY
========================================================= */

.home-why {
    background: #f4f6f8;
    border-top: 1px solid #e6eaee;
    border-bottom: 1px solid #e6eaee;
}

.home-why__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-why-card {
    position: relative;
    min-height: 295px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid #dfe4e8;
    border-radius: 10px;
    background: #fff;
}

.home-why-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    top: -70px;
    right: -65px;
    border: 1px solid rgba(38, 140, 255, .11);
    border-radius: 50%;
}

.home-why-card__number {
    color: #a1aab5;
    font-size: 8px;
    font-weight: 850;
}

.home-why-card__icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin: 40px 0 31px;
    border-radius: 50%;
    background: rgba(38, 140, 255, .07);
    color: var(--hb-blue);
    font-size: 17px;
}

.home-why-card h3 {
    margin: 0 0 10px;
    color: #151c25;
    font-size: 18px;
    font-weight: 850;
}

.home-why-card p {
    margin: 0;
    color: #737e8b;
    font-size: 11px;
    line-height: 1.72;
}

/* =========================================================
   PROCESS
========================================================= */

.home-process {
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(38, 140, 255, .12), transparent 30%),
        #080a0d;
}

.home-process__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 52px;
}

.home-process h2 {
    max-width: 760px;
    color: #fff;
}

.home-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.home-process__step {
    min-height: 255px;
    padding: 29px;
    border-right: 1px solid rgba(255, 255, 255, .09);
}

.home-process__step:first-child {
    border-left: 1px solid rgba(255, 255, 255, .09);
}

.home-process__step>span {
    display: block;
    margin-bottom: 55px;
    color: var(--hb-blue-light);
    font-size: 9px;
    font-weight: 850;
}

.home-process__step small {
    color: #596577;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-process__step h3 {
    margin: 6px 0 11px;
    color: #fff;
    font-size: 18px;
    font-weight: 820;
}

.home-process__step p {
    margin: 0;
    color: #7f8b9b;
    font-size: 11px;
    line-height: 1.72;
}

/* =========================================================
   EMERGENCY BAND
========================================================= */

.home-emergency {
    padding: 54px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(255, 56, 56, .13), transparent 42%),
        #111318;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.home-emergency__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.home-emergency__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 90, 82, .32);
    border-radius: 50%;
    color: var(--hb-red-light);
    font-size: 23px;
    font-weight: 900;
}

.home-emergency__copy>span {
    display: block;
    margin-bottom: 5px;
    color: var(--hb-red-light);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-emergency h2 {
    color: #fff;
    font-size: clamp(25px, 3vw, 39px);
}

.home-emergency__actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.home-emergency__actions>a:first-child {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
}

.home-emergency__actions small {
    margin-bottom: 4px;
    color: #808b9b;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-emergency__actions strong {
    color: #fff;
    font-size: 17px;
    font-weight: 850;
}

/* =========================================================
   AREAS
========================================================= */

.home-areas {
    background: #fff;
}

.home-areas__layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 14px;
}

.home-areas__statement {
    min-height: 448px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px;
    overflow: hidden;
    border-radius: 12px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(38, 140, 255, .22), transparent 35%),
        linear-gradient(145deg, #12151b, #07080b);
}

.home-areas__statement-small {
    margin-bottom: auto;
    color: #7e8999;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-areas__statement>strong {
    display: block;
    margin-bottom: 27px;
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.055em;
}

.home-areas__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-area-card {
    position: relative;
    min-height: 217px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px;
    overflow: hidden;
    border: 1px solid #dfe5ea;
    border-radius: 11px;
    background: linear-gradient(145deg, #fff, #f8fafb);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.home-area-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -85px;
    right: -70px;
    border: 1px solid rgba(38, 140, 255, .12);
    border-radius: 50%;
}

.home-area-card:hover {
    transform: translateY(-5px);
    border-color: rgba(38, 140, 255, .28);
    box-shadow: 0 18px 40px rgba(13, 22, 32, .07);
}

.home-area-card>span {
    color: var(--hb-blue);
    font-size: 9px;
    font-weight: 850;
}

.home-area-card small {
    display: block;
    margin-bottom: 4px;
    color: #8b96a3;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-area-card strong {
    color: #131b24;
    font-size: 25px;
    font-weight: 850;
}

.home-area-card b {
    position: absolute;
    right: 26px;
    bottom: 26px;
    color: var(--hb-blue);
    font-size: 19px;
}

/* =========================================================
   FAQ
========================================================= */

.home-faq {
    background: #f4f6f8;
    border-top: 1px solid #e7eaee;
}

.home-faq__grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 105px;
    align-items: start;
}

.home-faq__intro {
    position: sticky;
    top: 40px;
}

.home-faq__intro p {
    max-width: 420px;
    margin: 21px 0 28px;
    color: #6f7986;
    font-size: 13px;
    line-height: 1.78;
}

.home-faq__phone {
    position: relative;
    max-width: 355px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 20px 22px;
    border: 1px solid #dde3e8;
    border-radius: 9px;
    background: #fff;
}

.home-faq__phone small {
    color: #8c97a4;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-faq__phone strong {
    color: #17202a;
    font-size: 18px;
    font-weight: 850;
}

.home-faq__phone span {
    grid-column: 2;
    grid-row: 1 / 3;
    color: var(--hb-blue);
    font-size: 18px;
}

.home-faq__items {
    border-top: 1px solid #d9dfe5;
}

.home-faq details {
    border-bottom: 1px solid #d9dfe5;
}

.home-faq summary {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 0 4px;
    list-style: none;
    cursor: pointer;
    color: #151d26;
    font-size: 14px;
    font-weight: 800;
}

.home-faq summary::-webkit-details-marker {
    display: none;
}

.home-faq summary span {
    color: var(--hb-blue);
    font-size: 21px;
    font-weight: 400;
    transition: transform .25s ease;
}

.home-faq details[open] summary span {
    transform: rotate(45deg);
}

.home-faq details p {
    max-width: 720px;
    margin: -5px 0 26px;
    padding-right: 48px;
    color: #717c89;
    font-size: 12px;
    line-height: 1.76;
}

/* =========================================================
   FINAL CTA
========================================================= */

.home-final {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    color: #fff;
    background:
        radial-gradient(circle at 15% 50%, rgba(38, 140, 255, .22), transparent 34%),
        radial-gradient(circle at 90% 70%, rgba(255, 56, 56, .09), transparent 24%),
        #07090c;
}

.home-final__grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.home-final__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    align-items: end;
}

.home-final h2 {
    max-width: 760px;
    color: #fff;
}

.home-final p {
    max-width: 650px;
    margin: 18px 0 0;
    color: #8f9aa9;
    font-size: 13px;
    line-height: 1.75;
}

.home-final__actions {
    display: flex;
    align-items: center;
    gap: 26px;
}

.home-final__phone {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.home-final__phone small {
    margin-bottom: 5px;
    color: #7e8998;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-final__phone strong {
    color: #fff;
    font-size: 17px;
    font-weight: 850;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .home-section {
        padding: 88px 0;
    }

    .home-section-head {
        gap: 45px;
    }

    .home-hero__content {
        width: 68%;
        padding: 40px;
    }

    .home-intro__grid {
        gap: 60px;
    }

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

    .home-trust-card:nth-child(2) {
        border-right: 1px solid #e1e6eb;
    }

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

    .home-commercial__panel {
        grid-template-columns: .7fr 1.3fr;
    }

    .home-commercial__content {
        padding: 50px;
    }

    .home-property__grid {
        gap: 50px;
    }

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

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

    .home-process__step:nth-child(2) {
        border-right: 0;
    }

    .home-process__step:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, .09);
    }

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

    .home-emergency__actions {
        grid-column: 2;
    }

    .home-areas__layout {
        grid-template-columns: .65fr 1.35fr;
    }

    .home-faq__grid {
        gap: 60px;
    }
}

/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

@media (max-width: 760px) {

    .home-section {
        padding: 58px 0;
    }

    .home-section h2,
    .home-final h2 {
        font-size: clamp(31px, 9.4vw, 43px);
        line-height: 1.02;
    }

    .home-kicker {
        gap: 9px;
        margin-bottom: 13px;
        font-size: 8px;
        letter-spacing: .12em;
    }

    .home-kicker>span {
        width: 23px;
        flex-basis: 23px;
    }

    .home-section-head {
        display: block;
        margin-bottom: 27px;
    }

    .home-section-head>p {
        margin-top: 14px;
        font-size: 11px;
        line-height: 1.68;
    }

    .home-mobile-swipe {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        margin-top: 10px;
        color: #8b95a2;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .home-mobile-swipe span {
        color: var(--hb-blue);
        font-size: 14px;
    }

    /* Hero */

    .home-hero {
        min-height: 650px;
    }

    .home-hero__media img {
        object-position: 69% center;
    }

    .home-hero__shade {
        background:
            linear-gradient(90deg, rgba(1, 4, 9, .98), rgba(1, 4, 9, .79) 72%, rgba(1, 4, 9, .45)),
            linear-gradient(0deg, rgba(1, 4, 9, .88), transparent 58%);
    }

    .home-hero__grid {
        display: none;
    }

    .home-hero__inner {
        align-items: flex-start;
        padding-top: 53px;
        padding-bottom: 125px;
    }

    .home-hero__content {
        width: 100%;
        max-width: 560px;
        padding: 20px !important;
    }

    .home-hero__title {
        font-size: clamp(39px, 11.6vw, 57px);
        line-height: .95;
    }

    .home-hero__lead {
        max-width: 480px;
        margin-top: 20px;
        font-size: 12px;
        line-height: 1.66;
    }

    .home-hero__actions {
        gap: 17px;
        margin-top: 25px;
    }

    .home-hero__quote {
        min-height: 51px;
        padding-inline: 21px;
    }

    .home-hero__call-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .home-hero__call strong {
        font-size: 14px;
    }

    .home-hero__trust {
        gap: 10px 15px;
        margin-top: 24px;
        font-size: 7px;
    }

    .home-hero__rail {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .home-hero__rail::-webkit-scrollbar {
        display: none;
    }

    .home-hero__rail-inner {
        width: max-content;
        min-width: 100%;
        display: flex;
        padding-inline: 18px;
    }

    .home-hero__rail a,
    .home-hero__rail a:first-child {
        width: 230px;
        min-height: 82px;
        flex: 0 0 230px;
        padding: 15px 18px;
        border-left: 0;
    }

    /* Marquee */

    .home-marquee__track {
        gap: 20px;
        padding: 13px 0;
        animation-duration: 26s;
    }

    .home-marquee__track span {
        font-size: 8px;
    }

    /* Intro */

    .home-intro__grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .home-intro__copy p {
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 1.72;
    }

    .home-trust-grid {
        width: calc(100% + 18px);
        display: flex;
        gap: 10px;
        margin-top: 35px;
        overflow-x: auto;
        padding: 1px 18px 8px 0;
        border: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-trust-grid::-webkit-scrollbar {
        display: none;
    }

    .home-trust-card,
    .home-trust-card:first-child {
        min-width: min(70vw, 255px);
        min-height: 150px;
        flex: 0 0 min(70vw, 255px);
        padding: 22px;
        border: 1px solid #e1e6eb;
        border-radius: 9px;
        scroll-snap-align: start;
    }

    /* Swipe tracks */

    .home-services__track,
    .home-why__track {
        width: calc(100% + 18px);
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        padding: 1px 18px 10px 0;
        scrollbar-width: none;
    }

    .home-services__track::-webkit-scrollbar,
    .home-why__track::-webkit-scrollbar {
        display: none;
    }

    .home-service-card,
    .home-why-card {
        scroll-snap-align: start;
    }

    .home-service-card {
        min-width: min(82vw, 330px);
        min-height: 310px;
        padding: 22px;
    }

    .home-service-card__icon {
        width: 45px;
        height: 45px;
        margin: 26px 0 26px;
    }

    .home-service-card h3 {
        font-size: 19px;
    }

    .home-service-card p {
        font-size: 11px;
        line-height: 1.65;
    }

    .home-services__footer {
        justify-content: flex-start;
        margin-top: 18px;
    }

    /* Commercial */

    .home-commercial {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .home-commercial__panel {
        display: block;
        min-height: 0;
        border-radius: 11px;
    }

    .home-commercial__visual {
        min-height: 210px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .home-commercial__rings {
        width: 260px;
        height: 260px;
    }

    .home-commercial__temperature {
        font-size: 42px;
    }

    .home-commercial__visual-label {
        left: 22px;
        bottom: 20px;
        font-size: 7px;
    }

    .home-commercial__content {
        padding: 29px 23px 31px;
    }

    .home-commercial__content>p {
        margin-top: 16px;
        font-size: 11px;
        line-height: 1.68;
    }

    .home-commercial__features {
        margin-top: 20px;
    }

    .home-commercial__features span {
        font-size: 7px;
    }

    .home-commercial__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
        margin-top: 24px;
    }

    .home-commercial__actions .btn {
        width: 100%;
    }

    /* Property */

    .home-property__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-property__content>p {
        margin-top: 16px;
        font-size: 11px;
        line-height: 1.7;
    }

    .home-property__links {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-top: 24px;
    }

    .home-property__links a {
        min-height: 61px;
        padding-inline: 17px;
    }

    .home-property__aside {
        padding: 30px 24px;
        border-radius: 10px;
    }

    .home-property__aside>strong {
        font-size: 30px;
    }

    /* Why */

    .home-why-card {
        min-width: min(78vw, 305px);
        min-height: 255px;
        flex: 0 0 min(78vw, 305px);
        padding: 22px;
    }

    .home-why-card__icon {
        margin: 31px 0 25px;
    }

    .home-why-card h3 {
        font-size: 17px;
    }

    /* Process */

    .home-process__head {
        display: block;
        margin-bottom: 29px;
    }

    .home-process__head .btn {
        width: 100%;
        margin-top: 22px;
    }

    .home-process__steps {
        display: block;
        border-bottom: 0;
    }

    .home-process__step,
    .home-process__step:first-child,
    .home-process__step:nth-child(n+3) {
        min-height: 0;
        display: grid;
        grid-template-columns: 34px 1fr;
        gap: 14px;
        padding: 20px 0;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .home-process__step>span {
        margin: 5px 0 0;
    }

    .home-process__step h3 {
        font-size: 16px;
    }

    .home-process__step p {
        font-size: 10px;
    }

    /* Emergency */

    .home-emergency {
        padding: 38px 0;
    }

    .home-emergency__inner {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .home-emergency__icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .home-emergency h2 {
        font-size: 25px;
        line-height: 1.05;
    }

    .home-emergency__actions {
        grid-column: 1 / -1;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        margin-top: 10px;
    }

    .home-emergency__actions .btn {
        width: 100%;
    }

    /* Areas */

    .home-areas__layout {
        display: block;
    }

    .home-areas__statement {
        min-height: 230px;
        padding: 25px;
        margin-bottom: 12px;
    }

    .home-areas__statement>strong {
        margin: 22px 0;
        font-size: 48px;
    }

    .home-areas__track {
        width: calc(100% + 18px);
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 1px 18px 9px 0;
        scrollbar-width: none;
    }

    .home-areas__track::-webkit-scrollbar {
        display: none;
    }

    .home-area-card {
        min-width: min(76vw, 292px);
        min-height: 185px;
        flex: 0 0 min(76vw, 292px);
        padding: 23px;
        scroll-snap-align: start;
    }

    .home-area-card strong {
        font-size: 22px;
    }

    /* FAQ */

    .home-faq__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home-faq__intro {
        position: static;
    }

    .home-faq__intro p {
        margin-top: 15px;
        font-size: 11px;
        line-height: 1.7;
    }

    .home-faq__phone {
        max-width: none;
    }

    .home-faq summary {
        min-height: 68px;
        font-size: 12px;
    }

    .home-faq details p {
        padding-right: 24px;
        font-size: 10px;
        line-height: 1.7;
    }

    /* Final */

    .home-final {
        padding: 58px 0;
    }

    .home-final__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-final p {
        margin-top: 14px;
        font-size: 11px;
        line-height: 1.68;
    }

    .home-final__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .home-final__actions .btn {
        width: 100%;
    }

    /* Credential bar: short horizontal swipe row */

    .home-credentials {
        overflow: hidden;
    }

    .home-credentials__inner {
        width: calc(100% + 18px);
        display: flex;
        gap: 0;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding-right: 18px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-credentials__inner::-webkit-scrollbar {
        display: none;
    }

    .home-credential,
    .home-credential:first-child {
        min-width: 245px;
        min-height: 88px;
        flex: 0 0 245px;
        gap: 13px;
        padding: 16px 18px;
        border-left: 0;
        border-right: 1px solid #e3e7eb;
        scroll-snap-align: start;
    }

    .home-credential__number {
        font-size: 8px;
    }

    .home-credential strong {
        font-size: 11px;
        line-height: 1.2;
    }

    .home-credential small {
        font-size: 8px;
        line-height: 1.35;
    }

}

/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 420px) {

    .home-hero {
        min-height: 625px;
    }

    .home-hero__title {
        font-size: 38px;
    }

    .home-hero__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-hero__quote {
        width: 100%;
    }

    .home-hero__trust {
        max-width: 330px;
    }

    .home-area-card {
        min-width: 82vw;
        flex-basis: 82vw;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .js .home-reveal,
    .js .home-hero__line,
    .js .home-animate {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    .home-hero__media img {
        transform: none !important;
    }
}

@media (min-width: 1200px) {

    .home-hero__inner {
        padding-left: 80px;
    }

}

@media (min-width: 1500px) {

    .home-hero__inner {
        padding-left: 110px;
    }

}

/* =========================================================
   PROPERTY / HEATING â€” IMAGE SHOWCASE
========================================================= */

.home-property {
    background: #fff;
}

.home-property .container {
    display: grid;
    gap: 24px;
}

.home-property__showcase {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
    gap: 52px;
    align-items: stretch;
}

.home-property__content {
    align-self: center;
}

.home-property__content>p {
    max-width: 720px;
    margin: 23px 0 0;
    color: #6b7684;
    font-size: 14px;
    line-height: 1.84;
}

.home-property__visuals {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 12px;
    min-height: 500px;
}

.home-property-image {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #0a0d12;
}

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

.home-property-image--installation img {
    object-position: center 52%;
}

.home-property-image--servicing img {
    object-position: center 48%;
}

.home-property-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(3, 5, 8, .9) 0%,
            rgba(3, 5, 8, .45) 29%,
            rgba(3, 5, 8, .05) 62%,
            transparent 100%);
    pointer-events: none;
}

.home-property-image figcaption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 2;
}

.home-property-image figcaption>span {
    display: block;
    margin-bottom: 6px;
    color: var(--hb-blue-light);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-property-image figcaption>strong {
    display: block;
    color: #fff;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.home-property-image figcaption>a {
    display: inline-flex;
    margin-top: 13px;
    color: #fff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .04em;
}

.home-property__aside {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border: 1px solid #e1e6eb;
    border-radius: 12px;
    background: #f7f9fb;
}

.home-property__aside>.home-property__eyebrow {
    grid-column: 1;
    color: #8a95a2;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-property__aside>strong {
    grid-column: 2;
    color: #111821;
    font-size: 19px;
    font-weight: 900;
}

.home-property__aside>p {
    grid-column: 3;
    max-width: 560px;
    margin: 0;
    color: #6b7684;
    font-size: 11px;
    line-height: 1.65;
}

.home-property__aside>.btn {
    grid-column: 4;
    white-space: nowrap;
}

.home-property__badges {
    grid-column: 5;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.home-property__badges span {
    padding: 7px 9px;
    border: 1px solid #dfe5eb;
    border-radius: 5px;
    background: #fff;
    color: #47515d;
    font-size: 8px;
    font-weight: 800;
}


/* =========================================================
   PROPERTY / HEATING â€” RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .home-property__showcase {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home-property__visuals {
        min-height: 430px;
    }

    .home-property-image {
        min-height: 430px;
    }

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

    .home-property__aside>.home-property__eyebrow {
        grid-column: 1;
    }

    .home-property__aside>strong {
        grid-column: 2;
    }

    .home-property__aside>p {
        grid-column: 1 / 3;
    }

    .home-property__aside>.btn {
        grid-column: 3;
        grid-row: 1 / 3;
    }

    .home-property__badges {
        display: none;
    }

}

@media (max-width: 760px) {

    .home-property__visuals {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        min-height: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-property__visuals::-webkit-scrollbar {
        display: none;
    }

    .home-property-image {
        min-width: 86%;
        flex: 0 0 86%;
        height: 390px;
        min-height: 390px;
        scroll-snap-align: start;
    }

    .home-property__aside {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .home-property__aside>p {
        max-width: none;
    }

    .home-property__aside>.btn {
        width: 100%;
    }

}

@media (max-width: 480px) {

    .home-property-image {
        min-width: 91%;
        flex-basis: 91%;
        height: 340px;
        min-height: 340px;
    }

    .home-property-image figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .home-property-image figcaption>strong {
        font-size: 22px;
    }

}
/* =========================================================
   REAL WORK / PROJECT SLIDER
========================================================= */

.home-work {
    overflow: hidden;
    background:
        linear-gradient(180deg, #f6f8fa 0%, #fff 100%);
}

.home-work__head {
    margin-bottom: 42px;
}

.home-work-slider {
    position: relative;
}

.home-work-slider__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #07101a;
    box-shadow: 0 24px 60px rgba(10, 20, 32, .12);
}

.home-work-slide {
    display: none;
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
    min-height: 470px;
    background: #07101a;
}

.home-work-slide.is-active {
    display: grid;
}

.home-work-slide__image {
    position: relative;
    height: 470px;
    min-height: 370px;
    overflow: hidden;
    background: #111820;
}

.home-work-slide__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 55%, rgba(7, 16, 26, .34) 100%),
        linear-gradient(0deg, rgba(2, 7, 13, .45) 0%, transparent 34%);
    pointer-events: none;
}

.home-work-slide__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-work-slide__badge,
.home-work-slide__count {
    position: absolute;
    z-index: 2;
    top: 24px;
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(5, 11, 18, .66);
    color: #fff;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.home-work-slide__badge {
    left: 24px;
    padding: 0 13px;
}

.home-work-slide__count {
    right: 24px;
    padding: 0 12px;
}

.home-work-slide__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(40, 139, 255, .12), transparent 38%),
        #07101a;
}

.home-work-slide__content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(92, 169, 255, .4), transparent);
}

.home-work-slide__content>small {
    margin-bottom: 17px;
    color: #6bb3ff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-work-slide__content h3 {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 2.5vw, 36px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.home-work-slide__content>p {
    max-width: 520px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    line-height: 1.7;
}

.home-work-slide__content ul {
    display: grid;
    gap: 10px;
    margin: 21px 0 26px;
    padding: 0;
    list-style: none;
}

.home-work-slide__content li {
    position: relative;
    padding-left: 19px;
    color: rgba(255, 255, 255, .85);
    font-size: 10px;
    font-weight: 720;
    letter-spacing: .015em;
}

.home-work-slide__content li::before {
    content: "";
    position: absolute;
    top: .52em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hb-blue);
    box-shadow: 0 0 0 4px rgba(38, 140, 255, .10);
}

.home-work-slider__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 66px;
    padding: 10px 18px 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0 0 16px 16px;
    background: #0b151f;
}

.home-work-slider__controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-work-slider__arrow {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
    color: #fff;
    font: inherit;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.home-work-slider__arrow:hover,
.home-work-slider__arrow:focus-visible {
    border-color: rgba(93, 174, 255, .58);
    background: rgba(38, 140, 255, .13);
    transform: translateY(-2px);
    outline: none;
}

.home-work-slider__arrow span {
    font-size: 18px;
    line-height: 1;
}

.home-work-slider__status {
    min-width: 92px;
    display: grid;
    grid-template-columns: auto 32px auto;
    align-items: center;
    gap: 8px;
}

.home-work-slider__status strong {
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.home-work-slider__status span {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, .25);
}

.home-work-slider__status small {
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
    font-weight: 800;
}

.home-work-slider__bar>p {
    margin: 0;
    color: rgba(255, 255, 255, .44);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
}

.home-work-thumbs {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 9px;
    margin-top: 12px;
}

.home-work-thumb {
    position: relative;
    min-width: 0;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 1px solid #dce2e8;
    border-radius: 9px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home-work-thumb:hover,
.home-work-thumb:focus-visible {
    transform: translateY(-2px);
    border-color: #a9ccee;
    outline: none;
}

.home-work-thumb.is-active {
    border-color: var(--hb-blue);
    box-shadow: 0 0 0 2px rgba(38, 140, 255, .11);
}

.home-work-thumb img {
    width: 100%;
    height: 70px;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(.85) contrast(.98);
    transition: filter .25s ease, transform .35s ease;
}

.home-work-thumb:hover img,
.home-work-thumb.is-active img {
    filter: saturate(1) contrast(1);
}

.home-work-thumb:hover img {
    transform: scale(1.025);
}

.home-work-thumb>span {
    min-height: 35px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    overflow: hidden;
    color: #26313d;
    font-size: 8px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-work-thumb>span small {
    color: var(--hb-blue);
    font-size: 7px;
    font-weight: 900;
}

.home-work__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 28px;
}

.home-work__footer>p {
    margin: 0 auto 0 0;
    color: #6b7684;
    font-size: 12px;
}

.home-work__footer .btn {
    min-height: 50px;
}

/* Slider transition, enabled once JS has initialised the component. */
.home-work-slider.is-ready .home-work-slide.is-active {
    animation: homeWorkSlideIn .48s cubic-bezier(.2, .72, .2, 1) both;
}

@keyframes homeWorkSlideIn {
    from {
        opacity: .25;
        transform: translate3d(16px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 1100px) {

    .home-work-slide {
        grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
        min-height: 430px;
    }

    .home-work-slide__image {
        min-height: 430px;
    }

    .home-work-slide__content {
        padding: 44px 38px;
    }

    .home-work-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}

@media (max-width: 760px) {

    .home-work__head {
        margin-bottom: 25px;
    }

    .home-work-slide,
    .home-work-slide.is-active {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home-work-slide__image {
        height: 300px;
        min-height: 300px;
    }

    .home-work-slide__image::after {
        background: linear-gradient(0deg, rgba(2, 7, 13, .45) 0%, transparent 42%);
    }

    .home-work-slide__badge,
    .home-work-slide__count {
        top: 16px;
        min-height: 28px;
        font-size: 7px;
    }

    .home-work-slide__badge {
        left: 16px;
    }

    .home-work-slide__count {
        right: 16px;
    }

    .home-work-slide__content {
        padding: 30px 23px 34px;
    }

    .home-work-slide__content::before {
        top: 0;
        right: 0;
        bottom: auto;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(92, 169, 255, .38), transparent);
    }

    .home-work-slide__content>small {
        margin-bottom: 12px;
        font-size: 8px;
    }

    .home-work-slide__content h3 {
        font-size: 28px;
    }

    .home-work-slide__content>p {
        margin-top: 17px;
        font-size: 11px;
        line-height: 1.7;
    }

    .home-work-slide__content ul {
        gap: 8px;
        margin: 20px 0 25px;
    }

    .home-work-slide__content li {
        font-size: 9px;
    }

    .home-work-slider__bar {
        min-height: 72px;
        padding: 12px 14px;
    }

    .home-work-slider__arrow {
        width: 42px;
        height: 42px;
    }

    .home-work-slider__bar>p {
        display: none;
    }

    .home-work-thumbs {
        width: calc(100% + 18px);
        display: flex;
        gap: 9px;
        overflow-x: auto;
        padding: 1px 18px 7px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-work-thumbs::-webkit-scrollbar {
        display: none;
    }

    .home-work-thumb {
        width: 118px;
        min-width: 118px;
        flex: 0 0 118px;
        scroll-snap-align: start;
    }

    .home-work-thumb img {
        height: 70px;
    }

    .home-work__footer {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
        margin-top: 21px;
    }

    .home-work__footer>p {
        margin: 0;
        font-size: 10px;
    }

    .home-work__footer .btn {
        width: 100%;
    }

}

@media (max-width: 480px) {

    .home-work-slider__viewport {
        border-radius: 12px 12px 0 0;
    }

    .home-work-slide__image {
        height: 270px;
        min-height: 270px;
    }

    .home-work-slider__bar {
        border-radius: 0 0 12px 12px;
    }

    .home-work-slider__status {
        min-width: 82px;
        grid-template-columns: auto 25px auto;
    }

    .home-work-slider__status span {
        width: 25px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .home-work-slider.is-ready .home-work-slide.is-active {
        animation: none !important;
    }
}