:root {
    --alakh-charcoal: #242321;
    --alakh-muted: #69645d;
    --alakh-gold: #b08149;
    --alakh-gold-dark: #8d6334;
    --alakh-gold-light: #d7b783;
    --alakh-canvas: #fbfaf7;
    --alakh-white: #ffffff;
    --alakh-soft-border: rgba(176, 129, 73, 0.2);
    --alakh-soft-shadow: 0 24px 70px rgba(48, 39, 28, 0.1);
    --alakh-page-banner-padding-y: clamp(2.5rem, 5.75vw, 4.75rem);
    --alakh-page-banner-padding-x: clamp(1.25rem, 5vw, 4.75rem);
    --alakh-page-banner-radius: 1.35rem;
    --alakh-page-banner-shadow: 0 20px 50px rgba(42, 32, 23, 0.13);
}

.home-page {
    overflow-x: hidden;
    background: var(--alakh-canvas);
    color: var(--alakh-charcoal);
    font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
    scroll-behavior: smooth;
}

.home-page .site-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    min-height: 86px;
    padding: 0.4rem 0;
    border-bottom: 1px solid transparent;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.84) 0%,
        rgba(255, 253, 249, 0.66) 72%,
        rgba(255, 253, 249, 0.44) 100%
    ) !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.06);
    backdrop-filter: blur(12px) saturate(1.06);
    transition:
        min-height 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}

.home-page .site-navbar.is-scrolled {
    min-height: 72px;
    border-color: rgba(36, 35, 33, 0.08);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 253, 249, 0.9) 100%
    ) !important;
    box-shadow: 0 12px 35px rgba(34, 29, 23, 0.08) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.12);
    backdrop-filter: blur(20px) saturate(1.12);
}

.home-page .site-navbar .navbar-brand img {
    height: 68px;
    width: auto;
    transition:
        height 0.35s ease,
        transform 0.35s ease;
}

.home-page .site-navbar.is-scrolled .navbar-brand img {
    height: 56px;
}

.home-page .site-navbar .nav-link {
    position: relative;
    margin: 0 0.12rem;
    padding: 0.75rem 0.85rem !important;
    color: var(--alakh-charcoal) !important;
    font-weight: 500;
    transition: color 0.25s ease;
}

.home-page .site-navbar .nav-link::after {
    position: absolute;
    right: 0.85rem;
    bottom: 0.45rem;
    left: 0.85rem;
    height: 1px;
    content: "";
    background: var(--alakh-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.home-page .site-navbar .nav-link:hover,
.home-page .site-navbar .nav-link.active {
    color: var(--alakh-gold-dark) !important;
}

.home-page .site-navbar .nav-link:hover::after,
.home-page .site-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.home-page .site-navbar .nav-search-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-left: 0.2rem;
    padding: 0 !important;
    border: 0;
    border-radius: 50%;
    background: transparent !important;
    color: var(--alakh-charcoal) !important;
}

.home-page .site-navbar .nav-search-link::after {
    display: none;
}

.home-page .site-navbar .nav-search-link:hover,
.home-page .site-navbar .nav-search-link:focus-visible {
    background: transparent !important;
    color: var(--alakh-gold-dark) !important;
}

.home-page .site-navbar .nav-search-link:focus-visible {
    outline: 2px solid var(--alakh-gold);
    outline-offset: 2px;
    box-shadow: none;
}

.home-page .site-navbar .nav-search-icon {
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform 0.25s ease;
}

.home-page .site-navbar .nav-search-link:hover .nav-search-icon {
    transform: scale(1.08) rotate(-3deg);
}

.home-page .home-hero {
    --hero-background-scale: 1;
    --hero-parallax-y: 0px;
    position: relative;
    display: flex;
    min-height: clamp(650px, 48vw, 730px);
    align-items: center;
    isolation: isolate;
    padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(5rem, 8vw, 7rem);
    overflow: hidden;
    background: #eee5d8;
}

.home-page .home-hero--under-navbar {
    min-height: calc(clamp(650px, 48vw, 730px) + 86px);
    margin-top: -86px;
    padding-top: calc(clamp(3rem, 6vw, 5.5rem) + 86px);
}

.home-page .home-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255, 253, 249, 0.98) 0%,
            rgba(255, 253, 249, 0.95) 20%,
            rgba(255, 253, 249, 0.82) 38%,
            rgba(255, 253, 249, 0.34) 57%,
            rgba(255, 253, 249, 0.05) 74%,
            transparent 100%
        ),
        linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.38) 7%,
            transparent 20%
        );
}

.home-page .home-hero__background {
    position: absolute;
    z-index: -2;
    inset: -12px;
    background-color: #eee5d8;
    background-image: url("/storage/homepage/alakh-luxury-hero.png");
    background-image: image-set(
        url("/storage/homepage/alakh-luxury-hero.avif") type("image/avif") 1x,
        url("/storage/homepage/alakh-luxury-hero.webp") type("image/webp") 1x,
        url("/storage/homepage/alakh-luxury-hero.png") type("image/png") 1x
    );
    background-position: center center;
    background-size: cover;
    transform: translate3d(0, var(--hero-parallax-y), 0)
        scale(var(--hero-background-scale));
    will-change: transform;
    animation: home-hero-background-reveal 1.45s 0.05s backwards
        cubic-bezier(0.22, 1, 0.36, 1);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .home-hero:hover {
    --hero-background-scale: 1.006;
}

.home-page .home-hero__row {
    --bs-gutter-x: 0;
}

.home-page .home-hero__copy {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .home-page .home-hero__copy {
        width: 44%;
        max-width: 44%;
        flex: 0 0 44%;
    }
}

.home-page .hero-tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    margin-bottom: 1.1rem;
    padding: 0.55rem 0.9rem 0.55rem 0.7rem;
    border: 1px solid rgba(176, 129, 73, 0.24);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.78);
    color: var(--alakh-charcoal);
    box-shadow:
        0 10px 30px rgba(88, 65, 39, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    font-size: clamp(0.78rem, 0.82vw, 0.86rem);
    font-weight: 650;
    letter-spacing: 0.015em;
    line-height: 1;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    animation: home-hero-rise 0.8s 0.05s both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .hero-tagline-badge::before {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--alakh-gold),
        var(--alakh-gold-dark)
    );
    box-shadow: 0 0 0 4px rgba(176, 129, 73, 0.1);
    content: "";
    flex: 0 0 auto;
}

.home-page .hero-message {
    margin: 0 0 0.9rem;
}

.home-page .hero-message__titles {
    animation: home-hero-rise 0.9s 0.12s both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .hero-message__supports {
    animation: home-hero-rise 0.9s 0.24s both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .herosection h1 {
    max-width: 690px;
    color: var(--alakh-charcoal);
    font-size: clamp(2.65rem, 4.35vw, 4.65rem);
    font-weight: 720;
    letter-spacing: -0.045em;
    line-height: 1.03;
    text-wrap: balance;
}

.home-page .hero-message__title[lang="en"] {
    font-size: 0.92em;
    font-weight: 700;
    line-height: 1.12;
}

.home-page .hero-message__support {
    max-width: 650px;
    color: var(--alakh-gold-dark);
    font-size: clamp(1.1rem, 1.65vw, 1.42rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.45;
}

.home-page .hero-message__support[lang="en"] {
    font-size: 0.95em;
}

.home-page .hero-message__progress {
    width: 84px;
    height: 2px;
    margin-top: 0.8rem;
    background: rgba(176, 129, 73, 0.16);
    animation: home-hero-rise 0.8s 0.3s both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .hero-descriptions {
    max-width: 650px;
    margin-bottom: 1.35rem;
    animation: home-hero-rise 0.9s 0.34s both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .hero-description {
    max-width: 650px;
    margin: 0 !important;
    color: var(--alakh-muted);
    font-size: clamp(0.98rem, 1.15vw, 1.08rem);
    line-height: 1.75;
}

.home-page .home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0;
    animation: home-hero-rise 0.9s 0.46s both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .home-hero__button {
    min-height: 48px;
    margin: 0 !important;
    padding: 0.78rem 1.4rem;
    border: 1px solid var(--alakh-gold);
    border-radius: 999px;
    font-weight: 650;
    box-shadow: none;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.home-page .home-hero__button--primary {
    background: linear-gradient(
        135deg,
        var(--alakh-gold-dark),
        var(--alakh-gold)
    );
    color: var(--alakh-white);
    box-shadow: 0 12px 26px rgba(141, 99, 52, 0.2);
}

.home-page .home-hero__button--secondary {
    background: rgba(255, 255, 255, 0.82);
    color: var(--alakh-charcoal);
}

.home-page .home-hero__button:hover,
.home-page .home-hero__button:focus-visible {
    transform: translateY(-2px);
}

.home-page .home-hero__button--primary:hover,
.home-page .home-hero__button--primary:focus-visible {
    border-color: var(--alakh-charcoal);
    background: var(--alakh-charcoal);
    color: var(--alakh-white);
    box-shadow: 0 15px 34px rgba(36, 35, 33, 0.18);
}

.home-page .home-hero__button--secondary:hover,
.home-page .home-hero__button--secondary:focus-visible {
    border-color: var(--alakh-charcoal);
    background: var(--alakh-charcoal);
    color: var(--alakh-white);
}

.home-page .home-filter-container {
    position: relative;
    z-index: 4;
    /* No max-width here. This element is already a .container, and a fixed
       1320px defeated Bootstrap's smaller steps: at a 1280px viewport the
       card ran the full width of the screen while every other section on the
       page stopped at 1140. Inheriting .container keeps it in step at every
       size. */
    margin-top: -3.4rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}

.home-page .property-search-bar {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    margin: 0 0 clamp(1.75rem, 3.5vw, 3rem);
    padding: 0.85rem 1rem;
    border: 1px solid transparent;
    border-top-width: 2px;
    border-radius: 1.8rem;
    background:
        linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97))
            padding-box,
        linear-gradient(
                180deg,
                rgba(176, 129, 73, 0.88) 0%,
                rgba(176, 129, 73, 0.4) 34%,
                rgba(176, 129, 73, 0.1) 70%,
                transparent 100%
            )
            border-box;
    box-shadow: 0 18px 50px rgba(52, 43, 33, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    animation: home-hero-rise 0.8s 0.55s both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .property-search-bar__field {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 64px;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
    padding: 0 1.05rem;
    grid-column: span 2;
}

.home-page .property-search-bar__field:nth-child(4),
.home-page .property-search-bar__field:nth-child(5) {
    grid-column: span 3;
}

.home-page .property-search-bar__field + .property-search-bar__field::before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 1px;
    content: "";
    background: rgba(36, 35, 33, 0.12);
}

.home-page .property-search-bar__field:nth-child(4)::before {
    display: none;
}

.home-page .property-search-bar__icon {
    color: var(--alakh-gold);
    font-size: 1.2rem;
    line-height: 1;
}

.home-page .property-search-bar__control {
    min-width: 0;
}

.home-page .property-search-bar__control label {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--alakh-muted);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.home-page .property-search-bar__select-wrap {
    position: relative;
    min-width: 0;
}

.home-page .property-search-bar__select {
    width: 100%;
    min-width: 0;
    height: 31px;
    padding: 0 1.6rem 0 0;
    overflow: hidden;
    border: 0;
    outline: 0;
    appearance: none;
    background: transparent;
    color: var(--alakh-charcoal);
    cursor: pointer;
    font: inherit;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-page .property-search-bar__select-wrap > i {
    position: absolute;
    top: 50%;
    right: 0.1rem;
    color: var(--alakh-muted);
    font-size: 0.72rem;
    pointer-events: none;
    transform: translateY(-50%);
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.home-page .property-search-bar__field:focus-within .property-search-bar__icon,
.home-page
    .property-search-bar__field:focus-within
    .property-search-bar__select-wrap
    > i {
    color: var(--alakh-gold-dark);
}

.home-page
    .property-search-bar__field:focus-within
    .property-search-bar__select-wrap
    > i {
    transform: translateY(-50%) rotate(180deg);
}

.home-page .property-search-bar__select:focus-visible {
    border-radius: 0.3rem;
    outline: 2px solid rgba(176, 129, 73, 0.52);
    outline-offset: 3px;
}

.home-page .property-search-bar__submit {
    display: inline-flex;
    min-width: 202px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-left: 0.75rem;
    padding: 0.85rem 1.4rem;
    border: 1px solid rgba(141, 99, 52, 0.24);
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--alakh-gold-dark),
        #c69242 58%,
        #dfb934
    );
    color: var(--alakh-white);
    box-shadow: 0 10px 24px rgba(141, 99, 52, 0.22);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
    grid-column: 1 / -1;
    margin-top: 0.65rem;
    margin-right: 0.75rem;
    margin-bottom: 0.15rem;
}

.home-page .property-search-bar__submit i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.home-page .property-search-bar__submit:hover,
.home-page .property-search-bar__submit:focus-visible {
    background: var(--alakh-charcoal);
    box-shadow: 0 14px 30px rgba(36, 35, 33, 0.16);
    transform: translateY(-2px);
}

.home-page .property-search-bar__submit:hover i,
.home-page .property-search-bar__submit:focus-visible i {
    transform: translateX(2px);
}

.home-page .property-search-bar__submit:focus-visible {
    outline: 2px solid var(--alakh-gold);
    outline-offset: 3px;
}

.home-page .property-card {
    border: 1px solid rgba(36, 35, 33, 0.07) !important;
    border-radius: 1.25rem !important;
    background: var(--alakh-white);
    box-shadow: 0 12px 34px rgba(43, 36, 28, 0.07) !important;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease !important;
}

.home-page .property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(43, 36, 28, 0.12) !important;
}

.home-page .property-card img,
.home-page .property-image {
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.home-page .property-card:hover img,
.home-page .property-card:hover .property-image {
    transform: scale(1.035) !important;
}

.home-page .who-we-are {
    position: relative;
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(215, 183, 131, 0.17), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}

.home-page .who-we-are::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(176, 129, 73, 0.28), transparent);
}

.home-page .who-we-are__header {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 7vw, 6.5rem);
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
}

.home-page .who-we-are__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: var(--alakh-gold-dark);
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-page .who-we-are__eyebrow::before {
    width: 1.8rem;
    height: 1px;
    content: "";
    background: currentColor;
}

.home-page .who-we-are__title {
    max-width: 520px;
    margin: 0;
    color: var(--alakh-charcoal);
    font-size: clamp(2.35rem, 4.5vw, 4.35rem);
    font-weight: 650;
    letter-spacing: -0.05em;
    line-height: 0.98;
    text-wrap: balance;
}

.home-page .who-we-are__introduction {
    max-width: 700px;
    margin: 0;
    padding-left: clamp(1.25rem, 3vw, 2.25rem);
    border-left: 1px solid rgba(176, 129, 73, 0.34);
    color: var(--alakh-muted);
    font-size: clamp(1rem, 1.35vw, 1.13rem);
    line-height: 1.8;
}

.home-page .who-we-are__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

.home-page .who-we-are__card {
    position: relative;
    min-width: 0;
    min-height: 280px;
    padding: clamp(1.45rem, 2.5vw, 2rem);
    overflow: hidden;
    border: 1px solid rgba(36, 35, 33, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 38px rgba(43, 36, 28, 0.055);
    transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.home-page .who-we-are__card::before {
    position: absolute;
    top: 0;
    right: 1.4rem;
    left: 1.4rem;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--alakh-gold), rgba(215, 183, 131, 0.25));
    transform: scaleX(0.24);
    transform-origin: left;
    transition: transform 300ms ease;
}

.home-page .who-we-are__card:hover {
    border-color: rgba(176, 129, 73, 0.22);
    box-shadow: 0 22px 52px rgba(43, 36, 28, 0.1);
    transform: translateY(-4px);
}

.home-page .who-we-are__card:hover::before {
    transform: scaleX(1);
}

.home-page .who-we-are__card-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.45rem;
}

.home-page .who-we-are__icon {
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    flex: 0 0 3.25rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(176, 129, 73, 0.24);
    border-radius: 1rem;
    background: linear-gradient(145deg, #ffffff, rgba(215, 183, 131, 0.15));
    color: var(--alakh-gold-dark);
    transition: background-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.home-page .who-we-are__card:hover .who-we-are__icon {
    background: var(--alakh-gold-dark);
    color: var(--alakh-white);
    transform: rotate(-2deg) scale(1.03);
}

.home-page .who-we-are__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.home-page .who-we-are__number {
    color: rgba(36, 35, 33, 0.2);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.14em;
}

.home-page .who-we-are__card-title {
    margin: 0 0 0.8rem;
    color: var(--alakh-charcoal);
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.home-page .who-we-are__card-text {
    margin: 0;
    color: var(--alakh-muted);
    font-size: 0.92rem;
    line-height: 1.72;
}

@media (max-width: 991px) {
    .home-page .who-we-are__header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-page .who-we-are__introduction {
        max-width: 760px;
    }

    .home-page .who-we-are__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .home-page .who-we-are {
        padding: 3.25rem 0;
    }

    .home-page .who-we-are__introduction {
        padding-left: 1rem;
    }

    .home-page .who-we-are__grid {
        grid-template-columns: 1fr;
    }

    .home-page .who-we-are__card {
        min-height: 0;
    }
}

/* ------------------------------------------------------------------ */
/* Find Your Dream Property                                            */
/* ------------------------------------------------------------------ */
.home-page .dream-properties {
    position: relative;
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--alakh-canvas) 100%);
}

.home-page .dream-properties__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-page .dream-properties__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: var(--alakh-gold-dark);
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-page .dream-properties__eyebrow::before {
    width: 1.8rem;
    height: 1px;
    content: "";
    background: currentColor;
}

.home-page .dream-properties__title {
    margin: 0 0 0.65rem;
    color: var(--alakh-charcoal);
    font-size: clamp(2.1rem, 3.6vw, 3.1rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.home-page .dream-properties__subtitle {
    max-width: 480px;
    margin: 0;
    color: var(--alakh-muted);
    font-size: 1.02rem;
    line-height: 1.6;
}

.home-page .dream-properties__see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.75rem 1.4rem;
    border: 1px solid var(--alakh-soft-border);
    border-radius: 999px;
    color: var(--alakh-gold-dark);
    font-weight: 620;
    font-size: 0.92rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-page .dream-properties__see-all i {
    transition: transform 0.25s ease;
}

.home-page .dream-properties__see-all:hover {
    background: var(--alakh-charcoal);
    border-color: var(--alakh-charcoal);
    color: #ffffff;
    transform: translateY(-1px);
}

.home-page .dream-properties__see-all:hover i {
    transform: translateX(3px);
}

.home-page .dream-properties__grid {
    row-gap: 1.75rem;
}

.home-page .dream-property-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(36, 35, 33, 0.07);
    border-radius: 1.1rem;
    background: var(--alakh-white);
    box-shadow: 0 12px 34px rgba(43, 36, 28, 0.07);
    cursor: pointer;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.home-page .dream-property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(43, 36, 28, 0.13);
    border-color: rgba(176, 129, 73, 0.3);
}

.home-page .dream-property-card__media {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3eee6 0%, #e7ded0 100%);
}

.home-page .dream-property-card__media .carousel,
.home-page .dream-property-card__media .carousel-inner,
.home-page .dream-property-card__media .carousel-item {
    height: 100%;
}

.home-page .dream-property-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .dream-property-card:hover .dream-property-card__media img {
    transform: scale(1.06);
}

.home-page .dream-property-card__no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 100%;
    color: #777;
    background: linear-gradient(135deg, #ededed 0%, #d7d7d7 100%);
}

.home-page .dream-property-card__no-image i {
    font-size: 1.5rem;
}

.home-page .dream-property-card__no-image span {
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
}

.home-page .dream-property-card__badge {
    position: absolute;
    top: 0.9rem;
    z-index: 2;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-page .dream-property-card__badge--featured {
    left: 0.9rem;
    background: #ffffff;
    color: var(--alakh-charcoal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.home-page .dream-property-card__badge--category {
    right: 0.9rem;
    background: linear-gradient(135deg, #b98549 0%, #8d6334 100%);
    color: #ffffff;
}

.home-page .dream-property-card__fav {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--alakh-charcoal);
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease;
}

.home-page .dream-property-card__fav:hover {
    transform: scale(1.08);
}

.home-page .dream-property-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.25rem 1.35rem 1.5rem;
}

.home-page .dream-property-card__price {
    margin: 0 0 0.3rem;
    color: var(--alakh-gold-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.home-page .dream-property-card__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 0.5rem;
    color: var(--alakh-charcoal);
    font-size: 1.08rem;
    font-weight: 650;
    line-height: 1.3;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.home-page .dream-property-card__location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.9rem;
    color: var(--alakh-muted);
    font-size: 0.88rem;
}

.home-page .dream-property-card__location i {
    color: var(--alakh-gold);
}

.home-page .dream-property-card__meta {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(36, 35, 33, 0.07);
    color: var(--alakh-muted);
    font-size: 0.85rem;
    font-weight: 550;
}

.home-page .dream-property-card__meta i {
    margin-right: 0.35rem;
    color: var(--alakh-gold-dark);
}

.home-page .dream-properties__empty {
    padding: 3rem 1rem;
    border: 1px dashed rgba(36, 35, 33, 0.15);
    border-radius: 1rem;
    color: var(--alakh-muted);
    text-align: center;
}

.home-page .dream-properties__empty i {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--alakh-gold);
    font-size: 2rem;
}

@media (max-width: 575px) {
    .home-page .dream-properties {
        padding: 3.25rem 0;
    }

    .home-page .dream-properties__see-all {
        width: 100%;
        justify-content: center;
    }
}

/* Featured Properties — reuses the "Find Your Dream Property" grid's own
   header/card classes rather than a bespoke design, so the two sections
   read as one consistent card language instead of two different ones. */
.home-page .featured-properties {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: var(--alakh-canvas);
}

@media (max-width: 575px) {
    .home-page .featured-properties {
        padding: 3.25rem 0;
    }
}

.home-page .app-newsletter {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    background:
        radial-gradient(circle at 10% 100%, rgba(215, 183, 131, 0.16), transparent 30%),
        #f7f3ed;
}

.home-page .app-newsletter__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border: 1px solid rgba(215, 183, 131, 0.24);
    border-radius: clamp(1.5rem, 3vw, 2.25rem);
    background:
        radial-gradient(circle at 16% -20%, rgba(176, 129, 73, 0.2), transparent 38%),
        linear-gradient(135deg, #242321 0%, #302c27 62%, #211f1d 100%);
    box-shadow: 0 28px 75px rgba(36, 35, 33, 0.16);
}

.home-page .app-newsletter__panel::before {
    position: absolute;
    top: -6rem;
    left: 42%;
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(215, 183, 131, 0.1);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 2.8rem rgba(215, 183, 131, 0.025),
        0 0 0 5.6rem rgba(215, 183, 131, 0.018);
    pointer-events: none;
}

.home-page .app-newsletter__app-copy,
.home-page .app-newsletter__signup {
    position: relative;
    z-index: 1;
}

.home-page .app-newsletter__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: var(--alakh-gold-light);
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-page .app-newsletter__eyebrow::before {
    width: 1.8rem;
    height: 1px;
    content: "";
    background: currentColor;
}

.home-page .app-newsletter__title {
    max-width: 650px;
    margin: 0;
    color: var(--alakh-white);
    font-size: clamp(2.3rem, 4.5vw, 4.25rem);
    font-weight: 650;
    letter-spacing: -0.05em;
    line-height: 1;
    text-wrap: balance;
}

.home-page .app-newsletter__description {
    max-width: 630px;
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(0.96rem, 1.2vw, 1.06rem);
    line-height: 1.75;
}

.home-page .app-newsletter__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}

.home-page .app-newsletter__store-link {
    display: inline-flex;
    min-width: 162px;
    min-height: 50px;
    align-items: center;
    gap: 0.65rem;
    padding: 0.48rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.06);
    color: inherit;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-page .app-newsletter__store-link:hover,
.home-page .app-newsletter__store-link:focus-visible {
    border-color: rgba(215, 183, 131, 0.72);
    background: rgba(176, 129, 73, 0.14);
    transform: translateY(-2px);
}

.home-page .app-newsletter__store-link:focus-visible {
    outline: 2px solid var(--alakh-gold-light);
    outline-offset: 3px;
}

.home-page .app-newsletter__store-link i {
    color: var(--alakh-gold-light);
    font-size: 1.45rem;
    line-height: 1;
}

.home-page .app-newsletter__store-link span {
    display: grid;
    line-height: 1.05;
}

.home-page .app-newsletter__store-link small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.62rem;
    letter-spacing: 0.02em;
}

.home-page .app-newsletter__store-link strong {
    color: var(--alakh-white);
    font-size: 0.92rem;
    font-weight: 600;
}

.home-page .app-newsletter__signup {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(176, 129, 73, 0.16);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.home-page .app-newsletter__signup-title {
    margin: 0;
    color: var(--alakh-charcoal);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.15;
    text-wrap: balance;
}

.home-page .app-newsletter__signup-copy {
    margin: 0.8rem 0 0;
    color: var(--alakh-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.home-page .app-newsletter__form {
    margin-top: 1.35rem;
}

.home-page .app-newsletter__form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0.38rem;
    border: 1px solid rgba(36, 35, 33, 0.11);
    border-radius: 0.9rem;
    background: #f8f6f2;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-page .app-newsletter__form-row:focus-within {
    border-color: rgba(176, 129, 73, 0.65);
    box-shadow: 0 0 0 3px rgba(176, 129, 73, 0.1);
}

.home-page .app-newsletter__form-row input {
    min-width: 0;
    min-height: 46px;
    padding: 0.7rem 0.85rem;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--alakh-charcoal);
    font: inherit;
    font-size: 0.88rem;
}

.home-page .app-newsletter__form-row input::placeholder {
    color: #918a82;
}

.home-page .app-newsletter__form-row button {
    min-height: 46px;
    padding: 0.7rem 1.15rem;
    border: 1px solid var(--alakh-gold-dark);
    border-radius: 0.7rem;
    background: var(--alakh-gold-dark);
    color: var(--alakh-white);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 650;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-page .app-newsletter__form-row button:hover,
.home-page .app-newsletter__form-row button:focus-visible {
    background: var(--alakh-charcoal);
    color: var(--alakh-white);
    transform: translateY(-1px);
}

.home-page .app-newsletter__form-row button:focus-visible {
    outline: 2px solid var(--alakh-gold-dark);
    outline-offset: 2px;
}

.home-page .app-newsletter__message {
    margin: 0.8rem 0 0;
    font-size: 0.8rem;
    line-height: 1.5;
}

.home-page .app-newsletter__message--error {
    color: #9d3636;
}

.home-page .app-newsletter__message--success {
    color: #356d49;
}

@media (max-width: 991px) {
    .home-page .app-newsletter__panel {
        grid-template-columns: 1fr;
    }

    .home-page .app-newsletter__signup {
        max-width: 680px;
    }
}

@media (max-width: 575px) {
    .home-page .app-newsletter {
        padding: 2.5rem 0;
    }

    .home-page .app-newsletter__panel {
        padding: 1.75rem 1.1rem;
    }

    .home-page .app-newsletter__store-link {
        min-width: 0;
        flex: 1 1 145px;
    }

    .home-page .app-newsletter__form-row {
        grid-template-columns: 1fr;
    }

    .home-page .app-newsletter__form-row button {
        width: 100%;
    }
}

.home-page .home-stats {
    position: relative;
    padding: clamp(1.9rem, 3.4vw, 3rem) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(215, 183, 131, 0.15), transparent 32%),
        linear-gradient(180deg, #fbfaf7 0%, #f7f3ed 100%);
}

.home-page .home-stats__panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0.7rem;
    overflow: hidden;
    border: 1px solid rgba(176, 129, 73, 0.2);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 60px rgba(48, 39, 28, 0.09);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.home-page .home-stats__item {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 1rem;
    padding: clamp(1.05rem, 1.8vw, 1.4rem) clamp(1.25rem, 2.3vw, 1.8rem);
    border-radius: 1rem;
    transition: background-color 220ms ease, transform 220ms ease;
}

.home-page .home-stats__item:not(:last-child)::after {
    position: absolute;
    top: 22%;
    right: 0;
    bottom: 22%;
    width: 1px;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(176, 129, 73, 0.24), transparent);
}

.home-page .home-stats__item:hover {
    background: rgba(176, 129, 73, 0.065);
    transform: translateY(-2px);
}

.home-page .home-stats__icon {
    display: inline-flex;
    width: 3.15rem;
    height: 3.15rem;
    flex: 0 0 3.15rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(176, 129, 73, 0.26);
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(215, 183, 131, 0.15));
    color: var(--alakh-gold-dark);
    box-shadow: 0 8px 20px rgba(141, 99, 52, 0.08);
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.home-page .home-stats__item:hover .home-stats__icon {
    background: var(--alakh-gold-dark);
    color: var(--alakh-white);
    transform: scale(1.04);
}

.home-page .home-stats__icon svg {
    width: 1.45rem;
    height: 1.45rem;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.home-page .home-stats__content {
    min-width: 0;
}

.home-page .home-stats__value {
    display: block;
    color: var(--alakh-charcoal);
    font-size: clamp(1.55rem, 2.15vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    white-space: nowrap;
}

.home-page .home-stats__label {
    margin: 0.45rem 0 0;
    color: var(--alakh-muted);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .home-page .home-stats__panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .home-stats__item:nth-child(2)::after {
        display: none;
    }

    .home-page .home-stats__item:nth-child(-n + 2)::before {
        position: absolute;
        right: 12%;
        bottom: 0;
        left: 12%;
        height: 1px;
        content: "";
        background: linear-gradient(90deg, transparent, rgba(176, 129, 73, 0.2), transparent);
    }
}

@media (max-width: 575px) {
    .home-page .home-stats {
        padding: 1.5rem 0;
    }

    .home-page .home-stats__panel {
        grid-template-columns: 1fr;
        padding: 0.5rem;
        border-radius: 1.25rem;
    }

    .home-page .home-stats__item {
        padding: 1rem;
    }

    .home-page .home-stats__item::after,
    .home-page .home-stats__item:nth-child(-n + 2)::before {
        display: none;
    }

    .home-page .home-stats__item:not(:last-child) {
        border-bottom: 1px solid rgba(176, 129, 73, 0.12);
        border-radius: 0;
    }

    .home-page .home-stats__value {
        font-size: 1.65rem;
    }
}

.home-page .no-brokerage-section {
    padding: clamp(2.5rem, 5vw, 4.75rem) 0;
    overflow: hidden;
    background: #f7f3ed;
}

.home-page .brokerage-promise {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    min-height: 430px;
    padding: clamp(2.25rem, 5vw, 4.75rem);
    overflow: hidden;
    border: 1px solid rgba(215, 183, 131, 0.28);
    border-radius: clamp(1.5rem, 3vw, 2.25rem);
    background:
        radial-gradient(circle at 86% 12%, rgba(176, 129, 73, 0.2), transparent 34%),
        linear-gradient(135deg, #242321 0%, #302c27 58%, #211f1d 100%);
    box-shadow: 0 30px 80px rgba(36, 35, 33, 0.18);
    isolation: isolate;
}

.home-page .brokerage-promise::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    content: "";
    background: linear-gradient(180deg, transparent, var(--alakh-gold-light), transparent);
}

.home-page .brokerage-promise__emblem {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: auto;
    right: clamp(-8rem, -6vw, -3rem);
    width: min(48%, 520px);
    height: auto;
    color: var(--alakh-gold-light);
    opacity: 0.105;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 5;
    transform: translateY(-50%);
}

.home-page .brokerage-promise__copy,
.home-page .brokerage-promise__features {
    position: relative;
    z-index: 1;
}

.home-page .brokerage-promise__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
    color: var(--alakh-gold-light);
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-page .brokerage-promise__eyebrow::before {
    width: 1.8rem;
    height: 1px;
    content: "";
    background: currentColor;
}

.home-page .brokerage-promise__title {
    max-width: 720px;
    margin: 0;
    color: var(--alakh-white);
    font-size: clamp(2.25rem, 4.4vw, 4.25rem);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 0.98;
    text-wrap: balance;
}

.home-page .brokerage-promise__description {
    max-width: 720px;
    margin: 1.45rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.96rem, 1.25vw, 1.08rem);
    line-height: 1.75;
}

.home-page .brokerage-promise__cta {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 2rem;
    padding: 0.78rem 1.35rem;
    border: 1px solid var(--alakh-gold-light);
    border-radius: 999px;
    background: var(--alakh-gold-light);
    color: #242321;
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.home-page .brokerage-promise__cta svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform 220ms ease;
}

.home-page .brokerage-promise__cta:hover,
.home-page .brokerage-promise__cta:focus-visible {
    background: transparent;
    color: var(--alakh-gold-light);
    transform: translateY(-2px);
}

.home-page .brokerage-promise__cta:hover svg,
.home-page .brokerage-promise__cta:focus-visible svg {
    transform: translateX(3px);
}

.home-page .brokerage-promise__cta:focus-visible {
    outline: 2px solid var(--alakh-white);
    outline-offset: 4px;
}

.home-page .brokerage-promise__features {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-page .brokerage-promise__feature {
    display: flex;
    min-height: 64px;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 550;
    transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.home-page .brokerage-promise__feature:hover {
    border-color: rgba(215, 183, 131, 0.3);
    background: rgba(215, 183, 131, 0.09);
    transform: translateX(-3px);
}

.home-page .brokerage-promise__check {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(215, 183, 131, 0.35);
    border-radius: 50%;
    background: rgba(215, 183, 131, 0.11);
    color: var(--alakh-gold-light);
}

.home-page .brokerage-promise__check svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

@media (max-width: 991px) {
    .home-page .brokerage-promise {
        grid-template-columns: 1fr;
        min-height: 0;
    }

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

    .home-page .brokerage-promise__emblem {
        right: auto;
        left: -5rem;
        width: min(70%, 480px);
        opacity: 0.07;
    }
}

@media (max-width: 575px) {
    .home-page .no-brokerage-section {
        padding: 2.25rem 0;
    }

    .home-page .brokerage-promise {
        gap: 1.75rem;
        padding: 2rem 1.25rem;
    }

    .home-page .brokerage-promise__title {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .home-page .brokerage-promise__features {
        grid-template-columns: 1fr;
    }

    .home-page .brokerage-promise__cta {
        width: 100%;
    }
}

@keyframes home-hero-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes home-hero-background-reveal {
    from {
        opacity: 0.82;
        transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.03);
    }
    to {
        opacity: 1;
        transform: translate3d(0, var(--hero-parallax-y), 0) scale(1);
    }
}

@media (max-width: 991px) {
    .home-page .site-navbar {
        min-height: 76px;
    }

    .home-page .home-hero {
        min-height: 640px;
        padding: 3.5rem 0 5.5rem;
    }

    .home-page .home-hero--under-navbar {
        min-height: calc(640px + 76px);
        margin-top: -76px;
        padding-top: calc(3.5rem + 76px);
    }

    .home-page .home-hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(255, 253, 249, 0.96) 0%,
                rgba(255, 253, 249, 0.9) 42%,
                rgba(255, 253, 249, 0.57) 68%,
                rgba(255, 253, 249, 0.32) 100%
            ),
            linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0%, transparent 22%);
    }

    .home-page .home-hero__background {
        background-position: 62% center;
    }

    .home-page .home-hero__content {
        max-width: 720px;
        margin: 0 auto;
    }

    .home-page .hero-message__support,
    .home-page .hero-descriptions {
        margin-right: auto;
        margin-left: auto;
    }

    .home-page .home-hero__actions {
        justify-content: center;
    }
}

@media (max-width: 1100px) {
    .home-page .property-search-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .property-search-bar__field,
    .home-page .property-search-bar__field:nth-child(4) {
        grid-column: auto;
    }

    .home-page .property-search-bar__field:nth-child(5) {
        grid-column: 1 / -1;
    }

    .home-page
        .property-search-bar__field
        + .property-search-bar__field::before {
        display: none;
    }

    .home-page .property-search-bar__submit {
        width: auto;
        min-width: 0;
        grid-column: 1 / -1;
        margin: 0.5rem;
    }
}

@media (max-width: 767px) {
    .home-page .site-navbar .navbar-collapse {
        margin-top: 0.45rem;
        padding: 0.8rem;
        border: 1px solid rgba(36, 35, 33, 0.08);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 16px 35px rgba(36, 35, 33, 0.1);
    }

    .home-page .site-navbar .nav-link::after {
        right: auto;
        width: 32px;
    }

    .home-page .home-hero {
        min-height: 680px;
        padding: 3rem 0 5rem;
    }

    .home-page .home-hero--under-navbar {
        min-height: calc(680px + 76px);
        padding-top: calc(3rem + 76px);
    }

    .home-page .home-hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(255, 253, 249, 0.94) 0%,
                rgba(255, 253, 249, 0.88) 58%,
                rgba(255, 253, 249, 0.62) 100%
            ),
            linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0%, transparent 24%);
    }

    .home-page .home-hero__background {
        background-position: 67% center;
    }

    .home-page .home-filter-container {
        margin-top: -2rem;
    }

    .home-page .property-search-bar {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        padding: 0.75rem;
        border-radius: 1.4rem;
    }

    .home-page .property-search-bar__field {
        min-height: 68px;
        padding: 0.25rem 1rem;
    }

    .home-page .property-search-bar__submit {
        min-width: 0;
        margin: 0.5rem;
    }
}

@media (max-width: 575px) {
    .home-page .site-navbar .navbar-brand img,
    .home-page .site-navbar.is-scrolled .navbar-brand img {
        height: 54px;
    }

    .home-page .hero-tagline-badge {
        gap: 0.55rem;
        padding: 0.5rem 0.75rem 0.5rem 0.6rem;
        font-size: 0.75rem;
    }

    .home-page .herosection h1 {
        font-size: clamp(2.25rem, 11.5vw, 3.25rem);
    }

    .home-page .home-hero__actions {
        flex-direction: column;
    }

    .home-page .home-hero__button {
        width: 100%;
    }

    .home-page .home-filter-container {
        margin-top: -1.5rem;
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    .home-page .property-search-bar {
        grid-template-columns: minmax(0, 1fr);
        padding: 0.65rem;
        border-radius: 1.25rem;
    }

    .home-page .property-search-bar__field {
        min-height: 64px;
        padding: 0.35rem 0.85rem;
        border-bottom: 1px solid rgba(36, 35, 33, 0.1);
        grid-column: auto;
    }

    .home-page .property-search-bar__field:nth-child(5) {
        border-bottom: 0;
        grid-column: auto;
    }

    .home-page .property-search-bar__submit {
        width: 100%;
        margin: 0.65rem 0 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Shared save confirmation: every property heart uses the same quick red pop. */
.favorite-heart-pop {
    color: #dc3545 !important;
    animation: favoriteHeartPop 460ms cubic-bezier(.2, .9, .3, 1.35);
}

@keyframes favoriteHeartPop {
    0% { transform: scale(.78); }
    42% { transform: scale(1.42); }
    72% { transform: scale(.92); }
    100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .favorite-heart-pop { animation: none; }
}
