.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}
.hero-slider {
    width: 100%;
    max-width: 100%;
    height: 100%;
}
.hero-slider .swiper-wrapper {
    height: 100%;
}
.hero-slider .swiper-slide {
    position: relative;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.hero-slider .swiper-slide-blur {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
}
.hero-slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}
.hero-slider-pagination .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    background: hsla(0, 0%, 100%, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.hero-slider-pagination .swiper-pagination-bullet-active {
    background: #fff;
}
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    color: #fff;
}
.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: hsla(0, 0%, 100%, 0.4);
}
@media (max-width: 768px) {
    .hero-slider-prev,
    .hero-slider-next {
        width: 2.5rem;
        height: 2.5rem;
    }
}
.hero-slider-prev {
    left: 2rem;
}
@media (max-width: 768px) {
    .hero-slider-prev {
        left: 1rem;
    }
}
.hero-slider-next {
    right: 2rem;
}
@media (max-width: 768px) {
    .hero-slider-next {
        right: 1rem;
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 10.8rem 1.25rem 1.865rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}
@media (max-width: 1024px) {
    .hero-content {
        padding-top: 5.75rem;
    }
}
@media (max-width: 430px) {
    .hero-content {
        padding-top: 4.375rem;
    }
}
.hero-content .title {
    color: #fff;
    text-align: center;
}
.compare-wrapper {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 5.625rem;
    padding-bottom: 4.375rem;
}
@media (max-width: 1024px) {
    .compare-wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }
}
.compare-wrapper-content {
    width: 100%;
    max-width: 56.25rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8.75rem;
}
@media (max-width: 1024px) {
    .compare-wrapper-content {
        gap: 8.125rem;
        padding-top: 3.625rem;
        padding-bottom: 4.375rem;
    }
}
@media (max-width: 430px) {
    .compare-wrapper-content {
        gap: 5rem;
        padding-top: 3.75rem;
    }
}
.compare-wrapper-actions {
    position: sticky;
    top: 8rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    width: fit-content;
    margin-left: auto;
    margin-right: 2rem;
}
@media (max-width: 1024px) {
    .compare-wrapper-actions {
        padding-top: 0.5rem;
        margin-left: 1rem;
        margin-right: auto;
    }
}
@media (max-width: 430px) {
    .compare-wrapper-actions {
        display: none;
    }
}
.block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}
.block.flex-wrapper {
    gap: 1.875rem;
}
@media (max-width: 1024px) {
    .block {
        gap: 2.5rem;
    }
}
.block-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.block-content .title {
    color: var(--Black, #000);
    text-align: center;
}
.block-content .text {
    color: #000;
    font-family: Roboto;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: 135%;
    letter-spacing: -0.045rem;
}
@media (max-width: 430px) {
    .block-content .text {
        font-size: 1.25rem;
        letter-spacing: -0.0375rem;
    }
}
.block .nb-facts-body {
    color: #000;
    font-family: Roboto;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: 135%;
    letter-spacing: -0.045rem;
}
.sp-gallery-grid {
    width: 100%;
    overflow: hidden;
    padding: 2.5rem 0;
}
.sp-gallery-grid-slider {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2.5rem;
}
.sp-gallery-grid-slider .swiper-slide {
    height: 25rem;
}
.sp-gallery-grid-item {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 2.5rem;
}
.sp-gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sp-gallery-grid-prev,
.sp-gallery-grid-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #000;
    cursor: pointer;
    box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.14);
    transition: background-color 0.2s ease, opacity 0.2s ease;
}
.sp-gallery-grid-prev:hover,
.sp-gallery-grid-next:hover {
    background: #fff;
}
.sp-gallery-grid-prev {
    left: 3.25rem;
}
.sp-gallery-grid-next {
    right: 3.25rem;
}
.sp-gallery-grid-prev.swiper-button-disabled,
.sp-gallery-grid-next.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}
@media (max-width: 768px) {
    .sp-gallery-grid-prev,
    .sp-gallery-grid-next {
        width: 2.25rem;
        height: 2.25rem;
    }
    .sp-gallery-grid-prev {
        left: 2.875rem;
    }
    .sp-gallery-grid-next {
        right: 2.875rem;
    }
}
@media (max-width: 525px) {
    .sp-gallery-grid-slider {
        padding: 0 1.25rem;
    }
    .sp-gallery-grid-slider .swiper-slide {
        height: 16rem;
    }
    .sp-gallery-grid-prev {
        left: 1.75rem;
    }
    .sp-gallery-grid-next {
        right: 1.75rem;
    }
}
.sp-schools-groups {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sp-schools-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.sp-schools-group-title {
    margin: 0;
    color: rgba(0, 0, 0, 0.68);
    font-family: Roboto;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.sp-schools-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sp-schools-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ebebeb;
}
.sp-schools-item:first-child {
    border-top: 1px solid #ebebeb;
}
.sp-schools-name {
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 400;
    line-height: 130%;
}
.sp-schools-rating {
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 120%;
    text-align: right;
    max-width: 62%;
}
.sp-schools-rating-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.sp-schools-rating-line {
    margin: 0;
}
@media (max-width: 768px) {
    .sp-schools-item {
        align-items: flex-start;
    }
    .sp-schools-rating {
        max-width: 58%;
    }
}
.sp-proximity-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sp-proximity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #ebebeb;
}
.sp-proximity-item:first-child {
    border-top: 1px solid #ebebeb;
}
.sp-proximity-label {
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
}
.sp-proximity-value {
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 120%;
    padding: 0.25rem 0.75rem;
    background: var(--Gray-05, #f8f8f8);
    border-radius: 0.25rem;
}
.block-image {
    width: 100%;
    border-radius: 0.3125rem;
}
@media (max-width: 430px) {
    .block-image {
        padding: 0;
    }
}
.block-image img {
    width: 100%;
}
.block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
    margin-top: 0.25rem;
}
@media (max-width: 1024px) {
    .block-grid {
        margin-top: 0.5rem;
        gap: 1rem;
    }
}
@media (max-width: 475px) {
    .block-grid {
        grid-template-columns: 1fr;
    }
}
.block-grid-item {
    min-height: 11.875rem;
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.56rem;
    border-radius: 0.3125rem;
    background: var(--Gray-05, #f8f8f8);
}
@media (max-width: 1024px) {
    .block-grid-item {
        padding: 2rem;
        min-height: auto;
    }
}
.block-grid-item .title {
    color: var(--Black, #000);
    text-align: center;
    font-family: Roboto;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.015rem;
}
.block-grid-item .text {
    color: var(--Black, #000);
    text-align: center;
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.block-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    justify-content: center;
}
@media (max-width: 1024px) {
    .block-flex {
        justify-content: start;
    }
}
.block-flex-item {
    min-height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 1rem;
    background: #ebebeb;
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.faq-content {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
}
@media (max-width: 1024px) {
    .faq-content {
        padding-bottom: 3.75rem;
    }
}
.location {
    padding-top: 4.375rem;
    padding-bottom: 3.75rem;
}
@media (max-width: 430px) {
    .location {
        padding-top: 3rem;
    }
}
.location-content {
    display: flex;
    justify-content: center;
    padding-bottom: 2.625rem;
}
.location-content .title {
    color: var(--Black, #000);
}
.location-map {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.location-map .map-container {
    width: 100%;
    min-height: 42rem;
    overflow: hidden;
    height: 42rem;
    border-radius: 0.3125rem;
}
@media (max-width: 1024px) {
    .location-map .map-container {
        min-height: 27rem;
        height: 27rem;
    }
}
@media (max-width: 525px) {
    .location-map .map-container {
        height: 26.6875rem;
    }
}
.location-card-overlay {
    position: absolute;
    top: 0.375rem;
    right: 0.375rem;
    z-index: 1000;
    pointer-events: auto;
    height: calc(100% - 0.75rem);
    width: 22rem;
}
.location-card-overlay .neighbourhood-map-card {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
    border-radius: 0.3125rem;
    overflow: hidden;
}
.location-card-overlay .neighbourhood-map-card__image {
    width: 100%;
    height: 14.125rem;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.location-card-overlay .neighbourhood-map-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    overflow: hidden;
    padding-bottom: 0.75rem;
}
.location-card-overlay .neighbourhood-map-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem 0;
    gap: 1.5rem;
    overflow: hidden;
    flex: 1;
}
.location-card-overlay .neighbourhood-map-card__content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    pointer-events: none;
}
.location-card-overlay .neighbourhood-map-card__title {
    color: #000;
    margin: 0;
}
.location-card-overlay .neighbourhood-map-card__btn {
    margin: 0.75rem 0.75rem 0;
    text-align: center;
    width: calc(100% - 1.5rem);
    flex-shrink: 0;
}
.location-card-overlay .neighbourhood-accordion {
    display: flex;
    flex-direction: column;
}
.location-card-overlay .neighbourhood-accordion__item {
    border-bottom: 0.5px solid #d0d0d0;
}
.location-card-overlay .neighbourhood-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: -0.0375rem;
    text-transform: uppercase;
}
.location-card-overlay .neighbourhood-accordion__trigger svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    transform: rotate(180deg);
}
.location-card-overlay .neighbourhood-accordion__body {
    display: none;
    padding-bottom: 0.75rem;
}
.location-card-overlay .neighbourhood-accordion__body p {
    color: #767676;
    font-family: Roboto, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}
.location-card-overlay .neighbourhood-accordion__item.is-open .neighbourhood-accordion__trigger svg {
    transform: rotate(0deg);
}
.location-card-overlay .neighbourhood-accordion__item.is-open .neighbourhood-accordion__body {
    display: block;
}
@media (max-width: 1024px) {
    .location-card-overlay {
        top: calc(100% - 8.125rem);
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 1rem;
        height: 41.25rem;
        width: 100%;
        max-width: 48rem;
    }
}
@media (max-width: 430px) {
    .location-card-overlay {
        padding: 0;
    }
}
.skeleton-slide {
    width: 21.25rem;
    min-width: 21.25rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
@media (max-width: 525px) {
    .skeleton-slide {
        width: 16rem;
        min-width: 16rem;
    }
}
.skeleton-slide .skeleton-image {
    width: 100%;
    aspect-ratio: 16/12;
    border-radius: 0.3125rem;
    background: #ebebeb;
    position: relative;
    overflow: hidden;
}
.skeleton-slide .skeleton-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: district-skeleton-shimmer 1.5s infinite;
}
.skeleton-slide .skeleton-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.25rem;
}
.skeleton-slide .skeleton-line {
    height: 0.875rem;
    border-radius: 0.25rem;
    background: #ebebeb;
    position: relative;
    overflow: hidden;
}
.skeleton-slide .skeleton-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: district-skeleton-shimmer 1.5s infinite;
}
.skeleton-slide .skeleton-line--short {
    width: 40%;
}
.skeleton-slide .skeleton-line--medium {
    width: 65%;
}
.skeleton-slide .skeleton-line--title {
    height: 1.125rem;
    width: 75%;
}
@keyframes district-skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.district-map-label {
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    color: #000;
    font-family: Roboto;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}
.district-project-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    transition:
            transform 0.15s ease,
            background 0.15s ease;
}
.district-project-marker:hover {
    transform: scale(1.15);
    background: rgba(0, 0, 0, 0.9);
}
.district-project-marker svg {
    width: 18px;
    height: 18px;
}
/* ── Bullet lists (Practical Tips / Interesting Facts / Who Loves) ── */
.nb-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.nb-bullet {
    position: relative;
    padding: 0 0 0 1.75rem;
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.02rem;
}
.nb-bullet::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0.7rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #000;
}
.nb-bullet-prefix {
    font-weight: 500;
    color: #000;
}
.nb-bullet-sep {
    color: #6b6b6b;
    margin: 0 0.3rem 0 0.15rem;
}
.nb-bullet-text {
    color: #1a1a1a;
}
@media (max-width: 430px) {
    .nb-bullet {
        font-size: 1rem;
        padding-left: 1.375rem;
    }
    .nb-bullet::before {
        left: 0.35rem;
        top: 0.55rem;
        width: 0.35rem;
        height: 0.35rem;
    }
}

/* ── Places to Go & Things to Do ── */
.nb-things-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.nb-things-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #ebebeb;
}
.nb-things-item:first-child {
    border-top: 1px solid #ebebeb;
}
.nb-things-title {
    flex: 0 0 auto;
    max-width: 40%;
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.015rem;
}
.nb-things-text {
    flex: 1 1 auto;
    color: #1a1a1a;
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 300;
    line-height: 150%;
    text-align: right;
}
@media (max-width: 600px) {
    .nb-things-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .nb-things-title {
        max-width: 100%;
    }
    .nb-things-text {
        text-align: left;
    }
}

/* ── What to Consider (Watch-outs) ── */
.nb-watchouts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.nb-watchouts-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 1.75rem;
    background: var(--Gray-05, #f8f8f8);
    border-radius: 0.5rem;
}
.nb-watchouts-title {
    color: var(--Black, #000);
    font-family: Roboto;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.015rem;
}
.nb-watchouts-text {
    color: #1a1a1a;
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 300;
    line-height: 150%;
}
@media (max-width: 430px) {
    .nb-watchouts-item {
        padding: 1.25rem 1.25rem;
    }
}
 /*# sourceMappingURL=district.css.map */
