/* =========================================================
   AVAILABLE PROPERTIES HERO
   FULL REPLACEMENT
   ========================================================= */

:root {
    --rma-properties-dark: #082E27;
    --rma-properties-emerald: #123C34;
    --rma-properties-green: #28675A;
    --rma-properties-sage: #A8B9A5;
    --rma-properties-charcoal: #1D2422;
    --rma-properties-cream: #F4F0E7;
    --rma-properties-gold: #B99A58;
    --rma-properties-white: #FFFFFF;

    /* Ancho utilizado por el contenido principal */
    --rma-properties-container: 1440px;

    /*
     * Ajusta esta variable si tu topbar + header
     * tienen otra altura real.
     */
    --rma-properties-header-space:
        var(--rma-header-total-height, 116px);
}


/* =========================================================
   RESET
   ========================================================= */

.rma-properties-hero,
.rma-properties-hero *,
.rma-properties-hero *::before,
.rma-properties-hero *::after {
    box-sizing: border-box;
}

.rma-properties-hero svg {
    display: block;
    max-width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.rma-properties-hero {
    position: relative;
    isolation: isolate;

    display: flex;

    width: 100%;
    min-height:
        calc(
            100svh -
            var(--rma-properties-header-space)
        );

    align-items: center;

    padding:
        clamp(42px, 5vh, 68px)
        0
        clamp(66px, 8vh, 96px);

    overflow: hidden;

    color:
        var(--rma-properties-cream);

    background:
        var(--rma-properties-emerald);
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.rma-properties-hero__background {
    position: absolute;
    inset: 0;
    z-index: -5;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 13% 14%,
            rgba(185, 154, 88, 0.16),
            transparent 27%
        ),
        radial-gradient(
            circle at 91% 90%,
            rgba(168, 185, 165, 0.11),
            transparent 29%
        ),
        linear-gradient(
            125deg,
            #194F43 0%,
            var(--rma-properties-emerald) 50%,
            var(--rma-properties-dark) 100%
        );
}

.rma-properties-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -4;

    pointer-events: none;

    opacity: 0.055;

    background-image:
        linear-gradient(
            rgba(244, 240, 231, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(244, 240, 231, 0.12) 1px,
            transparent 1px
        );

    background-size:
        76px 76px;
}

.rma-properties-hero::after {
    content: "";

    position: absolute;
    z-index: -3;

    top: -390px;
    left: -330px;

    width: 840px;
    height: 840px;

    pointer-events: none;

    border:
        1px solid
        rgba(185, 154, 88, 0.15);

    border-radius: 50%;

    box-shadow:
        0 0 0 110px
        rgba(185, 154, 88, 0.018),
        0 0 0 220px
        rgba(185, 154, 88, 0.01);
}


/* =========================================================
   MAIN CONTAINER
   IMPORTANT WIDTH FIX
   ========================================================= */

.rma-properties-hero .rma-properties-hero__container {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.03fr)
        minmax(420px, 0.77fr);

    align-items: center;

    gap:
        clamp(52px, 5vw, 86px);

    /*
     * NO depender del .container global.
     * Esto mantiene el mismo ancho visual en todo el hero.
     */
    width:
        min(
            calc(100% - 48px),
            var(--rma-properties-container)
        );

    max-width:
        var(--rma-properties-container);

    min-width: 0;

    margin-inline: auto;
    padding: 0;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.rma-properties-hero__content {
    width: 100%;
    max-width: 760px;
    min-width: 0;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.rma-properties-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    gap: 8px;

    margin:
        0 0 17px;

    color:
        rgba(244, 240, 231, 0.42);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.48rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rma-properties-hero__breadcrumb a {
    color:
        rgba(244, 240, 231, 0.57);

    text-decoration: none;

    transition:
        color 200ms ease;
}

.rma-properties-hero__breadcrumb a:hover {
    color:
        var(--rma-properties-gold);
}

.rma-properties-hero__breadcrumb
span[aria-current="page"] {
    color:
        var(--rma-properties-gold);
}


/* =========================================================
   EYEBROW
   ========================================================= */

.rma-properties-hero__eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 11px;

    margin-bottom: 18px;

    color:
        var(--rma-properties-gold);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.rma-properties-hero__eyebrow > span {
    display: grid;

    width: 35px;
    height: 35px;

    flex: 0 0 35px;
    place-items: center;

    color:
        var(--rma-properties-charcoal);

    border-radius: 50%;

    background:
        var(--rma-properties-gold);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
}

.rma-properties-hero__eyebrow i {
    width: 36px;
    height: 1px;

    flex: 0 0 36px;

    background:
        rgba(185, 154, 88, 0.68);
}


/* =========================================================
   TITLE
   ========================================================= */

.rma-properties-hero h1 {
    width: 100%;
    max-width: 760px;

    margin:
        0 0 22px;

    color:
        var(--rma-properties-white);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(3.65rem, 4.9vw, 5.8rem);

    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.05em;

    text-wrap: balance;
}

.rma-properties-hero h1 em {
    display: block;

    margin-top: 6px;

    color:
        var(--rma-properties-gold);

    font-weight: 500;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.rma-properties-hero__description {
    width: 100%;
    max-width: 650px;

    margin:
        0 0 21px;

    color:
        rgba(244, 240, 231, 0.62);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size:
        clamp(0.78rem, 0.9vw, 0.92rem);

    line-height: 1.75;
}


/* =========================================================
   LICENSED AREAS
   ========================================================= */

.rma-properties-hero__areas {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 26px;
}

.rma-properties-hero__areas span {
    display: inline-flex;

    min-height: 29px;

    align-items: center;
    justify-content: center;

    padding:
        6px 11px;

    color:
        rgba(244, 240, 231, 0.69);

    border:
        1px solid
        rgba(244, 240, 231, 0.13);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.035);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.44rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.rma-properties-hero__actions {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    gap: 10px;

    margin-bottom: 25px;
}

.rma-properties-hero__button {
    display: inline-flex;

    min-height: 51px;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        12px 20px;

    border-radius: 999px;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 250ms ease,
        border-color 250ms ease,
        background-color 250ms ease,
        transform 250ms ease;
}

.rma-properties-hero__button svg {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    transition:
        transform 250ms ease;
}

.rma-properties-hero__button--primary {
    color:
        var(--rma-properties-charcoal);

    border:
        1px solid
        var(--rma-properties-gold);

    background:
        var(--rma-properties-gold);
}

.rma-properties-hero__button--primary:hover {
    border-color:
        var(--rma-properties-cream);

    background:
        var(--rma-properties-cream);

    transform:
        translateY(-2px);
}

.rma-properties-hero__button--primary:hover svg {
    transform:
        translateY(3px);
}

.rma-properties-hero__button--secondary {
    color:
        var(--rma-properties-cream);

    border:
        1px solid
        rgba(244, 240, 231, 0.17);

    background:
        rgba(255, 255, 255, 0.03);
}

.rma-properties-hero__button--secondary:hover {
    border-color:
        rgba(185, 154, 88, 0.5);

    background:
        rgba(185, 154, 88, 0.09);

    transform:
        translateY(-2px);
}

.rma-properties-hero__button--secondary:hover svg {
    transform:
        translateX(4px);
}


/* =========================================================
   NOTICE
   ========================================================= */

.rma-properties-hero__notice {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 10px;

    width: 100%;
    max-width: 650px;

    padding-top: 19px;

    border-top:
        1px solid
        rgba(244, 240, 231, 0.1);
}

.rma-properties-hero__notice > span {
    display: grid;

    width: 35px;
    height: 35px;

    flex: 0 0 35px;
    place-items: center;

    color:
        var(--rma-properties-gold);

    border:
        1px solid
        rgba(185, 154, 88, 0.25);

    border-radius: 50%;
}

.rma-properties-hero__notice svg {
    width: 17px;
    height: 17px;
}

.rma-properties-hero__notice p {
    margin: 0;

    color:
        rgba(244, 240, 231, 0.43);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.52rem;
    font-weight: 650;
    line-height: 1.55;
}


/* =========================================================
   RIGHT VISUAL COLUMN
   ========================================================= */

.rma-properties-hero__visual {
    position: relative;

    width: 100%;
    max-width: 570px;
    min-width: 0;

    justify-self: end;

    padding:
        0 0 40px 28px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.rma-properties-hero__image {
    position: relative;

    width: 100%;

    min-height:
        clamp(500px, 60vh, 660px);

    margin: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(244, 240, 231, 0.13);

    border-radius:
        clamp(30px, 3vw, 44px);

    background:
        rgba(255, 255, 255, 0.045);

    box-shadow:
        0 34px 90px
        rgba(2, 17, 13, 0.28);
}

.rma-properties-hero__image img {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform:
        scale(1.015);
}

.rma-properties-hero__image-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(8, 46, 39, 0.03) 20%,
            rgba(8, 46, 39, 0.17) 61%,
            rgba(8, 46, 39, 0.65) 100%
        );
}


/* =========================================================
   ADVISOR CARD
   ========================================================= */

.rma-properties-hero__advisor-card {
    position: absolute;

    top: 30px;
    left: 0;

    z-index: 4;

    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 11px;

    width:
        min(72%, 300px);

    padding:
        14px;

    color:
        var(--rma-properties-cream);

    border:
        1px solid
        rgba(244, 240, 231, 0.15);

    border-radius: 21px;

    background:
        rgba(18, 60, 52, 0.89);

    box-shadow:
        0 20px 55px
        rgba(2, 17, 13, 0.22);

    -webkit-backdrop-filter:
        blur(14px);

    backdrop-filter:
        blur(14px);
}

.rma-properties-hero__advisor-mark {
    display: grid;

    width: 47px;
    height: 47px;

    flex: 0 0 47px;
    place-items: center;

    color:
        var(--rma-properties-gold);

    border:
        1px solid
        rgba(185, 154, 88, 0.35);

    border-radius: 50%;

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.74rem;
    font-weight: 700;
}

.rma-properties-hero__advisor-card > div {
    min-width: 0;
}

.rma-properties-hero__advisor-card small {
    display: block;

    margin-bottom: 3px;

    color:
        var(--rma-properties-gold);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.36rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rma-properties-hero__advisor-card strong {
    display: block;

    margin-bottom: 4px;

    color:
        var(--rma-properties-cream);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.93rem;
    line-height: 1.05;
}

.rma-properties-hero__advisor-card a {
    color:
        rgba(244, 240, 231, 0.57);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.41rem;
    font-weight: 750;
    text-decoration: none;
}

.rma-properties-hero__advisor-card a:hover {
    color:
        var(--rma-properties-gold);
}


/* =========================================================
   SEARCH CARD
   ========================================================= */

.rma-properties-hero__search-card {
    position: absolute;

    right: -12px;
    bottom: 0;

    z-index: 3;

    width:
        min(91%, 400px);

    padding:
        20px;

    overflow: hidden;

    color:
        var(--rma-properties-charcoal);

    border:
        1px solid
        rgba(255, 255, 255, 0.6);

    border-radius: 26px;

    background:
        rgba(252, 251, 247, 0.94);

    box-shadow:
        0 25px 62px
        rgba(2, 17, 13, 0.22);

    -webkit-backdrop-filter:
        blur(18px);

    backdrop-filter:
        blur(18px);
}


/* =========================================================
   SEARCH HEADING
   ========================================================= */

.rma-properties-hero__search-heading {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 11px;

    margin-bottom: 14px;
}

.rma-properties-hero__search-icon {
    display: grid;

    width: 42px;
    height: 42px;

    place-items: center;

    color:
        var(--rma-properties-charcoal);

    border-radius: 50%;

    background:
        var(--rma-properties-gold);
}

.rma-properties-hero__search-icon svg {
    width: 20px;
    height: 20px;
}

.rma-properties-hero__search-heading > div {
    min-width: 0;
}

.rma-properties-hero__search-heading small {
    display: block;

    margin-bottom: 3px;

    color:
        var(--rma-properties-green);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.4rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rma-properties-hero__search-heading strong {
    display: block;

    color:
        var(--rma-properties-charcoal);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(1.15rem, 1.6vw, 1.4rem);

    line-height: 1;
}


/* =========================================================
   SEARCH OPTIONS
   ========================================================= */

.rma-properties-hero__search-options {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 7px;

    margin-bottom: 13px;
}

.rma-properties-hero__search-options a {
    display: grid;
    gap: 7px;

    min-width: 0;
    min-height: 88px;

    padding:
        10px;

    color:
        var(--rma-properties-charcoal);

    border:
        1px solid
        rgba(18, 60, 52, 0.09);

    border-radius: 15px;

    background:
        rgba(244, 240, 231, 0.62);

    text-decoration: none;

    transition:
        border-color 200ms ease,
        background-color 200ms ease,
        transform 200ms ease;
}

.rma-properties-hero__search-options a:hover {
    border-color:
        rgba(185, 154, 88, 0.42);

    background:
        rgba(185, 154, 88, 0.09);

    transform:
        translateY(-2px);
}

.rma-properties-hero__search-options a > span {
    color:
        var(--rma-properties-gold);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.61rem;
    font-weight: 700;
}

.rma-properties-hero__search-options div {
    display: grid;
    gap: 2px;

    min-width: 0;
}

.rma-properties-hero__search-options small {
    color: #818985;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.34rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rma-properties-hero__search-options strong {
    overflow-wrap: break-word;

    color:
        var(--rma-properties-charcoal);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.83rem;
    line-height: 1;
}


/* =========================================================
   SEARCH ACTION
   ========================================================= */

.rma-properties-hero__search-action {
    display: inline-flex;

    width: 100%;
    min-height: 45px;

    align-items: center;
    justify-content: center;
    gap: 8px;

    padding:
        10px 14px;

    color:
        var(--rma-properties-cream);

    border-radius: 999px;

    background:
        var(--rma-properties-emerald);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.43rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 200ms ease,
        transform 200ms ease;
}

.rma-properties-hero__search-action svg {
    width: 16px;
    height: 16px;

    color:
        var(--rma-properties-gold);

    transition:
        transform 200ms ease;
}

.rma-properties-hero__search-action:hover {
    background:
        var(--rma-properties-green);

    transform:
        translateY(-2px);
}

.rma-properties-hero__search-action:hover svg {
    transform:
        translateX(4px);
}


/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.rma-properties-hero__scroll {
    position: absolute;

    left: 50%;
    bottom: 17px;

    z-index: 5;

    display: inline-flex;

    align-items: center;
    gap: 9px;

    color:
        rgba(244, 240, 231, 0.43);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.41rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;

    transform:
        translateX(-50%);
}

.rma-properties-hero__scroll i {
    display: grid;

    width: 28px;
    height: 28px;

    place-items: center;

    color:
        var(--rma-properties-gold);

    border:
        1px solid
        rgba(185, 154, 88, 0.26);

    border-radius: 50%;
}

.rma-properties-hero__scroll svg {
    width: 14px;
    height: 14px;

    animation:
        rma-properties-scroll
        1.9s ease-in-out infinite;
}

@keyframes rma-properties-scroll {
    0%,
    100% {
        transform:
            translateY(-2px);
    }

    50% {
        transform:
            translateY(3px);
    }
}






































/* =========================================================
   06. AVAILABLE PROPERTIES GRID
   ========================================================= */

.rma-properties-catalog,
.rma-properties-catalog *,
.rma-properties-catalog *::before,
.rma-properties-catalog *::after {
    box-sizing: border-box;
}

.rma-properties-catalog {
    position: relative;
    isolation: isolate;

    width: 100%;

    padding:
        clamp(74px, 8vw, 126px)
        0;

    overflow: hidden;

    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        linear-gradient(
            180deg,
            #FCFBF7,
            var(--rma-properties-cream, #F4F0E7)
        );

    scroll-margin-top:
        110px;
}

.rma-properties-catalog__background {
    position: absolute;
    inset: 0;
    z-index: -3;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 94% 8%,
            rgba(185, 154, 88, 0.13),
            transparent 26%
        ),
        radial-gradient(
            circle at 4% 88%,
            rgba(40, 103, 90, 0.08),
            transparent 28%
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.rma-properties-catalog__container {
    width:
        min(
            calc(100% - 48px),
            1440px
        );

    max-width: 1440px;

    margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.rma-properties-catalog__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(290px, 0.42fr);

    align-items: end;

    gap:
        clamp(34px, 6vw, 90px);

    margin-bottom:
        clamp(35px, 5vw, 58px);
}

.rma-properties-catalog__eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 11px;

    margin-bottom: 16px;

    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.rma-properties-catalog__eyebrow > span {
    display: grid;

    width: 35px;
    height: 35px;

    place-items: center;

    color:
        var(--rma-properties-charcoal, #1D2422);

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: .78rem;
}

.rma-properties-catalog__eyebrow i {
    width: 35px;
    height: 1px;

    background:
        rgba(40, 103, 90, .42);
}

.rma-properties-catalog__heading h2 {
    max-width: 830px;

    margin: 0;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(3rem, 5vw, 5.25rem);

    font-weight: 600;
    line-height: .9;
    letter-spacing: -.048em;

    text-wrap: balance;
}

.rma-properties-catalog__heading h2 em {
    color:
        var(--rma-properties-green, #28675A);

    font-weight: 500;
}

.rma-properties-catalog__intro > p {
    margin:
        0 0 15px;

    color: #6E7874;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size:
        clamp(.74rem, .9vw, .9rem);

    line-height: 1.7;
}

.rma-properties-catalog__source {
    display: flex;

    align-items: center;
    gap: 8px;

    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .42rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.rma-properties-catalog__source > span {
    position: relative;

    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background:
        var(--rma-properties-green, #28675A);
}

.rma-properties-catalog__source > span::after {
    content: "";

    position: absolute;
    inset: -4px;

    border:
        1px solid
        rgba(40, 103, 90, .27);

    border-radius: 50%;
}


/* =========================================================
   FILTERS
   ========================================================= */

.rma-properties-catalog__filters {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    gap: 7px;

    margin-bottom: 25px;

    padding:
        7px;

    width: fit-content;

    border:
        1px solid
        rgba(18, 60, 52, .09);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .66);
}

.rma-properties-catalog__filter {
    display: inline-flex;

    min-height: 43px;

    align-items: center;
    justify-content: center;
    gap: 8px;

    padding:
        9px 14px;

    cursor: pointer;

    color: #69736F;

    border: 0;
    border-radius: 999px;

    background: transparent;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .46rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;

    transition:
        color 200ms ease,
        background-color 200ms ease;
}

.rma-properties-catalog__filter strong {
    display: grid;

    width: 24px;
    height: 24px;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(18, 60, 52, .07);

    font-size: .43rem;
}

.rma-properties-catalog__filter.is-active {
    color:
        var(--rma-properties-cream, #F4F0E7);

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-properties-catalog__filter.is-active strong {
    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-properties-catalog__status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);
}


/* =========================================================
   GRID
   ========================================================= */

.rma-properties-catalog__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: start;

    gap:
        clamp(14px, 2vw, 22px);
}


/* =========================================================
   PROPERTY CARD
   ========================================================= */

.rma-property-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(18, 60, 52, .09);

    border-radius:
        clamp(25px, 3vw, 32px);

    background:
        rgba(255, 255, 255, .82);

    box-shadow:
        0 18px 48px
        rgba(18, 60, 52, .07);

    transition:
        border-color 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}

.rma-property-card:hover {
    border-color:
        rgba(185, 154, 88, .35);

    box-shadow:
        0 28px 65px
        rgba(18, 60, 52, .11);

    transform:
        translateY(-5px);
}

.rma-property-card[hidden] {
    display: none !important;
}


/* =========================================================
   IMAGE
   ========================================================= */

.rma-property-card__media {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 10;

    margin: 0;

    overflow: hidden;

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-property-card__media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 500ms ease;
}

.rma-property-card:hover
.rma-property-card__media img {
    transform:
        scale(1.035);
}

.rma-property-card__media-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(8, 46, 39, .02) 42%,
            rgba(8, 46, 39, .52) 100%
        );
}


/* =========================================================
   STATUS
   ========================================================= */

.rma-property-card__status,
.rma-property-card__type {
    position: absolute;
    z-index: 2;

    top: 14px;

    display: inline-flex;

    min-height: 29px;

    align-items: center;
    justify-content: center;
    gap: 6px;

    padding:
        6px 10px;

    border-radius: 999px;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .4rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;

    -webkit-backdrop-filter:
        blur(12px);

    backdrop-filter:
        blur(12px);
}

.rma-property-card__status {
    left: 14px;
}

.rma-property-card__type {
    right: 14px;

    color:
        rgba(244, 240, 231, .84);

    border:
        1px solid
        rgba(244, 240, 231, .16);

    background:
        rgba(18, 60, 52, .72);
}

.rma-property-card__status--available {
    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-card__status--available i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--rma-properties-green, #28675A);
}

.rma-property-card__status--sold {
    color:
        var(--rma-properties-cream, #F4F0E7);

    border:
        1px solid
        rgba(244, 240, 231, .15);

    background:
        rgba(29, 36, 34, .74);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.rma-property-card__content {
    padding:
        clamp(19px, 2.5vw, 25px);
}

.rma-property-card__location {
    display: flex;

    align-items: center;
    gap: 6px;

    margin-bottom: 9px;

    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .43rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.rma-property-card__location svg {
    width: 15px;
    height: 15px;
}

.rma-property-card__title-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: start;
    gap: 15px;

    margin-bottom: 20px;
}

.rma-property-card__title-row h3 {
    margin: 0;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(1.55rem, 2vw, 2rem);

    font-weight: 650;
    line-height: .96;
}

.rma-property-card__price {
    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(1.25rem, 1.6vw, 1.55rem);

    line-height: 1;
}


/* =========================================================
   FEATURES
   ========================================================= */

.rma-property-card__features {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 6px;

    margin-bottom: 17px;
}

.rma-property-card--sold
.rma-property-card__features {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.rma-property-card__features > div {
    display: grid;
    gap: 2px;

    min-width: 0;

    padding:
        10px 8px;

    border:
        1px solid
        rgba(18, 60, 52, .07);

    border-radius: 13px;

    background:
        rgba(244, 240, 231, .5);

    text-align: center;
}

.rma-property-card__features strong {
    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: .95rem;
}

.rma-property-card__features span {
    color: #858D89;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .34rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}


/* =========================================================
   AVAILABLE NOTE
   ========================================================= */

.rma-property-card__available-note {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: start;
    gap: 9px;

    margin-bottom: 17px;

    padding:
        11px;

    border:
        1px solid
        rgba(40, 103, 90, .1);

    border-radius: 14px;

    background:
        rgba(168, 185, 165, .1);
}

.rma-property-card__available-note > span {
    width: 8px;
    height: 8px;

    margin-top: 3px;

    border-radius: 50%;

    background:
        var(--rma-properties-green, #28675A);
}

.rma-property-card__available-note p {
    margin: 0;

    color: #747D79;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .43rem;
    font-weight: 650;
    line-height: 1.5;
}


/* =========================================================
   SOLD INFORMATION
   ========================================================= */

.rma-property-card__sale {
    display: grid;
    gap: 3px;

    padding-top: 15px;

    border-top:
        1px solid
        rgba(18, 60, 52, .08);
}

.rma-property-card__sale small {
    color:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .37rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rma-property-card__sale strong {
    color: #626D68;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .5rem;
    font-weight: 750;
}


/* =========================================================
   AVAILABLE ACTIONS
   ========================================================= */

.rma-property-card__actions {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 7px;

    padding-top: 17px;

    border-top:
        1px solid
        rgba(18, 60, 52, .08);
}

.rma-property-card__details,
.rma-property-card__contact {
    display: inline-flex;

    min-height: 44px;

    align-items: center;
    justify-content: center;
    gap: 7px;

    padding:
        9px 13px;

    border-radius: 999px;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .4rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.rma-property-card__details {
    cursor: pointer;

    color:
        var(--rma-properties-cream, #F4F0E7);

    border:
        1px solid
        var(--rma-properties-emerald, #123C34);

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-property-card__details svg {
    width: 15px;
    height: 15px;

    color:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-card__contact {
    color:
        var(--rma-properties-green, #28675A);

    border:
        1px solid
        rgba(40, 103, 90, .15);

    background:
        rgba(168, 185, 165, .1);
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.rma-properties-catalog__empty {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 18px;

    margin-top: 18px;

    padding:
        clamp(20px, 3vw, 30px);

    border:
        1px solid
        rgba(18, 60, 52, .09);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, .68);
}

.rma-properties-catalog__empty[hidden] {
    display: none;
}

.rma-properties-catalog__empty-icon {
    display: grid;

    width: 50px;
    height: 50px;

    place-items: center;

    color:
        var(--rma-properties-green, #28675A);

    border-radius: 50%;

    background:
        rgba(168, 185, 165, .12);
}

.rma-properties-catalog__empty-icon svg {
    width: 22px;
    height: 22px;
}

.rma-properties-catalog__empty small {
    color:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .4rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rma-properties-catalog__empty h3 {
    margin:
        3px 0 4px;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1.45rem;
    line-height: 1;
}

.rma-properties-catalog__empty p {
    margin: 0;

    color: #747D79;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .49rem;
    font-weight: 650;
}

.rma-properties-catalog__empty > a {
    display: inline-flex;

    min-height: 45px;

    align-items: center;
    justify-content: center;

    padding:
        10px 16px;

    white-space: nowrap;

    color:
        var(--rma-properties-cream, #F4F0E7);

    border-radius: 999px;

    background:
        var(--rma-properties-emerald, #123C34);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .42rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}


/* =========================================================
   NOTICE
   ========================================================= */

.rma-properties-catalog__notice {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 11px;

    margin-top: 24px;
    padding-top: 21px;

    border-top:
        1px solid
        rgba(18, 60, 52, .09);
}

.rma-properties-catalog__notice > span {
    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;

    color:
        var(--rma-properties-green, #28675A);

    border:
        1px solid
        rgba(40, 103, 90, .15);

    border-radius: 50%;
}

.rma-properties-catalog__notice svg {
    width: 18px;
    height: 18px;
}

.rma-properties-catalog__notice p {
    max-width: 850px;

    margin: 0;

    color: #7A837F;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: .48rem;
    font-weight: 650;
    line-height: 1.55;
}


/* =========================================================
   LIST VIEW
   ========================================================= */

.rma-properties-catalog__grid.is-list-view {
    grid-template-columns: 1fr;
}

.rma-properties-catalog__grid.is-list-view
.rma-property-card {
    display: grid;

    grid-template-columns:
        minmax(300px, .38fr)
        minmax(0, .62fr);
}

.rma-properties-catalog__grid.is-list-view
.rma-property-card__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 300px;
}






































/* =========================================================
   07. FULL PROPERTY VIEWER
   ========================================================= */

.rma-property-viewer,
.rma-property-viewer *,
.rma-property-viewer *::before,
.rma-property-viewer *::after {
    box-sizing: border-box;
}

.rma-property-viewer {
    position: fixed;
    inset: 0;

    z-index: 2147483000;

    display: none;

    width: 100%;
    height: 100dvh;

    padding:
        clamp(12px, 1.5vw, 22px);

    overflow: hidden;

    font-family:
        var(--font-body, "Manrope", sans-serif);
}

.rma-property-viewer.is-open {
    display: grid;

    place-items: center;
}

.rma-property-viewer[aria-hidden="true"] {
    visibility: hidden;
}


/* =========================================================
   BACKDROP
   ========================================================= */

.rma-property-viewer__backdrop {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    padding: 0;

    cursor: default;

    border: 0;

    background:
        rgba(5, 20, 17, 0.88);

    -webkit-backdrop-filter:
        blur(15px);

    backdrop-filter:
        blur(15px);
}


/* =========================================================
   DIALOG
   ========================================================= */

.rma-property-viewer__dialog {
    position: relative;
    z-index: 2;

    display: flex;

    width:
        min(
            100%,
            1560px
        );

    height:
        min(
            100%,
            940px
        );

    min-width: 0;

    flex-direction: column;

    overflow: hidden;

    border:
        1px solid
        rgba(244, 240, 231, 0.12);

    border-radius:
        clamp(25px, 3vw, 38px);

    background:
        #F8F6F0;

    box-shadow:
        0 45px 130px
        rgba(0, 0, 0, 0.42);
}


/* =========================================================
   TOPBAR
   ========================================================= */

.rma-property-viewer__topbar {
    position: relative;
    z-index: 20;

    display: flex;

    flex: 0 0 auto;

    min-height: 73px;

    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding:
        12px
        clamp(16px, 2vw, 26px);

    color:
        var(--rma-properties-cream, #F4F0E7);

    background:
        var(--rma-properties-emerald, #123C34);

    border-bottom:
        1px solid
        rgba(244, 240, 231, 0.09);
}


/* =========================================================
   BRAND
   ========================================================= */

.rma-property-viewer__brand {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 11px;

    min-width: 0;
}

.rma-property-viewer__brand-mark {
    display: grid;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;
    place-items: center;

    color:
        var(--rma-properties-gold, #B99A58);

    border:
        1px solid
        rgba(185, 154, 88, 0.35);

    border-radius: 50%;

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.8rem;
    font-weight: 700;
}

.rma-property-viewer__brand small {
    display: block;

    margin-bottom: 2px;

    color:
        var(--rma-properties-gold, #B99A58);

    font-size: 0.38rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rma-property-viewer__brand strong {
    display: block;

    color:
        var(--rma-properties-cream, #F4F0E7);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1.08rem;
    line-height: 1;
}


/* =========================================================
   TOP ACTIONS
   ========================================================= */

.rma-property-viewer__top-actions {
    display: flex;

    align-items: center;
    gap: 7px;
}

.rma-property-viewer__share,
.rma-property-viewer__close {
    cursor: pointer;

    border:
        1px solid
        rgba(244, 240, 231, 0.13);

    background:
        rgba(255, 255, 255, 0.04);

    transition:
        border-color 200ms ease,
        background-color 200ms ease,
        transform 200ms ease;
}

.rma-property-viewer__share {
    display: inline-flex;

    min-height: 43px;

    align-items: center;
    justify-content: center;
    gap: 7px;

    padding:
        9px 14px;

    color:
        var(--rma-properties-cream, #F4F0E7);

    border-radius: 999px;

    font: inherit;

    font-size: 0.42rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rma-property-viewer__share svg {
    width: 16px;
    height: 16px;

    color:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-viewer__close {
    display: grid;

    width: 43px;
    height: 43px;

    place-items: center;

    color:
        var(--rma-properties-cream, #F4F0E7);

    border-radius: 50%;
}

.rma-property-viewer__close svg {
    width: 19px;
    height: 19px;
}

.rma-property-viewer__share:hover,
.rma-property-viewer__close:hover {
    border-color:
        rgba(185, 154, 88, 0.45);

    background:
        rgba(185, 154, 88, 0.1);

    transform:
        translateY(-2px);
}


/* =========================================================
   BODY
   ========================================================= */

.rma-property-viewer__body {
    display: grid;

    grid-template-columns:
        minmax(0, 0.93fr)
        minmax(470px, 0.72fr);

    flex: 1 1 auto;

    min-height: 0;

    overflow: hidden;
}


/* =========================================================
   GALLERY
   ========================================================= */

.rma-property-viewer__gallery {
    display: flex;

    min-width: 0;
    min-height: 0;

    flex-direction: column;

    padding:
        clamp(14px, 1.7vw, 23px);

    overflow: hidden;

    background:
        #0A211C;
}

.rma-property-viewer__stage {
    position: relative;

    flex: 1 1 auto;

    min-height: 360px;

    overflow: hidden;

    border:
        1px solid
        rgba(244, 240, 231, 0.1);

    border-radius:
        clamp(20px, 2.2vw, 30px);

    background:
        #09251E;
}

.rma-property-viewer__stage > img {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.rma-property-viewer__image-shade {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(8, 35, 29, 0.07) 55%,
            rgba(8, 35, 29, 0.63) 100%
        );
}


/* =========================================================
   GALLERY STATUS
   ========================================================= */

.rma-property-viewer__gallery-status {
    position: absolute;

    top: 17px;
    left: 17px;
    right: 17px;

    z-index: 4;

    display: flex;

    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.rma-property-viewer__status,
.rma-property-viewer__gallery-count {
    display: inline-flex;

    min-height: 31px;

    align-items: center;
    justify-content: center;

    padding:
        6px 11px;

    border-radius: 999px;

    -webkit-backdrop-filter:
        blur(12px);

    backdrop-filter:
        blur(12px);

    font-size: 0.4rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rma-property-viewer__status {
    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-viewer__status.is-sold {
    color:
        var(--rma-properties-cream, #F4F0E7);

    border:
        1px solid
        rgba(244, 240, 231, 0.13);

    background:
        rgba(29, 36, 34, 0.76);
}

.rma-property-viewer__gallery-count {
    color:
        var(--rma-properties-cream, #F4F0E7);

    border:
        1px solid
        rgba(244, 240, 231, 0.14);

    background:
        rgba(18, 60, 52, 0.68);
}


/* =========================================================
   GALLERY ARROWS
   ========================================================= */

.rma-property-viewer__gallery-button {
    position: absolute;

    top: 50%;
    z-index: 4;

    display: grid;

    width: 45px;
    height: 45px;

    place-items: center;

    padding: 0;

    cursor: pointer;

    color:
        var(--rma-properties-cream, #F4F0E7);

    border:
        1px solid
        rgba(244, 240, 231, 0.16);

    border-radius: 50%;

    background:
        rgba(18, 60, 52, 0.72);

    -webkit-backdrop-filter:
        blur(12px);

    backdrop-filter:
        blur(12px);

    transform:
        translateY(-50%);

    transition:
        background-color 200ms ease,
        transform 200ms ease;
}

.rma-property-viewer__gallery-button svg {
    width: 18px;
    height: 18px;
}

.rma-property-viewer__gallery-button--previous {
    left: 17px;
}

.rma-property-viewer__gallery-button--next {
    right: 17px;
}

.rma-property-viewer__gallery-button:hover {
    background:
        var(--rma-properties-green, #28675A);
}

.rma-property-viewer__gallery-button--previous:hover {
    transform:
        translateY(-50%)
        translateX(-2px);
}

.rma-property-viewer__gallery-button--next:hover {
    transform:
        translateY(-50%)
        translateX(2px);
}

.rma-property-viewer__gallery-button[hidden] {
    display: none;
}


/* =========================================================
   THUMBNAILS
   ========================================================= */

.rma-property-viewer__thumbnails {
    display: flex;

    flex: 0 0 auto;

    gap: 7px;

    margin-top: 10px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: thin;
}

.rma-property-viewer__thumbnails:empty {
    display: none;
}

.rma-property-viewer__thumbnail {
    position: relative;

    width: 76px;
    height: 57px;

    flex: 0 0 76px;

    padding: 0;

    overflow: hidden;

    cursor: pointer;

    border:
        1px solid
        rgba(244, 240, 231, 0.13);

    border-radius: 11px;

    background:
        transparent;

    opacity: 0.52;

    transition:
        opacity 200ms ease,
        border-color 200ms ease;
}

.rma-property-viewer__thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.rma-property-viewer__thumbnail.is-active {
    border-color:
        var(--rma-properties-gold, #B99A58);

    opacity: 1;
}


/* =========================================================
   INFORMATION
   ========================================================= */

.rma-property-viewer__information {
    min-width: 0;
    min-height: 0;

    padding:
        clamp(25px, 3vw, 42px);

    overflow-y: auto;
    overscroll-behavior: contain;

    background:
        #F8F6F0;
}


/* =========================================================
   PROPERTY HEADING
   ========================================================= */

.rma-property-viewer__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: start;
    gap:
        clamp(17px, 2vw, 28px);

    margin-bottom: 25px;
}

.rma-property-viewer__location {
    display: block;

    margin-bottom: 7px;

    color:
        var(--rma-properties-green, #28675A);

    font-size: 0.46rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rma-property-viewer__heading h2 {
    max-width: 590px;

    margin: 0;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(2.25rem, 3.6vw, 4rem);

    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.rma-property-viewer__price {
    display: grid;
    gap: 4px;

    min-width: 120px;

    text-align: right;
}

.rma-property-viewer__price small {
    color: #858D89;

    font-size: 0.38rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rma-property-viewer__price strong {
    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(1.55rem, 2.3vw, 2.25rem);

    font-weight: 650;
    line-height: 1;
}


/* =========================================================
   SPECS
   ========================================================= */

.rma-property-viewer__specs {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 7px;

    margin-bottom: 30px;
}

.rma-property-viewer__specs article {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 9px;

    min-width: 0;

    padding:
        11px;

    border:
        1px solid
        rgba(18, 60, 52, 0.08);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.7);
}

.rma-property-viewer__specs article > span {
    display: grid;

    width: 31px;
    height: 31px;

    place-items: center;

    color:
        var(--rma-properties-green, #28675A);

    border-radius: 50%;

    background:
        rgba(168, 185, 165, 0.14);
}

.rma-property-viewer__specs svg {
    width: 15px;
    height: 15px;
}

.rma-property-viewer__specs small {
    display: block;

    margin-bottom: 2px;

    color: #8A928E;

    font-size: 0.34rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rma-property-viewer__specs strong {
    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.91rem;
    line-height: 1;
}


/* =========================================================
   GENERAL INFORMATION BLOCKS
   ========================================================= */

.rma-property-viewer__description,
.rma-property-viewer__highlights,
.rma-property-viewer__details {
    margin-bottom: 28px;
}

.rma-property-viewer__section-label {
    display: flex;

    align-items: center;
    gap: 9px;

    margin-bottom: 13px;
}

.rma-property-viewer__section-label > span {
    display: grid;

    width: 28px;
    height: 28px;

    place-items: center;

    color:
        var(--rma-properties-charcoal, #1D2422);

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.55rem;
    font-weight: 700;
}

.rma-property-viewer__section-label strong {
    color:
        var(--rma-properties-green, #28675A);

    font-size: 0.42rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rma-property-viewer__description > p {
    margin: 0;

    color: #66716C;

    font-size:
        clamp(0.68rem, 0.8vw, 0.79rem);

    font-weight: 550;
    line-height: 1.8;
}


/* =========================================================
   HIGHLIGHTS
   ========================================================= */

.rma-property-viewer__highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 7px;
}

.rma-property-viewer__highlight {
    position: relative;

    padding:
        12px 13px 12px 31px;

    color: #68736E;

    border:
        1px solid
        rgba(18, 60, 52, 0.08);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.65);

    font-size: 0.48rem;
    font-weight: 700;
    line-height: 1.45;
}

.rma-property-viewer__highlight::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 13px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);

    transform:
        translateY(-50%);
}


/* =========================================================
   DETAIL GRID
   ========================================================= */

.rma-property-viewer__detail-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    overflow: hidden;

    border:
        1px solid
        rgba(18, 60, 52, 0.08);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.58);
}

.rma-property-viewer__detail {
    display: flex;

    min-width: 0;

    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding:
        13px 14px;

    border-bottom:
        1px solid
        rgba(18, 60, 52, 0.07);
}

.rma-property-viewer__detail:nth-child(odd) {
    border-right:
        1px solid
        rgba(18, 60, 52, 0.07);
}

.rma-property-viewer__detail span {
    color: #858D89;

    font-size: 0.38rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rma-property-viewer__detail strong {
    min-width: 0;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.88rem;
    line-height: 1.05;
    text-align: right;
}


/* =========================================================
   RECORD
   ========================================================= */

.rma-property-viewer__record {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: start;
    gap: 12px;

    margin-bottom: 25px;

    padding: 16px;

    color:
        var(--rma-properties-cream, #F4F0E7);

    border-radius: 20px;

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-property-viewer__record-icon {
    display: grid;

    width: 39px;
    height: 39px;

    place-items: center;

    color:
        var(--rma-properties-gold, #B99A58);

    border:
        1px solid
        rgba(185, 154, 88, 0.25);

    border-radius: 50%;
}

.rma-property-viewer__record svg {
    width: 18px;
    height: 18px;
}

.rma-property-viewer__record small {
    display: block;

    margin-bottom: 3px;

    color:
        var(--rma-properties-gold, #B99A58);

    font-size: 0.38rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rma-property-viewer__record strong {
    display: block;

    margin-bottom: 4px;

    color:
        var(--rma-properties-cream, #F4F0E7);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1rem;
}

.rma-property-viewer__record p {
    margin: 0;

    color:
        rgba(244, 240, 231, 0.49);

    font-size: 0.47rem;
    font-weight: 650;
    line-height: 1.55;
}


/* =========================================================
   CTA
   ========================================================= */

.rma-property-viewer__cta {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 20px;

    margin-bottom: 18px;

    padding:
        18px;

    border:
        1px solid
        rgba(185, 154, 88, 0.25);

    border-radius: 20px;

    background:
        rgba(185, 154, 88, 0.09);
}

.rma-property-viewer__cta small {
    display: block;

    margin-bottom: 4px;

    color:
        var(--rma-properties-gold, #B99A58);

    font-size: 0.38rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rma-property-viewer__cta strong {
    display: block;

    max-width: 340px;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1.15rem;
    line-height: 1.02;
}

.rma-property-viewer__cta-actions {
    display: grid;
    gap: 6px;

    min-width: 185px;
}

.rma-property-viewer__cta-primary,
.rma-property-viewer__cta-secondary {
    display: inline-flex;

    min-height: 43px;

    align-items: center;
    justify-content: center;
    gap: 7px;

    padding:
        9px 14px;

    border-radius: 999px;

    font-size: 0.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.rma-property-viewer__cta-primary {
    color:
        var(--rma-properties-cream, #F4F0E7);

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-property-viewer__cta-primary svg {
    width: 15px;
    height: 15px;

    color:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-viewer__cta-secondary {
    color:
        var(--rma-properties-green, #28675A);

    border:
        1px solid
        rgba(40, 103, 90, 0.15);

    background:
        rgba(255, 255, 255, 0.55);
}


/* =========================================================
   NOTICE
   ========================================================= */

.rma-property-viewer__notice {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: start;
    gap: 9px;
}

.rma-property-viewer__notice svg {
    width: 17px;
    height: 17px;

    color:
        var(--rma-properties-green, #28675A);
}

.rma-property-viewer__notice p {
    margin: 0;

    color: #7A837F;

    font-size: 0.43rem;
    font-weight: 650;
    line-height: 1.55;
}


/* =========================================================
   BODY SCROLL LOCK
   ========================================================= */

html.rma-property-viewer-open,
body.rma-property-viewer-open {
    overflow: hidden;
}

body.rma-property-viewer-open {
    overscroll-behavior: none;
}





































/* =========================================================
   08. PROPERTY LOCATION MAP
   ========================================================= */

.rma-property-map,
.rma-property-map *,
.rma-property-map *::before,
.rma-property-map *::after {
    box-sizing: border-box;
}

.rma-property-map svg {
    display: block;
    max-width: 100%;
}

.rma-property-map {
    position: relative;
    isolation: isolate;

    width: 100%;

    padding:
        clamp(78px, 8vw, 126px)
        0;

    overflow: hidden;

    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        #FFFFFF;

    scroll-margin-top:
        calc(
            var(--rma-header-total-height, 92px)
            + 20px
        );
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.rma-property-map__background {
    position: absolute;
    inset: 0;
    z-index: -3;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 92% 7%,
            rgba(185, 154, 88, 0.1),
            transparent 27%
        ),
        radial-gradient(
            circle at 6% 92%,
            rgba(40, 103, 90, 0.07),
            transparent 29%
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.rma-property-map__container {
    position: relative;
    z-index: 1;

    width:
        min(
            calc(100% - 48px),
            1440px
        );

    max-width: 1440px;

    margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.rma-property-map__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.43fr);

    align-items: end;

    gap:
        clamp(34px, 6vw, 90px);

    margin-bottom:
        clamp(35px, 5vw, 58px);
}

.rma-property-map__eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 11px;

    margin-bottom: 16px;

    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.rma-property-map__eyebrow > span {
    display: grid;

    width: 35px;
    height: 35px;

    flex: 0 0 35px;
    place-items: center;

    color:
        var(--rma-properties-charcoal, #1D2422);

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.78rem;
    font-weight: 700;
}

.rma-property-map__eyebrow i {
    width: 35px;
    height: 1px;

    flex: 0 0 35px;

    background:
        rgba(40, 103, 90, 0.42);
}

.rma-property-map__heading h2 {
    max-width: 800px;

    margin: 0;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(3rem, 5vw, 5.3rem);

    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.048em;

    text-wrap: balance;
}

.rma-property-map__heading h2 em {
    color:
        var(--rma-properties-green, #28675A);

    font-weight: 500;
}

.rma-property-map__intro > p {
    margin:
        0 0 17px;

    color: #69736F;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size:
        clamp(0.75rem, 0.92vw, 0.9rem);

    line-height: 1.75;
}


/* =========================================================
   LEGEND
   ========================================================= */

.rma-property-map__legend {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    gap: 15px;
}

.rma-property-map__legend > span {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    color: #6F7974;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.44rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rma-property-map__legend-dot {
    display: block;

    width: 9px;
    height: 9px;

    border-radius: 50%;
}

.rma-property-map__legend-dot--available {
    background:
        var(--rma-properties-gold, #B99A58);

    box-shadow:
        0 0 0 4px
        rgba(185, 154, 88, 0.12);
}

.rma-property-map__legend-dot--sold {
    background:
        var(--rma-properties-green, #28675A);

    box-shadow:
        0 0 0 4px
        rgba(40, 103, 90, 0.1);
}


/* =========================================================
   TOOLBAR
   ========================================================= */

.rma-property-map__toolbar {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 14px;
}


/* =========================================================
   FILTERS
   ========================================================= */

.rma-property-map__filters {
    display: inline-flex;
    flex-wrap: wrap;

    align-items: center;
    gap: 5px;

    padding: 5px;

    border:
        1px solid
        rgba(18, 60, 52, 0.09);

    border-radius: 999px;

    background:
        rgba(244, 240, 231, 0.55);
}

.rma-property-map__filter {
    display: inline-flex;

    min-height: 43px;

    align-items: center;
    justify-content: center;
    gap: 7px;

    padding:
        8px 13px;

    cursor: pointer;

    color: #6F7874;

    border: 0;
    border-radius: 999px;

    background: transparent;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.43rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    transition:
        color 200ms ease,
        background-color 200ms ease;
}

.rma-property-map__filter > span {
    display: grid;

    min-width: 23px;
    height: 23px;

    place-items: center;

    padding-inline: 5px;

    border-radius: 999px;

    background:
        rgba(18, 60, 52, 0.07);
}

.rma-property-map__filter.is-active {
    color:
        var(--rma-properties-cream, #F4F0E7);

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-property-map__filter.is-active > span {
    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-map__filter-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
}

.rma-property-map__filter-dot--available {
    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-map__filter-dot--sold {
    background:
        var(--rma-properties-sage, #A8B9A5);
}


/* =========================================================
   RESET MAP
   ========================================================= */

.rma-property-map__reset {
    display: inline-flex;

    min-height: 43px;

    align-items: center;
    justify-content: center;
    gap: 7px;

    padding:
        9px 14px;

    cursor: pointer;

    color:
        var(--rma-properties-green, #28675A);

    border:
        1px solid
        rgba(40, 103, 90, 0.14);

    border-radius: 999px;

    background:
        rgba(168, 185, 165, 0.1);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.42rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    transition:
        border-color 200ms ease,
        background-color 200ms ease,
        transform 200ms ease;
}

.rma-property-map__reset svg {
    width: 16px;
    height: 16px;
}

.rma-property-map__reset:hover {
    border-color:
        rgba(185, 154, 88, 0.42);

    background:
        rgba(185, 154, 88, 0.08);

    transform:
        translateY(-2px);
}


/* =========================================================
   MAP FRAME
   ========================================================= */

.rma-property-map__frame {
    position: relative;

    width: 100%;

    overflow: hidden;

    border:
        1px solid
        rgba(18, 60, 52, 0.1);

    border-radius:
        clamp(28px, 4vw, 42px);

    background:
        #E4E8E2;

    box-shadow:
        0 28px 80px
        rgba(18, 60, 52, 0.11);
}


/* =========================================================
   LEAFLET MAP
   ========================================================= */

.rma-property-map__canvas {
    position: relative;

    width: 100%;
    height:
        clamp(540px, 68vh, 760px);

    min-height: 540px;

    z-index: 1;

    background:
        #E6E9E3;
}


/* =========================================================
   LEAFLET UI
   ========================================================= */

.rma-property-map
.leaflet-control-zoom {
    overflow: hidden;

    border: 0 !important;
    border-radius: 15px !important;

    box-shadow:
        0 10px 28px
        rgba(18, 60, 52, 0.16) !important;
}

.rma-property-map
.leaflet-control-zoom a {
    display: grid;

    width: 39px !important;
    height: 39px !important;

    place-items: center;

    color:
        var(--rma-properties-charcoal, #1D2422) !important;

    border: 0 !important;
    border-bottom:
        1px solid
        rgba(18, 60, 52, 0.08) !important;

    background:
        rgba(255, 255, 255, 0.95) !important;

    font-family:
        var(--font-body, "Manrope", sans-serif) !important;

    line-height: 39px !important;
}

.rma-property-map
.leaflet-control-zoom a:hover {
    color:
        var(--rma-properties-green, #28675A) !important;

    background:
        var(--rma-properties-cream, #F4F0E7) !important;
}

.rma-property-map
.leaflet-control-attribution {
    padding:
        4px 7px !important;

    color: #69736F !important;

    border-radius:
        9px 0 0 0;

    background:
        rgba(255, 255, 255, 0.87) !important;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 9px !important;
}

.rma-property-map
.leaflet-control-attribution a {
    color:
        var(--rma-properties-green, #28675A);
}


/* =========================================================
   CUSTOM HOUSE MARKER
   ========================================================= */

.rma-house-marker {
    position: relative;

    width: 50px;
    height: 55px;
}

.rma-house-marker__pin {
    position: relative;

    display: grid;

    width: 47px;
    height: 47px;

    place-items: center;

    border:
        3px solid
        #FFFFFF;

    border-radius:
        17px 17px 17px 5px;

    box-shadow:
        0 9px 25px
        rgba(18, 60, 52, 0.28);

    transform:
        rotate(-45deg);

    transition:
        transform 200ms ease,
        box-shadow 200ms ease;
}

.rma-house-marker__pin svg {
    width: 22px;
    height: 22px;

    transform:
        rotate(45deg);
}

.rma-house-marker--available
.rma-house-marker__pin {
    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-house-marker--sold
.rma-house-marker__pin {
    color:
        var(--rma-properties-cream, #F4F0E7);

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-house-marker:hover
.rma-house-marker__pin {
    z-index: 5;

    box-shadow:
        0 13px 32px
        rgba(18, 60, 52, 0.4);

    transform:
        rotate(-45deg)
        scale(1.09);
}


/* =========================================================
   LEAFLET POPUP
   ========================================================= */

.rma-property-map
.leaflet-popup-content-wrapper {
    overflow: hidden;

    padding: 0;

    border:
        1px solid
        rgba(18, 60, 52, 0.1);

    border-radius: 23px;

    background:
        #FCFBF7;

    box-shadow:
        0 24px 65px
        rgba(18, 60, 52, 0.2);
}

.rma-property-map
.leaflet-popup-content {
    width:
        min(330px, calc(100vw - 70px)) !important;

    margin: 0 !important;
}

.rma-property-map
.leaflet-popup-tip {
    background:
        #FCFBF7;
}

.rma-property-map
.leaflet-popup-close-button {
    top: 9px !important;
    right: 9px !important;

    display: grid;

    width: 29px !important;
    height: 29px !important;

    place-items: center;

    z-index: 20;

    color:
        var(--rma-properties-cream, #F4F0E7) !important;

    border:
        1px solid
        rgba(244, 240, 231, 0.2);

    border-radius: 50%;

    background:
        rgba(18, 60, 52, 0.78);

    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 25px !important;
}


/* =========================================================
   POPUP PROPERTY CARD
   ========================================================= */

.rma-map-card {
    overflow: hidden;

    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        #FCFBF7;
}

.rma-map-card__image {
    position: relative;

    width: 100%;
    height: 155px;

    overflow: hidden;

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-map-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.rma-map-card__image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(18, 60, 52, 0.03) 40%,
            rgba(18, 60, 52, 0.5) 100%
        );
}

.rma-map-card__status {
    position: absolute;

    left: 12px;
    bottom: 11px;

    z-index: 2;

    display: inline-flex;

    min-height: 27px;

    align-items: center;
    gap: 6px;

    padding:
        5px 9px;

    border-radius: 999px;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.37rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rma-map-card__status--available {
    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-map-card__status--sold {
    color:
        var(--rma-properties-cream, #F4F0E7);

    background:
        rgba(18, 60, 52, 0.88);
}

.rma-map-card__content {
    padding:
        16px;
}

.rma-map-card__location {
    display: block;

    margin-bottom: 5px;

    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.37rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rma-map-card__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: start;
    gap: 12px;

    margin-bottom: 12px;
}

.rma-map-card__heading h3 {
    margin: 0;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1.35rem;
    font-weight: 650;
    line-height: 0.98;
}

.rma-map-card__heading strong {
    white-space: nowrap;

    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1rem;
}

.rma-map-card__specs {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 5px;

    margin-bottom: 12px;
}

.rma-map-card__specs > div {
    display: grid;
    gap: 1px;

    min-width: 0;

    padding:
        8px 6px;

    border:
        1px solid
        rgba(18, 60, 52, 0.07);

    border-radius: 10px;

    background:
        rgba(244, 240, 231, 0.58);

    text-align: center;
}

.rma-map-card__specs strong {
    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.82rem;
}

.rma-map-card__specs span {
    color: #818A86;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.3rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rma-map-card__description {
    margin:
        0 0 13px;

    color: #727C77;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.45rem;
    font-weight: 650;
    line-height: 1.55;
}

.rma-map-card__actions {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 6px;
}

.rma-map-card__viewer,
.rma-map-card__contact {
    display: inline-flex;

    min-height: 39px;

    align-items: center;
    justify-content: center;

    padding:
        8px 10px;

    cursor: pointer;

    border-radius: 999px;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.36rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.rma-map-card__viewer {
    color:
        var(--rma-properties-cream, #F4F0E7);

    border:
        1px solid
        var(--rma-properties-emerald, #123C34);

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-map-card__contact {
    color:
        var(--rma-properties-green, #28675A);

    border:
        1px solid
        rgba(40, 103, 90, 0.15);

    background:
        rgba(168, 185, 165, 0.11);
}


/* =========================================================
   MAP LOADER
   ========================================================= */

.rma-property-map__loader {
    position: absolute;

    top: 20px;
    left: 50%;

    z-index: 700;

    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 10px;

    min-width:
        min(320px, calc(100% - 40px));

    padding:
        11px 15px;

    color:
        var(--rma-properties-cream, #F4F0E7);

    border:
        1px solid
        rgba(244, 240, 231, 0.13);

    border-radius: 999px;

    background:
        rgba(18, 60, 52, 0.92);

    box-shadow:
        0 15px 38px
        rgba(18, 60, 52, 0.18);

    -webkit-backdrop-filter:
        blur(12px);

    backdrop-filter:
        blur(12px);

    transform:
        translateX(-50%);

    transition:
        opacity 250ms ease,
        visibility 250ms ease;
}

.rma-property-map__loader.is-hidden {
    visibility: hidden;

    opacity: 0;

    pointer-events: none;
}

.rma-property-map__loader-icon {
    display: grid;

    width: 35px;
    height: 35px;

    place-items: center;

    color:
        var(--rma-properties-charcoal, #1D2422);

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-map__loader-icon svg {
    width: 17px;
    height: 17px;
}

.rma-property-map__loader small {
    display: block;

    margin-bottom: 1px;

    color:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.33rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rma-property-map__loader strong {
    display: block;

    color:
        var(--rma-properties-cream, #F4F0E7);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.43rem;
    font-weight: 700;
}


/* =========================================================
   MAP SUMMARY
   ========================================================= */

.rma-property-map__summary {
    position: absolute;

    right: 20px;
    bottom: 28px;

    z-index: 700;

    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 9px;

    padding:
        11px 14px;

    border:
        1px solid
        rgba(255, 255, 255, 0.65);

    border-radius: 17px;

    background:
        rgba(252, 251, 247, 0.93);

    box-shadow:
        0 15px 40px
        rgba(18, 60, 52, 0.17);

    -webkit-backdrop-filter:
        blur(12px);

    backdrop-filter:
        blur(12px);
}

.rma-property-map__summary-icon {
    display: grid;

    width: 34px;
    height: 34px;

    place-items: center;

    color:
        var(--rma-properties-green, #28675A);

    border-radius: 50%;

    background:
        rgba(168, 185, 165, 0.14);
}

.rma-property-map__summary-icon svg {
    width: 17px;
    height: 17px;
}

.rma-property-map__summary small {
    display: block;

    margin-bottom: 1px;

    color:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.32rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.rma-property-map__summary strong {
    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.9rem;
}


/* =========================================================
   INFORMATION STRIP
   ========================================================= */

.rma-property-map__information {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 8px;

    margin-top: 14px;
}

.rma-property-map__information-item {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 11px;

    min-width: 0;

    padding:
        14px;

    border:
        1px solid
        rgba(18, 60, 52, 0.08);

    border-radius: 18px;

    background:
        rgba(244, 240, 231, 0.44);
}

.rma-property-map__information-item > span {
    display: grid;

    width: 37px;
    height: 37px;

    place-items: center;

    color:
        var(--rma-properties-green, #28675A);

    border-radius: 50%;

    background:
        rgba(168, 185, 165, 0.13);
}

.rma-property-map__information-item svg {
    width: 18px;
    height: 18px;
}

.rma-property-map__information-item strong {
    display: block;

    margin-bottom: 2px;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.94rem;
}

.rma-property-map__information-item p {
    margin: 0;

    color: #7A837F;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.42rem;
    font-weight: 650;
    line-height: 1.45;
}


/* =========================================================
   NOTICE
   ========================================================= */

.rma-property-map__notice {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 10px;

    margin-top: 22px;
    padding-top: 20px;

    border-top:
        1px solid
        rgba(18, 60, 52, 0.08);
}

.rma-property-map__notice > span {
    display: grid;

    width: 36px;
    height: 36px;

    place-items: center;

    color:
        var(--rma-properties-green, #28675A);

    border:
        1px solid
        rgba(40, 103, 90, 0.14);

    border-radius: 50%;
}

.rma-property-map__notice svg {
    width: 17px;
    height: 17px;
}

.rma-property-map__notice p {
    max-width: 850px;

    margin: 0;

    color: #7A837F;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.47rem;
    font-weight: 650;
    line-height: 1.55;
}


































/* =========================================================
   11. PROPERTY AND LICENSE NOTICES
   ========================================================= */

.rma-property-notices,
.rma-property-notices *,
.rma-property-notices *::before,
.rma-property-notices *::after {
    box-sizing: border-box;
}

.rma-property-notices svg {
    display: block;
    max-width: 100%;
}

.rma-property-notices {
    position: relative;
    isolation: isolate;

    width: 100%;

    padding:
        clamp(78px, 8vw, 126px)
        0;

    overflow: hidden;

    color:
        var(--rma-properties-charcoal, #1D2422);

    background:
        linear-gradient(
            180deg,
            #FCFBF7 0%,
            var(--rma-properties-cream, #F4F0E7) 100%
        );

    scroll-margin-top:
        calc(
            var(--rma-header-total-height, 92px)
            + 20px
        );
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.rma-property-notices__background {
    position: absolute;
    inset: 0;
    z-index: -4;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 94% 8%,
            rgba(185, 154, 88, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 4% 88%,
            rgba(40, 103, 90, 0.08),
            transparent 27%
        );
}

.rma-property-notices::before {
    content: "";

    position: absolute;

    top: 110px;
    right: -280px;

    z-index: -3;

    width: 650px;
    height: 650px;

    pointer-events: none;

    border:
        1px solid
        rgba(185, 154, 88, 0.1);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px
        rgba(185, 154, 88, 0.015);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.rma-property-notices__container {
    position: relative;
    z-index: 1;

    width:
        min(
            calc(100% - 48px),
            1440px
        );

    max-width: 1440px;

    margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.rma-property-notices__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.42fr);

    align-items: end;

    gap:
        clamp(35px, 6vw, 90px);

    margin-bottom:
        clamp(38px, 5vw, 60px);
}


/* =========================================================
   EYEBROW
   ========================================================= */

.rma-property-notices__eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 11px;

    margin-bottom: 16px;

    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.rma-property-notices__eyebrow > span {
    display: grid;

    width: 35px;
    height: 35px;

    flex: 0 0 35px;
    place-items: center;

    color:
        var(--rma-properties-charcoal, #1D2422);

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.78rem;
    font-weight: 700;
}

.rma-property-notices__eyebrow i {
    width: 35px;
    height: 1px;

    flex: 0 0 35px;

    background:
        rgba(40, 103, 90, 0.42);
}


/* =========================================================
   TITLE
   ========================================================= */

.rma-property-notices__heading h2 {
    max-width: 850px;

    margin: 0;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(3rem, 5vw, 5.2rem);

    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.048em;

    text-wrap: balance;
}

.rma-property-notices__heading h2 em {
    color:
        var(--rma-properties-green, #28675A);

    font-weight: 500;
}


/* =========================================================
   INTRO
   ========================================================= */

.rma-property-notices__intro > p {
    margin:
        0 0 17px;

    color: #6D7772;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size:
        clamp(0.75rem, 0.92vw, 0.9rem);

    line-height: 1.75;
}

.rma-property-notices__intro-label {
    display: flex;

    align-items: center;
    gap: 8px;

    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.41rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-transform: uppercase;
}

.rma-property-notices__intro-label > span {
    position: relative;

    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-notices__intro-label > span::after {
    content: "";

    position: absolute;
    inset: -4px;

    border:
        1px solid
        rgba(185, 154, 88, 0.25);

    border-radius: 50%;
}


/* =========================================================
   NOTICE GRID
   ========================================================= */

.rma-property-notices__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        clamp(10px, 1.5vw, 16px);

    margin-bottom:
        clamp(18px, 2vw, 25px);
}


/* =========================================================
   NOTICE CARD
   ========================================================= */

.rma-property-notices__card {
    display: flex;

    min-width: 0;
    min-height: 345px;

    flex-direction: column;

    padding:
        clamp(19px, 2.2vw, 25px);

    border:
        1px solid
        rgba(18, 60, 52, 0.09);

    border-radius:
        clamp(23px, 2.5vw, 30px);

    background:
        rgba(255, 255, 255, 0.72);

    box-shadow:
        0 17px 45px
        rgba(18, 60, 52, 0.055);

    transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.rma-property-notices__card:hover {
    border-color:
        rgba(185, 154, 88, 0.33);

    box-shadow:
        0 25px 60px
        rgba(18, 60, 52, 0.085);

    transform:
        translateY(-4px);
}


/* =========================================================
   CARD TOP
   ========================================================= */

.rma-property-notices__card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 28px;
}

.rma-property-notices__number {
    color:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1rem;
    font-weight: 650;
}

.rma-property-notices__icon {
    display: grid;

    width: 45px;
    height: 45px;

    place-items: center;

    color:
        var(--rma-properties-green, #28675A);

    border:
        1px solid
        rgba(40, 103, 90, 0.11);

    border-radius: 50%;

    background:
        rgba(168, 185, 165, 0.12);
}

.rma-property-notices__icon svg {
    width: 20px;
    height: 20px;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.rma-property-notices__card-content {
    flex: 1 1 auto;
}

.rma-property-notices__card-content > small {
    display: block;

    margin-bottom: 8px;

    color:
        var(--rma-properties-green, #28675A);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.39rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rma-property-notices__card-content h3 {
    max-width: 280px;

    margin:
        0 0 13px;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(1.45rem, 1.9vw, 1.85rem);

    font-weight: 650;
    line-height: 0.98;
}

.rma-property-notices__card-content p {
    margin: 0;

    color: #737D78;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size:
        clamp(0.54rem, 0.62vw, 0.63rem);

    font-weight: 550;
    line-height: 1.68;
}


/* =========================================================
   CARD FOOTER
   ========================================================= */

.rma-property-notices__card-footer {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: start;
    gap: 8px;

    margin-top: 22px;
    padding-top: 15px;

    border-top:
        1px solid
        rgba(18, 60, 52, 0.07);
}

.rma-property-notices__card-footer > span {
    width: 7px;
    height: 7px;

    margin-top: 3px;

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-notices__card-footer p {
    margin: 0;

    color: #858D89;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.4rem;
    font-weight: 700;
    line-height: 1.55;
}


/* =========================================================
   LICENSE PANEL
   ========================================================= */

.rma-property-notices__license {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.68fr);

    align-items: center;

    gap:
        clamp(30px, 5vw, 70px);

    padding:
        clamp(25px, 3.5vw, 42px);

    overflow: hidden;

    color:
        var(--rma-properties-cream, #F4F0E7);

    border:
        1px solid
        rgba(244, 240, 231, 0.08);

    border-radius:
        clamp(28px, 3.5vw, 40px);

    background:
        linear-gradient(
            135deg,
            #194F43 0%,
            var(--rma-properties-emerald, #123C34) 58%,
            #0B2C25 100%
        );

    box-shadow:
        0 27px 75px
        rgba(18, 60, 52, 0.15);
}

.rma-property-notices__license::before {
    content: "";

    position: absolute;

    top: -190px;
    right: -120px;

    width: 470px;
    height: 470px;

    pointer-events: none;

    border:
        1px solid
        rgba(185, 154, 88, 0.13);

    border-radius: 50%;

    box-shadow:
        0 0 0 75px
        rgba(185, 154, 88, 0.015);
}


/* =========================================================
   LICENSE MAIN
   ========================================================= */

.rma-property-notices__license-main {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: start;
    gap: 17px;
}

.rma-property-notices__license-icon {
    display: grid;

    width: 58px;
    height: 58px;

    place-items: center;

    color:
        var(--rma-properties-charcoal, #1D2422);

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-notices__license-icon svg {
    width: 26px;
    height: 26px;
}

.rma-property-notices__license-copy small {
    display: block;

    margin-bottom: 7px;

    color:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.42rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.rma-property-notices__license-copy h3 {
    max-width: 570px;

    margin:
        0 0 12px;

    color:
        var(--rma-properties-cream, #F4F0E7);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size:
        clamp(1.8rem, 2.7vw, 2.8rem);

    font-weight: 600;
    line-height: 0.95;
}

.rma-property-notices__license-copy p {
    max-width: 680px;

    margin: 0;

    color:
        rgba(244, 240, 231, 0.59);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size:
        clamp(0.58rem, 0.68vw, 0.68rem);

    font-weight: 550;
    line-height: 1.7;
}


/* =========================================================
   JURISDICTIONS
   ========================================================= */

.rma-property-notices__jurisdictions {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 7px;
}

.rma-property-notices__jurisdictions > div {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 9px;

    min-width: 0;

    padding:
        12px;

    border:
        1px solid
        rgba(244, 240, 231, 0.1);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.035);
}

.rma-property-notices__jurisdictions > div > span {
    display: grid;

    width: 37px;
    height: 37px;

    flex: 0 0 37px;
    place-items: center;

    color:
        var(--rma-properties-charcoal, #1D2422);

    border-radius: 50%;

    background:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.64rem;
    font-weight: 700;
}

.rma-property-notices__jurisdictions small {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(244, 240, 231, 0.4);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.31rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.rma-property-notices__jurisdictions strong {
    display: block;

    overflow-wrap: break-word;

    color:
        var(--rma-properties-cream, #F4F0E7);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 0.8rem;
    line-height: 1;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.rma-property-notices__bottom {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap:
        clamp(20px, 4vw, 55px);

    margin-top: 14px;

    padding:
        18px 20px;

    border:
        1px solid
        rgba(18, 60, 52, 0.08);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.58);
}

.rma-property-notices__bottom-copy {
    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 12px;

    min-width: 0;
}

.rma-property-notices__bottom-copy > span {
    display: grid;

    width: 43px;
    height: 43px;

    place-items: center;

    color:
        var(--rma-properties-green, #28675A);

    border-radius: 50%;

    background:
        rgba(168, 185, 165, 0.14);
}

.rma-property-notices__bottom-copy svg {
    width: 20px;
    height: 20px;
}

.rma-property-notices__bottom-copy small {
    display: block;

    margin-bottom: 2px;

    color:
        var(--rma-properties-gold, #B99A58);

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.36rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rma-property-notices__bottom-copy strong {
    display: block;

    margin-bottom: 3px;

    color:
        var(--rma-properties-charcoal, #1D2422);

    font-family:
        var(--font-heading, "Cormorant Garamond", serif);

    font-size: 1.08rem;
    line-height: 1;
}

.rma-property-notices__bottom-copy p {
    margin: 0;

    color: #7B847F;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.43rem;
    font-weight: 650;
    line-height: 1.5;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.rma-property-notices__actions {
    display: flex;

    align-items: center;
    gap: 7px;
}

.rma-property-notices__action {
    display: inline-flex;

    min-height: 45px;

    align-items: center;
    justify-content: center;
    gap: 7px;

    padding:
        9px 15px;

    white-space: nowrap;

    border-radius: 999px;

    font-family:
        var(--font-body, "Manrope", sans-serif);

    font-size: 0.41rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 200ms ease,
        border-color 200ms ease,
        background-color 200ms ease,
        transform 200ms ease;
}

.rma-property-notices__action svg {
    width: 15px;
    height: 15px;

    transition:
        transform 200ms ease;
}

.rma-property-notices__action--primary {
    color:
        var(--rma-properties-cream, #F4F0E7);

    border:
        1px solid
        var(--rma-properties-emerald, #123C34);

    background:
        var(--rma-properties-emerald, #123C34);
}

.rma-property-notices__action--primary svg {
    color:
        var(--rma-properties-gold, #B99A58);
}

.rma-property-notices__action--primary:hover {
    background:
        var(--rma-properties-green, #28675A);

    border-color:
        var(--rma-properties-green, #28675A);

    transform:
        translateY(-2px);
}

.rma-property-notices__action--primary:hover svg {
    transform:
        translateX(3px);
}

.rma-property-notices__action--secondary {
    color:
        var(--rma-properties-green, #28675A);

    border:
        1px solid
        rgba(40, 103, 90, 0.14);

    background:
        rgba(168, 185, 165, 0.1);
}

.rma-property-notices__action--secondary:hover {
    border-color:
        rgba(185, 154, 88, 0.4);

    background:
        rgba(185, 154, 88, 0.09);

    transform:
        translateY(-2px);
}
































/* =========================================================
   DESKTOP — 1200 TO 1499
   ========================================================= */

@media (max-width: 1499px) {
    .rma-properties-hero
    .rma-properties-hero__container {
        width:
            min(
                calc(100% - 48px),
                1280px
            );

        grid-template-columns:
            minmax(0, 1fr)
            minmax(390px, 0.72fr);

        gap:
            clamp(40px, 4vw, 64px);
    }

    .rma-properties-hero__content {
        max-width: 680px;
    }

    .rma-properties-hero h1 {
        max-width: 680px;

        font-size:
            clamp(3.4rem, 4.8vw, 5.1rem);
    }

    .rma-properties-hero__visual {
        max-width: 520px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 1199px) {
      .rma-property-notices__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rma-property-notices__card {
        min-height: 315px;
    }

    .rma-property-notices__license {
        grid-template-columns: 1fr;
    }

    .rma-property-notices__jurisdictions {
        max-width: 720px;
    }
     .rma-property-viewer__body {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(400px, 0.78fr);
    }

    .rma-property-viewer__specs {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rma-property-viewer__cta {
        grid-template-columns: 1fr;
    }

    .rma-property-viewer__cta-actions {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        min-width: 0;
    }
       .rma-properties-catalog__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .rma-properties-hero {
        min-height: 0;

        padding:
            66px 0 86px;
    }

    .rma-properties-hero
    .rma-properties-hero__container {
        width:
            min(
                calc(100% - 40px),
                980px
            );

        grid-template-columns: 1fr;

        gap: 42px;
    }

    .rma-properties-hero__content {
        max-width: 760px;
    }

    .rma-properties-hero h1 {
        max-width: 760px;

        font-size:
            clamp(3.5rem, 7vw, 5.5rem);
    }

    .rma-properties-hero__description {
        max-width: 680px;
    }

    .rma-properties-hero__visual {
        width: 100%;
        max-width: 760px;

        justify-self: start;

        padding:
            0 28px 40px 30px;
    }

    .rma-properties-hero__image {
        min-height:
            clamp(480px, 64vw, 650px);
    }

    .rma-properties-hero__search-card {
        right: 0;
    }
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 920px) {
      .rma-property-notices__container {
        width:
            min(
                calc(100% - 40px),
                820px
            );
    }

    .rma-property-notices__header {
        grid-template-columns: 1fr;
    }

    .rma-property-notices__intro {
        max-width: 680px;
    }

    .rma-property-notices__bottom {
        grid-template-columns: 1fr;
    }

    .rma-property-notices__actions {
        width: 100%;
    }

    .rma-property-notices__action {
        flex: 1 1 0;
    }
       .rma-property-map__container {
        width:
            min(
                calc(100% - 40px),
                820px
            );
    }

    .rma-property-map__header {
        grid-template-columns: 1fr;
    }

    .rma-property-map__intro {
        max-width: 680px;
    }

    .rma-property-map__toolbar {
        align-items: stretch;

        flex-direction: column;
    }

    .rma-property-map__filters {
        width: fit-content;
    }

    .rma-property-map__reset {
        align-self: flex-start;
    }

    .rma-property-map__information {
        grid-template-columns: 1fr;
    }
       .rma-property-viewer {
        padding: 0;
    }

    .rma-property-viewer__dialog {
        width: 100%;
        height: 100dvh;

        max-height: none;

        border: 0;
        border-radius: 0;
    }

    .rma-property-viewer__topbar {
        min-height: 67px;
    }

    .rma-property-viewer__body {
        display: block;

        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .rma-property-viewer__gallery {
        display: block;

        padding:
            12px;

        overflow: visible;
    }

    .rma-property-viewer__stage {
        height:
            min(
                62svh,
                560px
            );

        min-height: 390px;
    }

    .rma-property-viewer__information {
        overflow: visible;

        padding:
            28px
            20px
            45px;
    }
    .rma-properties-catalog__container {
        width:
            min(
                calc(100% - 40px),
                820px
            );
    }

    .rma-properties-catalog__header {
        grid-template-columns: 1fr;
    }

    .rma-properties-catalog__intro {
        max-width: 680px;
    }

    .rma-properties-catalog__grid.is-list-view
    .rma-property-card {
        grid-template-columns:
            minmax(250px, .4fr)
            minmax(0, .6fr);
    }
    .rma-property-search__header {
        grid-template-columns: 1fr;
    }

    .rma-property-search__intro {
        max-width: 700px;
    }

    .rma-property-search__form {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rma-property-search__field--wide {
        grid-column:
            span 1;
    }

    .rma-property-search__assistance {
        grid-template-columns:
            auto minmax(0, 1fr);
    }

    .rma-property-search__assistance-action {
        grid-column:
            1 / -1;

        width: 100%;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {
      .rma-property-notices {
        padding:
            70px 0;
    }

    .rma-property-notices__container {
        width:
            calc(100% - 32px);
    }

    .rma-property-notices__heading h2 {
        font-size:
            clamp(2.65rem, 11vw, 4rem);

        line-height: 0.91;
    }

    .rma-property-notices__grid {
        grid-template-columns: 1fr;
    }

    .rma-property-notices__card {
        min-height: 0;
    }

    .rma-property-notices__license {
        padding:
            25px 20px;

        border-radius: 29px;
    }

    .rma-property-notices__license-main {
        grid-template-columns: 1fr;
    }

    .rma-property-notices__jurisdictions {
        grid-template-columns: 1fr;
    }

    .rma-property-notices__bottom {
        padding:
            17px;
    }

    .rma-property-notices__actions {
        display: grid;

        grid-template-columns: 1fr;
    }

    .rma-property-notices__action {
        width: 100%;
    }
      .rma-property-map {
        padding:
            70px 0;
    }

    .rma-property-map__container {
        width:
            calc(100% - 32px);
    }

    .rma-property-map__heading h2 {
        font-size:
            clamp(2.65rem, 11vw, 4rem);

        line-height: 0.91;
    }

    .rma-property-map__filters {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        border-radius: 23px;
    }

    .rma-property-map__filter {
        width: 100%;
    }

    .rma-property-map__reset {
        width: 100%;
    }

    .rma-property-map__canvas {
        height: 68svh;
        min-height: 500px;
    }

    .rma-property-map__frame {
        border-radius: 28px;
    }

    .rma-property-map__summary {
        right: 12px;
        bottom: 25px;
    }

    .rma-property-map__loader {
        top: 12px;
    }

    .rma-map-card__heading {
        grid-template-columns: 1fr;
    }
      .rma-property-viewer__brand-mark {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }

    .rma-property-viewer__brand small {
        display: none;
    }

    .rma-property-viewer__brand strong {
        font-size: 0.93rem;
    }

    .rma-property-viewer__share span {
        display: none;
    }

    .rma-property-viewer__share {
        width: 43px;

        padding: 0;
    }

    .rma-property-viewer__stage {
        height: 52svh;
        min-height: 340px;

        border-radius: 22px;
    }

    .rma-property-viewer__gallery-button {
        width: 40px;
        height: 40px;
    }

    .rma-property-viewer__heading {
        grid-template-columns: 1fr;
    }

    .rma-property-viewer__price {
        min-width: 0;

        text-align: left;
    }

    .rma-property-viewer__specs {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rma-property-viewer__highlight-grid,
    .rma-property-viewer__detail-grid {
        grid-template-columns: 1fr;
    }

    .rma-property-viewer__detail:nth-child(odd) {
        border-right: 0;
    }

    .rma-property-viewer__cta-actions {
        grid-template-columns: 1fr;
    }
     .rma-properties-catalog {
        padding:
            70px 0;
    }

    .rma-properties-catalog__container {
        width:
            calc(100% - 32px);
    }

    .rma-properties-catalog__heading h2 {
        font-size:
            clamp(2.65rem, 11vw, 4rem);
    }

    .rma-properties-catalog__filters {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        border-radius: 24px;
    }

    .rma-properties-catalog__filter {
        width: 100%;
    }

    .rma-properties-catalog__grid {
        grid-template-columns: 1fr;
    }

    .rma-properties-catalog__grid.is-list-view
    .rma-property-card {
        display: block;
    }

    .rma-properties-catalog__grid.is-list-view
    .rma-property-card__media {
        min-height: 0;

        aspect-ratio: 16 / 10;
    }

    .rma-properties-catalog__empty {
        grid-template-columns: 1fr;
    }

    .rma-properties-catalog__empty > a {
        width: 100%;
    }
      :root {
        --rma-properties-header-space:
            var(
                --rma-header-mobile-total-height,
                74px
            );
    }

    .rma-properties-hero {
        padding:
            48px 0 72px;
    }

    .rma-properties-hero
    .rma-properties-hero__container {
        width:
            calc(100% - 32px);

        max-width: 620px;

        gap: 30px;
    }

    .rma-properties-hero__breadcrumb {
        margin-bottom: 14px;
    }

    .rma-properties-hero__eyebrow {
        margin-bottom: 14px;

        font-size: 0.52rem;
    }

    .rma-properties-hero h1 {
        margin-bottom: 18px;

        font-size:
            clamp(2.8rem, 11.5vw, 4.25rem);

        line-height: 0.91;
    }

    .rma-properties-hero__description {
        font-size: 0.76rem;
        line-height: 1.65;
    }

    .rma-properties-hero__areas {
        margin-bottom: 22px;
    }

    .rma-properties-hero__actions {
        display: grid;

        grid-template-columns: 1fr;

        margin-bottom: 23px;
    }

    .rma-properties-hero__button {
        width: 100%;
    }

    .rma-properties-hero__visual {
        max-width: none;

        padding: 0;
    }

    .rma-properties-hero__image {
        min-height:
            clamp(420px, 120vw, 560px);

        border-radius: 29px;
    }

    .rma-properties-hero__advisor-card {
        top: 15px;
        left: 14px;

        width:
            calc(100% - 28px);
    }

    .rma-properties-hero__search-card {
        position: relative;

        right: auto;
        bottom: auto;

        width:
            calc(100% - 24px);

        margin:
            -102px auto 0;

        padding: 18px;

        border-radius: 23px;
    }

    .rma-properties-hero__search-options {
        grid-template-columns: 1fr;
    }

    .rma-properties-hero__search-options a {
        grid-template-columns:
            auto minmax(0, 1fr);

        align-items: center;

        min-height: 62px;
    }

    .rma-properties-hero__scroll span {
        display: none;
    }
    .rma-property-search {
        padding:
            72px 0;

        scroll-margin-top:
            calc(
                var(--rma-header-mobile-total-height, 74px)
                + 16px
            );
    }

    .rma-property-search__heading h2 {
        font-size:
            clamp(2.7rem, 11.5vw, 4rem);

        line-height: 0.91;
    }

    .rma-property-search__panel {
        padding:
            18px 15px;

        border-radius: 28px;
    }

    .rma-property-search__panel-top {
        margin-bottom: 0;
        padding-bottom: 0;

        border-bottom: 0;
    }

    .rma-property-search__panel-icon {
        width: 41px;
        height: 41px;
    }

    .rma-property-search__mobile-toggle {
        display: inline-flex;
    }

    .rma-property-search__form {
        display: none;

        grid-template-columns: 1fr;

        gap: 11px;

        margin-top: 19px;
        padding-top: 19px;

        border-top:
            1px solid
            rgba(18, 60, 52, 0.09);
    }

    .rma-property-search__form.is-open {
        display: grid;
    }

    .rma-property-search__field--wide {
        grid-column: auto;
    }

    .rma-property-search__actions {
        display: grid;

        grid-template-columns: 1fr;

        margin-top: 4px;
    }

    .rma-property-search__reset,
    .rma-property-search__submit {
        width: 100%;
    }

    .rma-property-search__active {
        grid-template-columns: 1fr;

        align-items: start;
    }

    .rma-property-search__clear-all {
        justify-self: start;
    }

    .rma-property-search__assistance {
        grid-template-columns:
            auto minmax(0, 1fr);

        padding:
            18px 16px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {
     .rma-property-notices__container {
        width:
            calc(100% - 28px);
    }

    .rma-property-notices__eyebrow {
        font-size: 0.5rem;
    }

    .rma-property-notices__eyebrow > span {
        width: 31px;
        height: 31px;

        flex-basis: 31px;
    }

    .rma-property-notices__eyebrow i {
        width: 25px;

        flex-basis: 25px;
    }

    .rma-property-notices__license-icon {
        width: 52px;
        height: 52px;
    }

    .rma-property-notices__bottom-copy {
        grid-template-columns: 1fr;
    }
      .rma-property-map__container {
        width:
            calc(100% - 28px);
    }

    .rma-property-map__eyebrow {
        font-size: 0.5rem;
    }

    .rma-property-map__eyebrow > span {
        width: 31px;
        height: 31px;

        flex-basis: 31px;
    }

    .rma-property-map__eyebrow i {
        width: 25px;

        flex-basis: 25px;
    }

    .rma-property-map__canvas {
        min-height: 470px;
    }

    .rma-property-map__summary {
        left: 12px;
        right: auto;
    }

    .rma-map-card__actions {
        grid-template-columns: 1fr;
    }
     .rma-property-viewer__topbar {
        padding:
            10px 12px;
    }

    .rma-property-viewer__stage {
        height: 46svh;
        min-height: 300px;
    }

    .rma-property-viewer__information {
        padding:
            25px 16px 40px;
    }

    .rma-property-viewer__heading h2 {
        font-size:
            clamp(2.3rem, 11vw, 3.3rem);
    }

    .rma-property-viewer__specs {
        grid-template-columns: 1fr;
    }
     .rma-properties-catalog__container {
        width:
            calc(100% - 28px);
    }

    .rma-property-card__title-row {
        grid-template-columns: 1fr;
    }

    .rma-property-card__features {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rma-property-card--sold
    .rma-property-card__features {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .rma-property-card__actions {
        grid-template-columns: 1fr;
    }
      .rma-properties-hero
    .rma-properties-hero__container {
        width:
            calc(100% - 28px);
    }

    .rma-properties-hero__eyebrow > span {
        width: 31px;
        height: 31px;

        flex-basis: 31px;
    }

    .rma-properties-hero__eyebrow i {
        width: 25px;

        flex-basis: 25px;
    }

    .rma-properties-hero h1 {
        font-size:
            clamp(2.55rem, 12vw, 3.7rem);
    }

    .rma-properties-hero__notice {
        grid-template-columns: 1fr;
    }

    .rma-properties-hero__advisor-card {
        align-items: start;
    }

    .rma-properties-hero__advisor-mark {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }
    .rma-property-search__eyebrow {
        font-size: 0.51rem;
    }

    .rma-property-search__eyebrow > span {
        width: 31px;
        height: 31px;

        flex-basis: 31px;
    }

    .rma-property-search__eyebrow i {
        width: 25px;

        flex-basis: 25px;
    }

    .rma-property-search__panel-title {
        grid-template-columns:
            minmax(0, 1fr);
    }

    .rma-property-search__panel-icon {
        display: none;
    }

    .rma-property-search__assistance {
        grid-template-columns: 1fr;
    }
}



@media (max-height: 780px) and (min-width: 1200px) {
    .rma-properties-hero {
        min-height:
            calc(
                760px -
                var(--rma-properties-header-space)
            );

        padding:
            30px 0 62px;
    }

    .rma-properties-hero h1 {
        font-size:
            clamp(3.25rem, 4.3vw, 4.9rem);
    }

    .rma-properties-hero__image {
        min-height: 520px;
    }

    .rma-properties-hero__description {
        margin-bottom: 17px;
    }

    .rma-properties-hero__areas {
        margin-bottom: 20px;
    }

    .rma-properties-hero__actions {
        margin-bottom: 19px;
    }
}


/* =========================================================
   TOUCH / REDUCED MOTION
   ========================================================= */

@media (hover: none) {
       .rma-property-notices__card:hover,
    .rma-property-notices__action:hover {
        transform: none;
    }
      .rma-property-map__reset:hover {
        transform: none;
    }

    .rma-house-marker:hover
    .rma-house-marker__pin {
        transform:
            rotate(-45deg);
    }
      .rma-property-card:hover {
        transform: none;
    }

    .rma-property-card:hover
    .rma-property-card__media img {
        transform: none;
    }
    .rma-property-search__reset:hover,
    .rma-property-search__submit:hover,
    .rma-property-search__assistance-action:hover {
        transform: none;
    }
     .rma-properties-hero__button:hover,
    .rma-properties-hero__search-options a:hover,
    .rma-properties-hero__search-action:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
     .rma-property-notices__card,
    .rma-property-notices__action,
    .rma-property-notices__action svg {
        transition: none;
    }
     .rma-property-map__filter,
    .rma-property-map__reset,
    .rma-house-marker__pin,
    .rma-property-map__loader {
        transition: none;
    }
    .rma-property-viewer__share,
    .rma-property-viewer__close,
    .rma-property-viewer__gallery-button,
    .rma-property-viewer__thumbnail {
        transition: none;
    }
    .rma-property-card,
    .rma-property-card__media img,
    .rma-properties-catalog__filter {
        transition: none;
    }
    
    .rma-property-search__control,
    .rma-property-search__reset,
    .rma-property-search__submit,
    .rma-property-search__submit svg,
    .rma-property-search__assistance-action,
    .rma-property-search__assistance-action svg {
        transition: none;
    }
}






































/* =========================================================
   PROPERTIES PAGE — GLOBAL READABILITY OVERRIDE
   AGREGAR AL FINAL ABSOLUTO DEL CSS

   Corrige:
   - Hero
   - Search / Filters
   - Available Properties Grid
   - Property Cards
   - Full Property Viewer
   - Property Location Map
   - Leaflet Popups
   - Property & License Notices

   No modifica:
   - H1 / H2 / H3 principales
   - Layouts
   - Imágenes
   - Mapa Leaflet
   - Modal
   - Animaciones
   ========================================================= */


/* =========================================================
   READABILITY TOKENS
   ========================================================= */

.rma-properties-hero,
.rma-property-search,
.rma-properties-catalog,
.rma-property-viewer,
.rma-property-map,
.rma-property-notices {

    --rma-prop-body:
        clamp(1rem, 1.05vw, 1.075rem);

    --rma-prop-body-compact:
        clamp(0.94rem, 0.98vw, 1rem);

    --rma-prop-secondary:
        clamp(0.86rem, 0.9vw, 0.92rem);

    --rma-prop-label:
        clamp(0.76rem, 0.8vw, 0.82rem);

    --rma-prop-button:
        clamp(0.79rem, 0.82vw, 0.84rem);

    --rma-prop-micro:
        clamp(0.72rem, 0.75vw, 0.78rem);

}


/* =========================================================
   01. PROPERTIES HERO
   ========================================================= */


/* Breadcrumb */

.rma-properties-hero__breadcrumb {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.4 !important;
}


/* Eyebrow */

.rma-properties-hero__eyebrow {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.3 !important;
}


/* Main hero paragraph */

.rma-properties-hero__description {
    font-size:
        var(--rma-prop-body) !important;

    line-height: 1.72 !important;
}


/* Licensed area chips */

.rma-properties-hero__areas span {
    min-height: 32px;

    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Main buttons */

.rma-properties-hero__button {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* Hero notice */

.rma-properties-hero__notice p {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.6 !important;
}


/* =========================================================
   HERO — ADVISOR CARD
   ========================================================= */

.rma-properties-hero__advisor-card small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}

.rma-properties-hero__advisor-card strong {
    font-size: 1.08rem !important;

    line-height: 1.15 !important;
}

.rma-properties-hero__advisor-card a {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.4 !important;
}


/* =========================================================
   HERO — SEARCH CARD
   ========================================================= */

.rma-properties-hero__search-heading small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}

.rma-properties-hero__search-heading strong {
    font-size:
        clamp(1.2rem, 1.6vw, 1.45rem) !important;

    line-height: 1.1 !important;
}


/* Search option number */

.rma-properties-hero__search-options a > span {
    font-size:
        var(--rma-prop-secondary) !important;
}


/* Search option label */

.rma-properties-hero__search-options small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Search option value */

.rma-properties-hero__search-options strong {
    font-size: 1rem !important;

    line-height: 1.15 !important;
}


/* Search CTA */

.rma-properties-hero__search-action {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* Scroll indicator */

.rma-properties-hero__scroll {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* =========================================================
   02. PROPERTY SEARCH
   El archivo incluye reglas responsive de esta sección.
   Este bloque evita que su texto termine demasiado pequeño.
   ========================================================= */

.rma-property-search {
    font-size: 1rem;
}

.rma-property-search__eyebrow {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.3 !important;
}

.rma-property-search__intro p {
    font-size:
        var(--rma-prop-body) !important;

    line-height: 1.72 !important;
}

.rma-property-search label {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.4 !important;
}

.rma-property-search input,
.rma-property-search select,
.rma-property-search textarea {
    font-size: 1rem !important;
}

.rma-property-search__mobile-toggle,
.rma-property-search__control,
.rma-property-search__reset,
.rma-property-search__submit,
.rma-property-search__clear-all,
.rma-property-search__assistance-action {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* =========================================================
   03. AVAILABLE PROPERTIES CATALOG
   ========================================================= */


/* Eyebrow */

.rma-properties-catalog__eyebrow {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.3 !important;
}


/* Introduction */

.rma-properties-catalog__intro > p {
    font-size:
        var(--rma-prop-body) !important;

    line-height: 1.72 !important;
}


/* Source indicator */

.rma-properties-catalog__source {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.4 !important;
}


/* Filters */

.rma-properties-catalog__filter {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}

.rma-properties-catalog__filter strong {
    font-size:
        var(--rma-prop-micro) !important;
}


/* =========================================================
   04. PROPERTY CARDS
   ========================================================= */


/* Status and property type */

.rma-property-card__status,
.rma-property-card__type {
    min-height: 31px;

    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Location */

.rma-property-card__location {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.35 !important;
}


/* Feature labels */

.rma-property-card__features span {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Available property note */

.rma-property-card__available-note p {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.55 !important;
}


/* Sold transaction label */

.rma-property-card__sale small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Sold transaction value */

.rma-property-card__sale strong {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.45 !important;
}


/* Property card buttons */

.rma-property-card__details,
.rma-property-card__contact {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* =========================================================
   CATALOG — EMPTY STATE
   ========================================================= */

.rma-properties-catalog__empty small {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.3 !important;
}

.rma-properties-catalog__empty p {
    font-size:
        var(--rma-prop-body) !important;

    line-height: 1.65 !important;
}

.rma-properties-catalog__empty > a {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* Catalog disclaimer */

.rma-properties-catalog__notice p {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.6 !important;
}


/* =========================================================
   05. FULL PROPERTY VIEWER
   ========================================================= */


/* Viewer branding label */

.rma-property-viewer__brand small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Viewer branding */

.rma-property-viewer__brand strong {
    font-size: 1.12rem !important;

    line-height: 1.1 !important;
}


/* Share button */

.rma-property-viewer__share {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* Gallery badges */

.rma-property-viewer__status,
.rma-property-viewer__gallery-count {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Property location */

.rma-property-viewer__location {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.35 !important;
}


/* Price label */

.rma-property-viewer__price small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Specification labels */

.rma-property-viewer__specs small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Specification values */

.rma-property-viewer__specs strong {
    font-size: 1rem !important;

    line-height: 1.15 !important;
}


/* Section numbers */

.rma-property-viewer__section-label > span {
    font-size:
        var(--rma-prop-secondary) !important;
}


/* Section label */

.rma-property-viewer__section-label strong {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.3 !important;
}


/* MAIN PROPERTY DESCRIPTION */

.rma-property-viewer__description > p {
    font-size:
        var(--rma-prop-body) !important;

    line-height: 1.78 !important;
}


/* Highlights */

.rma-property-viewer__highlight {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.55 !important;
}


/* Detail field label */

.rma-property-viewer__detail span {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Detail field value */

.rma-property-viewer__detail strong {
    font-size: 1rem !important;

    line-height: 1.2 !important;
}


/* =========================================================
   VIEWER — RECORD
   ========================================================= */

.rma-property-viewer__record small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}

.rma-property-viewer__record strong {
    font-size: 1.08rem !important;

    line-height: 1.2 !important;
}

.rma-property-viewer__record p {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.6 !important;
}


/* =========================================================
   VIEWER — CTA
   ========================================================= */

.rma-property-viewer__cta small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}

.rma-property-viewer__cta strong {
    font-size:
        clamp(1.2rem, 1.5vw, 1.35rem) !important;

    line-height: 1.15 !important;
}

.rma-property-viewer__cta-primary,
.rma-property-viewer__cta-secondary {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* Viewer notice */

.rma-property-viewer__notice p {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.6 !important;
}


/* =========================================================
   06. PROPERTY LOCATION MAP
   ========================================================= */


/* Eyebrow */

.rma-property-map__eyebrow {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.3 !important;
}


/* Header introduction */

.rma-property-map__intro > p {
    font-size:
        var(--rma-prop-body) !important;

    line-height: 1.72 !important;
}


/* Legend */

.rma-property-map__legend > span {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.35 !important;
}


/* Filters */

.rma-property-map__filter {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* Reset */

.rma-property-map__reset {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* Leaflet attribution is intentionally smaller */

.rma-property-map .leaflet-control-attribution {
    font-size: 10px !important;
    line-height: 1.35 !important;
}


/* =========================================================
   07. LEAFLET PROPERTY POPUPS
   ========================================================= */


/* Status */

.rma-map-card__status {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Location */

.rma-map-card__location {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.35 !important;
}


/* Specification labels */

.rma-map-card__specs span {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}


/* Popup description */

.rma-map-card__description {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.58 !important;
}


/* Popup buttons */

.rma-map-card__viewer,
.rma-map-card__contact {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* =========================================================
   MAP LOADER
   ========================================================= */

.rma-property-map__loader small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}

.rma-property-map__loader strong {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.4 !important;
}


/* =========================================================
   MAP SUMMARY
   ========================================================= */

.rma-property-map__summary small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}

.rma-property-map__summary strong {
    font-size: 1.02rem !important;

    line-height: 1.15 !important;
}


/* =========================================================
   MAP INFORMATION CARDS
   ========================================================= */

.rma-property-map__information-item strong {
    font-size: 1.05rem !important;

    line-height: 1.2 !important;
}

.rma-property-map__information-item p {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.55 !important;
}


/* Map notice */

.rma-property-map__notice p {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.6 !important;
}


/* =========================================================
   08. PROPERTY & LICENSE NOTICES
   ========================================================= */


/* Eyebrow */

.rma-property-notices__eyebrow {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.3 !important;
}


/* Header introduction */

.rma-property-notices__intro > p {
    font-size:
        var(--rma-prop-body) !important;

    line-height: 1.72 !important;
}


/* Intro status label */

.rma-property-notices__intro-label {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.4 !important;
}


/* =========================================================
   NOTICE CARDS
   ========================================================= */


/* Card category */

.rma-property-notices__card-content > small {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.3 !important;
}


/* CARD MAIN PARAGRAPH */

.rma-property-notices__card-content p {
    font-size:
        var(--rma-prop-body-compact) !important;

    line-height: 1.7 !important;
}


/* Card secondary note */

.rma-property-notices__card-footer p {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.55 !important;
}


/* =========================================================
   LICENSE PANEL
   ========================================================= */

.rma-property-notices__license-copy small {
    font-size:
        var(--rma-prop-label) !important;

    line-height: 1.3 !important;
}


/* License paragraph */

.rma-property-notices__license-copy p {
    font-size:
        var(--rma-prop-body-compact) !important;

    line-height: 1.72 !important;
}


/* =========================================================
   JURISDICTIONS
   ========================================================= */

.rma-property-notices__jurisdictions small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}

.rma-property-notices__jurisdictions strong {
    font-size: 1rem !important;

    line-height: 1.15 !important;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.rma-property-notices__bottom-copy small {
    font-size:
        var(--rma-prop-micro) !important;

    line-height: 1.3 !important;
}

.rma-property-notices__bottom-copy strong {
    font-size: 1.12rem !important;

    line-height: 1.15 !important;
}

.rma-property-notices__bottom-copy p {
    font-size:
        var(--rma-prop-secondary) !important;

    line-height: 1.55 !important;
}


/* CTA buttons */

.rma-property-notices__action {
    font-size:
        var(--rma-prop-button) !important;

    line-height: 1.3 !important;
}


/* =========================================================
   MOBILE READABILITY
   Impide que las reglas responsive anteriores vuelvan
   a reducir textos como 0.50rem, 0.51rem o 0.76rem.
   ========================================================= */

@media (max-width: 680px) {

    /* -----------------------------------------------------
       MAIN BODY TEXT — 16px
       ----------------------------------------------------- */

    .rma-properties-hero__description,

    .rma-property-search__intro p,

    .rma-properties-catalog__intro > p,
    .rma-properties-catalog__empty p,

    .rma-property-viewer__description > p,

    .rma-property-map__intro > p,

    .rma-property-notices__intro > p,
    .rma-property-notices__card-content p,
    .rma-property-notices__license-copy p {

        font-size: 1rem !important;

        line-height: 1.72 !important;

    }


    /* -----------------------------------------------------
       SECONDARY TEXT — approx. 14.5px
       ----------------------------------------------------- */

    .rma-properties-hero__notice p,
    .rma-properties-hero__advisor-card a,

    .rma-property-card__available-note p,
    .rma-property-card__sale strong,
    .rma-properties-catalog__notice p,

    .rma-property-viewer__highlight,
    .rma-property-viewer__record p,
    .rma-property-viewer__notice p,

    .rma-map-card__description,
    .rma-property-map__information-item p,
    .rma-property-map__notice p,

    .rma-property-notices__card-footer p,
    .rma-property-notices__bottom-copy p {

        font-size: 0.9rem !important;

        line-height: 1.58 !important;

    }


    /* -----------------------------------------------------
       LABELS — at least 12px
       ----------------------------------------------------- */

    .rma-properties-hero__breadcrumb,
    .rma-properties-hero__eyebrow,
    .rma-properties-hero__areas span,
    .rma-properties-hero__advisor-card small,
    .rma-properties-hero__search-heading small,
    .rma-properties-hero__search-options small,

    .rma-property-search__eyebrow,

    .rma-properties-catalog__eyebrow,
    .rma-properties-catalog__source,

    .rma-property-card__status,
    .rma-property-card__type,
    .rma-property-card__location,
    .rma-property-card__features span,
    .rma-property-card__sale small,

    .rma-property-viewer__status,
    .rma-property-viewer__gallery-count,
    .rma-property-viewer__location,
    .rma-property-viewer__price small,
    .rma-property-viewer__specs small,
    .rma-property-viewer__section-label strong,
    .rma-property-viewer__detail span,
    .rma-property-viewer__record small,
    .rma-property-viewer__cta small,

    .rma-property-map__eyebrow,
    .rma-property-map__legend > span,

    .rma-map-card__status,
    .rma-map-card__location,
    .rma-map-card__specs span,

    .rma-property-map__loader small,
    .rma-property-map__summary small,

    .rma-property-notices__eyebrow,
    .rma-property-notices__intro-label,
    .rma-property-notices__card-content > small,
    .rma-property-notices__license-copy small,
    .rma-property-notices__jurisdictions small,
    .rma-property-notices__bottom-copy small {

        font-size: 0.76rem !important;

        line-height: 1.35 !important;

    }


    /* -----------------------------------------------------
       BUTTONS — approx. 12.5–13px
       ----------------------------------------------------- */

    .rma-properties-hero__button,
    .rma-properties-hero__search-action,

    .rma-property-search__mobile-toggle,
    .rma-property-search__reset,
    .rma-property-search__submit,
    .rma-property-search__clear-all,
    .rma-property-search__assistance-action,

    .rma-properties-catalog__filter,
    .rma-property-card__details,
    .rma-property-card__contact,
    .rma-properties-catalog__empty > a,

    .rma-property-viewer__share,
    .rma-property-viewer__cta-primary,
    .rma-property-viewer__cta-secondary,

    .rma-property-map__filter,
    .rma-property-map__reset,

    .rma-map-card__viewer,
    .rma-map-card__contact,

    .rma-property-notices__action {

        font-size: 0.8rem !important;

        line-height: 1.3 !important;

    }

}


/* =========================================================
   VERY SMALL MOBILE
   320px–480px
   ========================================================= */

@media (max-width: 480px) {

    /*
     * El CSS original vuelve a reducir varios eyebrows
     * a 0.50rem–0.52rem.
     */

    .rma-properties-hero__eyebrow,
    .rma-property-search__eyebrow,
    .rma-properties-catalog__eyebrow,
    .rma-property-map__eyebrow,
    .rma-property-notices__eyebrow {

        font-size: 0.76rem !important;

        line-height: 1.3 !important;

    }


    /*
     * Mantener datos de tarjetas visibles.
     */

    .rma-property-card__features span,
    .rma-property-viewer__specs small,
    .rma-map-card__specs span,
    .rma-property-notices__jurisdictions small {

        font-size: 0.72rem !important;

    }


    /*
     * Botones siguen siendo cómodos para lectura/touch.
     */

    .rma-properties-hero__button,
    .rma-property-card__details,
    .rma-property-card__contact,
    .rma-property-viewer__cta-primary,
    .rma-property-viewer__cta-secondary,
    .rma-property-map__filter,
    .rma-property-map__reset,
    .rma-map-card__viewer,
    .rma-map-card__contact,
    .rma-property-notices__action {

        font-size: 0.8rem !important;

    }

}