:root {
    --warm-ivory: #FAF7F0;
    --warm-gold: #FFC663;
    --maroon: #5E1914;
    --warm-black: #1C1C1C;
    --black: #131411;
    --stone-gray: #4F534F;
    --warm-white: #FFFCF7;
    --emerald-green: #097659;

    --font-heading: 'Libre Caslon Text', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-width: 1240px;
    --section-padding-y: 96px;
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--warm-black);
    background: var(--warm-ivory);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    background: var(--warm-gold);
    color: var(--black);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    transition: top var(--transition-fast);
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

:focus-visible {
    outline: 2px solid var(--warm-gold);
    outline-offset: 3px;
}

.section-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.section-heading {
    max-width: 620px;
    margin-bottom: 25px;
}

.section-heading--center {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    line-height: 1.15;
    color: var(--warm-gold);
    letter-spacing: -0.01em;
}

.section-heading__title--center {
    text-align: center;
    margin-bottom: 48px;
    color: var(--warm-gold);
}

.section-heading__text {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(250, 247, 240, 0.85);
    max-width: 520px;
}

.section-heading--center .section-heading__text {
    margin-left: auto;
    margin-right: auto;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
}

.btn__icon {
    width: 16px;
    height: 16px;
}

.btn--whatsapp {
    background: var(--warm-gold);
    color: var(--black);
    box-shadow: 0 6px 16px rgba(255, 198, 99, 0.35);
}

.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 198, 99, 0.5);
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.navbar {
    width: 100%;
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 14px 10px 24px;
    border-radius: var(--radius-pill);
    background: rgba(94, 25, 20, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(94, 25, 20, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--warm-ivory);
    flex-shrink: 0;
}

.navbar__logo-img {
    height: 50px;
    width: auto;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar__link {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--warm-white);
    padding: 6px 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.navbar__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1.5px;
    background: var(--warm-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.navbar__link:hover {
    color: var(--warm-gold);
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
    transform: scaleX(1);
}

.navbar__link.is-active {
    color: var(--warm-gold);
}

.navbar__caret {
    transition: transform var(--transition-fast);
}

.navbar__dropdown-toggle[aria-expanded="true"] .navbar__caret {
    transform: rotate(180deg);
}

.navbar__item--dropdown {
    position: relative;
}

.navbar__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 200px;
    background: var(--warm-ivory);
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: 0 16px 40px rgba(19, 20, 17, 0.25);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: opacity var(--transition-medium), transform var(--transition-medium), visibility var(--transition-medium);
}

.navbar__dropdown::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.navbar__dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (min-width: 769px) {

    .navbar__item--dropdown:hover .navbar__dropdown,
    .navbar__item--dropdown:focus-within .navbar__dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .navbar__item--dropdown:hover .navbar__dropdown-toggle .navbar__caret,
    .navbar__item--dropdown:focus-within .navbar__dropdown-toggle .navbar__caret {
        transform: rotate(180deg);
    }
}

.navbar__dropdown-link {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--warm-black);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.navbar__dropdown-link:hover,
.navbar__dropdown-link:focus-visible {
    background: var(--maroon);
    color: var(--warm-ivory);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.navbar__toggle span {
    width: 22px;
    height: 2px;
    background: var(--warm-gold);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    padding: 200px 0 180px;
    background: #E8E6E1;
    overflow: hidden;
}

.hero__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 32px;
    row-gap: 0;
}


.hero__text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.hero__headline {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--warm-ivory);
    margin-top: 5%;
}

.hero__line {
    display: block;
    opacity: 0;
    transform: translateY(24px);
    animation: heroLineIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__line--accent {
    color: var(--warm-gold);
}

.hero__line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero__line:nth-child(2) {
    animation-delay: 0.22s;
}

.hero__line:nth-child(3) {
    animation-delay: 0.34s;
}

.hero__line:nth-child(4) {
    animation-delay: 0.46s;
}

@keyframes heroLineIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__media {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    opacity: 0;
    animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
    }
}

.hero__image-frame {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #D9D7D4;
    box-shadow: 0 20px 48px rgba(19, 20, 17, 0.18);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero__image-frame:hover .hero__image {
    transform: scale(1.04);
}

.hero__supporting {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    max-width: 200px;
    margin-top: 0px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--warm-ivory);
    opacity: 0;
    animation: heroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.6s;
}

/* =========================================================
   PROPERTY SECTION
   ========================================================= */
.property {
    padding: var(--section-padding-y) 0;
    background: var(--warm-black);
}

.property .section-heading__title {
    color: var(--warm-gold);
}

.property .section-heading__text {
    color: rgba(250, 247, 240, 0.75);
}

.property__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.property-card {
    display: block;
    transition: transform var(--transition-medium);
}

.property-card:hover {
    transform: translateY(-6px);
}

.property-card__image-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #D9D7D4;
    margin-bottom: 20px;
}

.property-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.property-card:hover .property-card__image {
    transform: scale(1.06);
}

.property-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--warm-gold);
    text-align: center;
}

/* =========================================================
   ABOUT US SECTION — CLEAN VERSION
   ========================================================= */
.about-pt {
    padding: 60px 0;
    background: var(--maroon);
    color: var(--warm-ivory);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-pt__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.about-pt__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-pt__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--warm-gold);
    margin: 0 0 12px 0;
    line-height: 1.1;
}

.about-pt__text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-pt__text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(250, 247, 240, 0.9);
    margin: 0;
}

.about-pt__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.about-stat {
    background: var(--warm-gold);
    border-radius: 50px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-height: 72px;
    box-sizing: border-box;
}

.about-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 198, 99, 0.25);
}

.about-stat__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stat__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.about-stat>div:last-child {
    flex: 1;
    min-width: 0;
}

.about-stat__label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-stat__sub {
    font-size: 0.8rem;
    color: var(--warm-black);
    margin: 2px 0 0 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-pt__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-pt__media {
    margin-top: 60px;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    background: #D9D7D4;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.about-pt__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-pt__counter {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.about-pt__counter-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--warm-ivory);
    margin: 0;
}

.about-pt__counter-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--warm-gold);
    line-height: 1;
    text-shadow:
        0 0 15px rgba(255, 198, 99, 0.5),
        0 0 30px rgba(255, 198, 99, 0.3);
}

.counter-plus {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--warm-gold);
    line-height: 1;
}

.about-pt__counter-sub {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--warm-ivory);
    margin: 0;
    line-height: 1.1;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why {
    padding: var(--section-padding-y) 0;
    background: var(--maroon);
}

.why .section-heading__title {
    color: var(--warm-gold);
}

.why .section-heading__text {
    color: rgba(250, 247, 240, 0.75);
}


/* =========================================================
   FIX: WHY CHOOSE US CARDS — RASIO 1:1 (PERSEGI)
   ========================================================= */
@media (min-width: 861px) {
    .why__grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }

    .why-card {
        aspect-ratio: 1 / 1 !important;
        padding: 28px 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        box-sizing: border-box !important;
    }

    .why-card__icon-wrap {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 16px !important;
        flex-shrink: 0 !important;
    }

    .why-card__icon {
        width: 20px !important;
        height: 20px !important;
    }

    .why-card__title {
        font-size: 1.05rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        flex-shrink: 0 !important;
    }

    .why-card__text {
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
        margin: 0 !important;
        flex-grow: 1 !important;
        display: flex !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 860px) and (min-width: 521px) {
    .why__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .why-card {
        aspect-ratio: 1 / 1 !important;
        padding: 24px 20px !important;
    }
}

@media (max-width: 520px) {
    .why__grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .why-card {
        aspect-ratio: 1 / 1 !important;
        padding: 20px 18px !important;
    }

    .why-card__title {
        font-size: 1rem !important;
    }

    .why-card__text {
        font-size: 0.8rem !important;
    }
}

.why-card {
    background: var(--warm-gold);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 198, 99, 0.25);
}

.why-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(28, 28, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-card__icon {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.why-card__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--black);
    margin-bottom: 14px;
}

.why-card__text {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--black);
}

/* =========================================================
   LOCATION
   ========================================================= */
.location {
    padding: var(--section-padding-y) 0;
    background: var(--warm-black);
}

.location .section-heading__title {
    color: var(--warm-gold);
    text-align: left;
}

.location .section-heading {
    margin-bottom: 16px;
}

.location .section-heading__title {
    margin-bottom: 15px;
}

.location .section-heading__text {
    margin-top: 0;
    margin-bottom: 0;
}

.location__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 16px;
}

.location__map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    background: #D9D7D4;
}

.location__map {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #D9D7D4;
}

.location__map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -100%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    padding: 0;
}

.map-marker svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
    transition: transform var(--transition-fast);
}

.map-marker:hover svg,
.map-marker:focus-visible svg {
    transform: scale(1.12);
}

.map-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--warm-ivory);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 5;
}

.map-popup.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.map-popup__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--maroon);
    margin-bottom: 10px;
}

.map-popup__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--maroon);
    border-bottom: 1px solid var(--maroon);
    padding-bottom: 2px;
}

.map-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    font-size: 1rem;
    line-height: 1;
    color: var(--warm-black);
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.location-info-block__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--warm-gold);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.location-info-block__text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(250, 247, 240, 0.85);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--black);
    padding-top: 80px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(250, 247, 240, 0.1);
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--warm-ivory);
    line-height: 1.25;
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 130px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(250, 247, 240, 0.7);
    max-width: 260px;
}

.footer__col-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gold);
    margin-bottom: 18px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list a {
    font-size: 0.92rem;
    color: rgba(250, 247, 240, 0.7);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--warm-gold);
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--warm-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--warm-gold);
    transform: translateY(-2px);
}

.footer__social-link img {
    width: 16px;
    height: 16px;
}

.footer__bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(250, 247, 240, 0.5);
}

/* =========================================================
   GALLERY CAROUSEL — Compact (Context Text Terbaca)
   ========================================================= */
.gallery-carousel {
    padding: 90px 0 30px;
    background: var(--warm-ivory);
    overflow: hidden;
}

.gallery-carousel__header {
    text-align: center;
    margin-bottom: 0;
}

.gallery-carousel__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--maroon);
    margin-bottom: 0;
}

.gallery-carousel__subtitle {
    font-size: 0.95rem;
    color: var(--warm-black);
    opacity: 0.7;
}

.gallery-carousel__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 0;
}

.gallery-carousel__track {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.gallery-card {
    position: absolute;
    width: 236px;
    height: 420px;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #D9D7D4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.6s ease,
        box-shadow 0.6s ease;
    will-change: transform, opacity;
}

.gallery-card__media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #D9D7D4;
}

.gallery-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-card__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.gallery-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D9D7D4;
}

.gallery-card__placeholder svg {
    width: 48px;
    height: 48px;
    color: #F7F5F1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 10px;
}

.gallery-card:hover .gallery-card__image {
    transform: scale(1.04);
}

.gallery-carousel__nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--warm-ivory);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), transform var(--transition-fast);
    z-index: 10;
    flex-shrink: 0;
}

.gallery-carousel__nav:hover {
    background: var(--warm-gold);
    color: var(--black);
    transform: scale(1.1);
}

.gallery-carousel__nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-carousel__context {
    text-align: center;
    margin-top: 24px;
    min-height: 70px;
    padding: 0 20px;
}

.gallery-carousel__context-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--maroon);
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.gallery-carousel__context-desc {
    font-size: 0.92rem;
    color: var(--warm-black);
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

/* =========================================================
   RESPONSIVE: Tablet
   ========================================================= */
@media (max-width: 1024px) {
    .gallery-carousel__track {
        height: 380px;
    }

    .gallery-card {
        width: 214px;
        height: 380px;
    }
}

/* =========================================================
   RESPONSIVE: Mobile
   ========================================================= */
@media (max-width: 768px) {
    .gallery-carousel {
        padding: 40px 0 24px;
    }

    .gallery-carousel__track {
        height: 340px;
    }

    .gallery-card {
        width: 191px;
        height: 340px;
    }

    .gallery-carousel__nav {
        width: 36px;
        height: 36px;
    }

    .gallery-carousel__context {
        margin-top: 20px;
    }

    .gallery-carousel__context-title {
        font-size: 1.15rem;
    }

    .gallery-carousel__context-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 520px) {
    .gallery-carousel__track {
        height: 300px;
    }

    .gallery-card {
        width: 169px;
        height: 300px;
    }

    .gallery-carousel__nav {
        width: 32px;
        height: 32px;
    }
}

/* =========================================================
   LEAFLET MAP
   ========================================================= */
#locationMap {
    width: 100%;
    min-height: 400px;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    background-color: #D9D7D4;
}

.leaflet-container {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #D9D7D4;
}

.custom-leaflet-popup .leaflet-popup-content-wrapper {
    background: var(--warm-ivory);
    color: var(--warm-black);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(94, 25, 20, 0.2);
    padding: 0;
}

.custom-leaflet-popup .leaflet-popup-tip {
    background: var(--warm-ivory);
    border: 1px solid rgba(94, 25, 20, 0.2);
    border-top: none;
    border-left: none;
}

.custom-leaflet-popup .leaflet-popup-content {
    margin: 12px 16px;
    line-height: 1.4;
}

.custom-leaflet-popup a:hover {
    background-color: var(--warm-gold) !important;
}

.leaflet-marker-icon {
    outline: none !important;
}

/* =========================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================= */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__media {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        justify-content: flex-start;
        padding-top: 32px;
    }

    .hero__supporting {
        grid-row: 3 / 4;
        margin-top: 5px;
    }

    .about-pt {
        padding: 48px 0;
        min-height: auto;
    }

    .about-pt__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-pt__visual {
        order: -1;
    }

    .about-pt__media {
        max-width: 500px;
        margin: 0 auto;
    }

    .location__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .gallery-carousel__track {
        height: 400px;
    }

    .gallery-card {
        width: 280px;
        height: 360px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE NAVBAR & SECTIONS (max-width: 860px)
   ========================================================= */
@media (max-width: 860px) {

    :root {
        --section-padding-y: 72px;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: var(--warm-ivory);
        border-radius: var(--radius-md);
        box-shadow: 0 20px 44px rgba(19, 20, 17, 0.3);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity var(--transition-medium), transform var(--transition-medium), visibility var(--transition-medium);
        z-index: 1000;
    }

    .navbar__menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar__links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .navbar__links li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .navbar__link {
        display: block;
        width: 100%;
        padding: 14px 16px;
        color: var(--black);
        font-size: 0.95rem;
        font-weight: 500;
        text-align: left;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        transition: background var(--transition-fast), color var(--transition-fast);
    }

    .navbar__link::after {
        display: none;
    }

    .navbar__link:hover {
        background: rgba(94, 25, 20, 0.05);
        color: var(--maroon);
    }

    .navbar__link.is-active {
        color: var(--maroon);
        font-weight: 600;
        background: transparent;
    }

    .navbar__item--dropdown {
        width: 100%;
    }

    .navbar__dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar__caret {
        transition: transform var(--transition-fast);
    }

    .navbar__dropdown-toggle[aria-expanded="true"] .navbar__caret {
        transform: rotate(180deg);
    }

    .navbar__dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(94, 25, 20, 0.04);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin-top: 0;
        border-radius: var(--radius-sm);
        transition: max-height var(--transition-medium), padding var(--transition-medium);
    }

    .navbar__dropdown.is-open {
        max-height: 400px;
        padding: 8px;
        margin-top: 4px;
    }

    .navbar__dropdown-link {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--warm-black);
        background: transparent;
        transition: background var(--transition-fast), color var(--transition-fast);
        margin-bottom: 2px;
    }

    .navbar__dropdown-link:hover,
    .navbar__dropdown-link:focus-visible {
        background: var(--maroon);
        color: var(--warm-ivory);
    }

    .navbar__dropdown-link.is-active {
        color: var(--maroon);
        font-weight: 700;
        background: rgba(94, 25, 20, 0.08);
    }

    .navbar__menu .btn--whatsapp {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        padding: 14px 20px;
    }

    .btn--whatsapp {
        justify-content: center;
    }

    .property__grid {
        grid-template-columns: 1fr;
    }

    .why__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
    }

    .about-pt__grid {
        grid-template-columns: 1fr;
    }

    .about-pt__media {
        min-height: 320px;
    }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (max-width: 520px)
   ========================================================= */
@media (max-width: 520px) {
    .site-header {
        top: 12px;
        padding: 0 12px;
    }

    .navbar {
        padding: 8px 8px 8px 18px;
    }

    .hero {
        padding: 160px 0 64px;
    }

    .hero__inner {
        padding: 0 20px;
    }

    .section-inner {
        padding: 0 20px;
    }

    .hero__headline {
        font-size: 2.2rem;
    }

    .stat-card {
        flex: 1 1 100%;
    }

    .about-pt {
        padding: 32px 0;
    }

    .about-pt__title {
        font-size: 1.7rem;
    }

    .about-pt__text {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .about-pt__stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-stat {
        padding: 12px 16px;
    }

    .about-stat__label {
        font-size: 0.85rem;
    }

    .about-stat__sub {
        font-size: 0.72rem;
    }

    .counter-number {
        font-size: 2.2rem;
    }

    .counter-plus {
        font-size: 1.8rem;
    }

    .about-pt__counter-sub {
        font-size: 1.4rem;
    }

    .gallery-carousel__track {
        height: 280px;
    }

    .gallery-card {
        width: 200px;
        height: 260px;
    }
}

/* =========================================================
   FIX: HERO MOBILE — Text Overflow & Layout Berantakan
   ========================================================= */
@media (max-width: 520px) {
    .hero {
        padding: 120px 0 60px !important;
        overflow: hidden !important;
    }

    .hero__inner {
        padding: 0 20px !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .hero__headline {
        font-size: clamp(1.8rem, 8vw, 2.2rem) !important;
        line-height: 1.15 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }

    .hero__line {
        display: block !important;
        max-width: 100% !important;
    }

    .hero__media {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        padding-top: 0 !important;
        justify-content: center !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }

    .hero__image-frame {
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero__supporting {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        max-width: 100% !important;
        margin-top: 0px !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        padding: 0 !important;
    }
}

/* =========================================================
   FIX: ABOUT US MOBILE — HAPUS OVERFLOW & KONTEN TIDAK TERPOTONG
   ========================================================= */
@media (max-width: 860px) {
    .about-pt {
        overflow-x: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .about-pt .section-inner {
        padding: 0 20px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .about-pt__grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .about-pt__content {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .about-pt__title {
        font-size: clamp(1.8rem, 7vw, 2.2rem) !important;
        line-height: 1.15 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }

    .about-pt__text {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        margin-bottom: 14px !important;
    }

    .about-pt__stats {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .about-stat {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 14px 16px !important;
        border-radius: 50px !important;
        overflow: hidden !important;
    }

    .about-stat__label {
        font-size: 0.9rem !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    .about-stat__sub {
        font-size: 0.78rem !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    .about-pt__visual {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .about-pt__media {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .about-pt__image {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        display: block !important;
    }

    .about-pt__counter {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .counter-number {
        font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
        word-wrap: break-word !important;
    }

    .counter-plus {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    }

    .about-pt__counter-sub {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        word-wrap: break-word !important;
    }
}

@media (max-width: 380px) {
    .about-pt .section-inner {
        padding: 0 16px !important;
    }

    .about-pt__title {
        font-size: 1.6rem !important;
    }

    .about-pt__text {
        font-size: 0.85rem !important;
    }

    .about-stat {
        padding: 12px 14px !important;
    }

    .counter-number {
        font-size: 2.2rem !important;
    }
}

/* =========================================================
   FIX: MOBILE DROPDOWN — HAPUS SHIFT KE KIRI & TAMPILKAN LINKS
   ========================================================= */
@media (max-width: 860px) {
    .navbar__dropdown {
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .navbar__dropdown.is-open {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 500px !important;
        padding: 8px 12px !important;
        margin-top: 4px !important;
        margin-bottom: 4px !important;
        background: rgba(94, 25, 20, 0.06) !important;
        border-radius: 12px !important;
        overflow: visible !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .navbar__dropdown-link {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 16px !important;
        margin: 0 0 4px 0 !important;
        border-radius: 10px !important;
        font-size: 0.88rem !important;
        font-weight: 500 !important;
        color: #1C1C1C !important;
        background: transparent !important;
        text-decoration: none !important;
        line-height: 1.4 !important;
        box-sizing: border-box !important;
        text-align: left !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .navbar__dropdown-link:hover,
    .navbar__dropdown-link:focus-visible {
        background: var(--maroon) !important;
        color: var(--warm-ivory) !important;
    }

    .navbar__dropdown-link.is-active {
        color: var(--maroon) !important;
        font-weight: 700 !important;
        background: rgba(94, 25, 20, 0.1) !important;
    }

    .navbar__dropdown li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .navbar__dropdown-toggle {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   HEADER / NAVBAR — Smooth Scroll Effect (Fixed)
   ========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 0;
    margin: 0;
    width: 100%;
}

.navbar {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    background: #5E1914;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 18px 48px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar--scrolled {
    max-width: 1080px;
    margin: 16px auto;
    border-radius: 999px;
    background: rgba(94, 25, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 10px 40px rgba(94, 25, 20, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__logo-img {
    height: 55px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar--scrolled .navbar__logo-img {
    height: 45px;
}

.navbar__links {
    gap: 32px;
    transition: gap 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar--scrolled .navbar__links {
    gap: 24px;
}

.navbar .btn--whatsapp {
    padding: 14px 28px;
    transition: padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar--scrolled .btn--whatsapp {
    padding: 10px 20px;
}

.navbar__link {
    font-size: 0.95rem;
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar--scrolled .navbar__link {
    font-size: 0.9rem;
}

/* =========================================================
   RESPONSIVE: Mobile Navbar
   ========================================================= */
@media (max-width: 860px) {
    .navbar {
        padding: 14px 20px;
    }

    .navbar.navbar--scrolled {
        max-width: calc(100% - 24px);
        margin: 12px auto;
        padding: 10px 16px;
    }

    .navbar__logo-img {
        height: 40px;
    }

    .navbar.navbar--scrolled .navbar__logo-img {
        height: 35px;
    }
}

/* =========================================================
   WHATSAPP CHOICE MODAL — Premium & Responsive
   ========================================================= */
.wa-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wa-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.wa-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19, 20, 17, 0.7);
    backdrop-filter: blur(4px);
}

.wa-modal__content {
    position: relative;
    background: var(--warm-ivory);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
}

.wa-modal.is-open .wa-modal__content {
    transform: translateY(0);
}

.wa-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(94, 25, 20, 0.1);
    border: none;
    color: var(--maroon);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.wa-modal__close:hover {
    background: rgba(94, 25, 20, 0.2);
}

.wa-modal__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 8px;
}

.wa-modal__desc {
    font-size: 0.9rem;
    color: var(--warm-black);
    margin-bottom: 24px;
}

.wa-modal__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-modal__option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid rgba(94, 25, 20, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--warm-black);
    transition: all 0.2s ease;
}

.wa-modal__option:hover {
    background: var(--maroon);
    color: var(--warm-ivory);
    border-color: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(94, 25, 20, 0.2);
}

.wa-modal__option:hover .wa-modal__icon {
    filter: brightness(0) invert(1);
}

.wa-modal__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: filter 0.2s ease;
}

.wa-modal__info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.wa-modal__name {
    font-weight: 700;
    font-size: 0.95rem;
}

.wa-modal__number {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 520px) {
    .wa-modal__content {
        padding: 24px 20px;
        width: 92%;
    }

    .wa-modal__title {
        font-size: 1.3rem;
    }
}

/* =========================================================
   WHY CHOOSE US — 3-STEP INVESTMENT JOURNEY (FINAL FIX)
   ========================================================= */

.why__journey {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 60px auto 50px;
    max-width: 1100px;
    padding: 0 16px;
    position: relative;
}

.journey-step {
    position: relative;
    text-align: left;
    padding: 0 16px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.journey-step__number {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    line-height: 1;
    color: var(--warm-gold);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease;
}

.journey-step__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    line-height: 1.3;
    color: var(--warm-ivory);
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.journey-step__desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(250, 247, 240, 0.7);
    margin: 0;
    max-width: 280px;
}

/* =========================================================
   CONNECTOR LINES — DESKTOP (Horizontal, Kiri → Kanan)
   ========================================================= */
.journey-step[data-step="1"]::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 30%;
    width: 70%;
    height: 2px;
    background: rgba(255, 198, 99, 0.15);
    z-index: 0;
    pointer-events: none;
}

.journey-step[data-step="1"]::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 30%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--warm-gold) 0%,
            rgba(255, 198, 99, 0.8) 100%);
    z-index: 1;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 8px rgba(255, 198, 99, 0.4);
    pointer-events: none;
}

.journey-step[data-step="2"]::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 30%;
    width: 70%;
    height: 2px;
    background: rgba(255, 198, 99, 0.15);
    z-index: 0;
    pointer-events: none;
}

.journey-step[data-step="2"]::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 30%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--warm-gold) 0%,
            rgba(255, 198, 99, 0.8) 100%);
    z-index: 1;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 8px rgba(255, 198, 99, 0.4);
    pointer-events: none;
}

.journey-step[data-step="3"]::after,
.journey-step[data-step="3"]::before {
    display: none !important;
}

.journey-step[data-step="1"].line-active::before {
    width: 70%;
}

.journey-step[data-step="2"].line-active::before {
    width: 70%;
}

.journey-step:hover .journey-step__number {
    transform: scale(1.08);
    opacity: 0.85;
}

.journey-step:hover .journey-step__title {
    color: var(--warm-gold);
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE: MOBILE — Vertical Journey
   ========================================================= */
@media (max-width: 768px) {
    .why__journey {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 420px;
        margin: 0 auto 48px;
        padding: 0 20px;
    }

    .journey-step {
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 16px;
        text-align: left;
        padding: 16px 0;
        position: relative;
    }

    .journey-step__number {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        font-size: 2rem;
        margin-bottom: 0;
        align-self: start;
        padding-top: 4px;
    }

    .journey-step__title {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

    .journey-step__desc {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        max-width: 100%;
        font-size: 0.88rem;
    }

    .journey-step[data-step="1"]::after,
    .journey-step[data-step="2"]::after {
        top: auto;
        bottom: -8px;
        left: 30px;
        width: 2px;
        height: 90px;
        background: rgba(255, 198, 99, 0.15);
    }

    .journey-step[data-step="1"]::before,
    .journey-step[data-step="2"]::before {
        top: calc(50% - 8px);
        bottom: auto;
        
        left: 30px;
        width: 2px;
        height: 90px;
        background: linear-gradient(180deg,
                var(--warm-gold) 0%,
                rgba(255, 198, 99, 0.8) 100%);
        box-shadow: 0 0 8px rgba(255, 198, 99, 0.4);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .journey-step[data-step="1"].line-active::before,
    .journey-step[data-step="2"].line-active::before {
        transform: scaleY(1);
    }

    .journey-step[data-step="1"].line-active::before,
    .journey-step[data-step="2"].line-active::before {
        height: 90px;
        width: 2px;
    }

    .journey-step[data-step="3"]::after,
    .journey-step[data-step="3"]::before {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .journey-step {
        opacity: 1 !important;
        transform: none !important;
    }

    .journey-step[data-step="1"]::before,
    .journey-step[data-step="2"]::before {
        width: 100% !important;
        height: 24px !important;
        transition: none !important;
    }
}

/* =========================================================
   WHY CHOOSE US CARDS — Grid Fix untuk Mobile
   ========================================================= */
@media (max-width: 768px) {
    .why__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .why-card {
        aspect-ratio: auto !important;
        padding: 24px 20px !important;
    }
}

@media (max-width: 520px) {
    .why__grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .why-card {
        padding: 20px 18px !important;
    }
}

/* =========================================================
   WHY CHOOSE US CARDS — MOBILE COMPACT (1 Layar)
   ========================================================= */
@media (max-width: 768px) {
    .why__grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 0 !important;
    }

    .why-card {
        aspect-ratio: auto !important;
        padding: 16px 18px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        min-height: auto !important;
        height: auto !important;
    }

    .why-card__icon-wrap {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 0 !important;
    }

    .why-card__icon {
        width: 18px !important;
        height: 18px !important;
    }

    .why-card__title {
        font-size: 0.95rem !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
    }

    .why-card__text {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }

    .why {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .why .section-heading {
        margin-bottom: 24px !important;
    }

    .why .section-heading__title {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }

    .why .section-heading__text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 400px) {
    .why-card {
        padding: 14px 16px !important;
    }

    .why-card__title {
        font-size: 0.9rem !important;
    }

    .why-card__text {
        font-size: 0.75rem !important;
    }

    .why__grid {
        gap: 10px !important;
    }
}

/* =========================================================
   SMART SCROLL SNAP — CSS Support
   ========================================================= */
html {
    scroll-behavior: smooth;
}

body.is-snapping {
    pointer-events: none;
}

body.is-snapping * {
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* =========================================================
   WHY CHOOSE US — BALANCED (Muat 1 Layar + Tidak Tertutup Navbar)
   ========================================================= */
@media (min-width: 1025px) {
    .why {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .why .section-heading {
        margin-bottom: 32px !important;
    }

    .why .section-heading__title {
        font-size: 2.5rem !important;
        margin-bottom: 12px !important;
    }

    .why .section-heading__text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .why__journey {
        margin-top: 40px !important;
        margin-bottom: 48px !important;
    }

    .journey-step__number {
        font-size: 2.6rem !important;
        margin-bottom: 12px !important;
    }

    .journey-step__title {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
    }

    .journey-step__desc {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        max-width: 260px !important;
    }

    .journey-step[data-step="1"]::after,
    .journey-step[data-step="2"]::after,
    .journey-step[data-step="1"]::before,
    .journey-step[data-step="2"]::before {
        top: 40px !important;
    }

    .why__grid {
        gap: 16px !important;
        flex-grow: 1;
        min-height: 0;
    }

    .why-card {
        padding: 18px 16px !important;
        aspect-ratio: auto !important;
        min-height: auto !important;
    }

    .why-card__icon-wrap {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 12px !important;
    }

    .why-card__icon {
        width: 18px !important;
        height: 18px !important;
    }

    .why-card__title {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .why-card__text {
        font-size: 0.78rem !important;
        line-height: 1.5 !important;
    }
}

/* =========================================================
   FIX: GALLERY MOBILE RASIO 9:16
   ========================================================= */
@media (max-width: 768px) {
    .gallery-carousel__track {
        height: auto !important;
        min-height: 340px !important;
    }

    .gallery-card {
        width: 190px !important;
        height: auto !important;
        aspect-ratio: 9 / 16 !important;
    }
}

@media (max-width: 520px) {
    .gallery-carousel__track {
        min-height: 300px !important;
    }

    .gallery-card {
        width: 168px !important;
        height: auto !important;
        aspect-ratio: 9 / 16 !important;
    }
}

/* =========================================================
   FIX: HERO OVERLAY BLUR DARI KIRI KE KANAN
   ========================================================= */
@media (min-width: 769px) {
    .hero::before {
        background: none !important;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 55%;
        height: 100%;
        background: rgba(19, 20, 17, 0.3);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 1;
        pointer-events: none;
        -webkit-mask-image: linear-gradient(90deg,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.8) 40%,
                rgba(0, 0, 0, 0.3) 70%,
                rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(90deg,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.8) 40%,
                rgba(0, 0, 0, 0.3) 70%,
                rgba(0, 0, 0, 0) 100%);
    }

    .hero__inner {
        position: relative;
        z-index: 2;
    }

    .hero__headline {
        max-width: 650px;
    }

    .hero__supporting {
        max-width: 480px;
        color: rgba(250, 247, 240, 0.9);
    }
}

@media (max-width: 768px) {
    .hero::before {
        background: none !important;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(19, 20, 17, 0.3);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 1;
        pointer-events: none;
        -webkit-mask-image: linear-gradient(90deg,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.85) 25%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.15) 75%,
                rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(90deg,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.85) 25%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.15) 75%,
                rgba(0, 0, 0, 0) 100%);
    }

    .hero__inner {
        position: relative;
        z-index: 2;
    }
}



/* =========================================================
   FIX: PERKECIL JARAK MENU HAMBURGER MOBILE
   ========================================================= */
@media (max-width: 860px) {
    .navbar__menu {
        padding: 12px 16px !important;
        gap: 0 !important;
    }

    .navbar__links {
        gap: 0 !important;
    }

    .navbar__link {
        padding: 10px 16px !important;
        font-size: 0.92rem !important;
    }

    .navbar__dropdown-link {
        padding: 10px 16px !important;
        margin-bottom: 2px !important;
    }

    .navbar__menu .btn--whatsapp {
        margin-top: 8px !important;
        padding: 12px 20px !important;
    }
}

/* =========================================================
   FIX: GALLERY 9:16 — Track Tetap, Card Proporsional
   ========================================================= */
.gallery-carousel__track {
    height: 420px !important;
}

.gallery-card {
    width: 236px !important;
    height: 420px !important;
    aspect-ratio: 9 / 16 !important;
}

@media (max-width: 1024px) {
    .gallery-carousel__track {
        height: 400px !important;
    }

    .gallery-card {
        width: 225px !important;
        height: 400px !important;
    }
}

@media (max-width: 768px) {
    .gallery-carousel__track {
        height: 340px !important;
    }

    .gallery-card {
        width: 191px !important;
        height: 340px !important;
    }
}

@media (max-width: 520px) {
    .gallery-carousel__track {
        height: 300px !important;
    }

    .gallery-card {
        width: 169px !important;
        height: 300px !important;
    }
}

@media (max-width: 380px) {
    .gallery-carousel__track {
        height: 280px !important;
    }

    .gallery-card {
        width: 158px !important;
        height: 280px !important;
    }
}


/* =========================================================
   HERO LEGALITAS BUTTON — Spacing
   ========================================================= */
.hero__legalitas-wrap {
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.hero__legalitas-wrap .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--warm-gold);
    color: var(--black);
    box-shadow: 0 6px 16px rgba(255, 198, 99, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.hero__legalitas-wrap .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 198, 99, 0.5);
}

@media (max-width: 768px) {
    .hero__legalitas-wrap {
        margin-top: 20px;
    }

    .hero__legalitas-wrap .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 520px) {
    .hero__legalitas-wrap {
        margin-top: 16px;
    }

    .hero__legalitas-wrap .btn {
        padding: 10px 18px;
        font-size: 0.82rem;
    }
}

/* =========================================================
   LEGALITAS MODAL — Rasio 4:3
   ========================================================= */
.legalitas-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.legalitas-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.legalitas-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19, 20, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.legalitas-modal__panel {
    position: relative;
    width: 100%;
    max-width: 720px;
    background: var(--warm-ivory);
    border-radius: var(--radius-lg);
    padding: 32px;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.legalitas-modal.is-open .legalitas-modal__panel {
    transform: translateY(0) scale(1);
}

.legalitas-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(28, 28, 28, 0.08);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-black);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.legalitas-modal__close:hover {
    background: rgba(28, 28, 28, 0.15);
    transform: rotate(90deg);
}

.legalitas-modal__header {
    text-align: center;
    margin-bottom: 24px;
}

.legalitas-modal__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--maroon);
    margin-bottom: 6px;
}

.legalitas-modal__subtitle {
    font-size: 0.88rem;
    color: rgba(28, 28, 28, 0.6);
}

.legalitas-modal__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #D9D7D4;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.legalitas-modal__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    display: block;
}

.legalitas-modal__footer {
    margin-top: 20px;
    text-align: center;
}

.legalitas-modal__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(28, 28, 28, 0.6);
    padding: 10px 16px;
    background: rgba(94, 25, 20, 0.05);
    border-radius: var(--radius-pill);
}

.legalitas-modal__note svg {
    color: var(--maroon);
    flex-shrink: 0;
}

/* =========================================================
   HERO LEGALITAS BUTTON — Di Dalam Grid (Baris Bawah Headline)
   ========================================================= */
.hero__legalitas-wrap {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    margin-top: 16px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero__legalitas-wrap .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--warm-gold);
    color: var(--black);
    box-shadow: 0 6px 16px rgba(255, 198, 99, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.hero__legalitas-wrap .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 198, 99, 0.5);
}

@media (max-width: 768px) {
    .hero__legalitas-wrap {
        grid-column: 1 / -1;
        grid-row: 4 / 5;
        margin-top: 12px;
        text-align: left;
    }

    .hero__legalitas-wrap .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 520px) {
    .hero__legalitas-wrap {
        margin-top: 8px;
    }

    .hero__legalitas-wrap .btn {
        padding: 10px 18px;
        font-size: 0.82rem;
    }
}

/* =========================================================
   FLOATING WHATSAPP BUTTON — Mobile Only (Buka WA Modal)
   ========================================================= */
.wa-float-mobile {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--maroon);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(94, 25, 20, 0.4);
    z-index: 900;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    padding: 0;
    outline: none;
}

.wa-float-mobile:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 28px rgba(94, 25, 20, 0.5);
    background: var(--warm-gold);
}

.wa-float-mobile:hover .wa-float-mobile__icon {
    fill: var(--black);
}

.wa-float-mobile:active {
    transform: translateY(-1px) scale(1.02);
}

.wa-float-mobile__icon {
    width: 28px;
    height: 28px;
    fill: var(--warm-ivory);
    transition: fill 0.3s ease;
}

.wa-float-mobile__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--warm-black);
    color: var(--warm-ivory);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wa-float-mobile:hover .wa-float-mobile__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-4px);
}

.wa-float-mobile::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--maroon);
    opacity: 0;
    animation: waFloatMobilePulse 3s ease-out infinite;
    pointer-events: none;
}

@keyframes waFloatMobilePulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .wa-float-mobile {
        display: flex;
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .wa-float-mobile__icon {
        width: 26px;
        height: 26px;
    }

    .wa-float-mobile__tooltip {
        display: none;
    }
}

@media (max-width: 520px) {
    .wa-float-mobile {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .wa-float-mobile__icon {
        width: 24px;
        height: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-float-mobile::after {
        animation: none;
    }
}

/* =========================================================
   PROPERTY CARD — Overlay "Lihat Lebih Dalam"
   ========================================================= */
.property-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(19, 20, 17, 0) 0%,
            rgba(19, 20, 17, 0.3) 50%,
            rgba(19, 20, 17, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 2;
}

.property-card__image-wrap {
    position: relative;
}

.property-card__overlay-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--warm-gold);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.property-card__overlay-text::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23131411' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.property-card:hover .property-card__overlay {
    opacity: 1;
}

.property-card:hover .property-card__overlay-text {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .property-card__overlay {
        opacity: 1;
        background: linear-gradient(to bottom,
                rgba(19, 20, 17, 0) 40%,
                rgba(19, 20, 17, 0.75) 100%);
    }

    .property-card__overlay-text {
        transform: translateY(0);
        font-size: 0.78rem;
        padding: 8px 16px;
    }
}

/* =========================================================
   GALLERY MEDIA PROTECTION — Cegah Download
   ========================================================= */
.gallery-card {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: auto;
}

.gallery-card__image,
.gallery-card__media img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.gallery-card__video,
.gallery-card__media video {
    pointer-events: none;
}

.gallery-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
    pointer-events: auto;
}

.gallery-card__media {
    position: relative;
}

.gallery-card__media img,
.gallery-card__media video {
    position: relative;
    z-index: 0;
}

/* =========================================================
   GALLERY WATERMARK — Tanda Air Transparan
   ========================================================= */
.gallery-card::before {
    content: '© Goldenland';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* =========================================================
   FIX: ABOUT US IMAGE — Responsive (Tanpa Terpotong)
   ========================================================= */
@media (min-width: 1025px) {
    .about-pt__media {
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .about-pt__image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .about-pt__media {
        aspect-ratio: 16 / 10 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .about-pt__image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

@media (max-width: 768px) and (min-width: 521px) {
    .about-pt__media {
        aspect-ratio: 3 / 2 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .about-pt__image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

@media (max-width: 520px) and (min-width: 381px) {
    .about-pt__media {
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .about-pt__image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

@media (max-width: 380px) {
    .about-pt__media {
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .about-pt__image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

/* =========================================================
   TESTIMONIALS — Auto-Scrolling Carousel (GSAP)
   ========================================================= */
.testimonials {
    padding: var(--section-padding-y) 0;
    background: var(--warm-ivory);
    position: relative;
    overflow: hidden;
}

.testimonials .section-inner {
    position: relative;
    z-index: 1;
}

.testimonials .section-heading__title {
    color: var(--maroon);
}

.testimonials .section-heading__text {
    color: var(--maroon);
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

.testimonial-card {
    background: var(--warm-gold);
    border-radius: var(--radius-md);
    padding: 32px;
    min-width: 400px;
    max-width: 400px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--black);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 198, 99, 0.4);
}

.testimonial-card__quote-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 14px;
    color: var(--black);
}

.testimonial-card__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--black);
    flex-grow: 1;
}

.testimonial-card__author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--black);
}

.testimonial-card__name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--black);
}

.testimonial-card__role {
    font-size: 0.78rem;
    color: var(--warm-black);
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 24px;
    }

    .testimonials-track {
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .testimonials {
        padding: 56px 0;
    }
}

/* =========================================================
   TESTIMONIAL CARD — Focused State (Saat di Tengah)
   ========================================================= */
.testimonial-card.is-focused {
    transform: scale(1.05);
    box-shadow: 0 20px 48px rgba(255, 198, 99, 0.5);
    z-index: 10;
    position: relative;
}

.testimonial-card.is-focused .testimonial-card__text {
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

/* =========================================================
   TESTIMONIAL CARD — New Data Fields Styling
   (Menyesuaikan elemen baru tanpa mengubah layout existing)
   ========================================================= */
.testimonial-card__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.testimonial-star {
    width: 16px;
    height: 16px;
    color: var(--maroon);
    stroke: #D99A32;
    filter:
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    flex-shrink: 0;
}

.testimonial-card__author {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}

.testimonial-card__date {
    font-size: 0.75rem;
    color: rgba(28, 28, 28, 0.5);
    margin: 0;
    margin-top: 2px;
}

.testimonial-card__source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--stone-gray);
    background: rgba(250, 247, 240, 0.8);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card__source::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234285F4'%3E%3Cpath d='M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* =========================================================
   TESTIMONIALS — DUAL COLUMN VERTICAL MARQUEE
   (Override layout track lama; styling card TIDAK diubah)
   ========================================================= */
.testimonials-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    will-change: auto;
}

@media (min-width: 700px) {
    .testimonials-track {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonials-col {
    position: relative;
    height: 400px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}

.testimonials-col--right {
    display: none;
}

@media (min-width: 700px) {
    .testimonials-col--right {
        display: block;
    }
}

.testimonials-col__track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    will-change: transform;
}

.testimonials-col .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonials-col {
        height: 500px;
    }

    .testimonials-col .testimonial-card {
        max-width: 300px;
    }
}

@media (max-width: 520px) {
    .testimonials-col {
        height: 460px;
    }

    .testimonials-col .testimonial-card {
        max-width: 280px;
    }
}

.testimonials__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--warm-black);
    opacity: 0.6;
}

/* =========================================================
TESTIMONIAL CARD — Property Badge
========================================================= */
.testimonial-card__property {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(94, 25, 20, 0.12);
    color: var(--maroon);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(94, 25, 20, 0.15);
    letter-spacing: 0.02em;
}

.testimonial-card__property::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235E1914' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .testimonial-card__property {
        font-size: 0.7rem;
        padding: 3px 10px;
        margin-bottom: 10px;
    }

    .testimonial-card__property::before {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 520px) {
    .testimonial-card__property {
        font-size: 0.68rem;
        padding: 3px 8px;
        margin-bottom: 8px;
    }

    .testimonial-card__property::before {
        width: 9px;
        height: 9px;
    }
}

.testimonials {
    padding: 56px 0;
}

.testimonials .section-heading--center {
    padding: 0 20px;
}

.testimonials .section-heading__title {
    font-size: clamp(1.6rem, 7vw, 2rem);
}

.testimonial-card {
    padding: 24px;
}

.site-footer {
    padding-top: 56px;
}

.footer__inner {
    padding-bottom: 40px;
    gap: 32px;
}

/* =========================================================
   ABOUT US — AUTO SLIDING MEDIA CAROUSEL
   Mendukung Foto (image) & Video (mp4) dengan Autoplay
========================================================= */
.about-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    background: #D9D7D4;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.about-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.about-slider__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.about-slider__slide img,
.about-slider__slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slider__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    padding: 6px 12px;
    background: rgba(19, 20, 17, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
}

.about-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(250, 247, 240, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-slider__dot:hover {
    background: rgba(250, 247, 240, 0.85);
}

.about-slider__dot.is-active {
    background: var(--warm-gold);
    width: 24px;
    border-radius: 4px;
}

.about-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(19, 20, 17, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--warm-ivory);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.about-slider:hover .about-slider__nav {
    opacity: 1;
}

.about-slider__nav:hover {
    background: var(--warm-gold);
    color: var(--black);
    transform: translateY(-50%) scale(1.08);
}

.about-slider__nav--prev {
    left: 12px;
}

.about-slider__nav--next {
    right: 12px;
}

.about-slider__status {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(19, 20, 17, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--warm-ivory);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-slider:hover .about-slider__status,
.about-slider.is-paused .about-slider__status {
    opacity: 1;
}

.about-slider__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25D366;
    transition: background 0.3s ease;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
}

.about-slider.is-paused .about-slider__status-dot {
    background: var(--warm-gold);
    box-shadow: 0 0 8px rgba(255, 198, 99, 0.6);
}

@media (max-width: 860px) {

    .about-pt__media,
    .about-slider {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-slider__nav {
        width: 36px;
        height: 36px;
    }

    .about-slider__nav--prev {
        left: 8px;
    }

    .about-slider__nav--next {
        right: 8px;
    }
}

@media (max-width: 520px) {
    .about-slider {
        border-radius: 20px;
        aspect-ratio: 4 / 3;
    }

    .about-slider__nav {
        width: 34px;
        height: 34px;
    }

    .about-slider__nav svg {
        width: 18px;
        height: 18px;
    }

    .about-slider__dots {
        bottom: 12px;
        gap: 6px;
        padding: 5px 10px;
    }

    .about-slider__dot {
        width: 6px;
        height: 6px;
    }

    .about-slider__dot.is-active {
        width: 18px;
    }

    .about-slider__status {
        font-size: 0.68rem;
        padding: 4px 8px;
    }
}

/* =========================================================
   TESTIMONIALS — Click-to-Pause Cue (Always Active Timer)
   ========================================================= */
.testimonials-carousel {
    position: relative;
    cursor: pointer;
}

.testimonials-carousel::before {
    content: '▶ Klik untuk jeda';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--maroon);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(94, 25, 20, 0.1);
    opacity: 0.9;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonials-carousel:hover::before {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.testimonials-carousel::after {
    content: '⏸ Dijeda — otomatis lagi sebentar…';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--warm-ivory);
    background: var(--maroon);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 4;
    box-shadow: 0 6px 16px rgba(94, 25, 20, 0.3);
}

.testimonials-carousel.is-paused::before {
    opacity: 0;
    transform: translateY(8px);
}

.testimonials-carousel.is-paused::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    .testimonials-carousel::before,
    .testimonials-carousel::after {
        top: 12px;
        right: 12px;
        font-size: 0.65rem;
        padding: 5px 12px;
    }
}

/* =========================================================
   FIX: KONTEN TIDAK TERTUTUP NAVBAR
   ========================================================= */

/* 1) Offset scroll anchor: puncak section berhenti di bawah navbar,
      bukan masuk ke bawahnya */
section[id],
footer[id] {
    scroll-margin-top: 0px;
}

/* 2) Dropdown yang baru saja diklik → jangan muncul lagi selama
      mouse masih nempel di navbar, supaya tidak menutupi konten */
@media (min-width: 861px) {
    .navbar__item--dropdown.is-suppressed .navbar__dropdown {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(-50%) translateY(-8px) !important;
        pointer-events: none;
    }

    .navbar__item--dropdown.is-suppressed .navbar__dropdown-toggle .navbar__caret {
        transform: rotate(0deg) !important;
    }
}

/* =========================================================
   ABOUT US — Turunkan Posisi Konten
   ========================================================= */
.about-pt {
    padding-top: 110px !important;
    padding-bottom: 80px !important;
    align-items: flex-start !important;
}

@media (max-width: 860px) {
    .about-pt {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 520px) {
    .about-pt {
        padding-top: 80px !important;
        padding-bottom: 48px !important;
    }
}

.navbar__item--dropdown.is-suppressed .navbar__dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-50%) translateY(-8px) !important;
    pointer-events: none;
}

.navbar__item--dropdown.is-suppressed .navbar__dropdown-toggle .navbar__caret {
    transform: rotate(0deg) !important;
}

/* =========================================================
   STATIC MAP — Gambar + Marker Overlay
   ========================================================= */
.location__map--static {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #D9D7D4;
    overflow: hidden;
}

.location__map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.location__marker {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 2;
    cursor: default;
}

a.map-marker {
    display: block;
    text-decoration: none;
}

.map-marker__label {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--warm-ivory);
    color: var(--maroon);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.map-marker:hover .map-marker__label,
.map-marker:focus-visible .map-marker__label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.location__map-attribution {
    position: absolute;
    bottom: 6px;
    right: 8px;
    font-size: 0.68rem;
    color: rgba(28, 28, 28, 0.6);
    background: rgba(250, 247, 240, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 3;
    pointer-events: none;
}

.location__marker-pin {
    width: 32px;
    height: 40px;
    background: var(--stone-gray);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.2s ease, transform 0.2s ease;
}

.location__marker:hover .location__marker-pin {
    background: var(--warm-gold);
    transform: rotate(-45deg) scale(1.15);
}

.location__marker-label {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--warm-ivory);
    color: var(--maroon);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.location__marker:hover .location__marker-label {
    opacity: 1;
}

.location__map-attribution {
    position: absolute;
    bottom: 6px;
    right: 8px;
    font-size: 0.62rem;
    color: rgba(28, 28, 28, 0.55);
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 768px) {
    .location__marker-pin {
        width: 24px;
        height: 30px;
        border-width: 2px;
    }

    .location__marker-label {
        font-size: 0.68rem;
        padding: 3px 8px;
    }
}

@media (max-width: 520px) {
    .location__marker-pin {
        width: 20px;
        height: 26px;
    }

    .location__marker-label {
        font-size: 0.62rem;
        padding: 2px 6px;
        bottom: calc(100% + 6px);
    }
}

@media (max-width: 860px) {
    .map-marker__label {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
        font-size: 0.66rem;
        padding: 3px 9px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        pointer-events: none;
    }

    .map-marker {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 520px) {
    .map-marker {
        width: 28px;
        height: 28px;
    }

    .map-marker__label {
        font-size: 0.6rem;
        padding: 2px 7px;
        gap: 4px;
    }
}

html {
    background-color: var(--warm-ivory);
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.site-header,
.site-footer {
    width: 100%;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


.site-header,
.hero,
.property,
.about-pt,
.why,
.location,
.testimonials,
.gallery-carousel,
.site-footer {
    width: 100%;
    max-width: 100%;
}


.section-inner,
.hero__inner,
.footer__inner,
.property__grid,
.about-pt__grid,
.location__grid,
.why__grid {
    max-width: min(var(--container-width), 100%);
    width: 100%;
}


.testimonials-track,
.gallery-carousel__track {
    max-width: 100%;
}


.master-plan__image,
.hero__image {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 860px) {

    
    .section-heading__title,
    .property .section-heading__title,
    .why .section-heading__title,
    .location .section-heading__title,
    .testimonials .section-heading__title {
        font-size: clamp(1.6rem, 6vw, 2.1rem);
        line-height: 1.2;
    }

    
    .section-heading__text,
    .property .section-heading__text,
    .why .section-heading__text,
    .testimonials .section-heading__text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    
    .property__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .property-card__title {
        font-size: 1.15rem;
    }

    
    .footer__desc {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .footer__col-title {
        font-size: 0.72rem;
    }

    .footer__list a {
        font-size: 0.88rem;
    }

    .footer__bottom {
        font-size: 0.78rem;
    }
}

@media (max-width: 520px) {
    .section-heading__title {
        font-size: 1.5rem;
    }

    .section-heading__text {
        font-size: 0.9rem;
    }

    .journey-step__title {
        font-size: 1rem;
    }

    .journey-step__desc {
        font-size: 0.82rem;
    }

    .footer__desc {
        font-size: 0.85rem;
    }

    .property-card__title {
        font-size: 1.05rem;
    }
}


html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}


body {
    touch-action: manipulation;
}


@media (max-width: 860px) {
    .navbar__item--dropdown.is-suppressed .navbar__dropdown {
        max-height: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}