/* ============================================
       HERO - Bristol Style (70vh cinematic)
       ============================================ */
.hero {
    position: relative;
    height: 81vh;
    min-height: 580px;
    max-height: 780px;
    display: flex;
    align-items: center;
    background: var(--soft-black);
    overflow: hidden;
}

.hero.hero--home {
    height: calc(100vh - 95px);
    max-height: 2000px;
    min-height: 620px;
}

.hero.hero--home {
    height: calc(100vh - 95px);
    max-height: 2000px;
    min-height: 620px;
}

.hero.hero--center-big {
    height: 100vh;
    max-height: 2000px;
    min-height: 620px;
}



.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.2) 60%, rgba(26, 26, 26, 0.3) 100%),
        linear-gradient(to top, rgba(26, 26, 26, 0.6) 0%, transparent 40%);
}

.hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 136px;
}

.hero__content {
    max-width: 640px;
}

.hero__breadcrumb {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);

    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease 0.1s forwards;
    margin: 50px 0 16px;
}

.hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero__breadcrumb a:hover {
    color: var(--accent);
}

.hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero__title {
    font-family: 'Beausite Grand', serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero__subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 560px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease 0.6s forwards;
}

.hero__stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease 0.8s forwards;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-value {
    font-family: 'Beausite Grand', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}



.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp2 0.7s ease 1s forwards;
}

.hero.hero--home .hero__scroll,
.hero.hero--center-big .hero__scroll {
    bottom: 0;
}


.hero__scroll-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}


.hero__content .buttons-block{
    margin-top: 32px;
}

.hero--home .buttons-block{
    margin-left: 0;
}
/* .hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease 0.8s forwards;
    margin-top: 32px;
}

.hero__cta:hover {
    background: var(--accent-deep);
}

.hero__cta svg {
    width: 16px;
    height: 16px;
} */


.hero.hero--center-big .hero__content {
    max-width: 640px;
    text-align: center;
}

.hero.hero--center-big .hero__container {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.15);
    max-width: 90%;
}

.hero.hero--center-big .hero__subtitle{
    margin: 0 auto;
}

.hero.hero--center-big .hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 11px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.hero.hero--center-big .hero__breadcrumb a{

    color: rgba(255, 255, 255, 0.7);

}

@media (max-width: 1024px) {
    .hero__scroll {
        display: none !important;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1.1);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp2 {
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes fadeUp2 {
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .header {
        padding: 0 32px;
    }

    .hero__container {
        padding: 0 32px;
    }

    .stats-bar__inner {
        padding: 24px 32px;
    }

    .stats-bar__stats {
        gap: 40px;
    }

    .filter-bar__inner {
        padding: 24px 32px;
        gap: 16px;
        flex-wrap: wrap;
    }

    .results-bar__inner {
        padding: 18px 32px;
    }

    .property-grid__inner {
        padding: 32px 32px 48px;
        gap: 24px;
    }

    .nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__menu-btn {
        display: block;
    }
}

/* Mobile Large (768px and below) */
@media (max-width: 768px) {



    .hero {
        height: auto;
        min-height: 60vh;
        padding: 100px 0 48px;
    }

    .hero__container {
        padding: 0 24px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__eyebrow {
        font-size: 10px;
        letter-spacing: 0.2em;
        margin-bottom: 16px;
    }

    .hero__title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero__subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero__stats {
        gap: 24px;
        margin-top: 28px;
        padding-top: 24px;
        flex-wrap: wrap;
    }

    .hero__stat-value {
        font-size: 26px;
    }

    .hero__stat-label {
        font-size: 9px;
    }




}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .hero__stat-value {
        font-size: 20px;
    }




}

.herobtm__stats {
    position: relative;
    z-index: 2;
    background: rgba(6, 6, 6, 0.9);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.herobtm__stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.herobtm__stats-inner-3{
    grid-template-columns: repeat(3, 1fr);
}

.herobtm__stats-inner-2{
    grid-template-columns: repeat(2, 1fr);
}


.herobtm__stat {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.herobtm__stat:last-child {
    border-right: none;
}

.herobtm__stat-value {
    font-family: 'Beausite Grand', serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 4px;
}

.herobtm__stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.herobtm__stat-sub{font-size:12px;font-weight:300;color:rgba(255,255,255,.65);display:block}

@media (max-width: 768px) {

    .herobtm__stats-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .herobtm__stat:nth-child(2) {
        border-right: none;
    }


    .herobtm__stats-inner-3 > .herobtm__stat:nth-child(3) {
        grid-column: span 2;
    }

    .herobtm__stat{
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

}

/* Stats Bar - 2x2 Grid */
.stats-bar__inner {
    padding: 20px 24px;
    flex-direction: column;
    gap: 20px;
}

.stats-bar__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.stats-bar__stat {
    text-align: center;
    padding: 12px 0;
}

.stats-bar__value {
    font-size: 28px;
}

.stats-bar__label {
    font-size: 9px;
}

.stats-bar__tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stats-bar__tab {
    padding: 14px 12px;
    font-size: 10px;
    text-align: center;
}

/* Mobile Large (768px and below) */
@media (max-width: 768px) {

    /* Stats Bar - 2x2 Grid */
    .stats-bar__inner {
        padding: 20px 24px;
        flex-direction: column;
        gap: 20px;
    }

    .stats-bar__stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: 100%;
    }

    .stats-bar__stat {
        text-align: center;
        padding: 12px 0;
    }

    .stats-bar__value {
        font-size: 28px;
    }

    .stats-bar__label {
        font-size: 9px;
    }

    .stats-bar__tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-bar__tab {
        padding: 14px 12px;
        font-size: 10px;
        text-align: center;
    }


}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {

    .stats-bar__value {
        font-size: 24px;
    }

    .stats-bar__tab {
        padding: 12px 8px;
        font-size: 9px;
        letter-spacing: 0.08em;
    }


}

/* ============================================
    SECTION STYLES
    ============================================ */
.section {
    padding: 100px 48px;
}

.section--cream {
    background: var(--cream);
}

.section--dark {
    background: var(--soft-black);
    color: var(--white);
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__сontent {
    margin-bottom: 40px;
}

.section-align--left .section__header {
    text-align: left;
}

.section__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section__title {
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 42px;
    color: var(--soft-black);
}

.section--dark .section__title {
    color: var(--white);
}

.section__subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.75;
}

.section-align--left .section__subtitle {
    max-width: 100%;
}

.section--dark .section__subtitle {
    color: var(--stone);
}

.section--dark .about__title{
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.section-size--900 .container {
    max-width: 900px;
}

.section-align--left {
    text-align: left;
}



.section__сontent p {
    font-size: 17px;
    font-weight: 300;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.section--dark .section__сontent p{
    color: var(--stone);
}

.section__сontent p:last-child {
    margin-bottom: 0;
}

.section__сontent p a {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    transition: opacity 0.2s ease;
}

.section__сontent p a:hover {
    opacity: 0.7;
}

.content-columns {
    display: flex;
    gap: 48px;
}

.content-columns>div {
    flex: 1;
}

@media (max-width: 768px) {
    .content-columns {
        flex-direction: column;
        gap: 32px;
    }
}

.section__сontent h3 {
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 28px;
    color: var(--soft-black);
    margin: 48px 0 20px;
    line-height: 1.3;
}

@media (max-width: 768px) {


    .section {
        padding: 64px 24px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

}

/* ============================================
    VALUE PROPOSITION
    ============================================ */
.value-prop {
    padding: 80px 48px;
    background: var(--white);
}

.value-prop__inner {
    max-width: 1000px;
    margin: 0 auto;
    gap: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-prop__divider {
    background: var(--sand);
    width: 1px;
    height: 100px;
}

.value-prop__stat {
    padding: 20px 0;
}

.value-prop__number {
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 52px;
    color: inherit;
    margin-bottom: 10px;
}

.value-prop__label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
}

@media (max-width: 768px) {


    .value-prop {
        padding: 48px 24px;
    }

    .value-prop__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: flex-start;

    }

    .value-prop__divider {
        display: none;
    }

    .value-prop__number {
        font-size: 24px;
    }

    .value-prop__label {
        font-size: 10px;
    }


}

@media (max-width: 414px) {

    .value-prop__inner {
       
        gap: 16px;
        

    }

}

/* ============================================
    PROPERTY CARD
    ============================================ */
.card-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.property-card {
    background: var(--white);
    border: 1px solid var(--sand);
    overflow: hidden;
    transition: all 0.4s ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.property-card:hover .card-image img {
    transform: scale(1.05);
}

.property-card__body {
    padding: 24px;
}

.property-card__address {
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 20px;
    color: var(--soft-black);
    line-height: 1.3;
    margin-bottom: 6px;
}

.property-card__city {
    font-size: 14px;
    font-weight: 300;
    color: var(--stone);
    margin-bottom: 20px;
}

.property-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 16px;
    border-top: 1px solid var(--sand);
}

.property-card__specs {
    font-size: 13px;
    font-weight: 300;
    color: var(--stone);
}

.property-card__price {
    font-size: 16px;
    font-weight: 400;
    color: var(--soft-black);
}


/* ============================================
    COMMUNITY CARD
    ============================================ */
.community-card {
    background: var(--white);
    border: 1px solid var(--sand);
    overflow: hidden;
    transition: all 0.4s ease;
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.community-card:hover .card-image img {
    transform: scale(1.05);
}

.community-card__body {
    padding: 24px;
}

.community-card__region {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.community-card__name {
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 26px;
    color: var(--soft-black);
    line-height: 1.2;
    margin-bottom: 8px;
}

.community-card__tagline {
    font-size: 14px;
    font-weight: 300;
    color: var(--warm-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.community-card__stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--sand);
}

.community-card__stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.community-card__stat-value {
    font-size: 16px;
    font-weight: 400;
    color: var(--soft-black);
}

.community-card__stat-label {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--stone);
}

/* ============================================
    BLOG CARD
    ============================================ */
.blog-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--sand);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card:hover .card-image img {
    transform: scale(1.05);
}

.blog-card:first-child {
    padding-top: 0;
}

.blog-card:last-child {
    border-bottom: none;
}

.blog-card .card-image {
    padding-top: 70%;
}

.blog-card__content {
    padding-top: 8px;
}

.blog-card__meta {
    font-size: 13px;
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 16px;
}

.blog-card__title {
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 30px;
    color: var(--soft-black);
    line-height: 1.25;
    margin-bottom: 18px;
}

.blog-card__excerpt {
    font-size: 16px;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

.blog-card__link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--soft-black);
    text-decoration: none;
    border-bottom: 1px solid var(--soft-black);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.blog-card__link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 768px) {


    .blog-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }


}

/* ============================================
    ABOUT SECTION
    ============================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about.about-proportions--equal {
    grid-template-columns: 1fr 1fr;
}

.about__image {
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.about__image:hover img {
    transform: scale(1.05);
}

.about__content {
    max-width: 540px;
}

.about__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.about__title {
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 38px;
    line-height: 1.2;
    color: var(--soft-black);
    margin-bottom: 28px;
}

.about__text {
    font-size: 16px;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.85;
    margin-bottom: 18px;
}

.section--dark .about__text{
        color: var(--stone);
}

.about__buttons_under_html{
    font-size: 14px;
    margin-top: 28px;
}

.about__buttons_under_html a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-deep);
    transition: all .3s ease;
    font-weight: 600;
    text-decoration: underline;
}

.about__buttons_under_html a:hover {
    text-decoration: none;
}

.about__text strong {
    font-weight: 500;
    color: var(--soft-black);
}

.about__credentials {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--sand);
}

.about__credential {
    font-size: 13px;
    font-weight: 400;
    color: var(--stone);
}

.about__credential strong {
    display: block;
    font-family: 'Beausite Grand', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 6px;
}

.about__tagline {
    margin-top: 32px;
    font-family: 'Beausite Grand', Georgia, serif;
    font-weight: 300;
    font-style: italic;
    font-size: 17px;
    color: var(--warm-gray);
}

.about__cta {
    display: inline-block;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--soft-black);
    padding: 18px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about__cta:hover {
    background: var(--accent);
}

.section--dark .about__cta{
    background: var(--white);
    color: var(--soft-black);
}

.pathway__stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
}

.pathway__stat {
    font-size: 16px;
    color: var(--soft-black);
}

.pathway__stat::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

@media (max-width: 768px) {

    .about,
    .about.about-proportions--equal {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__credentials {
        flex-wrap: wrap;
        gap: 24px;
    }

    .about__credential {
        flex: 1 1 auto;
        min-width: 120px;
    }

    .about__credential strong {
        font-size: 24px;
    }

    .pathway__stats {
        flex-direction: column;
        gap: 12px;
    }

}

/* ============================================
    TESTIMONIALS
    ============================================ */

.testimonial-section {
    background: linear-gradient(180deg, #0d0d0d 0%, #141414 100%);
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.testimonial-section__inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Label */
.testimonial-section__label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-bottom: 48px;
}

/* Quote Container */
.testimonial-quote {
    text-align: center;
    position: relative;
}

/* Decorative Quote Mark */
.testimonial-quote__mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 160px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    user-select: none;
}

/* The Quote Text */
.testimonial-quote__text {
    font-family: 'Beausite Grand', Georgia, serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

/* Accent Line */
.testimonial-quote__divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    margin: 0 auto 32px;
}

/* Author Block */
.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.testimonial-author__name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-author__title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

/* ============================================
    TESTIMONIALS
    ============================================ */
/* .testimonials {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 40px;
}

.testimonial__quote {
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 28px;
    color: var(--white);
    line-height: 1.55;
    margin-bottom: 36px;
    font-style: italic;
}

.testimonial__author {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
} */



/* ============================================
    VIEW ALL LINK
    ============================================ */
.view-all {
    text-align: center;
    margin-top: 48px;
}

.view-all__link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--soft-black);
    text-decoration: none;
    border-bottom: 1px solid var(--soft-black);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.view-all__link:hover {
    color: var(--accent);
    border-color: var(--accent);
}


/* ============================================
    WATERFRONT TYPES GRID
    ============================================ */
.types-grid {
    display: flex;
    gap: 20px;
    margin: 48px 0;
}

.type-card {
    background: var(--white);
    border: 1px solid var(--sand);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.type-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.type-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
}

.type-card__icon img {
    max-width: 65%;
    max-height: 65%;
}

.type-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: #7a9a9a;
    stroke-width: 1.5;
    fill: none;
}

.type-card__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 20px;
    color: var(--soft-black);
    margin-bottom: 8px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-card__subtitle {
    font-size: 13px;
    color: var(--warm-gray);
    margin-bottom: 12px;
}

.type-card__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 16px;
    min-height: 60px;
}

.type-card__price {
    font-size: 15px;
    font-weight: 500;
    color: var(--accent);
}

@media (max-width: 768px) {
    .types-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .type-card {
        padding: 24px 20px;
    }

}


/* ============================================
    COMPARISON TABLE
    ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.comparison-table th {
    background: var(--soft-black);
    color: var(--white);
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--sand);
    font-size: 15px;
    color: var(--dark-gray);
}

.comparison-table tr:hover td {
    background: var(--cream);
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--soft-black);
}

@media (max-width: 1024px) {
    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
    }
}

/* @media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
} */

@media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 14px;
    }



    .comparison-table th,
    .comparison-table td {
        white-space: nowrap;
        padding: 8px 12px;
    }
}


/* ============================================
    AEO ANSWER BLOCKS
    ============================================ */
.aeo-block {
    background: var(--cream);
    border-left: 4px solid var(--accent);
    padding: 28px 32px;
    margin: 40px 0;
}

.aeo-block h4 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.aeo-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--soft-black);
}

/* ============================================
    LOCATION CARDS
    ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.area-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--white);
    border: 1px solid var(--sand);
    overflow: hidden;
    transition: all 0.3s ease;
}

.area-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.area-card__image {
    height: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center;
}

.area-card__content {
    padding: 28px;
}

.area-card__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 24px;
    color: var(--soft-black);
    margin-bottom: 8px;
}

.area-card__price {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.area-card__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.area-card__link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--soft-black);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.area-card__link:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        grid-template-columns: 180px 1fr;
    }

}

@media (max-width: 768px) {

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        grid-template-columns: 1fr;
    }

    .area-card__image {
        min-height: 200px;
    }

}

/* ============================================
    LIFESTYLE SECTION
    ============================================ */
.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 48px 0;
    align-items: center;
}

.lifestyle-image {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.lifestyle-content h2 {
    margin-top: 0;
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 36px;
    color: var(--soft-black);
    margin: 48px 0 20px;
    line-height: 1.3;
}

.lifestyle-content h3 {
    margin-top: 0;
    font-family: 'Beausite Grand', serif;
    font-weight: 300;
    font-size: 28px;
    color: var(--soft-black);
    margin: 48px 0 20px;
    line-height: 1.3;
}

.lifestyle-content p {
    font-size: 17px;
    font-weight: 400;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {

    .lifestyle-grid {
        gap: 32px;
    }

}

@media (max-width: 768px) {

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

}


/* ============================================
    LIFESTYLE 2 SECTION
    ============================================ */

.lifestyle2-grid {
    display: flex;
    gap: 24px;
}

.lifestyle2-card {
    flex: 1;
    width: fit-content;
    background: var(--white);
    border: 1px solid var(--sand);
    display: block;
    transition: all 0.4s ease;
    overflow: hidden;
    text-decoration: none;
}

.lifestyle2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.lifestyle2-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.lifestyle2-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lifestyle2-card:hover .lifestyle2-card__image img {
    transform: scale(1.05);
}

.lifestyle2-card__content {
    padding: 24px;
}

.lifestyle2-card__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 22px;
    color: var(--soft-black);
    margin-bottom: 12px;
}

.lifestyle2-card__description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

.lifestyle2-card__link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lifestyle2-card__link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.lifestyle2-card:hover .lifestyle2-card__link svg {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .lifestyle2-grid {
        flex-direction: column;
    }
}



/* ============================================
    FAQ SECTION - CONSISTENT WITH PROPERTIES PAGE
    ============================================ */
.faq-section {
    background: var(--white);
    padding: 80px 48px;
}

.faq-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-section__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.faq-section__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 36px;
    color: var(--soft-black);
    line-height: 1.2;
}

.faq-list {
    border-top: 1px solid var(--sand);
    width: 100%;
    margin: 0 auto;
    max-width: 900px;
}

.faq-item {
    border-bottom: 1px solid var(--sand);
}

.faq-item.faq-item--hidden {
    display: none;
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 500;
    color: var(--soft-black);
    transition: color 0.3s ease;
}

.faq-item__question:hover {
    color: var(--accent);
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 16px;
    position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--dark-gray);
    transition: transform 0.3s ease;
}

.faq-item__icon::before {
    width: 14px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    width: 1.5px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item--open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-item__answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-item__answer p {
    font-size: 16px;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.75;
}

.faq-item__answer p + p {
margin-top: 16px;
}

.faq-item__answer a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-item__answer a:hover {
    color: var(--soft-black);
}

/* See More / See Less toggle */
.faq-toggle-wrap{text-align:center;padding-top:48px}
.faq-toggle-btn{display:inline-flex;align-items:center;gap:10px;background:none;border:1px solid var(--soft-black);color:var(--soft-black);font-size:12px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;padding:14px 36px;cursor:pointer;transition:background .25s ease,color .25s ease}
.faq-toggle-btn:hover{background:var(--soft-black);color:var(--white)}
.faq-toggle-arrow{display:inline-block;transition:transform .35s ease;font-size:13px}
.faq-toggle-btn.is-expanded .faq-toggle-arrow{transform:rotate(180deg)}

@media (max-width: 1024px) {
    .faq-section {
        padding: 64px 32px;
    }

    .faq-section__title {
        font-size: 32px;
    }

    .faq-item__question {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .faq-item__question {
        font-size: 15px;
        padding: 20px 0;
    }
}


/* PAGE header */
.page-header {
    padding: calc(var(--header-height) + 60px) 48px 60px;
    background: var(--cream);
    text-align: center;
}

.page-header__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.page-header__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 44px;
    color: var(--soft-black);
    line-height: 1.15;
    margin-bottom: 12px;
}

.page-header__date {
    font-size: 14px;
    color: var(--stone);
}

@media (max-width: 1024px) {
    .page-header {
        padding: calc(var(--header-height) + 48px) 32px 48px;
    }

    .page-header__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: calc(var(--header-height-mobile) + 40px) 24px 40px;
    }

    .page-header__title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .page-header__title {
        font-size: 28px;
    }
}

/* Legal content */
.legal-content {
    padding: 80px 48px;
}

.legal-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 24px;
    color: var(--soft-black);
    margin: 48px 0 20px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content ul {
    margin: 0 0 20px 24px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent);
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--soft-black);
}

.legal-content strong {
    font-weight: 500;
    color: var(--soft-black);
}

@media (max-width: 1024px) {
    .legal-content {
        padding: 64px 32px;
    }
}

@media (max-width: 768px) {
    .legal-content {
        padding: 48px 24px;
    }

    .legal-content h2 {
        font-size: 22px;
        margin: 40px 0 16px;
    }
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.contact-block__title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.contact-block__location {
    margin-bottom: 28px;
}

.contact-block__location:last-child {
    margin-bottom: 0;
}

.contact-block__name {
    font-size: 17px;
    font-weight: 500;
    color: var(--soft-black);
    margin-bottom: 6px;
}

.contact-block__address {
    font-size: 15px;
    font-weight: 300;
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-block__map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: var(--stone);
    margin-top: 10px;
    transition: color 0.3s ease;
}

.contact-block__map:hover {
    color: var(--accent);
}

.contact-block__map svg {
    width: 16px;
    height: 16px;
}

.contact-block__link {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.contact-block__link:hover {
    color: var(--accent);
}

.contact-block__label {
    font-weight: 500;
    color: var(--stone);
    margin-right: 4px;
}

@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* APPOINTMENTS */
.appointments {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--sand);
    max-width: 900px;
    margin: 0 auto;
}

.appointment {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 40px;
    background: var(--cream);
    transition: background 0.3s ease;
}

.appointment:hover {
    background: var(--white);
}

.appointment__content {
    flex: 1;
}

.appointment__title {
    font-size: 17px;
    font-weight: 500;
    color: var(--soft-black);
    margin-bottom: 4px;
}

.appointment__duration {
    font-size: 14px;
    color: var(--stone);
    margin-bottom: 12px;
}

.appointment__text {
    font-size: 15px;
    font-weight: 300;
    color: var(--dark-gray);
    line-height: 1.65;
}

.appointment__btn {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--soft-black);
    padding: 14px 28px;
    transition: all 0.3s ease;
}

.appointment__btn:hover {
    background: var(--accent);
}

@media (max-width: 768px) {
    .appointments {
        gap: 0;
    }

    .appointment {
        flex-direction: column;
        padding: 28px 24px;
    }

    .appointment__btn {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}

/* DIFFERENTIATORS */


.differentiators__grid {
    display: flex;
    gap: 64px;
}

.diff {
    text-align: center;
    padding: 0 16px;
}

.diff__number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--sand);
    margin-bottom: 24px;
}

.diff__title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 16px;
}

.diff__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--stone);
}

.differentiators__grid--small-left {
    text-align: left;
    margin: 0 -15px;
}

.differentiators__grid--small-left .diff__number {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    text-align: left;
}

.differentiators__grid--small-left .diff__title {
    text-align: left;
}

.differentiators__grid--small-left .diff__text {
    text-align: left;
}

@media (max-width: 768px) {

    .differentiators__grid {
        flex-direction: column;
        gap: 48px;
    }

    .differentiators__title {
        font-size: 32px;
    }

}

/* Buttons */

.buttons-block {
    display: flex;
    gap: 15px;
    margin: 0 auto;
    width: fit-content;
}

.buttons-block--default {
    justify-content: center;
    width: 100%;
}
.buttons-block--left {
    justify-content: flex-start;
    width: 100%;
}



@media (max-width: 768px) {

    .buttons-block {
        flex-direction: column;
        width: fit-content;
    }

}


/* OVERVIEW */
.overview {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.overview__text p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.overview__text p:first-of-type::first-letter {
    font-family: var(--font-serif);
    font-size: 64px;
    float: left;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 4px;
    color: var(--soft-black);
}

.overview__cta {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.overview__sidebar {
    position: sticky;
    top: 140px;
}

.overview__facts {
    background: var(--white);
    padding: 32px;
    border: 1px solid var(--sand);
    margin-bottom: 24px;
}

.overview__facts-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 24px;
    color: var(--soft-black);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sand);
}

.overview__facts ul {
    list-style: none;
}

.overview__facts ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--sand);
    font-size: 15px;
    color: var(--dark-gray);
}

.overview__facts ul li:last-child {
    border-bottom: none;
}

.overview__facts ul strong {
    color: var(--soft-black);
    font-weight: 500;
}

.overview__quote {
    background: var(--soft-black);
    padding: 32px;
}

.overview__quote blockquote {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .overview {
        grid-template-columns: 1fr;
    }

    .overview__sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .overview__sidebar {
        grid-template-columns: 1fr;
    }

    .overview__cta {
        flex-direction: column;
    }

    .overview__cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* PROPERTY TYPES GRID */
.property-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.property-type-card {
    background: var(--white);
    padding: 40px 32px;
    border: 1px solid var(--sand);
    transition: all 0.4s ease;
}

.property-type-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.property-type-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.property-type-card__icon svg {
    width: 100%;
    height: 100%;
}

.property-type-card__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 24px;
    color: var(--soft-black);
    margin-bottom: 8px;
}

.property-type-card__price {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 16px;
}

.property-type-card__description {
    font-size: 15px;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 24px;
}

.property-type-card__link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    transition: color 0.3s ease;
}

.property-type-card__link:hover {
    color: var(--soft-black);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .property-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .property-types-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
    TWO COLUMN LAYOUTS
    ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-col--reverse {
    direction: rtl;
}

.two-col--reverse>* {
    direction: ltr;
}

.two-col__media {
    position: relative;
}

.two-col__media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.two-col__badge {
    position: absolute;
    bottom: -32px;
    right: 32px;
    background: var(--soft-black);
    color: var(--white);
    padding: 28px 36px;
    text-align: center;
}

.two-col__badge-value {
    font-family: 'Beausite Grand', Georgia, serif;
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 4px;
}

.two-col__badge-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}

.two-col__content h3 {
    font-family: 'Beausite Grand', Georgia, serif;
    font-weight: 300;
    font-size: 36px;
    color: var(--soft-black);
    margin-bottom: 24px;
    line-height: 1.2;
}

.two-col__content p {
    font-size: 16px;
    font-weight: 300;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.two-col__content p.eyebrow{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--soft-black);
    margin-top: 16px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--accent);
}

.text-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .two-col--reverse {
        direction: ltr;
    }

    .two-col__media img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .two-col__content h3 {
        font-size: 28px;
    }

    .two-col__media img {
        height: 320px;
    }
}

/* ============================================
    FEATURES GRID
    ============================================ */
.features {
    display: flex;
    gap: 48px;
    margin-top: 80px;
}

.feature {
    text-align: center;
    padding: 48px 32px;
    background: var(--cream);
}

.feature__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 28px;
    color: var(--accent);
}

.feature__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.feature__title {
    font-family: 'Beausite Grand', Georgia, serif;
    font-weight: 300;
    font-size: 22px;
    color: var(--soft-black);
    margin-bottom: 16px;
}

.feature__text {
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .features {
        flex-direction: column;
    }
}

/* ============================================
    PRICE TIERS
    ============================================ */
.tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.tier {
    padding: 56px 40px;
    text-align: center;
    background: var(--white);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.tier--featured {
    background: var(--soft-black);
}

.tier--featured .tier__price,
.tier--featured .tier__name,
.tier--featured .tier__list li {
    color: var(--white);
}

.tier--featured .tier__label {
    color: var(--accent);
}

.tier--featured .tier__list li {
    border-color: rgba(255, 255, 255, 0.1);
}

.tier__label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 20px;
}

.tier__price {
    font-family: 'Beausite Grand', Georgia, serif;
    font-weight: 300;
    font-size: 28px;
    color: var(--soft-black);
    margin-bottom: 8px;
}

.tier__name {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 32px;
}

.tier__list {
    list-style: none;
    text-align: left;
}

.tier__list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--sand);
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-gray);
}

.tier__list li:last-child {
    border: none;
}

@media (max-width: 1024px) {
    .tiers {
        grid-template-columns: 1fr;
    }
}

/* ============================================
    AMENITIES SECTION
    ============================================ */
.amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 80px;
    margin-top: 80px;
}

.amenity {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.amenity__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.amenity__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.25;
}

.amenity__title {
    font-family: 'Beausite Grand', Georgia, serif;
    font-weight: 300;
    font-size: 22px;
    color: var(--soft-black);
    margin-bottom: 12px;
}

.amenity__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--warm-gray);
}

@media (max-width: 1024px) {
    .amenities {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .amenities {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .amenity {
        gap: 24px;
    }
}

/* ============================================
    PROXIMITY SECTION
    ============================================ */
.proximity {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.proximity-item {
    padding: 32px;
    background: var(--cream);
    text-align: center;
    transition: transform 0.3s ease;
}

.proximity-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.proximity-item__name {
    font-family: 'Beausite Grand', Georgia, serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 8px;
}

.proximity-item__type {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.proximity-item__time {
    font-size: 14px;
    font-weight: 400;
    color: var(--stone);
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .proximity {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .proximity {
        grid-template-columns: 1fr;
    }
}


/* MARKET STATS */
.market-stats-grid {
    display: flex;
    gap: 24px;
}

.market-stat-card {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.market-stat-card__value {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 44px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.market-stat-card__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.market-stat-card__change {
    font-size: 14px;
    color: var(--stone);
}

.market-stat-card__change--up {
    color: #6B9A6B;
}

@media (max-width: 1024px) {
    .market-stats-grid {
        flex-direction: column;
    }
}


/* AMENITIES */
.amenities-group {
    flex: 1;
}

.amenities-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.amenities-group__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 22px;
    color: var(--soft-black);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--warm-gray);
}

.amenities-list {
    flex: 1;
    list-style: none;
}

.amenities-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--sand);
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities-list li:last-child {
    border-bottom: none;
}

.amenities-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--warm-gray);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .amenities-grid {
        flex-direction: column;
    }
}


/* UNIT TYPE CARDS */
.listtypes-grid {
    display: flex;
    gap: 24px;
}

.listtype-card {
    background: var(--white);
    border: 1px solid var(--sand);
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
}

.listtype-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.listtype-card__header {
    background: var(--soft-black);
    padding: 24px 28px;
}

.listtype-card__name {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 21px;
    color: var(--white);
}

.listtype-card__floors {
    font-size: 13px;
    color: var(--gold);
    margin-top: 4px;
}

.listtype-card__body {
    padding: 24px 28px;
}

.listtype-card__body ul {
    list-style: none;
}

.listtype-card__body li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--sand);
    font-size: 13px;
}

.listtype-card__body li:last-child {
    border-bottom: none;
}

.listtype-card__body label {
    color: var(--warm-gray);
}

.listtype-card__body strong {
    font-weight: 500;
    color: var(--soft-black);
}

@media (max-width: 1024px) {
    .listtypes-grid {
        flex-direction: column;
    }
}


/* LOCATION */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.location-map {
    height: 500px;
    background: var(--sand);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.nearby-group__title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.nearby-list {
    list-style: none;
}

.nearby-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--sand);
    font-size: 15px;
    color: var(--dark-gray);
}

.nearby-list li span {
    color: var(--stone);
    font-size: 14px;
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* TEAM */
.team-profile__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.team-profile__credential {
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--sand);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

/* TIMELINE */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    margin-bottom: 40px;
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: 223px;
    top: 20px;
    bottom: -57px;
    width: 1px;
    background: var(--sand);
}

.timeline__item:last-child::before {
    display: none;
}

.timeline__item::after {
    content: '';
    position: absolute;
    left: 214px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
}

.timeline__item--completed::after {
    background: var(--gold);
}

.timeline__date {
    text-align: right;
}

.timeline__date-year {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--soft-black);
}

.timeline__date-status {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 4px;
}

.timeline__content h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 8px;
}

.timeline__content p {
    font-size: 15px;
    color: var(--warm-gray);
}

@media (max-width: 1200px) {
    .timeline__item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .timeline__item::before,
    .timeline__item::after {
        display: none;
    }

    .timeline__date {
        text-align: left;
    }
}



