/* ==========================================================================
   Avianto Estate — Global Stylesheet
   Colors: #d9bc8a (gold), #584e40 (brown), #000000 (black)
   Fonts: Playfair Display (headings), Poppins (body)
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --ae-gold: #d9bc8a;
    --ae-gold-light: #e8d4aa;
    --ae-gold-dark: #c4a56e;
    --ae-brown: #584e40;
    --ae-brown-light: #6e6354;
    --ae-black: #000000;
    --ae-dark: #0a0a0a;
    --ae-dark-surface: #111111;
    --ae-dark-card: #1a1a1a;
    --ae-white: #ffffff;
    --ae-gray-100: #f5f3ef;
    --ae-gray-200: #e8e4dd;
    --ae-gray-300: #ccc7be;
    --ae-gray-500: #8a8479;
    --ae-gray-700: #4a4640;

    --ae-font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
    --ae-font-body:
        "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --ae-header-height: 80px;
    --ae-max-width: 1280px;
    --ae-transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ae-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ae-gray-700);
    background-color: var(--ae-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--ae-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ae-font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--ae-black);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}
h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}
h4 {
    font-size: 1.125rem;
}

p + p {
    margin-top: 1rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.ae-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--ae-black);
}

.ae-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--ae-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: var(--ae-header-height);
}

/* Logo */
.ae-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ae-header__logo-img {
    height: 55px;
    width: auto;
}

/* Navigation */
.ae-nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ae-nav__link {
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--ae-white);
    padding: 0.25rem 0;
    position: relative;
    text-transform: uppercase;
}

.ae-nav__link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--ae-gold);
    transition: width var(--ae-transition);
}

.ae-nav__link:hover,
.ae-nav__link--active {
    color: var(--ae-gold);
}

.ae-nav__link:hover::after,
.ae-nav__link--active::after {
    width: 100%;
}

/* CTA Button */
.ae-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.65rem 1.25rem;
    border-radius: 2px;
    transition:
        background-color var(--ae-transition),
        transform var(--ae-transition);
}

.ae-header__cta:hover {
    background-color: var(--ae-gold-light);
    transform: translateY(-1px);
}

.ae-header__cta-arrow {
    transition: transform var(--ae-transition);
}

.ae-header__cta:hover .ae-header__cta-arrow {
    transform: translateX(2px);
}

/* Gold accent line below header */
.ae-header__accent {
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--ae-gold-dark),
        var(--ae-gold),
        var(--ae-gold-dark)
    );
}

/* Mobile Toggle */
.ae-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.ae-mobile-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--ae-gold);
    border-radius: 2px;
    transition:
        transform var(--ae-transition),
        opacity var(--ae-transition);
}

.ae-mobile-toggle--active .ae-mobile-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ae-mobile-toggle--active .ae-mobile-toggle__bar:nth-child(2) {
    opacity: 0;
}

.ae-mobile-toggle--active .ae-mobile-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Dropdown */
.ae-nav__item--dropdown {
    position: relative;
}

.ae-nav__dropdown-arrow {
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
    opacity: 0.5;
    transition:
        transform var(--ae-transition),
        opacity var(--ae-transition);
}

.ae-nav__item--dropdown:hover .ae-nav__dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
    stroke: var(--ae-gold);
}

.ae-nav__dropdown {
    position: absolute;
    top: calc(100% + 19px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #111;
    border-radius: 3px;
    padding: 0.35rem 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        visibility 0.2s;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* invisible bridge so hover doesn't break between link and dropdown */
.ae-nav__dropdown::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

/* gold top line */
.ae-nav__dropdown::after {
    content: "";
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--ae-gold),
        transparent
    );
}

.ae-nav__item--dropdown:hover .ae-nav__dropdown {
    opacity: 1;
    visibility: visible;
}

.ae-nav__dropdown-link {
    display: block;
    padding: 0.65rem 1.25rem;
    font-family: var(--ae-font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition:
        color 0.2s,
        padding-left 0.2s;
}

.ae-nav__dropdown-link:hover {
    color: var(--ae-gold);
    padding-left: 1.5rem;
}

/* ---- Mobile dropdown ---- */

@media (max-width: 768px) {
    .ae-nav__item--dropdown {
        position: static;
    }

    .ae-nav__dropdown-arrow {
        margin-left: 6px;
        opacity: 0.6;
    }

    .ae-nav__dropdown {
        position: static;
        transform: none;
        min-width: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease;
    }

    .ae-nav__dropdown::before,
    .ae-nav__dropdown::after {
        display: none;
    }

    .ae-nav__item--dropdown:hover .ae-nav__dropdown {
        max-height: 0;
        padding: 0;
    }

    .ae-nav__item--dropdown.ae-nav__item--open .ae-nav__dropdown,
    .ae-nav__item--dropdown.ae-nav__item--open:hover .ae-nav__dropdown {
        max-height: 200px;
        padding: 0.25rem 0 0.5rem;
    }

    .ae-nav__item--dropdown.ae-nav__item--open .ae-nav__dropdown-arrow {
        transform: rotate(180deg);
        opacity: 1;
    }

    .ae-nav__dropdown-link {
        padding: 0.5rem 0 0.5rem 1.5rem;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 0.5rem;
    }

    .ae-nav__dropdown-link:hover {
        padding-left: 1.5rem;
        color: var(--ae-gold);
    }
}
.ae-nav__item--mob-cta {
    display: none !important;
}

@media (max-width: 768px) {
    .ae-nav--open .ae-nav__item--mob-cta {
        display: block !important;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .ae-nav--open .ae-nav__item--mob-cta .ae-header__cta {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ae-header__cta--desktop {
        display: none !important;
    }

    .ae-nav__item--mob-cta {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .ae-nav__item--mob-cta .ae-header__cta {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.ae-footer {
    background-color: var(--ae-black);
    color: var(--ae-gray-300);
}

.ae-footer__accent {
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--ae-gold-dark),
        var(--ae-gold),
        var(--ae-gold-dark)
    );
}

.ae-footer__main {
    padding: 4rem 0 3rem;
}

.ae-footer__inner {
    max-width: var(--ae-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 3rem;
}

/* Brand column */
.ae-footer__logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1.25rem;
}

.ae-footer__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--ae-gray-500);
    margin-bottom: 1.5rem;
}

.ae-footer__social {
    display: flex;
    gap: 0.75rem;
}

.ae-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--ae-brown-light);
    border-radius: 50%;
    color: var(--ae-gray-300);
    transition: all var(--ae-transition);
}

.ae-footer__social-link:hover {
    border-color: var(--ae-gold);
    color: var(--ae-gold);
    background-color: rgba(217, 188, 138, 0.08);
}

/* Footer headings */
.ae-footer__heading {
    font-family: var(--ae-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ae-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Footer links */
.ae-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ae-footer__link {
    font-size: 0.875rem;
    color: var(--ae-gray-300);
    transition:
        color var(--ae-transition),
        padding-left var(--ae-transition);
}

.ae-footer__link:hover {
    color: var(--ae-gold);
    padding-left: 4px;
}

/* Contact column */
.ae-footer__links--contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--ae-gray-300);
}

.ae-footer__links--contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--ae-gold);
}

/* Newsletter */
.ae-footer__newsletter-text {
    font-size: 0.875rem;
    color: var(--ae-gray-500);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.ae-footer__newsletter-input-wrap {
    display: flex;
    border: 1px solid var(--ae-brown-light);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color var(--ae-transition);
}

.ae-footer__newsletter-input-wrap:focus-within {
    border-color: var(--ae-gold);
}

.ae-footer__newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--ae-white);
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    padding: 0.7rem 1rem;
    outline: none;
}

.ae-footer__newsletter-input::placeholder {
    color: var(--ae-gray-500);
}

.ae-footer__newsletter-btn {
    background-color: var(--ae-gold);
    color: var(--ae-black);
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--ae-transition);
}

.ae-footer__newsletter-btn:hover {
    background-color: var(--ae-gold-light);
}

/* Bottom bar */
.ae-footer__bottom {
    border-top: 1px solid rgba(217, 188, 138, 0.15);
    padding: 1.25rem 0;
}

.ae-footer__bottom .ae-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ae-footer__copy {
    font-size: 0.8125rem;
    color: var(--ae-gray-500);
}

.ae-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.ae-footer__legal-link {
    font-size: 0.8125rem;
    color: var(--ae-gray-500);
    transition: color var(--ae-transition);
}

.ae-footer__legal-link:hover {
    color: var(--ae-gold);
}

/* ==========================================================================
   FLASH MESSAGES
   ========================================================================== */
.ae-flash-message {
    position: fixed;
    top: calc(var(--ae-header-height) + 12px);
    right: 1.5rem;
    z-index: 2000;
    padding: 1rem 1.5rem;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 420px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.ae-flash-success {
    background-color: #1a3a1a;
    color: #a3d9a3;
    border-left: 3px solid #4caf50;
}

.ae-flash-error {
    background-color: #3a1a1a;
    color: #d9a3a3;
    border-left: 3px solid #f44336;
}

/* ==========================================================================
   UTILITY — SPACER FOR FIXED HEADER
   ========================================================================== */
main {
    padding-top: var(--ae-header-height);
}

/* ==========================================================================
   COMMON SECTION STYLES
   ========================================================================== */
.ae-section {
    padding: 5rem 2rem;
}

.ae-section--dark {
    background-color: var(--ae-dark);
    color: var(--ae-gray-200);
}

.ae-section--brown {
    background-color: var(--ae-brown);
    color: var(--ae-gray-100);
}

.ae-container {
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

.ae-section__heading {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--ae-black);
}

.ae-section--dark .ae-section__heading {
    color: var(--ae-gold);
}

.ae-section__subheading {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--ae-gray-500);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ==========================================================================
   DEVELOPMENTS SECTION
   ========================================================================== */
.ae-developments {
    background-color: var(--ae-gray-100);
    padding: 3rem 2rem;
}

.ae-developments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

/* Individual card */
.ae-developments__card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
}

.ae-developments__card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.ae-developments__card:hover .ae-developments__card-img {
    transform: scale(1.05);
}

/* Overlay gradient */
.ae-developments__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.05) 100%
    );
    transition: background var(--ae-transition);
}

.ae-developments__card:hover .ae-developments__card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.08) 100%
    );
}

/* Coming Soon overlay — more faded/muted */
.ae-developments__card-overlay--soon {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

@media (max-width: 768px) {
    .ae-developments__carousel {
        position: relative;
    }

    .ae-developments__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0 0 12px 0;
        gap: 10px;
    }

    .ae-developments__grid::after {
        content: "";
        flex: 0 0 1px;
    }

    .ae-developments__card {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }

    .ae-developments__arrow {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        border: none;
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
        color: #000;
    }

    .ae-developments__arrow svg {
        stroke: #000 !important;
        fill: none;
    }

    .ae-developments__arrow--prev {
        left: 4px;
    }
    .ae-developments__arrow--next {
        right: 4px;
    }
}

@media (min-width: 769px) {
    .ae-developments__arrow {
        display: none;
    }
}

.ae-developments__card--soon {
    cursor: default;
}

.ae-developments__card--soon .ae-developments__card-img {
    filter: grayscale(0.4) brightness(0.7);
}

/* Card content (logo + name) */
.ae-developments__card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem 2rem;
    text-align: center;
}

.ae-developments__card-logo {
    width: 80px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: brightness(1.1);
    opacity: 0.95;
}

.ae-developments__card-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ae-white);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* Coming Soon label */
.ae-developments__soon-label {
    font-family: var(--ae-font-body);
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ae-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 1.4;
}

/* ==========================================================================
   ABOUT / SERENE LIVING SECTION
   ========================================================================== */
.ae-about {
    background-color: var(--ae-gray-100);
    padding: 5rem 2rem;
}

.ae-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

/* Subtitle */
.ae-about__subtitle {
    display: block;
    font-family: var(--ae-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ae-brown);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

/* Heading */
.ae-about__heading {
    font-family: var(--ae-font-heading);
    font-size: 35px;
    font-weight: 700;
    color: var(--ae-black);
    margin-bottom: 1.75rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paragraphs */
.ae-about__paragraph {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--ae-gray-700);
    margin-bottom: 1.25rem;
}

.ae-about__paragraph:last-of-type {
    margin-bottom: 2rem;
}

/* Bullet list */
.ae-about__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ae-about__list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ae-gray-700);
}

.ae-about__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ae-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* CTA button */
.ae-about__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: 2px;
    transition:
        background-color var(--ae-transition),
        transform var(--ae-transition);
}

.ae-about__cta:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.ae-about__cta svg {
    transition: transform var(--ae-transition);
}

.ae-about__cta:hover svg {
    transform: translateX(3px);
}

/* Media / video thumbnail */
.ae-about__media-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 100 / 101 ;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.ae-about__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Play button */
.ae-about__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--ae-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--ae-transition);
}

.ae-about__play svg {
    margin-left: 3px;
}

.ae-about__play:hover {
    background-color: var(--ae-gold);
    color: var(--ae-black);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Make play button a proper button (not anchor) */
.ae-about__play {
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   video in the estate page
   ========================================================================== */
.e-video {
    background-color: var(--ae-gray-100);
    padding: 5rem 2rem;
}

.e-video__inner {
    display: grid;
    gap: 4rem;
    align-items: center;
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

/* Subtitle */
.e-video__subtitle {
    display: block;
    font-family: var(--ae-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ae-brown);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

/* Heading */
.e-video__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--ae-black);
    margin-bottom: 1.75rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paragraphs */
.e-video__paragraph {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--ae-gray-700);
    margin-bottom: 1.25rem;
}

.e-video__paragraph:last-of-type {
    margin-bottom: 2rem;
}

/* Bullet list */
.e-video__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.e-video__list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ae-gray-700);
}

.e-video__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ae-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* CTA button */
.e-video__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: 2px;
    transition:
        background-color var(--ae-transition),
        transform var(--ae-transition);
}

.e-video__cta:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.e-video__cta svg {
    transition: transform var(--ae-transition);
}

.e-video__cta:hover svg {
    transform: translateX(3px);
}

/* Media / video thumbnail */
.e-video__media-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.e-video__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Play button */
.e-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--ae-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--ae-transition);
}

.e-video__play svg {
    margin-left: 3px;
}

.e-video__play:hover {
    background-color: var(--ae-gold);
    color: var(--ae-black);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Make play button a proper button (not anchor) */
.e-video__play {
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   VIDEO MODAL
   ========================================================================== */
.ae-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.ae-video-modal--open {
    opacity: 1;
    visibility: visible;
}

.ae-video-modal__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--ae-white);
    cursor: pointer;
    opacity: 0.7;
    transition:
        opacity var(--ae-transition),
        transform var(--ae-transition);
    z-index: 3;
}

.ae-video-modal__close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.ae-video-modal__body {
    width: 90vw;
    max-width: 960px;
}

.ae-video-modal__iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.4);
}

.ae-video-modal__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ae-video-modal--open .ae-video-modal__iframe-wrap {
    animation: ae-lightbox-zoom 0.3s ease forwards;
}

/* ==========================================================================
   GALLERY CAROUSEL
   ========================================================================== */
.ae-gallery {
    background-color: var(--ae-gray-100);
    padding: 0 2rem 5rem;
}

.ae-gallery__inner {
    position: relative;
    max-width: var(--ae-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Arrows */
.ae-gallery__arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: var(--ae-white);
    color: var(--ae-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--ae-transition);
    z-index: 2;
}

.ae-gallery__arrow:hover {
    background-color: var(--ae-gold);
    color: var(--ae-black);
}

/* Track */
.ae-gallery__track-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.ae-gallery__track {
    display: flex;
    transition: transform 0.45s ease;
}

.ae-gallery__slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 0.5rem;
    cursor: pointer;
    box-sizing: border-box;
}

.ae-gallery__slide-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.ae-gallery__slide:hover .ae-gallery__slide-img {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.ae-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.ae-lightbox--open {
    opacity: 1;
    visibility: visible;
}

.ae-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--ae-white);
    cursor: pointer;
    opacity: 0.7;
    transition:
        opacity var(--ae-transition),
        transform var(--ae-transition);
    z-index: 3;
}

.ae-lightbox__close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Lightbox arrows */
.ae-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ae-white);
    cursor: pointer;
    transition: all var(--ae-transition);
    z-index: 3;
}

.ae-lightbox__arrow:hover {
    background: rgba(217, 188, 138, 0.3);
    border-color: var(--ae-gold);
}

.ae-lightbox__arrow--prev {
    left: 1.5rem;
}

.ae-lightbox__arrow--next {
    right: 1.5rem;
}

/* Image */
.ae-lightbox__img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ae-lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.4);
}

.ae-lightbox--open .ae-lightbox__img {
    animation: ae-lightbox-zoom 0.3s ease forwards;
}

@keyframes ae-lightbox-zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Counter */
.ae-lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ae-font-body);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

/* ==========================================================================
   PROPERTY SHOWCASES
   ========================================================================== */
.ae-showcase {
    background-color: var(--ae-gray-100);
    padding: 4rem 2rem;
    border-top: 1px solid var(--ae-gray-200);
}

.ae-showcase__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

/* Reversed layout — image left, text right */
.ae-showcase--reversed .ae-showcase__images {
    order: -1;
}

/* Subtitle */
.ae-showcase__subtitle {
    display: block;
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ae-brown);
    margin-bottom: 0.35rem;
    letter-spacing: 0.3px;
}

/* Heading */
.ae-showcase__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--ae-black);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
}

/* Badge (NOW LAUNCHED) */
.ae-showcase__badge {
    display: inline-block;
    font-family: var(--ae-font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ae-brown);
    background-color: rgba(217, 188, 138, 0.3);
    border: 1px solid var(--ae-gold);
    padding: 0.3rem 0.85rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .ae-showcase--reversed .ae-showcase__inner {
        flex-direction: column;
    }

    .ae-showcase--reversed .ae-showcase__text {
        order: 2;
    }

    .ae-showcase--reversed .ae-showcase__images {
        order: 1;
    }
}
/* Body text */
.ae-showcase__body {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--ae-gray-700);
    margin-bottom: 1rem;
}

/* Note */
.ae-showcase__note {
    font-size: 0.8125rem;
    color: var(--ae-gray-500);
    font-style: italic;
    margin-bottom: 1.75rem;
}

/* CTA */
.ae-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    transition:
        background-color var(--ae-transition),
        transform var(--ae-transition);
}

.ae-showcase__cta:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.ae-showcase__cta svg {
    transition: transform var(--ae-transition);
}

.ae-showcase__cta:hover svg {
    transform: translateX(3px);
}

/* Images */
.ae-showcase__images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ae-showcase__img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.ae-showcase__img:hover {
    transform: scale(1.015);
}

/* ==========================================================================
   AMENITIES CAROUSEL
   ========================================================================== */
.ae-amenities {
    background-color: var(--ae-gray-100);
    padding: 4rem 0;
}

.ae-amenities__inner {
    position: relative;
    max-width: var(--ae-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

/* Arrows */
.ae-amenities__arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(88, 78, 64, 0.15);
    color: var(--ae-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--ae-transition);
    z-index: 2;
}

.ae-amenities__arrow:hover {
    background: var(--ae-gold);
    color: var(--ae-black);
}

/* Track */
.ae-amenities__track-wrap {
    flex: 1;
    overflow: hidden;
    margin: 0 0.75rem;
}

.ae-amenities__track {
    display: flex;
    transition: transform 0.45s ease;
}

/* Replace your existing mobile block inside the main CSS file */

@media (max-width: 768px) {
    .ae-amenities {
        position: relative;
        padding: 2rem 0;
    }

    .ae-amenities__inner {
        padding: 0;
    }

    .ae-amenities__track-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        /* Remove the 44px side padding — arrows are absolute, not inline */
        padding: 0 0 12px;
        /* Allow first card to be fully visible from edge */
        scroll-padding-left: 12px;
    }

    .ae-amenities__track {
        transform: none !important;
        transition: none !important;
        width: auto;
        /* Add left padding so first card isn't flush against the arrow */
        padding-left: 48px;
        padding-right: 48px;
    }

    .ae-amenities__card {
        flex: 0 0 72vw;
        scroll-snap-align: start;
        padding: 0 6px;
    }

    .ae-amenities__card-label {
        font-size: 0.8125rem;
        bottom: 1rem;
    }

    .ae-amenities__arrow {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(
            -60%
        ); /* shift up slightly to account for bottom padding */
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        border: none;
        cursor: pointer;
    }

    .ae-amenities__arrow--prev {
        left: 6px;
    }

    .ae-amenities__arrow--next {
        right: 6px;
    }
}

@media (max-width: 480px) {
    .ae-amenities__card {
        flex: 0 0 80vw;
    }
}

/* Individual card */
.ae-amenities__card {
    flex: 0 0 25%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    position: relative;
    display: block;
}

.ae-amenities__card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.ae-amenities__card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.5s ease;
}

.ae-amenities__card:hover .ae-amenities__card-img {
    transform: scale(1.05);
}

/* Overlay */
.ae-amenities__card-overlay {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.1) 45%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

/* Label */
.ae-amenities__card-label {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    padding: 0 1.25rem;
    font-family: var(--ae-font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ae-white);
    letter-spacing: 0.3px;
    z-index: 1;
}

/* ==========================================================================
   ENQUIRE & CONTACT SECTION
   ========================================================================== */
.ae-enquire {
    background-color: var(--ae-black);
    padding: 4rem 2rem;
}

.ae-enquire__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

/* Headings */
.ae-enquire__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ae-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.ae-enquire__heading--contact {
    font-style: normal;
}

/* Form layout */
.ae-enquire__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.ae-enquire__field--full {
    margin-bottom: 0.75rem;
}

/* Inputs & selects */
.ae-enquire__input,
.ae-enquire__select,
.ae-enquire__textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--ae-font-body);
    font-size: 0.875rem;
    color: var(--ae-black);
    background-color: var(--ae-white);
    border: none;
    border-radius: 6px;
    outline: none;
    transition: box-shadow var(--ae-transition);
}

.ae-enquire__input:focus,
.ae-enquire__select:focus,
.ae-enquire__textarea:focus {
    box-shadow: 0 0 0 2px var(--ae-gold);
}

.ae-enquire__input::placeholder,
.ae-enquire__textarea::placeholder {
    color: var(--ae-gray-500);
}

.ae-enquire__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8479' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.ae-enquire__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit button */
.ae-enquire__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition:
        background-color var(--ae-transition),
        transform var(--ae-transition);
}

.ae-enquire__submit:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.ae-enquire__submit svg {
    transition: transform var(--ae-transition);
}

.ae-enquire__submit:hover svg {
    transform: translateX(3px);
}

/* Contact column */
.ae-enquire__contact-col {
    padding-top: 0.25rem;
}

.ae-enquire__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ae-enquire__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-family: var(--ae-font-body);
    font-size: 0.9375rem;
    color: var(--ae-gray-200);
    line-height: 1.5;
}

.ae-enquire__contact-item a {
    color: var(--ae-gray-200);
    transition: color var(--ae-transition);
}

.ae-enquire__contact-item a:hover {
    color: var(--ae-gold);
}

.ae-enquire__contact-icon {
    flex-shrink: 0;
    color: var(--ae-gray-300);
    margin-top: 2px;
}

/* ==========================================================================
   ESTATE PAGE — HERO SLIDER
   ========================================================================== */
.ae-estate-hero {
    width: 100%;
    overflow: hidden;
}

.ae-estate-hero__slider {
    position: relative;
    width: 100%;
    aspect-ratio: 27 / 7;
    min-height: 300px;
    max-height: 550px;
    overflow: hidden;
    border-radius: 0 0 0 0;
}

.ae-estate-hero__track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slides — fade transition */
.ae-estate-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.ae-estate-hero__slide--active {
    opacity: 1;
    z-index: 1;
}

.ae-estate-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Arrows */
.ae-estate-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--ae-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--ae-transition);
}

.ae-estate-hero__arrow--prev {
    left: 1.5rem;
}

.ae-estate-hero__arrow--next {
    right: 1.5rem;
}

.ae-estate-hero__arrow:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Dots */
.ae-estate-hero__dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.5rem;
}

.ae-estate-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--ae-white);
    background: transparent;
    cursor: pointer;
    transition: all var(--ae-transition);
    padding: 0;
}

.ae-estate-hero__dot--active {
    background: var(--ae-gold);
    border-color: var(--ae-gold);
}

.ae-estate-hero__dot:hover {
    border-color: var(--ae-gold);
}

/* ==========================================================================
   DEVELOPMENT PAGE — STATIC HERO BANNER
   ========================================================================== */
.ae-dev-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 27 / 7;
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
}

.ae-dev-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ae-dev-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.ae-dev-hero__logo {
    height: 70px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(1.1);
}

.ae-dev-hero__name {
    font-family: var(--ae-font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ae-white);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    line-height: 1.2;
}

/* ==========================================================================
   DEVELOPMENT PAGE — INFO BLOCK + BUTTONS
   ========================================================================== */
.ae-dev-info {
    background-color: var(--ae-white);
    padding: 3.5rem 2rem;
}

.ae-dev-info__inner {
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

.ae-dev-info__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--ae-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.ae-dev-info__body {
    font-family: var(--ae-font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--ae-gray-700);
    margin-bottom: 1.75rem;
}

.ae-dev-info__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.ae-dev-info__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    border-radius: 2px;
    border: 2px solid var(--ae-gold);
    transition: all var(--ae-transition);
}

.ae-dev-info__btn:hover {
    background-color: var(--ae-gold-dark);
    border-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.ae-dev-info__btn svg {
    transition: transform var(--ae-transition);
}

.ae-dev-info__btn:hover svg {
    transform: translateX(3px);
}

/* ==========================================================================
   DEVELOPMENT PAGE — FULL-WIDTH IMAGE SLIDER
   ========================================================================== */
.ae-dev-slider {
    background-color: var(--ae-dark);
    padding: 0;
}

.ae-dev-slider__inner {
    position: relative;
    display: flex;
    align-items: center;
}

.ae-dev-slider__arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgb(0 0 0 / 35%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--ae-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--ae-transition);
}

.ae-dev-slider__arrow--prev {
    left: 1.25rem;
}

.ae-dev-slider__arrow--next {
    right: 1.25rem;
}

.ae-dev-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ae-dev-slider__track-wrap {
    width: 100%;
    overflow: hidden;
}

.ae-dev-slider__track {
    display: flex;
    transition: transform 0.5s ease;
}

.ae-dev-slider__slide {
    flex: 0 0 50%;
    padding: 0 0;
    box-sizing: border-box;
}

.ae-dev-slider__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   DEVELOPMENT PAGE — MAP + VIDEO ROW
   ========================================================================== */
.ae-map-video-row {
    background-color: #f8f7f5;
    padding: 72px 0 80px;
}

.ae-map-video-row__header {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 0 24px;
    text-align: center;
}

.ae-map-video-row__header .ae-interactive-map__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ae-black);
    margin: 0 0 10px;
}

.ae-map-video-row__header .ae-interactive-map__desc {
    font-family: var(--ae-font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ae-gray-700, #555);
    margin: 0;
}

.ae-map-video-row__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.ae-map-video-row__col {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Map image */
.ae-interactive-map__img-wrap {
    position: relative;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    min-height: 340px;
}
.ae-interactive-map__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* === MAP FULLSCREEN OVERLAY === */
.ae-map-fullscreen-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    cursor: pointer;
}

.ae-map-fullscreen-overlay--open {
    background: rgba(0, 0, 0, 0.92);
}

.ae-map-fullscreen-img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.95);
    transition:
        opacity 0.3s,
        transform 0.3s;
    cursor: default;
}

.ae-map-fullscreen-overlay--open .ae-map-fullscreen-img {
    opacity: 1;
    transform: scale(1);
}

.ae-map-fullscreen-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: opacity 0.2s;
}

.ae-map-fullscreen-close:hover {
    opacity: 0.7;
}

/* Fullscreen button */
.ae-estate-map__fullscreen {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s;
    z-index: 3;
}

.ae-estate-map__fullscreen:hover {
    background: #fff;
    transform: translateY(-1px);
}

/* Video wrap */
.ae-map-video-row__video-wrap {
    position: relative;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    min-height: 340px;
}

.ae-map-video-row__video-wrap .e-video__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ae-map-video-row__video-wrap .e-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s,
        transform 0.25s;
    z-index: 3;
}

.ae-map-video-row__video-wrap .e-video__play:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .ae-map-video-row {
        padding: 48px 0 56px;
    }

    .ae-map-video-row__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ae-interactive-map__img-wrap,
    .ae-map-video-row__video-wrap {
        min-height: 260px;
    }
}
/* ==========================================================================
   DEVELOPMENT PAGE — UNIT TYPES TABS
   ========================================================================== */
.ae-unit-types {
    background-color: var(--ae-gray-100);
    padding: 4rem 2rem 5rem;
}

.ae-unit-types__inner {
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

.ae-unit-types__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--ae-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Tabs */
.ae-unit-types__tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.ae-unit-types__subtabs .sub-group {
    display: none;
}

.ae-unit-types__subtabs .sub-group.active {
    display: flex; /* or block, depending on your layout */
}
.ae-unit-types__panel {
    display: none;
}

.ae-unit-types__panel--active {
    display: block;
}

.ae-unit-types__tab {
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--ae-gold);
    border-radius: 2px;
    background: transparent;
    color: var(--ae-black);
    cursor: pointer;
    transition: all var(--ae-transition);
}

.ae-unit-types__tab--active {
    background-color: var(--ae-gold);
    color: var(--ae-black);
}

.ae-unit-types__tab:hover {
    background-color: var(--ae-gold);
}

/* Panels */
.ae-unit-types__panel {
    display: none;
}

.ae-unit-types__panel--active {
    display: block;
    animation: ae-fade-in 0.4s ease;
}

@keyframes ae-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ae-unit-types__img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* CTA */
.ae-unit-types__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    margin-top: 2rem;
    transition:
        background-color var(--ae-transition),
        transform var(--ae-transition);
}

.ae-unit-types__cta:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.ae-unit-types__cta svg {
    transition: transform var(--ae-transition);
}

.ae-unit-types__cta:hover svg {
    transform: translateX(3px);
}

/* ==========================================================================
   DEVELOPMENT PAGE — PROPERTIES LISTING
   ========================================================================== */
.ae-properties {
    background-color: var(--ae-white);
    padding: 4rem 2rem 5rem;
}

.ae-properties__inner {
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

.ae-properties__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--ae-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.ae-properties__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Property Card */
.ae-properties__card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background-color: var(--ae-white);
    border: 1px solid var(--ae-gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow var(--ae-transition);
}

.ae-properties__card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.ae-properties__card-img-wrap {
    position: relative;
    overflow: hidden;
}

.ae-properties__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ae-properties__card:hover .ae-properties__card-img {
    transform: scale(1.03);
}

/* Badge */
.ae-properties__card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-family: var(--ae-font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    z-index: 2;
}

.ae-properties__card-badge--sale {
    background-color: var(--ae-gold);
    color: var(--ae-black);
}

.ae-properties__card-badge--rent {
    background-color: var(--ae-brown);
    color: var(--ae-white);
}

/* Body */
.ae-properties__card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ae-properties__card-price {
    font-family: var(--ae-font-body);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--ae-black);
    margin-bottom: 0.25rem;
}

.ae-properties__card-type {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ae-black);
    margin-bottom: 0.25rem;
}

.ae-properties__card-estate {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ae-brown);
    margin-bottom: 0.15rem;
}

.ae-properties__card-address {
    font-size: 0.8125rem;
    color: var(--ae-gray-500);
    margin-bottom: 0.75rem;
}

.ae-properties__card-desc {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--ae-gray-700);
    margin-bottom: 1rem;
}

/* Specs row */
.ae-properties__card-specs {
    display: flex;
    gap: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--ae-gray-200);
}

.ae-properties__spec {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--ae-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ae-black);
}

.ae-properties__spec svg {
    color: var(--ae-brown);
}

/* Browse all button */
.ae-properties__browse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    transition:
        background-color var(--ae-transition),
        transform var(--ae-transition);
}

.ae-properties__browse:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.ae-properties__browse svg {
    transition: transform var(--ae-transition);
}

.ae-properties__browse:hover svg {
    transform: translateX(3px);
}

/* ==========================================================================
   ESTATE PAGE — LIFESTYLE GRID
   ========================================================================== */
.ae-lifestyle {
    background-color: var(--ae-white);
    padding: 4rem 2rem 5rem;
}

.ae-lifestyle__inner {
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

.ae-lifestyle__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--ae-black);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.ae-lifestyle__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Card */
.ae-lifestyle__card {
    display: block;
}

.ae-lifestyle__card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
}

.ae-lifestyle__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.ae-lifestyle__card:hover .ae-lifestyle__card-img {
    transform: scale(1.05);
}

.ae-lifestyle__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.ae-lifestyle__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 1;
}

.ae-lifestyle__card-title {
    font-family: var(--ae-font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ae-white);
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
}

.ae-lifestyle__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: 2px;
    transition: background-color var(--ae-transition);
}

.ae-lifestyle__card:hover .ae-lifestyle__card-btn {
    background-color: var(--ae-gold-light);
}

.ae-lifestyle__card-btn svg {
    transition: transform var(--ae-transition);
}

.ae-lifestyle__card:hover .ae-lifestyle__card-btn svg {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .ae-lifestyle__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
    }

    .ae-lifestyle__grid::-webkit-scrollbar {
        display: none;
    }

    .ae-lifestyle__card {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }
}

/* ==========================================================================
   ESTATE PAGE — LOCATION SECTION
   ========================================================================== */
.ae-location {
    background-color: var(--ae-white);
    padding: 4rem 2rem 5rem;
}

.ae-location__inner {
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

.ae-location__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--ae-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.ae-location__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Map */
.ae-location__map-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3.5;
    background-color: var(--ae-gray-100);
}

.ae-location__iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.ae-location__map-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--ae-white);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 0.85rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all var(--ae-transition);
    z-index: 2;
}

.ae-location__map-btn:hover {
    background-color: var(--ae-gold);
}

/* Amenities list */
.ae-location__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 0.5rem;
}

.ae-location__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ae-location__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ae-gold);
    color: var(--ae-white);
    border-radius: 10px;
}

.ae-location__label {
    font-family: var(--ae-font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ae-black);
    letter-spacing: 0.2px;
}

/* ==========================================================================
   ESTATE PAGE — ESTATE MAP
   ========================================================================== */
.ae-estate-map {
    background-color: var(--ae-gray-100);
    padding: 4rem 2rem 5rem;
}

.ae-estate-map__inner {
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

.ae-estate-map__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--ae-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.75rem;
    text-align: center;
}

.ae-estate-map__wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.ae-estate-map__img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.ae-estate-map__fullscreen {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s;
    z-index: 3;
}
.ae-estate-map__fullscreen:hover {
    background-color: var(--ae-gold);
}

/* Map Lightbox */
.ae-estate-map__lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.ae-estate-map__lightbox--open {
    opacity: 1;
    visibility: visible;
}

.ae-estate-map__lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--ae-white);
    cursor: pointer;
    opacity: 0.7;
    transition:
        opacity var(--ae-transition),
        transform var(--ae-transition);
    z-index: 3;
}

.ae-estate-map__lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.ae-estate-map__lightbox-body {
    max-width: 95vw;
    max-height: 92vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}

.ae-estate-map__lightbox-img {
    display: block;
    max-width: none;
    height: auto;
}

.ae-estate-map__lightbox--open .ae-estate-map__lightbox-img {
    animation: ae-lightbox-zoom 0.3s ease forwards;
}

/* Download buttons row */
.ae-estate-map__downloads {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.ae-estate-map__dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--ae-black);
    color: var(--ae-white);
    font-family: var(--ae-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.9rem 1.75rem;
    border-radius: 3px;
    letter-spacing: 0.3px;
    transition: all var(--ae-transition);
}

.ae-estate-map__dl-btn:hover {
    background-color: var(--ae-dark-surface);
    transform: translateY(-1px);
}

.ae-estate-map__dl-btn svg {
    opacity: 0.7;
    transition:
        opacity var(--ae-transition),
        transform var(--ae-transition);
}

.ae-estate-map__dl-btn:hover svg {
    opacity: 1;
    transform: translateX(2px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.ae-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--ae-transition);
}

.ae-btn--gold {
    background-color: var(--ae-gold);
    color: var(--ae-black);
}

.ae-btn--gold:hover {
    background-color: var(--ae-gold-light);
    transform: translateY(-1px);
}

.ae-btn--outline {
    background: transparent;
    color: var(--ae-gold);
    border: 1.5px solid var(--ae-gold);
}

.ae-btn--outline:hover {
    background-color: var(--ae-gold);
    color: var(--ae-black);
}

.ae-btn--dark {
    background-color: var(--ae-black);
    color: var(--ae-gold);
}

.ae-btn--dark:hover {
    background-color: var(--ae-dark-surface);
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.ae-form__group {
    margin-bottom: 1.25rem;
}

.ae-form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ae-brown);
    margin-bottom: 0.4rem;
}

.ae-form__input,
.ae-form__textarea,
.ae-form__select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--ae-font-body);
    font-size: 0.9375rem;
    color: var(--ae-black);
    background-color: var(--ae-white);
    border: 1px solid var(--ae-gray-200);
    border-radius: 2px;
    outline: none;
    transition: border-color var(--ae-transition);
}

.ae-form__input:focus,
.ae-form__textarea:focus,
.ae-form__select:focus {
    border-color: var(--ae-gold);
}

.ae-form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.ae-hero {
    display: flex;
    height: calc(100vh - var(--ae-header-height) - 3px);
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

/* Main large image (left side) */
.ae-hero__main {
    flex: 1 1 0%;
    position: relative;
    overflow: hidden;
}

.ae-hero__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ae-hero__main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
    pointer-events: none;
}

/* Right-side vertical panels */
.ae-hero__panels {
    display: flex;
    flex-shrink: 0;
    width: 320px;
}

.ae-hero__panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
}

.ae-hero__panel:first-child {
    border-left: 2px solid rgba(255, 255, 255, 0.25);
}

.ae-hero__panel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.ae-hero__panel:hover .ae-hero__panel-img {
    transform: scale(1.08);
}

.ae-hero__panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    transition: background var(--ae-transition);
}

.ae-hero__panel:hover .ae-hero__panel-overlay {
    background: linear-gradient(
        to bottom,
        rgba(217, 188, 138, 0.15) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* Vertical rotated label */
.ae-hero__panel-label {
    position: relative;
    z-index: 2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}

.ae-hero__panel-label span {
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ae-white);
    background-color: rgba(88, 78, 64, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 1rem 0.55rem;
    border-radius: 2px;
    transition: background-color var(--ae-transition);
}

.ae-hero__panel:hover .ae-hero__panel-label span {
    background-color: rgba(217, 188, 138, 0.75);
    color: var(--ae-black);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .ae-nav__list {
        gap: 1.25rem;
    }

    .ae-nav__link {
        font-size: 0.75rem;
    }

    .ae-hero__panels {
        width: 240px;
    }

    .ae-hero__panel-label span {
        font-size: 0.6875rem;
        letter-spacing: 2px;
    }

    .ae-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .ae-developments__grid {
        gap: 0.75rem;
    }

    .ae-developments__card-logo {
        width: 60px;
    }

    .ae-developments__card-content {
        padding-bottom: 1.5rem;
    }

    .ae-about__inner {
        gap: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --ae-header-height: 70px;
    }

    .ae-mobile-toggle {
        display: flex;
    }

    .ae-header__cta {
        display: none;
    }

    /* Mobile nav slide-in */
    .ae-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--ae-black);
        padding: calc(var(--ae-header-height) + 2rem) 2rem 2rem;
        transition: right var(--ae-transition);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .ae-nav--open {
        right: 0;
    }

    .ae-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .ae-nav__item {
        width: 100%;
        border-bottom: 1px solid rgba(217, 188, 138, 0.1);
    }

    .ae-nav__link {
        display: block;
        padding: 1rem 0;
        font-size: 0.875rem;
    }

    /* Mobile CTA at bottom of nav */
    .ae-nav--open::after {
        content: "ENQUIRE NOW →";
        display: none;
        margin-top: 2rem;
        background-color: var(--ae-gold);
        color: var(--ae-black);
        font-family: var(--ae-font-body);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-align: center;
        padding: 0.85rem 1.25rem;
        border-radius: 2px;
    }

    /* Footer mobile */
    .ae-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ae-footer__bottom .ae-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .ae-footer__legal {
        justify-content: center;
    }

    .ae-header__logo-img {
        height: 45px;
    }

    /* Hero stacks vertically on mobile */
    .ae-hero {
        flex-direction: column;
        height: auto;
        min-height: 0;
        max-height: none;
        overflow: hidden;
    }

    .ae-hero__main {
        position: relative;
        height: auto;
        min-height: 0;
        flex-shrink: 0;
        aspect-ratio: 16 / 10;
    }

    .ae-hero__main-img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ae-hero__panels {
        width: 100%;
        height: 180px;
        flex-shrink: 0;
    }

    .ae-hero__panel {
        border-left: 0px solid rgba(255, 255, 255, 0.15);
        border-top: none;
    }

    .ae-hero__panel:first-child {
        border-left: none;
    }

    .ae-hero__panel-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .ae-hero__panel-label span {
        font-size: 0.625rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        padding: 0.5rem 0.5rem;
        text-align: center;
        line-height: 1.4;
        background-color: rgba(88, 78, 64, 0.75);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    /* Developments 2x2 on mobile */
    .ae-developments {
        padding: 1.5rem 1rem;
    }

    .ae-developments__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .ae-developments__card {
        aspect-ratio: 3 / 4;
    }

    .ae-developments__card-logo {
        width: 50px;
    }

    .ae-developments__card-content {
        padding-bottom: 1.25rem;
    }

    /* About section stacks on mobile */
    .ae-about {
        padding: 3rem 1.25rem;
    }

    .ae-about__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ae-about__media {
        order: -1;
    }

    .ae-about__media-wrap {
        aspect-ratio: 16 / 10;
    }

    .ae-about__cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    /* Gallery carousel mobile */
    .ae-gallery {
        padding: 0 1rem 3rem;
    }

    .ae-gallery__arrow {
        width: 36px;
        height: 36px;
    }

    .ae-gallery__slide {
        flex: 0 0 50%;
    }

    .ae-gallery__slide-img {
        border-radius: 10px;
    }

    .ae-lightbox__arrow--prev {
        left: 0.75rem;
    }

    .ae-lightbox__arrow--next {
        right: 0.75rem;
    }

    .ae-lightbox__arrow {
        width: 42px;
        height: 42px;
    }

    /* Showcase stacks on mobile */
    .ae-showcase {
        padding: 3rem 1.25rem;
    }

    .ae-showcase__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ae-showcase--reversed .ae-showcase__images {
        order: 0;
    }

    .ae-showcase__images {
        order: -1;
    }

    .ae-showcase__cta {
        width: 100%;
        justify-content: center;
    }

    .ae-showcase__img {
        aspect-ratio: 16 / 10;
    }

    /* Amenities carousel mobile */
    .ae-amenities {
        padding: 2rem 0;
    }

    .ae-amenities__card {
        flex: 0 0 50%;
    }

    .ae-amenities__arrow {
        width: 38px;
        height: 38px;
    }

    .ae-amenities__card-label {
        font-size: 0.8125rem;
        bottom: 1rem;
    }

    /* Enquire section mobile */
    .ae-enquire {
        padding: 3rem 1.25rem;
    }

    .ae-enquire__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ae-enquire__row {
        grid-template-columns: 1fr;
    }

    .ae-enquire__submit {
        width: 100%;
        justify-content: center;
    }

    /* Estate hero slider mobile */
    .ae-estate-hero__slider {
        aspect-ratio: 16 / 9;
        min-height: 220px;
        max-height: 400px;
        border-radius: 0 0 0 0;
    }

    .ae-estate-hero__arrow {
        width: 40px;
        height: 40px;
    }

    .ae-estate-hero__arrow--prev {
        left: 0.75rem;
    }

    .ae-estate-hero__arrow--next {
        right: 0.75rem;
    }

    .ae-estate-hero__dots {
        bottom: 0.75rem;
    }

    .ae-estate-hero__dot {
        width: 8px;
        height: 8px;
    }

    /* Development hero mobile */
    .ae-dev-hero {
        aspect-ratio: 16 / 9;
        min-height: 220px;
        max-height: 350px;
    }

    .ae-dev-hero__logo {
        height: 43px;
    }

    .ae-dev-hero__name {
        font-size: 32px;
    }

    /* Dev info + slider mobile */
    .ae-dev-info {
        padding: 2.5rem 1.25rem;
    }

    .ae-dev-info__buttons {
        flex-direction: column;
    }

    .ae-dev-info__btn {
        justify-content: center;
    }

    .ae-dev-slider__slide {
        flex: 0 0 100%;
    }

    .ae-dev-slider__arrow {
        width: 38px;
        height: 38px;
    }

    .ae-dev-slider__arrow--prev {
        left: 0.75rem;
    }

    .ae-dev-slider__arrow--next {
        right: 0.75rem;
    }

    /* Unit types mobile */
    .ae-unit-types {
        padding: 3rem 1.25rem;
    }

    .ae-unit-types__tabs {
        flex-wrap: wrap;
    }

    .ae-unit-types__tab {
        font-size: 0.6875rem;
        padding: 0.6rem 1.25rem;
    }

    .ae-unit-types__cta {
        width: 100%;
        justify-content: center;
    }

    /* Properties listing mobile */
    .ae-properties {
        padding: 3rem 1.25rem;
    }

    .ae-properties__card {
        grid-template-columns: 1fr;
    }

    .ae-properties__card-img-wrap {
        aspect-ratio: 16 / 10;
    }

    .ae-properties__card-body {
        padding: 1.25rem;
    }

    .ae-properties__card-specs {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .ae-properties__browse {
        width: 100%;
        justify-content: center;
    }

    /* Lifestyle grid mobile */
    .ae-lifestyle {
        padding: 3rem 1.25rem;
    }

    .ae-lifestyle__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .ae-lifestyle__card-title {
        font-size: 0.875rem;
    }

    .ae-lifestyle__card-btn {
        font-size: 0.5625rem;
        padding: 0.35rem 0.65rem;
    }

    .ae-lifestyle__card-content {
        padding: 0.85rem;
    }

    /* Location section mobile */
    .ae-location {
        padding: 3rem 1.25rem;
    }

    .ae-location__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ae-location__map-wrap {
        aspect-ratio: 4 / 3;
    }

    .ae-location__icon {
        width: 42px;
        height: 42px;
        border-radius: 8px;
    }

    .ae-location__icon svg {
        width: 18px;
        height: 18px;
    }

    .ae-location__label {
        font-size: 0.9375rem;
    }

    /* Estate map mobile */
    .ae-estate-map {
        padding: 3rem 1rem;
    }

    .ae-estate-map__fullscreen {
        font-size: 0.6875rem;
        padding: 0.45rem 0.75rem;
    }

    .ae-estate-map__lightbox-body {
        max-width: 98vw;
    }

    .ae-estate-map__lightbox-img {
        width: max(98vw, 900px);
    }

    /* Download buttons stack on mobile */
    .ae-estate-map__downloads {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ae-estate-map__dl-btn {
        justify-content: center;
        font-size: 0.8125rem;
        padding: 0.85rem 1.5rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .ae-section {
        padding: 3rem 1.25rem;
    }

    .ae-flash-message {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .ae-gallery__slide {
        flex: 0 0 100%;
    }

    .ae-amenities__card {
        flex: 0 0 100%;
    }

    .ae-hero__main {
        aspect-ratio: 4 / 3;
    }

    .ae-hero__panels {
        height: 150px;
    }

    .ae-hero__panel-label span {
        font-size: 0.5625rem;
        padding: 0.4rem 0.35rem;
        letter-spacing: 1px;
    }
}
/* ============================================
   SALES / RENTALS LISTING PAGE  (ae-sl-)
   ============================================ */

.ae-sl-section {
    padding: 60px 0 80px;
    background: #faf9f7;
}

.ae-sl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ae-sl-empty {
    text-align: center;
    padding: 80px 0;
    color: #888;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

/* Grid */
.ae-sl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
    gap: 28px;
}

@media (max-width: 640px) {
    .ae-sl-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.ae-sl-card {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
    border: 1px solid #ede9e0;
}

.ae-sl-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    transform: translateY(-2px);
}

/* Badge */
.ae-sl-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ae-brown);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
}

/* Image */
.ae-sl-card__img-wrap {
    flex: 0 0 220px;
    min-height: 220px;
    overflow: hidden;
}

.ae-sl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ae-sl-card:hover .ae-sl-card__img {
    transform: scale(1.04);
}

/* Body */
.ae-sl-card__body {
    flex: 1;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ae-sl-card__price {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 2px;
}

.ae-sl-card__title {
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2c2c2c;
}

.ae-sl-card__estate {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #8b6f47;
    margin-top: 2px;
}

.ae-sl-card__address {
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    color: #777;
    margin-top: 1px;
}

.ae-sl-card__desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.55;
    margin-top: 6px;
    flex: 1;
}

/* Stats row */
.ae-sl-card__stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0ebe0;
}

.ae-sl-card__stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #3d2b1f;
}

.ae-sl-card__stat svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #8b6f47;
}

/* Responsive — stack on mobile */
@media (max-width: 520px) {
    .ae-sl-card {
        flex-direction: column;
    }

    .ae-sl-card__img-wrap {
        flex: none;
        height: 200px;
        width: 100%;
    }

    .ae-sl-card__badge {
        top: 12px;
        left: 12px;
    }
}

a.ae-sl-card {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   PROPERTY SHOW PAGE  (ae-sp)
   Append to public/css/styles.css BEFORE responsive breakpoints
   ========================================================================== */

.ae-sp__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.ae-sp__hero {
    background: var(--ae-gray-200);
}

.ae-sp__gallery {
    max-width: 1380px;
    margin: 0 auto;
    padding: 12px;
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 6px;
    min-height: 520px;
}

.ae-sp__gallery-main {
    position: relative;
    border-radius: 14px 0 0 14px;
    overflow: hidden;
    cursor: pointer;
}

.ae-sp__gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ae-sp__gallery-main:hover img {
    transform: scale(1.03);
}

.ae-sp__gallery-main--empty {
    background: var(--ae-gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: default;
    border-radius: 14px;
    color: var(--ae-gray-500);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.ae-sp__gallery-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.ae-sp__badge {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 6px 14px;
    border-radius: 3px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.ae-sp__badge--sale {
    background: var(--ae-gold);
    color: var(--ae-brown);
}

.ae-sp__badge--rent {
    background: var(--ae-white);
    color: var(--ae-brown);
}

.ae-sp__badge--featured {
    background: rgba(88, 78, 64, 0.8);
    color: var(--ae-gold-light);
    border: 1px solid rgba(217, 188, 138, 0.25);
}

.ae-sp__gallery-viewall {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--ae-brown);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 10px 18px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ae-sp__gallery-viewall:hover {
    background: var(--ae-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.ae-sp__gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
}

.ae-sp__gallery-side .ae-sp__gallery-thumb:nth-child(2) {
    border-radius: 0 14px 0 0;
}

.ae-sp__gallery-side .ae-sp__gallery-thumb:nth-child(4),
.ae-sp__gallery-side .ae-sp__gallery-thumb:last-child:nth-child(3) {
    border-radius: 0 0 14px 0;
}

.ae-sp__gallery-thumb {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.ae-sp__gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ae-sp__gallery-thumb:hover img {
    transform: scale(1.05);
}

.ae-sp__gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(88, 78, 64, 0.65);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ae-sp__gallery-more span {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--ae-white);
}

/* ==========================================================================
   INTRO
   ========================================================================== */
.ae-sp__intro {
    background: var(--ae-white);
    padding: 32px 0 0;
    border-bottom: 3px solid;
    border-image: linear-gradient(
            90deg,
            var(--ae-gold-dark),
            var(--ae-gold-light),
            var(--ae-gold-dark)
        )
        1;
}

.ae-sp__crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ae-gray-500);
}

.ae-sp__crumbs a {
    color: var(--ae-gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.ae-sp__crumbs a:hover {
    color: var(--ae-gold-dark);
}
.ae-sp__crumbs span {
    color: var(--ae-brown);
    font-weight: 500;
}

.ae-sp__intro-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.ae-sp__intro-left {
    flex: 1;
    min-width: 0;
}
.ae-sp__intro-right {
    flex-shrink: 0;
    text-align: right;
}

.ae-sp__title {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--ae-brown);
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.ae-sp__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--ae-gray-700);
    flex-wrap: wrap;
}

.ae-sp__loc-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--ae-gold);
    border-radius: 50%;
    margin: 0 4px;
}

.ae-sp__loc-estate {
    color: var(--ae-gold-dark);
    font-weight: 500;
}

.ae-sp__price {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--ae-brown);
    line-height: 1;
}

.ae-sp__price-sub {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: var(--ae-gray-500);
    display: block;
    margin-top: 4px;
}

/* Stats */
.ae-sp__stats {
    display: flex;
    margin-top: 24px;
    border-top: 1px solid var(--ae-gray-200);
    overflow-x: auto;
}

.ae-sp__stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 28px 18px 0;
    margin-right: 28px;
    border-right: 1px solid var(--ae-gray-200);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: var(--ae-gray-500);
    white-space: nowrap;
}

.ae-sp__stat:last-child {
    border-right: none;
    margin-right: 0;
}

.ae-sp__stat strong {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ae-brown);
    line-height: 1;
}

/* ==========================================================================
   BODY
   ========================================================================== */
.ae-sp__body {
    background: var(--ae-white);
    padding: 40px 0 80px;
}

.ae-sp__grid {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 40px;
    align-items: start;
}

.ae-sp__main {
    min-width: 0;
}

/* ---- Cards ---- */
.ae-sp__card {
    background: var(--ae-white);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 16px;
    border: 1px solid var(--ae-gray-200);
}

.ae-sp__card--flush {
    padding: 0;
    overflow: hidden;
}

.ae-sp__card-heading {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--ae-brown);
    margin: 0 0 20px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ae-gold-light);
}

.ae-sp__prose {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--ae-gray-700);
}

.ae-sp__prose p {
    margin: 0 0 14px 0;
}
.ae-sp__prose p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   ACCORDION / DROPDOWNS
   ========================================================================== */
.ae-sp__accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ae-sp__accordion-item {
    border-bottom: 1px solid var(--ae-gray-200);
}

.ae-sp__accordion-item:last-child {
    border-bottom: none;
}

.ae-sp__accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--ae-brown);
    transition: color 0.2s;
}

.ae-sp__accordion-trigger:hover {
    color: var(--ae-gold-dark);
}

.ae-sp__accordion-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.ae-sp__accordion-count {
    background: var(--ae-gray-100);
    color: var(--ae-gray-500);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.3px;
}

.ae-sp__accordion-chevron {
    color: var(--ae-gray-300);
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.2s;
    flex-shrink: 0;
}

.ae-sp__accordion-item--open .ae-sp__accordion-chevron {
    transform: rotate(180deg);
    color: var(--ae-gold);
}

.ae-sp__accordion-item--open .ae-sp__accordion-trigger {
    color: var(--ae-gold-dark);
}

.ae-sp__accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 4px;
}

.ae-sp__accordion-item--open .ae-sp__accordion-panel {
    max-height: 600px;
    padding: 0 4px 16px;
}

.ae-sp__accordion-panel p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ae-gray-700);
    margin: 0;
    padding: 12px 16px;
    background: var(--ae-gray-100);
    border-radius: 8px;
    border-left: 3px solid var(--ae-gold-light);
}

/* POI rows inside accordion */
.ae-sp__poi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--ae-gray-100);
    border-radius: 8px;
    margin-bottom: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--ae-gray-700);
}

.ae-sp__poi-row:last-child {
    margin-bottom: 0;
}

.ae-sp__poi-dist {
    font-size: 12px;
    font-weight: 600;
    color: var(--ae-gold-dark);
    background: rgba(217, 188, 138, 0.15);
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

/* ---- Amenity Grid ---- */
.ae-sp__amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.ae-sp__amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--ae-gray-100);
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--ae-gray-700);
    transition: background 0.2s;
}

.ae-sp__amenity:hover {
    background: var(--ae-gray-200);
}

/* ---- Utility Pills ---- */
.ae-sp__utility-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ae-sp__utility-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ae-gray-100);
    border: 1px solid var(--ae-gray-200);
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--ae-gray-700);
    transition: all 0.2s;
}

.ae-sp__utility-pill:hover {
    border-color: var(--ae-gold-light);
    background: rgba(217, 188, 138, 0.08);
}

/* ---- Details Table ---- */
.ae-sp__details-table {
    display: flex;
    flex-direction: column;
}

.ae-sp__detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--ae-gray-200);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.ae-sp__detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ae-sp__detail-row:first-child {
    padding-top: 0;
}
.ae-sp__detail-k {
    color: var(--ae-gray-500);
}
.ae-sp__detail-v {
    font-weight: 600;
    color: var(--ae-brown);
}

/* ---- Tags ---- */
.ae-sp__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ae-sp__tag {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    background: var(--ae-gray-100);
    border: 1px solid var(--ae-gold-light);
    color: var(--ae-brown);
    transition: all 0.2s;
}

.ae-sp__tag:hover {
    background: var(--ae-gold-light);
    color: var(--ae-brown);
}

/* ---- Map ---- */
.ae-sp__map {
    width: 100%;
    height: 340px;
    background: var(--ae-gray-200);
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.ae-sp__sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ae-sp__side-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ae-gray-200);
}

/* Agent */
.ae-sp__side-card--agent {
    background: var(--ae-white);
}

.ae-sp__agent-top {
    background: var(--ae-brown);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ae-sp__agency-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.ae-sp__agency-name {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--ae-gold-light);
    text-transform: uppercase;
}

.ae-sp__agent-body {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ae-sp__agent-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--ae-gold-light);
}

.ae-sp__agent-img--none {
    background: var(--ae-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ae-sp__agent-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ae-sp__agent-info strong {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: var(--ae-brown);
    margin-bottom: 2px;
}

.ae-sp__agent-info a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: var(--ae-gray-700);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

.ae-sp__agent-info a:hover {
    color: var(--ae-gold-dark);
}

.ae-sp__side-card--agent .ae-sp__btn--wa {
    margin: 0 22px 22px;
    width: calc(100% - 44px);
}

/* Form */
.ae-sp__side-card--form {
    background: var(--ae-brown);
    padding: 28px 22px;
    border-color: var(--ae-brown);
}

.ae-sp__form-title {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ae-gold);
    margin: 0 0 4px 0;
}

.ae-sp__form-sub {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: var(--ae-brown-light);
    margin: 0 0 22px 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.45);
}

.ae-sp__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ae-sp__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ae-sp__field label {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.55);
}

.ae-sp__field label span {
    color: var(--ae-gold);
}

.ae-sp__field input,
.ae-sp__field textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--ae-white);
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--ae-brown);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    box-sizing: border-box;
}

.ae-sp__field input:focus,
.ae-sp__field textarea:focus {
    outline: none;
    border-color: var(--ae-gold);
    box-shadow: 0 0 0 3px rgba(217, 188, 138, 0.25);
}

.ae-sp__field textarea {
    resize: vertical;
    min-height: 90px;
}

/* Share */
.ae-sp__side-card--share {
    background: var(--ae-white);
    padding: 20px 22px;
    text-align: center;
}

.ae-sp__share-label {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ae-gray-500);
    display: block;
    margin-bottom: 14px;
}

.ae-sp__share-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ae-sp__share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--ae-gray-200);
    background: var(--ae-gray-100);
    color: var(--ae-gray-700);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ae-sp__share-icon:hover {
    border-color: var(--ae-gold);
    color: var(--ae-gold-dark);
    background: var(--ae-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.ae-sp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ae-sp__btn--gold {
    background: var(--ae-gold);
    color: var(--ae-brown);
}

.ae-sp__btn--gold:hover {
    background: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.ae-sp__btn--wa {
    background: #25d366;
    color: #fff;
    border-radius: 6px;
}

.ae-sp__btn--wa:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

.ae-sp__btn--full {
    width: 100%;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.ae-sp__lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ae-sp__lightbox--open {
    opacity: 1;
    pointer-events: all;
}

.ae-sp__lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.ae-sp__lb-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ae-sp__lb-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s;
}

.ae-sp__lb-arr:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.ae-sp__lb-arr--prev {
    left: 24px;
}
.ae-sp__lb-arr--next {
    right: 24px;
}

.ae-sp__lb-stage {
    max-width: 88vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ae-sp__lb-stage img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.ae-sp__lb-count {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .ae-sp__grid {
        grid-template-columns: 1fr 320px;
        gap: 28px;
    }
    .ae-sp__gallery {
        min-height: 420px;
    }
    .ae-sp__title {
        font-size: 28px;
    }
    .ae-sp__price {
        font-size: 32px;
    }
    .ae-sp__stat {
        padding: 16px 20px 16px 0;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .ae-sp__gallery {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 4px;
        padding: 8px;
    }
    .ae-sp__gallery-main {
        height: 300px;
        border-radius: 12px 12px 0 0;
    }
    .ae-sp__gallery-side {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }
    .ae-sp__gallery-side .ae-sp__gallery-thumb:nth-child(2) {
        border-radius: 0;
    }
    .ae-sp__gallery-side .ae-sp__gallery-thumb:nth-child(4),
    .ae-sp__gallery-side .ae-sp__gallery-thumb:last-child:nth-child(3) {
        border-radius: 0;
    }
    .ae-sp__gallery-side .ae-sp__gallery-thumb:first-child {
        border-radius: 0 0 0 12px;
    }
    .ae-sp__gallery-side .ae-sp__gallery-thumb:last-child {
        border-radius: 0 0 12px 0;
    }
    .ae-sp__gallery-thumb {
        height: 80px;
    }
    .ae-sp__intro-split {
        flex-direction: column;
        gap: 12px;
    }
    .ae-sp__intro-right {
        text-align: left;
    }
    .ae-sp__stats {
        flex-wrap: wrap;
    }
    .ae-sp__stat {
        padding: 12px 16px 12px 0;
        margin-right: 16px;
    }
    .ae-sp__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ae-sp__sidebar {
        position: static;
    }
    .ae-sp__title {
        font-size: 24px;
    }
    .ae-sp__price {
        font-size: 28px;
    }
    .ae-sp__card {
        padding: 22px;
        border-radius: 12px;
    }
    .ae-sp__amenity-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ae-sp__map {
        height: 280px;
    }
    .ae-sp__lb-arr {
        width: 42px;
        height: 42px;
    }
    .ae-sp__lb-arr--prev {
        left: 12px;
    }
    .ae-sp__lb-arr--next {
        right: 12px;
    }
    .ae-sp__gallery-more span {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .ae-sp__gallery {
        padding: 6px;
    }
    .ae-sp__gallery-main {
        height: 240px;
    }
    .ae-sp__gallery-thumb {
        height: 60px;
    }
    .ae-sp__container {
        padding: 0 16px;
    }
    .ae-sp__intro {
        padding: 24px 0 0;
    }
    .ae-sp__title {
        font-size: 20px;
    }
    .ae-sp__price {
        font-size: 24px;
    }
    .ae-sp__card {
        padding: 18px;
        margin-bottom: 12px;
    }
    .ae-sp__card-heading {
        font-size: 17px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    .ae-sp__btn {
        padding: 12px 20px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    .ae-sp__stat {
        padding: 10px 12px 10px 0;
        margin-right: 12px;
        font-size: 12px;
    }
    .ae-sp__stat strong {
        font-size: 17px;
    }
    .ae-sp__stat svg {
        display: none;
    }
    .ae-sp__amenity-grid {
        grid-template-columns: 1fr;
    }
    .ae-sp__utility-row {
        gap: 6px;
    }
    .ae-sp__utility-pill {
        padding: 8px 14px;
        font-size: 12px;
    }
    .ae-sp__body {
        padding: 20px 0 48px;
    }
    .ae-sp__crumbs {
        font-size: 10px;
    }
    .ae-sp__accordion-trigger {
        padding: 14px 2px;
        font-size: 13px;
    }
}

/* ==========================================================================
   CONTACT PAGE — INFO CARDS
   ========================================================================== */
.ae-contact-cards {
    background-color: var(--ae-gray-100);
    padding: 4rem 2rem;
}

.ae-contact-cards__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

.ae-contact-cards__card {
    background-color: var(--ae-white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--ae-gray-200);
    transition: box-shadow var(--ae-transition);
}

.ae-contact-cards__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ae-contact-cards__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--ae-gold);
    color: var(--ae-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ae-contact-cards__title {
    font-family: var(--ae-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ae-black);
    margin-bottom: 0.5rem;
}

.ae-contact-cards__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--ae-gray-700);
}

.ae-contact-cards__text a {
    color: var(--ae-brown);
    font-weight: 500;
    transition: color var(--ae-transition);
}

.ae-contact-cards__text a:hover {
    color: var(--ae-gold-dark);
}

/* ==========================================================================
   CONTACT PAGE — FORM + MAP
   ========================================================================== */
.ae-contact-main {
    background-color: var(--ae-white);
    padding: 4rem 2rem 5rem;
}

.ae-contact-main__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: var(--ae-max-width);
    margin: 0 auto;
    align-items: start;
}

.ae-contact-main__heading {
    font-family: var(--ae-font-heading);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--ae-black);
    margin-bottom: 0.5rem;
}

.ae-contact-main__desc {
    font-size: 0.875rem;
    color: var(--ae-gray-500);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ae-contact-main__input,
.ae-contact-main__select,
.ae-contact-main__textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--ae-font-body);
    font-size: 0.875rem;
    color: var(--ae-black);
    background-color: var(--ae-gray-100);
    border: 1px solid var(--ae-gray-200);
    border-radius: 6px;
    outline: none;
    transition:
        border-color var(--ae-transition),
        box-shadow var(--ae-transition);
}

.ae-contact-main__input:focus,
.ae-contact-main__select:focus,
.ae-contact-main__textarea:focus {
    border-color: var(--ae-gold);
    box-shadow: 0 0 0 3px rgba(217, 188, 138, 0.1);
}

.ae-contact-main__input::placeholder,
.ae-contact-main__textarea::placeholder {
    color: var(--ae-gray-500);
}

.ae-contact-main__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8479' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.ae-contact-main__textarea {
    resize: vertical;
    min-height: 120px;
}

.ae-contact-main__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 2.25rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition:
        background-color var(--ae-transition),
        transform var(--ae-transition);
}

.ae-contact-main__submit:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.ae-contact-main__submit svg {
    transition: transform var(--ae-transition);
}

.ae-contact-main__submit:hover svg {
    transform: translateX(3px);
}

.ae-contact-main__map-wrap {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ae-contact-main__iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.ae-contact-main__map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ae-brown);
    margin-top: 0.75rem;
    transition: color var(--ae-transition);
}

.ae-contact-main__map-link:hover {
    color: var(--ae-gold-dark);
}

/* ==========================================================================
   CONTACT PAGE — RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .ae-contact-cards {
        padding: 2.5rem 1.25rem;
    }

    .ae-contact-cards__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ae-contact-main {
        padding: 3rem 1.25rem;
    }

    .ae-contact-main__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ae-contact-main__map-wrap {
        aspect-ratio: 16 / 10;
    }

    .ae-contact-main__submit {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   KNOWLEDGE BASE — INDEX PAGE
   ========================================================================== */
.ae-knowledge {
    background-color: var(--ae-white);
    padding: 4rem 2rem 5rem;
}

.ae-knowledge__inner {
    max-width: var(--ae-max-width);
    margin: 0 auto;
}

/* Two-column layout: cards left, sidebar right */
.ae-knowledge__layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}

.ae-knowledge__main {
    min-width: 0;
}

/* Blog cards grid — 2 columns within the main area */
.ae-knowledge__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ae-knowledge__card {
    display: flex;
    flex-direction: column;
    background-color: var(--ae-white);
    border: 1px solid var(--ae-gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition:
        box-shadow var(--ae-transition),
        transform var(--ae-transition);
}

.ae-knowledge__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.ae-knowledge__card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.ae-knowledge__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ae-knowledge__card:hover .ae-knowledge__card-img {
    transform: scale(1.04);
}

.ae-knowledge__card-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-family: var(--ae-font-body);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.ae-knowledge__card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ae-knowledge__card-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--ae-gray-500);
    margin-bottom: 0.5rem;
}

.ae-knowledge__card-title {
    font-family: var(--ae-font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ae-black);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.ae-knowledge__card-excerpt {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--ae-gray-700);
    margin-bottom: 1rem;
    flex: 1;
}

.ae-knowledge__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--ae-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ae-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--ae-transition);
}

.ae-knowledge__card:hover .ae-knowledge__card-link {
    color: var(--ae-brown);
}

.ae-knowledge__card-link svg {
    transition: transform var(--ae-transition);
}

.ae-knowledge__card:hover .ae-knowledge__card-link svg {
    transform: translateX(3px);
}

/* Pagination */
.ae-knowledge__pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

/* Empty state */
.ae-knowledge__empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--ae-gray-500);
    font-size: 0.9375rem;
}

/* ==========================================================================
   KNOWLEDGE BASE — SIDEBAR
   ========================================================================== */
.ae-knowledge__sidebar-card {
    background-color: var(--ae-gray-100);
    border: 1px solid var(--ae-gray-200);
    border-radius: 10px;
    padding: 1.75rem;
    position: sticky;
    top: calc(var(--ae-header-height) + 1.5rem);
}

.ae-knowledge__sidebar-heading {
    font-family: var(--ae-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ae-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--ae-gray-200);
}

.ae-knowledge__sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.ae-knowledge__sidebar-list li {
    border-bottom: 1px solid var(--ae-gray-200);
}

.ae-knowledge__sidebar-list li:last-child {
    border-bottom: none;
}

.ae-knowledge__sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 0;
    font-family: var(--ae-font-body);
    font-size: 0.875rem;
    color: var(--ae-gray-700);
    transition: color var(--ae-transition);
}

.ae-knowledge__sidebar-link:hover {
    color: var(--ae-black);
}

.ae-knowledge__sidebar-link--active {
    color: var(--ae-black);
    font-weight: 600;
}

.ae-knowledge__sidebar-arrow {
    font-size: 0.5rem;
    color: var(--ae-gray-500);
    transition: color var(--ae-transition);
}

.ae-knowledge__sidebar-link:hover .ae-knowledge__sidebar-arrow,
.ae-knowledge__sidebar-link--active .ae-knowledge__sidebar-arrow {
    color: var(--ae-gold-dark);
}

.ae-knowledge__sidebar-name {
    flex: 1;
}

.ae-knowledge__sidebar-count {
    font-size: 0.8125rem;
    color: var(--ae-gray-500);
    min-width: 1.5rem;
    text-align: right;
}

.ae-knowledge__sidebar-link--active .ae-knowledge__sidebar-count {
    color: var(--ae-black);
}

/* ==========================================================================
   KNOWLEDGE BASE — ARTICLE / SHOW PAGE
   ========================================================================== */
.ae-blog-hero__cat {
    display: inline-block;
    font-family: var(--ae-font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    padding: 0.3rem 0.85rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

.ae-blog-article {
    background-color: var(--ae-white);
    padding: 3rem 2rem 4rem;
}

.ae-blog-article__inner {
    max-width: 780px;
    margin: 0 auto;
}

.ae-blog-article__meta {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--ae-gray-200);
}

.ae-blog-article__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ae-blog-article__author-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.ae-blog-article__author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.ae-blog-article__author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ae-black);
}

.ae-blog-article__date {
    font-size: 0.8125rem;
    color: var(--ae-gray-500);
}

.ae-blog-article__content {
    font-family: var(--ae-font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ae-gray-700);
}

.ae-blog-article__content h2 {
    font-family: var(--ae-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ae-black);
    margin: 2rem 0 0.75rem;
}

.ae-blog-article__content h3 {
    font-family: var(--ae-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ae-black);
    margin: 1.75rem 0 0.5rem;
}

.ae-blog-article__content p {
    margin-bottom: 1.25rem;
}

.ae-blog-article__content ul,
.ae-blog-article__content ol {
    margin: 0 0 1.25rem 1.5rem;
}

.ae-blog-article__content li {
    margin-bottom: 0.4rem;
}

.ae-blog-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.ae-blog-article__content blockquote {
    border-left: 3px solid var(--ae-gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--ae-gray-100);
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: var(--ae-brown);
}

.ae-blog-article__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.ae-blog-article__gallery-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ae-blog-article__gallery-img:hover {
    transform: scale(1.02);
}

.ae-blog-article__back {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ae-gray-200);
}

.ae-blog-article__back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ae-brown);
    transition: color var(--ae-transition);
}

.ae-blog-article__back-link:hover {
    color: var(--ae-gold-dark);
}

.ae-blog-article__back-link svg {
    transition: transform var(--ae-transition);
}

.ae-blog-article__back-link:hover svg {
    transform: translateX(-3px);
}

/* ==========================================================================
   KNOWLEDGE BASE — RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .ae-knowledge__layout {
        grid-template-columns: 1fr 240px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .ae-knowledge {
        padding: 3rem 1.25rem;
    }

    .ae-knowledge__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ae-knowledge__sidebar {
        order: -1;
    }

    .ae-knowledge__sidebar-card {
        position: static;
    }

    .ae-knowledge__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .ae-blog-article {
        padding: 2rem 1.25rem 3rem;
    }

    .ae-blog-article__gallery {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   LEGAL PAGES (Terms & Conditions, Privacy Policy)
   ========================================================================== */
.ae-legal {
    background-color: var(--ae-white);
    padding: 3rem 2rem 5rem;
}

.ae-legal__inner {
    max-width: 780px;
    margin: 0 auto;
}

.ae-legal__updated {
    font-size: 0.8125rem;
    color: var(--ae-gray-500);
    font-style: italic;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--ae-gray-200);
}

.ae-legal h2 {
    font-family: var(--ae-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ae-black);
    margin: 2.25rem 0 0.75rem;
}

.ae-legal h2:first-of-type {
    margin-top: 0;
}

.ae-legal p {
    font-family: var(--ae-font-body);
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--ae-gray-700);
    margin-bottom: 1rem;
}

.ae-legal ul {
    margin: 0 0 1.25rem 0;
    padding: 0;
    list-style: none;
}

.ae-legal ul li {
    position: relative;
    padding-left: 1.25rem;
    font-family: var(--ae-font-body);
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--ae-gray-700);
    margin-bottom: 0.35rem;
}

.ae-legal ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ae-gold);
    font-weight: 700;
}

.ae-legal a {
    color: var(--ae-brown);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--ae-transition);
}

.ae-legal a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .ae-legal {
        padding: 2rem 1.25rem 3rem;
    }

    .ae-legal h2 {
        font-size: 1.125rem;
    }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* --- Serene Living Section --- */
.ae-about-serene {
    background-color: var(--ae-gray-100);
    padding: 80px 2rem;
}

.ae-about-serene__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ae-about-serene__label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ae-brown);
    margin-bottom: 12px;
}

.ae-about-serene__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--ae-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0 0 24px;
}

.ae-about-serene__paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--ae-gray-500);
    margin: 0 0 16px;
}

.ae-about-serene__paragraph:last-of-type {
    margin-bottom: 28px;
}

.ae-about-serene__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    padding: 14px 28px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ae-about-serene__cta:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

/* Gallery layout: 1 large top, 2 small bottom */
.ae-about-serene__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.ae-about-serene__img-large {
    grid-column: 1 / -1;
    border-radius: 12px;
    overflow: hidden;
}

.ae-about-serene__img-small {
    border-radius: 10px;
    overflow: hidden;
}

.ae-about-serene__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ae-about-serene__img-large img {
    aspect-ratio: 16 / 9;
}

.ae-about-serene__img-small img {
    aspect-ratio: 4 / 3;
}

.ae-about-serene__gallery img:hover {
    transform: scale(1.03);
}

/* --- Downloads Section --- */
.ae-about-downloads {
    background-color: var(--ae-white);
    padding: 4rem 2rem;
}

.ae-about-downloads__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ae-about-downloads__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--ae-black);
    margin-bottom: 0.5rem;
}

.ae-about-downloads__desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: var(--ae-gray-500);
    margin-bottom: 2rem;
}

.ae-about-downloads__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ae-about-downloads__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--ae-gray-100);
    border: 1px solid var(--ae-gray-200);
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ae-about-downloads__card:hover {
    border-color: var(--ae-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.ae-about-downloads__card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background-color: var(--ae-gold);
    color: var(--ae-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ae-about-downloads__card-info {
    flex: 1;
    min-width: 0;
}

.ae-about-downloads__card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ae-black);
    margin-bottom: 0.2rem;
}

.ae-about-downloads__card-desc {
    font-size: 0.75rem;
    color: var(--ae-gray-500);
    line-height: 1.4;
}

.ae-about-downloads__card-action {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ae-gold-dark);
    white-space: nowrap;
}

.ae-about-downloads__card:hover .ae-about-downloads__card-action {
    color: var(--ae-brown);
}

/* --- Layout Maps Section --- */
.ae-about-maps {
    background-color: var(--ae-gray-100);
    padding: 4rem 2rem;
}

.ae-about-maps__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ae-about-maps__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--ae-black);
    margin-bottom: 1.5rem;
}

.ae-about-maps__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ae-about-maps__card {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--ae-white);
    border: 1px solid var(--ae-gray-200);
    transition: box-shadow 0.3s ease;
}

.ae-about-maps__card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.ae-about-maps__img {
    width: 100%;
    height: auto;
    display: block;
}

.ae-about-maps__label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ae-black);
    padding: 1rem 1.25rem;
    text-align: center;
}

/* --- Rent to Buy Section --- */
.ae-about-rtb {
    background-color: var(--ae-white);
    padding: 4rem 2rem 5rem;
}

.ae-about-rtb__inner {
    max-width: 900px;
    margin: 0 auto;
}

.ae-about-rtb__label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ae-brown);
    margin-bottom: 10px;
}

.ae-about-rtb__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--ae-black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ae-about-rtb__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ae-about-rtb__benefits li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ae-gray-700);
    padding-left: 24px;
    position: relative;
}

.ae-about-rtb__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--ae-gold);
}

.ae-about-rtb__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    padding: 14px 28px;
    border-radius: 2px;
    margin-top: 2.5rem;
    transition: all 0.3s ease;
}

.ae-about-rtb__cta:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

/* --- FAQ Accordion --- */
.ae-about-faq {
    display: flex;
    flex-direction: column;
}

.ae-about-faq__item {
    border-bottom: 1px solid var(--ae-gray-200);
}

.ae-about-faq__item:first-child {
    border-top: 1px solid var(--ae-gray-200);
}

.ae-about-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ae-black);
    transition: color 0.3s ease;
}

.ae-about-faq__question:hover {
    color: var(--ae-brown);
}

.ae-about-faq__chevron {
    flex-shrink: 0;
    color: var(--ae-gold-dark);
    transition: transform 0.35s ease;
}

.ae-about-faq__item--open .ae-about-faq__chevron {
    transform: rotate(180deg);
}

.ae-about-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ae-about-faq__answer-inner {
    padding: 0 0 1.5rem;
}

.ae-about-faq__answer-inner p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--ae-gray-700);
    margin-bottom: 0.75rem;
}

.ae-about-faq__answer-inner p:last-child {
    margin-bottom: 0;
}

.ae-about-faq__item--open .ae-about-faq__question {
    color: var(--ae-brown);
}


/* ==========================================================================
   ABOUT PAGE — RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .ae-about-serene {
        padding: 60px 2rem;
    }

    .ae-about-serene__inner {
        gap: 40px;
    }

    .ae-about-downloads__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ae-about-serene {
        padding: 48px 1.25rem;
    }

    .ae-about-serene__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ae-about-serene__paragraph {
        font-size: 14px;
    }

    .ae-about-serene__cta {
        width: 100%;
        justify-content: center;
    }

    .ae-about-downloads {
        padding: 3rem 1.25rem;
    }

    .ae-about-downloads__grid {
        grid-template-columns: 1fr;
    }

    .ae-about-downloads__card {
        flex-direction: column;
        text-align: center;
    }

    .ae-about-maps {
        padding: 3rem 1.25rem;
    }

    .ae-about-maps__grid {
        grid-template-columns: 1fr;
    }

    .ae-about-rtb {
        padding: 3rem 1.25rem;
    }

    .ae-about-faq__question {
        font-size: 0.9375rem;
        padding: 1rem 0;
    }

    .ae-about-faq__answer-inner {
        padding-bottom: 1.25rem;
    }

    .ae-about-rtb__cta {
        width: 100%;
        justify-content: center;
    }
}
/* ==========================================================================
   HERO SLIDER
   DELETE all old .hero-slider CSS and replace with this entire block
   ========================================================================== */
.hero-slider {
    width: 100%;
    overflow: hidden;
    background-color: var(--ae-black);
    position: relative;
}

.hero-slider__track {
    display: flex;
    flex-wrap: nowrap;
    height: calc(100vh - var(--ae-header-height));
    min-height: 500px;
    max-height: 800px;
}

/* ---------- Each panel (DESKTOP default) ---------- */
.hero-slider__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 6%;
    min-width: 60px;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-slider__item:first-child {
    border-left: none;
}

.hero-slider__item--open {
    flex: 1 1 0%;
}

.hero-slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
}

/* ---------- Collapsed vertical label (DESKTOP only) ---------- */
.hero-slider__collapsed-label {
    display: none;
}

.hero-slider__item--closed .hero-slider__collapsed-label {
    display: flex;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-slider__collapsed-label span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--ae-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ae-white);
    background-color: rgba(88, 78, 64, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 1rem 0.55rem;
    border-radius: 2px;
}

.hero-slider__item--closed:hover .hero-slider__collapsed-label span {
    background-color: rgba(217, 188, 138, 0.75);
    color: var(--ae-black);
}

/* ---------- Content overlay ---------- */
.hero-slider__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem;
    z-index: 2;
}

.hero-slider__item--closed .hero-slider__content {
    opacity: 0;
    pointer-events: none;
}

.hero-slider__item--open .hero-slider__content {
    opacity: 1;
    transition: opacity 0.4s ease 0.3s;
}

.hero-slider__title {
    font-family: var(--ae-font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--ae-white);
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-slider__desc {
    font-family: var(--ae-font-body);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    max-width: 400px;
    line-height: 1.5;
}

.hero-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--ae-gold);
    color: var(--ae-black);
    font-family: var(--ae-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.65rem 1.25rem;
    border-radius: 2px;
    transition:
        background-color var(--ae-transition),
        transform var(--ae-transition);
}

.hero-slider__btn:hover {
    background-color: var(--ae-gold-light);
    transform: translateY(-1px);
}

/* ---------- Dots (hidden on desktop) ---------- */
.hero-slider__dots {
    display: none;
}

/* ==========================================================================
   HERO SLIDER — MOBILE (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
    .hero-slider {
        overflow: visible;
    }

    .hero-slider__track {
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        height: auto;
        min-height: 0;
        max-height: none;
        flex-wrap: nowrap;
    }

    .hero-slider__track::-webkit-scrollbar {
        display: none;
    }

    .hero-slider__item {
        /* Fixed width in vw units — this is what makes it scroll */
        flex: none !important;
        width: 85vw !important;
        min-width: 85vw !important;
        height: 70vh;
        max-height: 600px;
        scroll-snap-align: start;
        border-left: none;
        transition: none;
    }

    /* Show ALL content on mobile */
    .hero-slider__item--closed .hero-slider__content,
    .hero-slider__item--open .hero-slider__content {
        opacity: 1 !important;
        pointer-events: auto !important;
        transition: none;
    }

    .hero-slider__item--closed .hero-slider__collapsed-label {
        display: none !important;
    }

    .hero-slider__content {
        padding: 0 0 2.5rem 1.5rem;
    }

    .hero-slider__title {
        font-size: 2.4em;
    }

    .hero-slider__desc {
        font-size: 0.8125rem;
    }

    /* Show dots */
    .hero-slider__dots {
        display: flex;
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        gap: 0.5rem;
        z-index: 10;
        pointer-events: none;
    }

    .hero-slider__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }

    .hero-slider__dot--active {
        background-color: var(--ae-gold);
        width: 20px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .hero-slider__item {
        width: 92vw !important;
        min-width: 92vw !important;
        height: 70vh;
    }
}
.ae-gallery__dots {
    display: none;
}

.ae-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.ae-gallery__arrow--prev {
    left: 8px;
}

.ae-gallery__arrow--next {
    right: 8px;
}

@media (max-width: 768px) {
    .ae-gallery {
        padding: 2rem 1rem 1rem;
        margin: 0;
    }

    .ae-gallery__inner {
        padding: 0;
        margin: 0;
        gap: 0;
        position: relative;
    }

    .ae-gallery__track-wrap {
        border-radius: 0;
        overflow: hidden;
        width: 100%;
    }

    .ae-gallery__track {
        border-radius: 0;
    }

    .ae-gallery__slide {
        border-radius: 0;
        flex-shrink: 0;
        width: 100%;
    }

    .ae-gallery__slide-img {
        border-radius: 12px;
        width: 100%;
        display: block;
    }

    .ae-gallery__dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        padding: 12px 0 4px;
    }

    .ae-gallery__dot {
        width: 32px;
        height: 4px;
        border-radius: 2px;
        background: rgba(0, 0, 0, 0.15);
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }

    .ae-gallery__dot::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: var(--ae-gold, #b8973a);
        border-radius: 2px;
        transition: width 0s;
    }

    .ae-gallery__dot--active::after {
        width: 100%;
        transition: width 3s linear;
    }
}

.ae-gallery__progress {
    display: none;
}

@media (max-width: 768px) {
    .ae-gallery__progress {
        display: block;
        height: 4px;
        background: rgba(0, 0, 0, 0.12);
        margin: 10px 16px 29px;
        border-radius: 2px;
        overflow: hidden;
    }

    .ae-gallery__progress-fill {
        height: 100%;
        width: 0%;
        background: var(--ae-gold, #b8973a);
        border-radius: 2px;
        transition: width 0.3s ease;
    }
}

/* ========================================================================
   FILTER BAR — Avianto Estate Rentals
   ======================================================================== */

.ae-sl-filters {
    background: linear-gradient(135deg, #faf8f5 0%, #f3efe8 100%);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2d9cc;
}

/* ---- toggle button (hidden on desktop) ---- */

.ae-sl-filter-toggle {
    display: none;
}

/* ---- form layout ---- */

.ae-sl-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.ae-sl-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    min-width: 140px;
}

.ae-sl-filter-group label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ae-brown, #7a5c3a);
    padding-left: 2px;
}

.ae-sl-filter-group select {
    padding: 0.6rem 2rem 0.6rem 0.85rem;
    border: 1px solid #d6cdbf;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a5c3a'/%3E%3C/svg%3E")
        no-repeat right 0.75rem center;
    background-size: 10px 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #333;
    cursor: pointer;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.ae-sl-filter-group select:hover {
    border-color: var(--ae-brown, #7a5c3a);
}

.ae-sl-filter-group select:focus {
    outline: none;
    border-color: var(--ae-brown, #7a5c3a);
    box-shadow: 0 0 0 3px rgba(122, 92, 58, 0.12);
}

/* ---- actions ---- */

.ae-sl-filter-actions {
    display: flex;
    gap: 0.6rem;
    align-items: flex-end;
    padding-bottom: 1px;
}

.ae-sl-filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--ae-brown, #7a5c3a);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.2s,
        transform 0.15s;
}

.ae-sl-filter-btn:hover {
    background: #634a2e;
    transform: translateY(-1px);
}

.ae-sl-filter-btn:active {
    transform: translateY(0);
}

.ae-sl-filter-clear {
    padding: 0.6rem 1.1rem;
    border: 1px solid #c9bfb0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: #78695a;
    text-decoration: none;
    white-space: nowrap;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}

.ae-sl-filter-clear:hover {
    border-color: #a89888;
    color: #5a4a3a;
    background: rgba(122, 92, 58, 0.05);
}

/* ========================================================================
   DESKTOP PRICE — select with inline custom swap
   ======================================================================== */

.ae-sl-price-wrap {
    position: relative;
}

.ae-sl-price-select {
    width: 100%;
    padding: 0.6rem 2rem 0.6rem 0.85rem;
    border: 1px solid #d6cdbf;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a5c3a'/%3E%3C/svg%3E")
        no-repeat right 0.75rem center;
    background-size: 10px 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #333;
    cursor: pointer;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.ae-sl-price-select:hover {
    border-color: var(--ae-brown, #7a5c3a);
}

.ae-sl-price-select:focus {
    outline: none;
    border-color: var(--ae-brown, #7a5c3a);
    box-shadow: 0 0 0 3px rgba(122, 92, 58, 0.12);
}

/* custom input — sits in same spot as select, hidden by default */

.ae-sl-price-custom {
    display: none;
}

.ae-sl-price-custom--visible {
    display: block;
}

.ae-sl-price-custom__input {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d6cdbf;
    border-radius: 8px;
    padding: 0 0.5rem 0 0.75rem;
    height: 38px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.ae-sl-price-custom__input:focus-within {
    border-color: var(--ae-brown, #7a5c3a);
    box-shadow: 0 0 0 3px rgba(122, 92, 58, 0.12);
}

.ae-sl-price-custom__prefix {
    font-size: 13px;
    font-weight: 600;
    color: var(--ae-brown, #7a5c3a);
    margin-right: 0.3rem;
    flex-shrink: 0;
}

.ae-sl-price-custom__field {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    width: 100%;
    font-variant-numeric: tabular-nums;
}

.ae-sl-price-custom__field::placeholder {
    color: #aaa;
}

/* X button to go back to select */

.ae-sl-price-custom__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border: none;
    background: #f5f0ea;
    border-radius: 50%;
    cursor: pointer;
    color: #8a7560;
    padding: 0;
    margin-left: 0.25rem;
    transition:
        background 0.2s,
        color 0.2s;
}

.ae-sl-price-custom__close:hover {
    background: #ebe4da;
    color: #5a4a3a;
}

.ae-sl-price-custom__close svg {
    display: block;
}

/* ========================================================================
   MOBILE PRICE BUTTONS (hidden on desktop)
   ======================================================================== */

.ae-sl-mob-price-group {
    display: none;
}

.ae-sl-mob-price-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.85rem;
    background: var(--ae-brown, #7a5c3a);
    border: none;
    border-radius: 10px;
    font-family: inherit;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    min-height: 50px;
}

.ae-sl-mob-price-btn:hover {
    background: #634a2e;
}

.ae-sl-mob-price-btn__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.ae-sl-mob-price-btn__label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

.ae-sl-mob-price-btn__value {
    font-size: 15px;
    font-weight: 700;
}

.ae-sl-mob-price-btn__chevron {
    transition: transform 0.2s;
    opacity: 0.8;
}

/* ========================================================================
   MOBILE POPOVER (bottom sheet)
   ======================================================================== */

.ae-sl-mob-price-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999;
}

.ae-sl-mob-price-overlay--visible {
    display: block;
}

.ae-sl-mob-price-popover {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.ae-sl-mob-price-popover--visible {
    display: block;
    transform: translateY(0);
}

.ae-sl-mob-price-popover__handle {
    width: 36px;
    height: 4px;
    background: #ddd5c9;
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

.ae-sl-mob-price-popover__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0 1rem;
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #f0ebe3;
    margin-bottom: 0.5rem;
}

.ae-sl-mob-price-popover__title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.01em;
}

.ae-sl-mob-price-popover__close {
    background: #f5f0ea;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ae-sl-mob-price-popover__close:hover {
    background: #ebe4da;
}

/* -- list view options -- */

.ae-sl-mob-price-popover__options {
    display: flex;
    flex-direction: column;
}

.ae-sl-mob-price-opt {
    padding: 0.85rem 0.75rem;
    border: none;
    font-size: 15px;
    color: #333;
    background: none;
    text-align: left;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    border-radius: 8px;
    transition:
        background 0.15s,
        color 0.15s;
}

.ae-sl-mob-price-opt:hover {
    background: #f8f5f0;
    color: var(--ae-brown, #7a5c3a);
}

.ae-sl-mob-price-opt--active {
    background: rgba(122, 92, 58, 0.08);
    color: var(--ae-brown, #7a5c3a);
    font-weight: 700;
}

.ae-sl-mob-price-popover__custom-btn {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: rgba(122, 92, 58, 0.06);
    border: 1.5px dashed #c9bfb0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 600;
    color: var(--ae-brown, #7a5c3a);
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.ae-sl-mob-price-popover__custom-btn:hover {
    border-color: var(--ae-brown, #7a5c3a);
    background: rgba(122, 92, 58, 0.1);
}

/* -- custom view -- */

.ae-sl-mob-price-popover__custom {
    display: none;
}

.ae-sl-mob-price-popover__custom--visible {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ae-sl-price-custom__input--mob {
    height: 48px;
    border-radius: 12px;
    padding: 0 1rem;
    font-size: 16px;
    border: 2px solid #d6cdbf;
}

.ae-sl-price-custom__input--mob:focus-within {
    border-color: var(--ae-brown, #7a5c3a);
    box-shadow: 0 0 0 3px rgba(122, 92, 58, 0.12);
}

.ae-sl-price-custom__input--mob .ae-sl-price-custom__prefix {
    font-size: 15px;
}

.ae-sl-price-custom__input--mob .ae-sl-price-custom__field {
    font-size: 17px;
    font-weight: 600;
}

.ae-sl-mob-price-popover__done {
    width: 100%;
    padding: 0.85rem;
    background: var(--ae-brown, #7a5c3a);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.ae-sl-mob-price-popover__done:hover {
    background: #634a2e;
}

.ae-sl-mob-price-popover__back {
    width: 100%;
    padding: 0.5rem;
    background: none;
    border: none;
    font-size: 14px;
    font-family: inherit;
    font-weight: 600;
    color: var(--ae-brown, #7a5c3a);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-align: center;
}

/* ========================================================================
   RESPONSIVE — mobile
   ======================================================================== */

@media (max-width: 768px) {
    .ae-sl-filters {
        padding: 0.75rem 0;
    }

    /* show toggle */
    .ae-sl-filter-toggle {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.7rem 1rem;
        background: #fff;
        border: 1px solid #d6cdbf;
        border-radius: 10px;
        font-size: 14px;
        font-family: inherit;
        font-weight: 600;
        color: var(--ae-brown, #7a5c3a);
        cursor: pointer;
        transition:
            border-color 0.2s,
            box-shadow 0.2s;
    }

    .ae-sl-filter-toggle:hover {
        border-color: var(--ae-brown, #7a5c3a);
    }

    .ae-sl-filter-toggle__count {
        background: var(--ae-brown, #7a5c3a);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        min-width: 20px;
        height: 20px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 6px;
    }

    .ae-sl-filter-toggle__chevron {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    /* hide form by default */
    .ae-sl-filter-form {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            margin-top 0.3s ease;
    }

    /* open state */
    .ae-sl-filters--open .ae-sl-filter-toggle__chevron {
        transform: rotate(180deg);
    }

    .ae-sl-filters--open .ae-sl-filter-toggle {
        border-color: var(--ae-brown, #7a5c3a);
        box-shadow: 0 0 0 3px rgba(122, 92, 58, 0.08);
    }

    .ae-sl-filters--open .ae-sl-filter-form {
        max-height: 700px;
        opacity: 1;
        margin-top: 0.75rem;
    }

    /* layout */
    .ae-sl-filter-form {
        gap: 0.75rem;
    }

    .ae-sl-filter-group {
        min-width: calc(50% - 0.5rem);
    }

    .ae-sl-filter-actions {
        width: 100%;
        padding-top: 0.25rem;
    }

    .ae-sl-filter-btn {
        flex: 1;
    }

    /* hide desktop price selects on mobile */
    .ae-sl-filter-group--desktop-price {
        display: none;
    }

    /* show mobile price buttons */
    .ae-sl-mob-price-group {
        display: contents;
    }

    /* hide parent label since it's inside the button */
    .ae-sl-mob-price-group .ae-sl-filter-group > label {
        display: none;
    }
}

@media (max-width: 420px) {
    .ae-sl-filter-group {
        min-width: 100%;
    }
}

/* hide mobile popover on desktop */
@media (min-width: 769px) {
    .ae-sl-mob-price-overlay,
    .ae-sl-mob-price-popover {
        display: none !important;
    }
}

/* Amenities dots — mobile only */
.ae-amenities__dots {
    display: none;
    justify-content: center;
    gap: 8px;
    padding: 1rem 0 0.5rem;
}

.ae-amenities__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.ae-amenities__dot--active {
    background: #b8860b;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .ae-amenities__arrow {
        display: none !important;
    }
    .ae-amenities__dots {
        display: flex;
    }
}

/* Developments dots — mobile only */
.ae-developments__dots {
    display: none;
    justify-content: center;
    gap: 8px;
    padding: 1rem 0 0.5rem;
}

.ae-developments__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.ae-developments__dot--active {
    background: #b8860b;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .ae-developments__arrow {
        display: none !important;
    }
    .ae-developments__dots {
        display: flex;
    }
}
/* Lifestyle grid — mobile horizontal scroll + dots */
.ae-lifestyle__dots {
    display: none;
    justify-content: center;
    gap: 8px;
    padding: 1rem 0 0.5rem;
}

.ae-lifestyle__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.ae-lifestyle__dot--active {
    background: #b8860b;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .ae-lifestyle__grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 4px;
    }

    .ae-lifestyle__card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .ae-lifestyle__dots {
        display: flex;
    }
}
/* ============================================================
   LIFESTYLE PAGE
   ============================================================ */

/* --- Intro --- */
.ae-lf-intro {
    background-color: var(--ae-gray-100);
    padding: 80px 24px 60px;
    text-align: center;
}

.ae-lf-intro__inner {
    max-width: 720px;
    margin: 0 auto;
}

.ae-lf-intro__label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--ae-brown);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ae-lf-intro__heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--ae-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
    line-height: 1.2;
}

.ae-lf-intro__text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--ae-gray-500);
    margin: 0 0 32px;
}

.ae-lf-intro__line {
    width: 60px;
    height: 3px;
    margin: 0 auto;
    background: linear-gradient(90deg, var(--ae-gold-dark), var(--ae-gold-light));
    border-radius: 2px;
}

/* --- Feature Grid --- */
.ae-lf-grid-section {
    background-color: var(--ae-black);
    padding: 80px 24px;
}

.ae-lf-grid-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* --- Feature Card --- */
.ae-lf-feature {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ae-white);
    min-height: 360px;
    transition: transform 0.35s ease;
}

.ae-lf-feature:hover {
    transform: translateY(-4px);
}

.ae-lf-feature--large {
    grid-column: span 2;
    min-height: 440px;
}

.ae-lf-feature__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ae-lf-feature__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ae-lf-feature:hover .ae-lf-feature__img {
    transform: scale(1.05);
}

.ae-lf-feature__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.15) 100%
    );
    transition: background 0.35s ease;
}

.ae-lf-feature:hover .ae-lf-feature__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.ae-lf-feature__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 40px 36px;
}

.ae-lf-feature__number {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--ae-gold);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ae-lf-feature__title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
    line-height: 1.2;
    color: var(--ae-gold);
}

.ae-lf-feature--large .ae-lf-feature__title {
    font-size: 34px;
}

.ae-lf-feature__desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 20px;
    max-width: 560px;
}

.ae-lf-feature__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ae-gold);
    transition: color 0.3s ease, gap 0.3s ease;
}

.ae-lf-feature:hover .ae-lf-feature__link {
    color: var(--ae-gold-light);
    gap: 12px;
}

/* --- CTA Banner --- */
.ae-lf-cta {
    background-color: var(--ae-gray-100);
    padding: 80px 24px;
    text-align: center;
}

.ae-lf-cta__inner {
    max-width: 720px;
    margin: 0 auto;
}

.ae-lf-cta__heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ae-black);
    margin: 0 0 16px;
    line-height: 1.25;
}

.ae-lf-cta__text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ae-gray-500);
    margin: 0 0 36px;
}

.ae-lf-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ae-lf-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ae-lf-cta__btn--primary {
    background-color: var(--ae-gold);
    color: var(--ae-black);
}

.ae-lf-cta__btn--primary:hover {
    background-color: var(--ae-gold-dark);
    transform: translateY(-1px);
}

.ae-lf-cta__btn--outline {
    background-color: transparent;
    color: var(--ae-black);
    border: 1.5px solid var(--ae-black);
}

.ae-lf-cta__btn--outline:hover {
    background-color: var(--ae-black);
    color: var(--ae-white);
    transform: translateY(-1px);
}


/* ============================================================
   LIFESTYLE PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .ae-lf-intro {
        padding: 60px 24px 48px;
    }

    .ae-lf-intro__heading {
        font-size: 34px;
    }

    .ae-lf-grid-section {
        padding: 60px 24px;
    }

    .ae-lf-feature {
        min-height: 320px;
    }

    .ae-lf-feature--large {
        min-height: 380px;
    }

    .ae-lf-feature__title {
        font-size: 24px;
    }

    .ae-lf-feature--large .ae-lf-feature__title {
        font-size: 28px;
    }

    .ae-lf-feature__content {
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {
    .ae-lf-intro {
        padding: 48px 20px 40px;
    }

    .ae-lf-intro__heading {
        font-size: 28px;
    }

    .ae-lf-intro__text {
        font-size: 15px;
    }

    .ae-lf-grid-section {
        padding: 40px 16px;
    }

    .ae-lf-grid-section__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ae-lf-feature,
    .ae-lf-feature--large {
        grid-column: span 1;
        min-height: 300px;
    }

    .ae-lf-feature__title,
    .ae-lf-feature--large .ae-lf-feature__title {
        font-size: 22px;
    }

    .ae-lf-feature__desc {
        font-size: 13px;
    }

    .ae-lf-feature__content {
        padding: 28px 24px;
    }

    .ae-lf-cta {
        padding: 56px 20px;
    }

    .ae-lf-cta__heading {
        font-size: 26px;
    }

    .ae-lf-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ae-lf-cta__btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ae-lf-intro__heading {
        font-size: 24px;
    }

    .ae-lf-feature,
    .ae-lf-feature--large {
        min-height: 260px;
    }

    .ae-lf-feature__title,
    .ae-lf-feature--large .ae-lf-feature__title {
        font-size: 20px;
    }

    .ae-lf-feature__content {
        padding: 24px 20px;
    }

    .ae-lf-cta__heading {
        font-size: 22px;
    }
}

.grecaptcha-badge {
    visibility: hidden !important;
}