.home-intent-section{
    padding: 110px 0;
}

.home-intent-section .section-title.section-title-center{
    max-width: 900px;
}

.home-intent-section .section-title.section-title-center p{
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.hero-slider .swiper-slide .section-title h1{
    font-size: 60px;
    color: var(--white-color);
    cursor: none;
}

.home-service-hub{
    padding-top: 100px;
}

.home-space-panel{
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

.home-space-panel.home-space-panel-dark{
    background: var(--accent-color);
    border-color: var(--dark-divider-color);
}

.home-space-panel-header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.home-space-panel-dark .home-space-panel-header{
    border-color: var(--dark-divider-color);
}

.home-space-panel-kicker{
    display: block;
    color: var(--accent-secondary-color);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.home-space-panel-header h3{
    margin-top: 10px;
    margin-bottom: 10px;
}

.home-space-panel-header p{
    max-width: 500px;
    margin: 0;
}

.home-space-panel-dark .home-space-panel-header h3,
.home-space-panel-dark .home-space-panel-header p{
    color: var(--white-color);
}

.home-service-grid{
    display: grid;
    flex: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.home-space-panel-dark .home-service-grid{
    grid-template-columns: 1fr;
}

.home-service-card{
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    min-height: 124px;
    color: var(--primary-color);
    background: linear-gradient(270deg, var(--bg-color) 0%, var(--secondary-color) 100%);
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 20px 15px;
    transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.home-space-panel-dark .home-service-card{
    color: var(--white-color);
    background: var(--dark-divider-color);
    border-color: var(--dark-divider-color);
}

.home-service-card:hover,
.home-service-card:focus-visible{
    color: var(--primary-color);
    border-color: var(--accent-secondary-color);
    transform: translateY(-4px);
}

.home-space-panel-dark .home-service-card:hover,
.home-space-panel-dark .home-service-card:focus-visible{
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.12);
}

.home-service-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-secondary-color);
    border-radius: 50%;
}

.home-service-icon img{
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.home-service-copy strong{
    display: block;
    color: inherit;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 7px;
}

.home-service-copy small{
    display: block;
    color: inherit;
    line-height: 1.55;
    opacity: 0.78;
}

.home-service-card > i{
    color: var(--accent-secondary-color);
    transition: transform 0.35s ease;
}

.home-service-card:hover > i,
.home-service-card:focus-visible > i{
    transform: translateX(4px);
}

.home-service-modes{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.home-service-modes span{
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    padding: 8px 16px;
    font-weight: 600;
}

.home-portfolio-section .case-study-item{
    min-height: 430px;
}

.home-portfolio-section .case-study-item.home-case-wide{
    min-height: 500px;
}

.home-case-summary{
    color: var(--white-color);
    line-height: 1.55;
    margin: 12px 0 0;
    opacity: 0.9;
}

.home-portfolio-footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.home-style-track{
    display: flex;
    gap: 12px;
    height: 460px;
}

.home-style-card{
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
    transition: flex 0.55s cubic-bezier(.2, .75, .25, 1);
}

.home-style-card:hover,
.home-style-card:focus-within{
    flex: 2.2 1 0;
}

.home-style-card > a{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: var(--white-color);
}

.home-style-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-style-card:hover img,
.home-style-card:focus-within img{
    transform: scale(1.05);
}

.home-style-card > a::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 25%, rgba(0, 0, 0, 0.82) 100%);
}

.home-style-content{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 30px;
}

.home-style-content span{
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    margin-bottom: 8px;
}

.home-style-content h3{
    color: var(--white-color);
    font-size: 25px;
}

.home-style-content p{
    max-width: 420px;
    max-height: 0;
    color: var(--white-color);
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(12px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, margin 0.35s ease;
}

.home-style-card:hover .home-style-content p,
.home-style-card:focus-within .home-style-content p{
    max-height: 100px;
    margin-top: 12px;
    opacity: 0.9;
    transform: translateY(0);
}

.home-budget-section .pricing-item{
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

.home-budget-section .pricing-item-content{
    min-height: 118px;
}

.home-budget-section .pricing-item-list{
    border-bottom: 0;
    padding-bottom: 0;
}

.home-budget-tag{
    display: inline-block;
    color: var(--white-color);
    background: var(--accent-secondary-color);
    border-radius: 100px;
    padding: 7px 12px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
}

.home-budget-note{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: var(--white-color);
    background: var(--accent-color);
    border-radius: 20px;
    margin-top: 25px;
    padding: 35px 40px;
}

.home-budget-note .budgetleft{width: calc(70% - 30px);}
.home-budget-note .home-budget-actions{width: calc(30% - 30px);}

.home-budget-note h3{
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 8px;
}

.home-budget-note p{
    max-width: 760px;
    margin: 0;
    opacity: 0.85;
}

.home-budget-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-move-in-box{
    background: var(--white-color);
    border: 1px solid rgba(17, 19, 15, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

#home-move-in{
    padding: 80px 0;
}

.home-move-in-image,
.home-move-in-image figure{
    height: 100%;
}

.home-move-in-image{
    position: relative;
    overflow: hidden;
}

.home-move-in-image::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 19, 15, 0) 55%, rgba(17, 19, 15, 0.22) 100%);
    pointer-events: none;
}

.home-move-in-image img{
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
}

.home-move-in-content{
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
    padding: 42px 46px;
}

.home-move-in-content .section-title{
    margin-bottom: 18px;
}

.home-guide-card{
    display: grid;
    align-items: center;
    gap: 10px 16px;
    border-top: 1px solid var(--divider-color);
    padding: 16px 0;
}

.home-guide-card:first-of-type{
    padding-top: 16px;
}

.home-guide-number{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--white-color);
    background: var(--accent-secondary-color);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.home-guide-copy h3{
    font-size: 19px;
    line-height: 1.35;
    margin: 0 0 5px;
}

.home-guide-copy p{
    line-height: 1.6;
    margin: 0;
}

.home-guide-card a{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    grid-column: 2;
    justify-self: start;
    color: var(--accent-secondary-color);
    background: var(--white-color);
    border: 1px solid rgba(232, 112, 0, 0.2);
    border-radius: 100px;
    padding: 8px 11px;
    font-weight: 700;
    white-space: normal;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-guide-card a:hover,
.home-guide-card a:focus-visible{
    color: var(--primary-color);
    border-color: var(--accent-secondary-color);
    transform: translateX(3px);
}

.home-move-in-prepare{
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    margin-top: 12px;
    padding: 15px;
}

.home-move-in-prepare h3{
    font-size: 16px;
    margin-bottom: 10px;
}

.home-move-in-prepare ul{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-move-in-prepare li{
    position: relative;
    border-radius: 100px;
    line-height: 1.4;
    padding: 6px 10px 6px 30px;
    font-size: 13px;
}

.home-move-in-prepare li::before{
    content: '\f058';
    position: absolute;
    top: 7px;
    left: 10px;
    color: var(--accent-secondary-color);
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
}

.home-team-meta{
    display: block;
    color: var(--accent-secondary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.home-project-brief-panel{
    position: relative;
    color: var(--white-color);
    background: var(--accent-color);
    border-radius: 20px;
    padding: 55px;
    overflow: hidden;
}

.home-project-brief-panel::after{
    content: '';
    position: absolute;
    top: -140px;
    right: -100px;
    width: 340px;
    height: 340px;
    background: var(--accent-secondary-color);
    border-radius: 50%;
    opacity: 0.2;
}

.home-project-brief-content{
    position: relative;
    z-index: 1;
}

.home-project-brief-content h2{
    max-width: 850px;
    color: var(--white-color);
    font-size: 42px;
    margin-bottom: 18px;
}

.home-project-brief-content p{
    max-width: 850px;
    margin-bottom: 30px;
    opacity: 0.86;
}

.home-project-brief-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-faq-list{
    margin: 0;
    padding-left: 20px;
}

.home-faq-list li{
    line-height: 1.6;
    margin-bottom: 8px;
}

.home-faq-list li:last-child{
    margin-bottom: 0;
}

.home-faq-table-wrap{
    margin-top: 18px;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    overflow-x: auto;
    overflow-y: hidden;
}

.home-faq-table-wrap:focus-visible{
    outline: 2px solid var(--accent-secondary-color);
    outline-offset: 3px;
}

.home-faq-table{
    width: 100%;
    min-width: 620px;
    margin: 0;
}

.home-faq-table th,
.home-faq-table td{
    padding: 12px 14px;
    border-bottom: 1px solid var(--divider-color);
    border-right: 1px solid var(--divider-color);
    line-height: 1.55;
    vertical-align: top;
}

.home-faq-table th:last-child,
.home-faq-table td:last-child{
    border-right: 0;
}

.home-faq-table tr:last-child td{
    border-bottom: 0;
}

.home-faq-table thead th{
    color: var(--primary-color);
    background: var(--bg-color);
    font-weight: 700;
}

/* Homepage service, case, district and proof refinements */
.home-space-panel-kicker{
    letter-spacing: 0.14em;
}

.home-portfolio-section{
    width: calc(100% - 30px);
    max-width: 1820px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 20px;
}

.home-portfolio-section{
    position: relative;
    background: #11130f;
    overflow: hidden;
}

.home-portfolio-section::before{
    content: '';
    position: absolute;
    top: -260px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(232, 112, 0, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.home-portfolio-section::after{
    content: '';
    position: absolute;
    bottom: -280px;
    left: -240px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(232, 112, 0, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.home-portfolio-section .container{
    position: relative;
    z-index: 1;
}

.home-portfolio-section .section-title h2,
.home-portfolio-section .section-title-content p{
    color: var(--white-color);
}

.home-portfolio-section .section-title-content p{
    margin: 0;
    opacity: 0.82;
}

.home-portfolio-toolbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 34px;
    padding: 18px 0;
}

.home-portfolio-tabs{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-right: auto;
    margin-left: auto;
}

.home-portfolio-tab{
    min-width: 128px;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    border: 0;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.home-portfolio-tab:hover,
.home-portfolio-tab:focus-visible{
    color: var(--white-color);
}

.home-portfolio-tab:focus-visible{
    outline: 2px solid var(--accent-secondary-color);
    outline-offset: 3px;
}

.home-portfolio-tab.is-active{
    color: var(--primary-color);
    background: var(--white-color);
}

.home-portfolio-tab-note{
    max-width: 560px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: right;
}

.home-portfolio-panel{
    display: none;
}

.home-portfolio-panel.is-active{
    display: block;
    animation: homePortfolioReveal 0.52s ease both;
}

@keyframes homePortfolioReveal{
    from{ opacity: 0; transform: translateY(18px); }
    to{ opacity: 1; transform: translateY(0); }
}

.home-portfolio-minor-grid,
.home-portfolio-featured-grid,
.home-portfolio-commercial-grid{
    display: grid;
    gap: 18px;
}

.home-portfolio-minor-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.home-portfolio-featured-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-portfolio-commercial-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-project-card{
    position: relative;
    min-width: 0;
    background: #1b1d18;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.home-project-card-compact{
    height: 350px;
}

.home-project-card-featured{
    height: 520px;
}

.home-project-card-commercial{
    height: 350px;
}


.home-project-card > a{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: var(--white-color);
}

.home-project-card figure{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.home-project-card figure::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 9, 7, 0.1) 20%, rgba(8, 9, 7, 0.28) 52%, rgba(8, 9, 7, 0.96) 100%);
}

.home-project-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(.2, .75, .25, 1), filter 0.55s ease;
}

.home-project-card:hover img,
.home-project-card:focus-within img{
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.055);
}

.home-project-overlay{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px;
    z-index: 2;
}

.home-project-card-featured .home-project-overlay,
.home-project-card-commercial .home-project-overlay{
    padding: 25px;
}

.home-project-type{
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    color: #f1b76f;
    background: rgba(17, 19, 15, 0.58);
    border: 1px solid rgba(241, 183, 111, 0.32);
    border-radius: 100px;
    padding: 6px 12px;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-project-overlay h3{
    max-width: 94%;
    color: var(--white-color);
    font-size: 22px;
    line-height: 1.35;
    margin: 10px 0 10px;
}



.home-project-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 7px 16px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.4;
}

.home-project-meta span{
    position: relative;
}

.home-project-meta span:not(:last-child)::after{
    content: '';
    position: absolute;
    top: 50%;
    right: -9px;
    width: 3px;
    height: 3px;
    background: var(--accent-secondary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.home-project-focus{
    max-height: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: max-height 0.45s ease, margin 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
}

.home-project-card:hover .home-project-focus,
.home-project-card:focus-within .home-project-focus{
    max-height: 90px;
    margin-top: 13px;
    opacity: 1;
    transform: translateY(0);
}

.home-project-link{
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white-color);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 16px;
    padding-top: 14px;
    font-weight: 700;
}

.home-project-link i{
    color: var(--accent-secondary-color);
    transition: transform 0.3s ease;
}

.home-project-card:hover .home-project-link i,
.home-project-card:focus-within .home-project-link i{
    transform: translateX(4px);
}

.home-portfolio-footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}


.home-district-section{
    position: relative;
    overflow: hidden;
}

.home-district-section .section-title-content p{
    margin: 0;
}

.home-district-explorer{
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(350px, 0.78fr);
    min-height: 650px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.home-district-map{
    position: relative;
    min-height: 650px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 72% 18%, rgba(232, 112, 0, 0.2), transparent 32%),
        #11130f;
    background-size: 42px 42px, 42px 42px, auto, auto;
    overflow: hidden;
}

.home-district-map::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 70%, rgba(17, 19, 15, 0.28) 100%);
    pointer-events: none;
}

.home-district-map-heading{
    position: absolute;
    top: 38px;
    left: 40px;
    z-index: 4;
}

.home-district-map-heading span{
    display: block;
    color: #f1b76f;
    font-weight: 700;
    margin-bottom: 9px;
}

.home-district-map-heading strong{
    display: block;
    max-width: 340px;
    color: var(--white-color);
    font-size: 25px;
    line-height: 1.35;
}

.home-district-map-art{
    position: absolute;
    inset: 80px 25px 40px;
    width: calc(100% - 50px);
    height: calc(100% - 120px);
    z-index: 1;
}

.home-district-detail{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #fff 0%, #f7f3f1 100%);
    padding: 50px;
}

.home-district-detail::before{
    content: '';
    position: absolute;
    top: 36px;
    right: 36px;
    width: 56px;
    height: 56px;
    border-top: 1px solid rgba(232, 112, 0, 0.5);
    border-right: 1px solid rgba(232, 112, 0, 0.5);
}

.home-district-contact{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
    margin-top: 24px;
    padding: 22px 26px;
}

.home-district-contact p{
    margin: 0;
}

.home-district-contact a{
    flex: 0 0 auto;
    color: var(--accent-secondary-color);
    font-weight: 700;
}

.home-why-section{
    padding: 120px 0;
}

.home-why-intro{
    position: sticky;
    top: 110px;
    min-height: 620px;
    color: var(--white-color);
    background: #11130f;
    border-radius: 22px;
    padding: 48px;
    overflow: hidden;
}

.home-why-intro::before{
    content: '';
    position: absolute;
    top: -140px;
    right: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(232, 112, 0, 0.36);
    border-radius: 50%;
}

.home-why-intro::after{
    content: '';
    position: absolute;
    right: -65px;
    bottom: -80px;
    width: 270px;
    height: 270px;
    background: radial-gradient(circle, rgba(232, 112, 0, 0.24) 0%, transparent 68%);
}

.home-why-intro .section-title{
    position: relative;
    margin-bottom: 36px;
    z-index: 1;
}

.home-why-intro .section-title h2,
.home-why-intro .section-title p{
    color: var(--white-color);
}

.home-why-intro .section-title p{
    opacity: 0.82;
}

.home-why-metrics{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    z-index: 1;
}

.home-why-metric{
    min-height: 112px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px;
}

.home-why-metric strong{
    display: block;
    color: var(--white-color);
    font-size: 25px;
    line-height: 1.15;
    margin-bottom: 9px;
}

.home-why-metric span{
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.45;
}

.home-why-actions{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    z-index: 1;
}

.home-proof-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.home-proof-card{
    position: relative;
    min-height: 300px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 36px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.home-proof-card:hover{
    border-color: rgba(232, 112, 0, 0.5);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.home-proof-card::after{
    content: '';
    position: absolute;
    right: -52px;
    bottom: -52px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(232, 112, 0, 0.18);
    border-radius: 50%;
}

.home-proof-card-no{
    display: block;
    color: rgba(34, 34, 34, 0.12);
    font-size: 55px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 34px;
}

.home-proof-card h3{
    line-height: 1.35;
    margin-bottom: 14px;
}

.home-proof-card p{
    margin: 0;
}

.home-proof-card-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-secondary-color);
    margin-top: 20px;
    font-weight: 700;
}


/* Merged design and project-delivery section */
.home-delivery-section{
    position: relative;
    overflow: hidden;
}

.home-delivery-section::before{
    content: '';
    position: absolute;
    top: -220px;
    right: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(232, 112, 0, 0.13) 0%, rgba(232, 112, 0, 0) 70%);
    pointer-events: none;
}

.home-delivery-section .benefits-item{
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.home-delivery-records{
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.4fr);
    gap: 42px;
    color: var(--white-color);
    background: #11130f;
    border-radius: 22px;
    margin-top: 10px;
    padding: 42px;
    overflow: hidden;
}

.home-delivery-records::after{
    content: '';
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border: 60px solid rgba(232, 112, 0, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.home-delivery-records-intro,
.home-delivery-record-grid{
    position: relative;
    z-index: 1;
}

.home-delivery-records-intro span{
    display: block;
    color: #f1b76f;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-delivery-records-intro h3{
    color: var(--white-color);
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 14px;
}

.home-delivery-records-intro p{
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.home-delivery-record-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-delivery-record{
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px;
}

.home-delivery-record strong{
    display: block;
    color: var(--white-color);
    font-size: 16px;
    margin-bottom: 7px;
}

.home-delivery-record p{
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
    margin: 0;
}

.home-delivery-actions{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

/* Static Hong Kong service atlas */
.home-district-explorer.home-region-atlas{
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    min-height: 0;
}

.home-region-atlas .home-district-map{
    min-height: 690px;
}

.home-region-atlas .home-district-map-art{
    inset: 108px 24px 92px;
    width: calc(100% - 48px);
    height: calc(100% - 200px);
}

.home-map-district{
    stroke: rgba(255, 255, 255, 0.72);
    stroke-width: 1.2;
    vector-effect: non-scaling-stroke;
}

.home-map-district-nt{
    fill: #9fb58f;
}

.home-map-district-kowloon{
    fill: #e09a4e;
}

.home-map-district-hk{
    fill: #efe6d4;
}

.home-map-water-label{
    fill: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.home-map-label{
    fill: #11130f;
    font-size: 24px;
    font-weight: 800;
    paint-order: stroke;
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 4px;
    stroke-linejoin: round;
}

.home-map-label-light{
    fill: var(--white-color);
    stroke: rgba(17, 19, 15, 0.45);
}

.home-map-legend{
    position: absolute;
    right: 34px;
    bottom: 30px;
    left: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(17, 19, 15, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    padding: 15px 18px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 4;
}

.home-map-legend span{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.home-map-legend i{
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.home-map-legend .is-hk{ background: #efe6d4; }
.home-map-legend .is-kowloon{ background: #e09a4e; }
.home-map-legend .is-nt{ background: #9fb58f; }

.home-region-atlas .home-district-detail{
    display: block;
    padding: 34px;
}

.home-region-list{
    display: grid;
    gap: 14px;
}

.home-region-card{
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.home-region-card-head{
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.home-region-card-no{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white-color);
    background: var(--accent-secondary-color);
    border-radius: 50%;
    font-weight: 800;
}

.home-region-card h3{
    font-size: 23px;
    margin-bottom: 6px;
}

.home-region-card-head p{
    line-height: 1.55;
    margin: 0;
}

.home-region-districts{
    color: var(--accent-secondary-color);
    font-weight: 700;
}

.home-region-projects{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.home-region-projects a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 48px;
    color: var(--primary-color);
    background: var(--bg-color);
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.home-region-projects a:hover,
.home-region-projects a:focus-visible{
    color: var(--white-color);
    background: var(--accent-secondary-color);
}

.home-region-projects small{
    display: block;
    color: inherit;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 3px;
    opacity: 0.68;
}

.home-region-projects i{
    flex: 0 0 auto;
    font-size: 11px;
}

.home-region-directory{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--divider-color);
    margin-top: 16px;
    padding-top: 14px;
}

.home-region-directory span{
    line-height: 1.5;
}

.home-region-directory a{
    color: var(--accent-secondary-color);
    font-weight: 700;
}

/* Project brief conversion panel */
.home-project-brief-panel{
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 34px;
    align-items: stretch;
}

.home-project-brief-kicker{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f3c28a;
    font-weight: 700;
    margin-bottom: 14px;
}

.home-project-outcomes{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 900px;
    margin: 26px 0 30px;
}

.home-project-outcome{
    min-height: 92px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    padding: 17px;
}

.home-project-outcome strong{
    display: block;
    color: var(--white-color);
    font-size: 15px;
    line-height: 1.45;
}

.home-project-outcome span{
    display: block;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-top: 5px;
}

.home-project-brief-submit{
    position: relative;
    z-index: 1;
    align-self: stretch;
    color: var(--primary-color);
    background: var(--white-color);
    border-radius: 16px;
    padding: 30px;
}

.home-project-brief-submit h3{
    font-size: 23px;
    margin-bottom: 12px;
}

.home-project-brief-submit p{
    color: var(--text-color);
    margin-bottom: 18px;
    opacity: 1;
}

.home-project-brief-submit ul{
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.home-project-brief-submit li{
    position: relative;
    border-top: 1px solid var(--divider-color);
    padding: 10px 0 10px 23px;
}

.home-project-brief-submit li::before{
    content: '\f058';
    position: absolute;
    top: 11px;
    left: 0;
    color: var(--accent-secondary-color);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.home-project-brief-submit .btn-default{
    width: 100%;
    text-align: center;
}

/* Multi-location Hong Kong project map */
.home-location-atlas{
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    min-height: 650px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.home-location-summary{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(150deg, #ffffff 0%, #f6f1eb 100%);
    padding: 50px;
}

.home-location-count{
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 22px;
}

.home-location-count strong{
    color: var(--accent-secondary-color);
    font-size: 76px;
    line-height: 0.9;
}

.home-location-count span{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.home-location-summary h3{
    line-height: 1.25;
    margin-bottom: 16px;
}

.home-location-summary > p{
    margin-bottom: 26px;
}

.home-location-case-links{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
}

.home-location-case-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    padding: 12px 13px;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-location-case-link i{
    color: var(--accent-secondary-color);
    flex: 0 0 auto;
}

.home-location-case-link:hover,
.home-location-case-link:focus-visible{
    color: var(--white-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.home-location-case-link:hover i,
.home-location-case-link:focus-visible i{
    color: var(--white-color);
}

.home-location-atlas .home-district-map{
    min-height: 650px;
}

.home-location-atlas .home-district-map-art{
    inset: 88px 24px 32px;
    width: calc(100% - 48px);
    height: calc(100% - 120px);
}

.home-map-marker{
    position: absolute;
    top: var(--y);
    left: var(--x);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    color: var(--white-color);
    background: var(--accent-secondary-color);
    border: 3px solid var(--white-color);
    border-radius: 50% 50% 50% 8px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: z-index 0s, background-color 0.25s ease, transform 0.25s ease;
}

.home-map-marker i{
    font-size: 11px;
    transform: rotate(45deg);
}

.home-map-marker span{
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    width: max-content;
    max-width: 190px;
    color: var(--primary-color);
    background: var(--white-color);
    border-radius: 9px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px) rotate(45deg);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-map-marker:hover,
.home-map-marker:focus-visible{
    z-index: 8;
    background: #bd4d00;
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.12);
}

.home-map-marker:hover span,
.home-map-marker:focus-visible span{
    opacity: 1;
    transform: translate(-50%, 0) rotate(45deg);
}

.home-location-directory{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.home-location-directory a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 48px;
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 11px;
    padding: 10px 13px;
    font-weight: 700;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-location-directory a:hover,
.home-location-directory a:focus-visible{
    color: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
    transform: translateY(-2px);
}

.home-location-directory small{
    display: block;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    margin-top: 2px;
}

/* Linked case reviews */
.home-testimonials{
    position: relative;
    background: #f5f1ec;
}

.home-testimonials .section-title-content{
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.home-testimonials .swiper-slide{
    height: auto;
}

.home-testimonials .home-review-legacy-card{
    color: var(--primary-color);
    text-decoration: none;
}

.home-testimonials .home-review-legacy-card:hover,
.home-testimonials .home-review-legacy-card:focus-visible{
    color: var(--primary-color);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.1);
}

.home-testimonials .home-review-legacy-card:focus-visible{
    outline: 3px solid rgba(225, 105, 0, 0.3);
    outline-offset: 3px;
}

.home-testimonials .home-review-legacy-card .testimonial-image figure{
    height: 220px;
    margin: 0;
}

.home-testimonials .home-review-legacy-card .testimonial-image img{
    height: 100%;
    object-fit: cover;
}

.home-review-legacy-meta{
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 5px;
}

.home-review-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid rgba(17, 19, 15, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-review-card:hover,
.home-review-card:focus-visible{
    color: var(--primary-color);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.home-review-image{
    position: relative;
    height: 220px;
    margin: 0;
    overflow: hidden;
}

.home-review-image::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.38) 100%);
}

.home-review-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-review-card:hover .home-review-image img,
.home-review-card:focus-visible .home-review-image img{
    transform: scale(1.04);
}

.home-review-type{
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    color: var(--white-color);
    background: rgba(17, 19, 15, 0.82);
    border-radius: 20px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 700;
}

.home-review-body{
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.home-review-body h3{
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 13px;
}

.home-review-body blockquote{
    flex: 1;
    color: var(--text-color);
    border: 0;
    margin: 0 0 22px;
    padding: 0;
    line-height: 1.75;
}

.home-review-author{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--divider-color);
    padding-top: 15px;
}

.home-review-author strong,
.home-review-author small{
    display: block;
}

.home-review-author strong{
}

.home-review-author small{
    color: var(--text-color);
    font-size: 11px;
    margin-top: 3px;
}

.home-review-author i{
    color: var(--accent-secondary-color);
}

/* Consolidated responsive rules aligned with css/custom.css breakpoints */
@media only screen and (min-width: 992px){
    .home-service-grid{
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .home-space-panel-dark .home-service-grid{
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }

    .home-service-card{
        height: 100%;
    }
}

@media only screen and (max-width: 1024px){
    .home-intent-section{
        padding: 90px 0;
    }

    #home-move-in{
        padding: 70px 0;
    }

    .home-space-panel{
        padding: 25px;
    }

    .home-style-track{
        height: 420px;
    }

    .home-move-in-image img{
        min-height: 420px;
    }

    .home-move-in-content{
        padding: 36px 38px;
    }

    .home-guide-card{
        gap: 12px;
    }

    .home-guide-number{
        width: 38px;
        height: 38px;
    }

    .home-guide-card a{
        grid-column: 2;
        justify-self: start;
        white-space: normal;
    }

    .home-district-explorer{
        grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
    }

    .home-district-detail{
        padding: 40px 34px;
    }

    .home-why-intro{
        padding: 40px;
    }

    .home-proof-card{
        padding: 30px;
    }

    .home-district-explorer.home-region-atlas{
        grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
    }

    .home-region-atlas .home-district-map{
        min-height: 660px;
    }

    .home-region-atlas .home-district-detail{
        padding: 26px;
    }

    .home-region-card{
        padding: 20px;
    }

    .home-project-brief-panel{
        grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
        padding: 44px;
    }

    .home-project-outcomes{
        grid-template-columns: 1fr;
    }

    .home-location-summary{
        padding: 38px;
    }

    .home-location-directory{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }



    #home-portfolio .section-row .section-title{
        text-align: center;
    }
    #home-portfolio .section-row .section-title h2{
        text-align: center;
        display: flex;
        justify-content: center;
    }



     #home-districts .section-row .section-title{
        text-align: center;
    }
    #home-districts .section-row .section-title h2{
        text-align: center;
        display: flex;
        justify-content: center;
    }

     #home-districts .section-title-content p{
        text-align: center;
     }


   .our-blog .section-row .section-title{
        text-align: center;
    }
   .our-blog .section-row .section-title h2{
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .our-blog .section-title-content p{
        text-align: center;
     }

     .our-blog .section-content-btn .section-btn{
        display: flex;
        justify-content: center;
     }

     .hero-slider{
        max-height: 70vh;
     }

     .hero-slider .hero-silver{
        /*max-height: 70vh;*/
        min-height:70vh;
     }


}


@media only screen and (max-width: 991px){
    .hero-slider .swiper-slide .section-title h1{
        font-size: 44px;
    }


    .home-style-track{
        height: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
    }

    .home-style-card,
    .home-style-card:hover,
    .home-style-card:focus-within{
        flex: 0 0 78%;
        height: 370px;
        scroll-snap-align: start;
    }

    .home-style-content p,
    .home-style-card:hover .home-style-content p,
    .home-style-card:focus-within .home-style-content p{
        max-height: 100px;
        margin-top: 12px;
        opacity: 0.9;
        transform: translateY(0);
    }

    .home-move-in-image img{
        min-height: 340px;
    }

    .home-project-brief-content h2{
        font-size: 36px;
    }

    .home-portfolio-toolbar{
        align-items: flex-start;
        flex-direction: column;
    }

    .home-portfolio-tab-note{
        max-width: 100%;
        text-align: left;
    }

    .home-portfolio-featured-grid{
        grid-template-columns: 1fr;
    }

    .home-project-card-featured{
        height: 500px;
    }

    .home-district-explorer,
    .home-district-explorer.home-region-atlas{
        grid-template-columns: 1fr;
    }

    .home-district-map{
        min-height: 590px;
    }

    .home-district-detail{
        min-height: 520px;
    }

    .home-why-intro{
        position: relative;
        top: auto;
        min-height: 0;
        margin-bottom: 24px;
    }

    .home-delivery-records{
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-region-atlas .home-district-map{
        min-height: 560px;
    }

    .home-region-atlas .home-district-map-art{
        inset: 86px 34px 72px;
        width: calc(100% - 68px);
        height: calc(100% - 158px);
    }

    .home-project-brief-panel,
    .home-location-atlas{
        grid-template-columns: 1fr;
    }

    .home-location-summary{
        padding: 40px;
    }

    .home-location-atlas .home-district-map{
        min-height: 560px;
    }
}


    .hero-slider .section-title{
        text-align: left;
    }

@media only screen and (min-width: 768px) and (max-width: 991px){
    .home-service-grid,
    .home-space-panel-dark .home-service-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-portfolio-minor-grid,
    .home-portfolio-commercial-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-portfolio-minor-grid .home-project-card:last-child{
        grid-column: 1 / -1;
    }

    .home-region-list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-region-card:last-child{
        grid-column: 1 / -1;
    }
}

@media only screen and (max-width: 767px){

    .home-proof-card-no{
        font-size: 42px;
    }

    .home-budget-note .budgetleft,
    .home-budget-note .home-budget-actions{
        width: 100%;
    }

    .home-intent-section{
        padding: 70px 0;
    }

    #home-move-in{
        padding: 55px 0;
    }

    .hero-slider .swiper-slide .section-title h1{
        font-size: 28px;
        justify-content: left;
    }
     .hero-slider .swiper-slide .section-title h2{
        justify-content: left;
    }

    .home-space-panel{
        padding: 15px;
    }

    .home-space-panel-header{
        display: block;
        text-align: center;
    }

    .section-title {
        margin-bottom: 30px;
        text-align: center;
    }

     .section-title h2{
        text-align: center;
        display: flex;
        justify-content: center;
     }


    .home-service-grid,
    .home-space-panel-dark .home-service-grid{
        grid-template-columns: 1fr;
    }

    .home-service-card{
        min-height: 112px;
    }

    .home-portfolio-section .case-study-item,
    .home-portfolio-section .case-study-item.home-case-wide{
        min-height: 390px;
        padding: 28px;
    }

    .home-style-card,
    .home-style-card:hover,
    .home-style-card:focus-within{
        flex-basis: 84%;
        height: 330px;
    }

    .home-style-content{
        padding: 24px;
    }

    .home-style-content h3{
        font-size: 22px;
    }

    .home-budget-note{
        display: block;
        padding: 30px 24px;
    }

    .home-budget-actions{
        margin-top: 22px;
    }

    .home-move-in-image img{
        max-height: 250px;
    }

    .home-move-in-content{
        padding: 28px 22px;
    }

    .home-guide-card{
        gap: 10px;
        padding: 14px 0;
         display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-guide-number{
        width: 36px;
        height: 36px;
    }

    .home-guide-card a{
        white-space: normal;
    }

    .home-move-in-prepare{
        padding: 13px;
    }

    .home-project-brief-panel{
        gap: 24px;
        padding: 32px 20px;
    }

    .home-project-brief-content h2{
        font-size: 29px;
    }

    .home-project-outcomes{
        margin: 22px 0 26px;
    }

    .home-project-brief-submit{
        padding: 24px 20px;
    }

    .home-portfolio-section{
        width: calc(100% - 20px);
    }

    .home-portfolio-tabs{
        width: 100%;
    }

    .home-portfolio-tab{
        flex: 1 1 0;
        min-width: 0;
        padding: 12px 14px;
    }

    .home-portfolio-minor-grid,
    .home-portfolio-featured-grid,
    .home-portfolio-commercial-grid{
        grid-template-columns: 1fr;
    }

    .home-portfolio-minor-grid .home-project-card:last-child{
        grid-column: auto;
    }

    .home-project-card-compact,
    .home-project-card-featured,
    .home-project-card-commercial{
        height: 300px;
    }

    .home-project-card-featured .home-project-overlay,
    .home-project-card-commercial .home-project-overlay,
    .home-project-overlay{
        padding: 20px;
    }


    .home-project-focus,
    .home-project-card:hover .home-project-focus,
    .home-project-card:focus-within .home-project-focus{
        max-height: 90px;
        margin-top: 12px;
        opacity: 1;
        transform: translateY(0);
    }

    .home-district-map{
        min-height: 540px;
    }

    .home-district-map-heading{
        top: 28px;
        left: 24px;
    }

    .home-district-map-heading strong{
        max-width: 260px;
        font-size: 21px;
    }

    .home-district-map-art{
        inset: 88px 8px 105px;
        width: calc(100% - 16px);
        height: calc(100% - 193px);
    }

    .home-district-detail{
        min-height: 0;
        padding: 38px 24px;
    }

    .home-district-contact{
        align-items: flex-start;
        flex-direction: column;
    }

    .home-why-section{
        padding: 80px 0;
    }

    .home-why-intro{
        padding: 34px 24px;
    }

    
    .home-proof-grid{
        grid-template-columns: 1fr;
    }

    .home-proof-card{
        min-height: 0;
        padding: 30px 24px;
    }

    .home-proof-card-no{
        margin-bottom: 14px;
    }

    .home-delivery-records{
        padding: 30px 24px;
    }

    .home-delivery-record-grid{
        grid-template-columns: 1fr;
    }

    .home-delivery-records-intro h3{
        font-size: 24px;
    }

    .home-region-atlas .home-district-map{
        min-height: 430px;
    }

    .home-region-atlas .home-district-map-heading{
        top: 26px;
        left: 24px;
    }

    .home-region-atlas .home-district-map-heading strong{
        max-width: 270px;
        font-size: 20px;
    }

    .home-region-atlas .home-district-map-art{
        inset: 82px 12px 70px;
        width: calc(100% - 24px);
        height: calc(100% - 152px);
    }

    .home-map-label{
        font-size: 28px;
    }

    .home-map-water-label{
        display: none;
    }

    .home-map-legend{
        right: 18px;
        bottom: 18px;
        left: 18px;
        padding: 12px 14px;
    }

    .home-region-atlas .home-district-detail{
        padding: 20px;
    }

    .home-region-list,
    .home-region-projects{
        grid-template-columns: 1fr;
    }

    .home-region-card:last-child{
        grid-column: auto;
    }

    .home-location-summary{
        padding: 34px 24px;
    }

    .home-location-count strong{
        font-size: 48px;
    }


    .home-location-case-links{
        grid-template-columns: 1fr;
    }

    .home-location-case-link{
        padding: 11px 12px;
    }

    .home-location-atlas .home-district-map{
        min-height: 430px;
    }

    .home-location-atlas .home-district-map-art{
        inset: 76px 5px 24px;
        width: calc(100% - 10px);
        height: calc(100% - 100px);
    }

    .home-map-marker{
        width: 25px;
        height: 25px;
        border-width: 2px;
    }

    .home-location-directory{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-location-directory a{
        min-height: 45px;
        padding: 9px 11px;
    }

    .home-review-image{
        height: 200px;
    }

    .home-review-body{
        padding: 21px;
    }
}

@media (prefers-reduced-motion: reduce){
    .home-style-card,
    .home-style-card img,
    .home-style-content p,
    .home-service-card,
    .home-guide-card a,
    .home-project-card,
    .home-project-card img,
    .home-project-focus,
    .home-project-link i,
    .home-proof-card,
    .home-region-projects a,
    .home-map-marker,
    .home-map-marker span,
    .home-location-case-link,
    .home-location-directory a,
    .home-review-card,
    .home-review-image img{
        animation: none !important;
        transition: none !important;
    }
}


#home-delivery-management .benefits-item .icon-box{
    margin-bottom: 0;
}



