/**
 * Homepage styles
 *
 * Page-specific layout for all homepage sections.
 * Requires hb-core.css loaded first (tokens, layout primitives, buttons).
 */

/* ================================================================
   GLOBAL HOMEPAGE
   ================================================================ */
.hb-homepage {
    background: var(--hb-cream);
    font-family: var(--hb-font-body);
    color: var(--hb-body);
}

/* Section backgrounds */
.hb-testimonials {
    background: var(--hb-parchment);
}

.hb-listings {
    background: var(--hb-cream);
}

.hb-team {
    background: var(--hb-dark);
}

/* ================================================================
   HERO
   ================================================================ */
.hb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c4b8a8;
    overflow: hidden;
}

.hb-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hb-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 55%,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.06) 70%,
            transparent 100%),
        linear-gradient(180deg,
            rgba(21, 18, 32, 0.08) 0%,
            rgba(21, 18, 32, 0.02) 25%,
            rgba(21, 18, 32, 0.12) 55%,
            rgba(21, 18, 32, 0.35) 100%);
}

.hb-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
    margin-top: -8vh;
}

.hb-hero__title {
    font-family: var(--hb-font-display);
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.6),
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 0, 0, 0.2);
}

.hb-hero__subtitle {
    font-family: var(--hb-font-body);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.65),
        0 4px 20px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(0, 0, 0, 0.25);
}

.hb-hero__ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hb-hero__cta-btn {
    min-width: 140px;
}

/* ================================================================
   DIFFERENTIATORS (formerly Advantages)
   ================================================================ */
.hb-differentiators {
    background: var(--hb-parchment);
}

.hb-differentiators .hb-section__heading {
    margin-bottom: var(--hb-space-block);
}

.hb-diff-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}

.hb-diff-row:last-child {
    margin-bottom: 0;
}

.hb-diff-row--reverse {
    direction: rtl;
}

.hb-diff-row--reverse > * {
    direction: ltr;
}

.hb-diff-row__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(44, 36, 56, 0.1);
}

.hb-diff-row__title {
    font-family: var(--hb-font-display);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--hb-heading);
    margin-bottom: 16px;
}

.hb-diff-row__body {
    font-family: var(--hb-font-body);
    font-weight: 300;
    line-height: 1.8;
    font-size: 15px;
    color: var(--hb-body);
}

.hb-diff-row__body p {
    margin-bottom: 10px;
}

/* ================================================================
   SERVICE DETAIL SECTIONS (Sell / Buy / Manage)
   ================================================================ */
.hb-service-detail {
    background: var(--hb-cream);
}

.hb-service-detail--sell {
    background: var(--hb-cream);
}

.hb-service-detail--buy {
    background: var(--hb-parchment);
}

.hb-service-detail--manage {
    background: var(--hb-cream);
}

.hb-service-detail__intro {
    font-family: var(--hb-font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--hb-text-muted);
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--hb-space-block);
}

/* Sell & Buy: 2-column feature grid */
.hb-service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
    max-width: 960px;
    margin: 0 auto;
}

.hb-service-detail__item {
    padding: 28px 32px;
    background: var(--hb-card);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hb-service-detail__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hb-service-detail__item-title {
    font-family: var(--hb-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--hb-heading);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.hb-service-detail__item-desc {
    font-family: var(--hb-font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--hb-text-muted);
    margin: 0;
}

/* Manage: category blocks with bullet lists */
.hb-service-detail__categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.hb-service-detail__category {
    padding: 32px;
    background: var(--hb-card);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hb-service-detail__category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hb-service-detail__cat-heading {
    font-family: var(--hb-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--hb-dark);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.hb-service-detail__cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hb-service-detail__cat-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-family: var(--hb-font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--hb-text-muted);
}

.hb-service-detail__cat-list li:last-child {
    margin-bottom: 0;
}

.hb-service-detail__cat-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hb-champagne);
}

/* Embedded sub-sections spacing */
.hb-service-detail__embedded {
    margin-top: var(--hb-space-block);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.hb-service-detail__embedded .hb-listings,
.hb-service-detail__embedded .hb-rentals {
    padding-top: var(--hb-space-element);
}

/* ================================================================
   LISTINGS
   ================================================================ */
.hb-listings__heading {
    font-family: var(--hb-font-display);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--hb-heading);
    text-align: center;
    margin-bottom: var(--hb-space-block);
}

.hb-listings__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hb-listing-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--hb-card);
    box-shadow: 0 2px 16px rgba(44, 36, 56, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hb-listing-card:hover {
    box-shadow: 0 16px 48px rgba(44, 36, 56, 0.12);
    transform: translateY(-4px);
}

.hb-listing-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hb-listing-card__link:hover {
    text-decoration: none;
    color: inherit;
}

.hb-listing-card__image-wrap {
    position: relative;
    overflow: hidden;
}

.hb-listing-card__image-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hb-listing-card:hover .hb-listing-card__image-wrap img {
    transform: scale(1.05);
}

.hb-listing-card__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.hb-listing-card__labels {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 1;
}

.hb-listing-card__label {
    display: inline-block;
    padding: 5px 14px;
    font-family: var(--hb-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--hb-text-on-dark);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hb-listing-card__label--featured {
    background: rgba(160, 125, 242, 0.75);
    border: 1px solid rgba(160, 125, 242, 0.3);
}

.hb-listing-card__label--status {
    background: rgba(30, 26, 43, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hb-listing-card__body {
    padding: 20px 24px;
}

.hb-listing-card__price {
    font-family: var(--hb-font-display);
    font-size: 22px;
    color: var(--hb-heading);
    margin-bottom: 4px;
}

.hb-listing-card__title {
    font-family: var(--hb-font-body);
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 4px;
    color: var(--hb-heading);
}

.hb-listing-card__address {
    font-size: 14px;
    color: var(--hb-muted);
    margin: 0 0 14px;
}

.hb-listing-card__meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--hb-muted);
    padding-top: 14px;
    border-top: 1px solid var(--hb-border);
}

.hb-listing-card__meta-item i {
    margin-right: 5px;
    color: var(--hb-champagne);
}

/* ================================================================
   RENTALS — refined grid with hover effects
   ================================================================ */
.hb-rentals__heading {
    font-family: var(--hb-font-display);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--hb-heading);
    text-align: center;
    margin-bottom: 12px;
}

.hb-rentals__see-all {
    text-align: center;
    margin-bottom: var(--hb-space-block);
}

.hb-rentals__see-all a {
    font-family: var(--hb-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hb-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hb-rentals__see-all a:hover {
    color: var(--hb-plum);
}

.hb-rentals__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hb-rentals__item {
    display: block;
    position: relative;
    padding-bottom: 110%;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(44, 36, 56, 0.08);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background image on pseudo-element for independent zoom */
.hb-rentals__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}


.hb-rentals__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(44, 36, 56, 0.18);
}

.hb-rentals__item:hover::before {
    transform: scale(1.08);
}

.hb-rentals__item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: linear-gradient(180deg,
        transparent 40%,
        rgba(21, 18, 32, 0.35) 70%,
        rgba(21, 18, 32, 0.75) 100%);
    transition: background 0.5s ease;
    z-index: 2;
}

.hb-rentals__item:hover .hb-rentals__item-overlay {
    background: linear-gradient(180deg,
        transparent 25%,
        rgba(21, 18, 32, 0.4) 60%,
        rgba(21, 18, 32, 0.85) 100%);
}

.hb-rentals__item-name {
    font-family: var(--hb-font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--hb-text-on-dark);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(4px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hb-rentals__item:hover .hb-rentals__item-name {
    transform: translateY(0);
}

/* ================================================================
   TESTIMONIALS — elevated card with decorative quote
   ================================================================ */
.hb-testimonials__card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 64px 48px;
    background: var(--hb-card);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(44, 36, 56, 0.08);
}

.hb-testimonials__quote-mark {
    position: absolute;
    top: -8px;
    left: 48px;
    font-family: var(--hb-font-display);
    font-size: 120px;
    line-height: 1;
    color: var(--hb-primary);
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
}

.hb-testimonials__slider {
    margin: 0;
    padding: 0;
}

.hb-testimonial {
    display: block !important;
    text-align: center;
    padding: 0 20px;
    outline: none;
}

.hb-testimonial__photo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.hb-testimonial__photo img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--hb-card);
    box-shadow: 0 4px 20px rgba(44, 36, 56, 0.1);
    outline: 3px solid var(--hb-champagne);
    outline-offset: 2px;
}

.hb-testimonial__body {
    font-family: var(--hb-font-body);
    font-weight: 300;
    line-height: 1.9;
    font-size: 17px;
    color: var(--hb-body);
    margin-bottom: 28px;
    font-style: italic;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hb-testimonial__author {
    padding-top: 20px;
    border-top: 1px solid var(--hb-border);
    display: inline-block;
}

.hb-testimonial__name {
    font-family: var(--hb-font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--hb-heading);
    margin-bottom: 2px;
}

.hb-testimonial__title {
    font-size: 13px;
    color: var(--hb-muted);
    font-style: normal;
    letter-spacing: 0.03em;
    margin: 0;
}

/* Slick dots — champagne pill for active */
.hb-testimonials__slider .slick-dots {
    text-align: center;
    padding: 28px 0 0;
    list-style: none;
    margin: 0;
}

.hb-testimonials__slider .slick-dots li {
    display: inline-block;
    margin: 0 4px;
}

.hb-testimonials__slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 100px;
    background: var(--hb-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hb-testimonials__slider .slick-dots li button:before {
    display: none;
}

.hb-testimonials__slider .slick-dots li.slick-active button {
    width: 28px;
    background: var(--hb-champagne);
}

/* Slick arrows — refined */
.hb-testimonials__slider .slick-prev,
.hb-testimonials__slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    border-radius: 50%;
    background: var(--hb-parchment);
    transition: background 0.3s ease;
}

.hb-testimonials__slider .slick-prev:hover,
.hb-testimonials__slider .slick-next:hover {
    background: var(--hb-border);
}

.hb-testimonials__slider .slick-prev:before,
.hb-testimonials__slider .slick-next:before {
    color: var(--hb-body);
    font-size: 16px;
}

.hb-testimonials__slider .slick-prev { left: -56px; }
.hb-testimonials__slider .slick-next { right: -56px; }

/* ================================================================
   TEAM — dark section with elevated portrait cards
   ================================================================ */
.hb-team .hb-section__heading--light {
    margin-bottom: var(--hb-space-block);
}

.hb-team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
}

.hb-team__card {
    background: var(--hb-dark-elevated);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hb-team__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hb-team__photo {
    position: relative;
    overflow: hidden;
}

.hb-team__photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hb-team__card:hover .hb-team__photo img {
    transform: scale(1.03);
}

.hb-team__info {
    padding: 28px 32px 32px;
    text-align: center;
}

.hb-team__name {
    font-family: var(--hb-font-display);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--hb-text-on-dark);
    margin: 0 0 6px;
}

.hb-team__role {
    font-family: var(--hb-font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hb-champagne);
    margin: 0;
}

.hb-team__divider {
    width: 40px;
    height: 1px;
    background: var(--hb-champagne-20);
    margin: 20px auto;
}

.hb-team__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--hb-font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    text-align: left;
}

.hb-team__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hb-team__contact li:last-child {
    margin-bottom: 0;
}

.hb-team__contact li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hb-team__contact li a:hover {
    color: var(--hb-champagne);
}

.hb-team__contact li i {
    flex-shrink: 0;
    font-size: 14px;
    width: 20px;
    text-align: center;
    color: var(--hb-champagne-40);
}

.hb-team__wechat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    color: #07C160;
}

.hb-team__wechat-icon svg {
    vertical-align: middle;
}

/* ================================================================
   VISION & MISSION
   ================================================================ */
.hb-vision {
    background: var(--hb-cream);
}

.hb-vision__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hb-vision__heading {
    font-family: var(--hb-font-display);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: var(--hb-heading);
    margin-bottom: 32px;
}

.hb-vision__heading em {
    font-style: italic;
    color: var(--hb-primary);
}

.hb-vision__divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--hb-primary), var(--hb-lavender));
    border-radius: 1px;
    margin: 0 auto 32px;
}

.hb-vision__text {
    font-family: var(--hb-font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--hb-body);
}

/* ================================================================
   SERVICES — dark background, glassmorphism cards
   ================================================================ */
.hb-services {
    background: var(--hb-dark);
}

.hb-services .hb-section-label {
    color: var(--hb-champagne);
}

.hb-services .hb-section-label::before,
.hb-services .hb-section-label::after {
    background: rgba(212, 184, 150, 0.3);
}

.hb-services .hb-section__heading--light {
    color: var(--hb-text-on-dark);
    margin-bottom: var(--hb-space-block);
}

.hb-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hb-services__card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                backdrop-filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                -webkit-backdrop-filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hb-js .hb-services .hb-services__card:hover {
    background:
        radial-gradient(
            ellipse 80% 60% at 50% 0%,
            rgba(212, 184, 150, 0.1) 0%,
            transparent 70%
        ),
        rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(212, 184, 150, 0.3);
    transform: translateY(-8px) scale(1.015);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 24px 56px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hb-services__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    border-radius: 12px;
    background: var(--hb-primary-muted);
    border: 1px solid rgba(160, 125, 242, 0.2);
    font-size: 24px;
    color: var(--hb-lavender);
    transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hb-js .hb-services .hb-services__card:hover .hb-services__icon {
    background: rgba(160, 125, 242, 0.18);
    border-color: rgba(160, 125, 242, 0.35);
}

.hb-services__title {
    font-family: var(--hb-font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--hb-text-on-dark);
    margin-bottom: 16px;
    transition: color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hb-js .hb-services .hb-services__card:hover .hb-services__title {
    color: var(--hb-champagne);
}

.hb-services__desc {
    font-family: var(--hb-font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--hb-text-on-dark-sub);
    margin-bottom: 24px;
}

.hb-services__link {
    display: inline-block;
    font-family: var(--hb-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hb-champagne);
    text-decoration: none;
    transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hb-services__link::after {
    content: ' →';
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hb-js .hb-services .hb-services__card:hover .hb-services__link {
    color: var(--hb-text-on-dark);
}

.hb-js .hb-services .hb-services__card:hover .hb-services__link::after {
    transform: translateX(5px);
}

.hb-services__link:hover {
    color: var(--hb-text-on-dark);
}

.hb-services__link:hover::after {
    transform: translateX(5px);
}

/* ================================================================
   STATS BAR — dark gradient, 4-column numbers
   ================================================================ */
.hb-stats {
    background: linear-gradient(180deg, var(--hb-dark) 0%, var(--hb-dark-elevated) 100%);
    padding: var(--hb-space-section-sm) 0;
}

.hb-stats__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-stats__item {
    flex: 1;
    text-align: center;
    padding: 16px 0;
}

.hb-stats__number {
    font-family: var(--hb-font-display);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--hb-champagne), var(--hb-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hb-stats__label {
    font-family: var(--hb-font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hb-text-on-dark-sub);
}

.hb-stats__divider {
    width: 1px;
    height: 48px;
    background: var(--hb-champagne-20);
    flex-shrink: 0;
}

/* ================================================================
   CTA SECTION — floating dark card on cream
   ================================================================ */
.hb-cta-section {
    background: var(--hb-cream);
}

.hb-cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 56px;
    background: var(--hb-dark);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(30, 26, 43, 0.3);
}

/* Radial purple glow behind the card */
.hb-cta-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(160, 125, 242, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hb-cta-card__heading {
    font-family: var(--hb-font-display);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.25;
    color: var(--hb-text-on-dark);
    margin-bottom: 16px;
    position: relative;
}

.hb-cta-card__heading em {
    font-style: italic;
    color: var(--hb-lavender);
}

.hb-cta-card__text {
    font-family: var(--hb-font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--hb-text-on-dark-sub);
    margin-bottom: 36px;
    position: relative;
}

.hb-cta-card__btn {
    position: relative;
}

/* ================================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ================================================================ */
@media (max-width: 1024px) {
    /* Services */
    .hb-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hb-services__card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Stats */
    .hb-stats__number {
        font-size: 34px;
    }

    /* Differentiators */
    .hb-diff-row {
        gap: 32px;
    }

    /* Service detail categories */
    .hb-service-detail__categories {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Listings */
    .hb-listings__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================================
   RESPONSIVE — Mobile (max-width: 767px)
   ================================================================ */
@media (max-width: 767px) {
    /* Hero */
    .hb-hero {
        min-height: 0;
        padding: 100px 16px 60px;
    }

    .hb-hero__content {
        padding: 0 16px;
        margin-top: 0;
    }

    .hb-hero__overlay {
        background:
            radial-gradient(ellipse 80% 60% at 50% 45%,
                rgba(0, 0, 0, 0.35) 0%,
                rgba(0, 0, 0, 0.15) 70%,
                transparent 100%),
            linear-gradient(180deg,
                rgba(21, 18, 32, 0.25) 0%,
                rgba(21, 18, 32, 0.10) 25%,
                rgba(21, 18, 32, 0.20) 55%,
                rgba(21, 18, 32, 0.45) 100%);
    }

    .hb-hero__title {
        font-size: 32px;
        text-shadow:
            0 2px 6px rgba(0, 0, 0, 0.7),
            0 6px 30px rgba(0, 0, 0, 0.5),
            0 0 80px rgba(0, 0, 0, 0.3);
    }

    .hb-hero__subtitle {
        font-size: 16px;
        text-shadow:
            0 2px 6px rgba(0, 0, 0, 0.75),
            0 6px 24px rgba(0, 0, 0, 0.5),
            0 0 80px rgba(0, 0, 0, 0.3);
    }

    .hb-hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .hb-hero__cta-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    /* Vision & Mission */
    .hb-vision__heading {
        font-size: 24px;
    }

    .hb-vision__text {
        font-size: 15px;
    }

    /* Services */
    .hb-services__grid {
        grid-template-columns: 1fr;
    }

    .hb-services__card:last-child {
        max-width: none;
    }

    .hb-services__card {
        padding: 32px 24px;
    }

    /* Stats */
    .hb-stats__inner {
        flex-wrap: wrap;
    }

    .hb-stats__item {
        flex: 0 0 50%;
        padding: 20px 0;
    }

    .hb-stats__number {
        font-size: 30px;
    }

    .hb-stats__divider {
        display: none;
    }

    /* Differentiators */
    .hb-diff-row,
    .hb-diff-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .hb-diff-row__text {
        order: 2;
    }

    .hb-diff-row__image {
        order: 1;
    }

    .hb-diff-row__title {
        font-size: 22px;
    }

    /* Service detail sections */
    .hb-service-detail__grid {
        grid-template-columns: 1fr;
    }

    .hb-service-detail__item {
        padding: 24px 20px;
    }

    .hb-service-detail__intro {
        font-size: 16px;
    }

    .hb-service-detail__categories {
        grid-template-columns: 1fr;
    }

    .hb-service-detail__category {
        padding: 24px 20px;
    }

    /* Listings */
    .hb-listings__grid {
        grid-template-columns: 1fr;
    }

    /* Rentals */
    .hb-rentals__heading {
        font-size: 28px;
    }

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

    /* Testimonials */
    .hb-testimonials__card {
        padding: 40px 24px 36px;
        border-radius: 16px;
    }

    .hb-testimonials__quote-mark {
        font-size: 80px;
        left: 20px;
        top: -4px;
    }

    .hb-testimonial {
        padding: 0 8px;
    }

    .hb-testimonial__body {
        font-size: 15px;
    }

    .hb-testimonials__slider .slick-prev { left: -8px; }
    .hb-testimonials__slider .slick-next { right: -8px; }

    /* Team */
    .hb-team__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hb-team__photo img {
        height: auto;
    }

    .hb-team__info {
        padding: 24px 20px 28px;
    }

    .hb-team__name {
        font-size: 22px;
    }

    /* CTA */
    .hb-cta-card {
        padding: 48px 24px;
        border-radius: 16px;
    }

    .hb-cta-card__heading {
        font-size: 28px;
    }
}
