/* WOW Properties — Modern 3D Landing Page */

:root {
    --wow-bg: #ffffff;
    --wow-bg-alt: #f5f6f8;
    --wow-surface: rgba(0, 0, 0, 0.04);
    --wow-border: rgba(17, 24, 39, 0.12);
    --wow-text: #111827;
    --wow-text-muted: #5b6470;
    --wow-accent: #c9a962;
    --wow-accent-glow: rgba(201, 169, 98, 0.35);
    --wow-primary: #4f46e5;
    --wow-primary-hover: #4338ca;
    --wow-btn-bg: var(--wow-primary);
    --wow-btn-text: #ffffff;
    --wow-glass: rgba(255, 255, 255);
    --wow-radius: 1rem;
    --wow-radius-lg: 1.5rem;
    --wow-font: "Inter", system-ui, sans-serif;
    --wow-display: "Playfair Display", Georgia, serif;
    --wow-container: 72rem;
    --wow-nav-height: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; }

.wow-page {
    margin: 0;
    font-family: var(--wow-font);
    background: var(--wow-bg);
    color: var(--wow-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.wow-container {
    width: 100%;
    max-width: var(--wow-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wow-glass {
    background: var(--wow-glass);
    border: 1px solid var(--wow-border);
    border-radius: var(--wow-radius);
}

/* API error banner */
.wow-api-banner {
    background: #fef2f2;
    color: #991b1b;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #fecaca;
}

/* Buttons */
.wow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, color 0.2s ease;
    font-family: inherit;
}

.wow-btn:hover { transform: none; }

@media (hover: hover) {
    .wow-btn:hover { transform: translateY(-1px); }
}

.wow-btn--primary {
    background: var(--wow-btn-bg);
    color: var(--wow-btn-text);
}

.wow-btn--primary:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 26px color-mix(in srgb, var(--wow-btn-bg) 55%, transparent);
}

.wow-btn--ghost {
    background: transparent;
    color: var(--wow-text);
    border: 1px solid var(--wow-border);
}

.wow-btn--ghost:hover { background: var(--wow-surface); }

.wow-btn--outline {
    background: var(--wow-btn-bg);
    color: var(--wow-btn-text);
    border: 1px solid var(--wow-btn-text);
}

.wow-btn--outline:hover {
    filter: brightness(0.95);
}

/* Section typography */
.wow-section {
    padding: 5rem 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.wow-section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wow-accent);
    margin: 0 0 0.5rem;
}

.wow-section-title {
    font-family: var(--wow-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.wow-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* Nav */
.wow-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--wow-nav-height);
    transition: background 0.3s, box-shadow 0.3s;
}

.wow-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 var(--wow-border);
}

.wow-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.wow-nav__brand {
    font-family: var(--wow-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 12rem;
}

.wow-nav__links {
    display: none;
    gap: 1.5rem;
}

.wow-nav__links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: color 0.2s;
}

.wow-nav__links a:hover { color: #fff; }

.wow-nav.is-scrolled .wow-nav__brand { color: var(--wow-text); }
.wow-nav.is-scrolled .wow-nav__links a { color: var(--wow-text-muted); }
.wow-nav.is-scrolled .wow-nav__links a:hover { color: var(--wow-text); }

.wow-nav__cta { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }

@media (min-width: 1024px) {
    .wow-nav__links { display: flex; }
    .wow-nav__brand { max-width: none; }
}

/* Hero */
.wow-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding-top: var(--wow-nav-height);
    overflow: hidden;
}

.wow-hero__fallback {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    display: block;
}

.wow-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 26, 0.3) 0%,
        rgba(10, 14, 26, 0.5) 40%,
        rgba(10, 14, 26, 0.92) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.wow-hero__content {
    position: relative;
    z-index: 2;
    padding: 3rem 1.5rem 4rem;
    width: 100%;
}

.wow-hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wow-accent);
    margin: 0 0 0.75rem;
}

.wow-hero__title {
    font-family: var(--wow-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.05;
    color: #fff;
}

.wow-hero__headline {
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin: 0 0 0.75rem;
    max-width: 36rem;
    line-height: 1.35;
    color: #fff;
}

.wow-hero__subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 28rem;
}

.wow-hero__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 2.5rem;
}

.wow-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-left: 0;
}

.wow-hero .wow-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.wow-hero .wow-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Stats */
.wow-stats {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding: 0 0 3rem;
    content-visibility: auto;
    contain-intrinsic-size: auto 120px;
}

/* Stats card stays hidden over the hero, revealed once the user scrolls */
html.wow-js-ready .wow-stats {
    opacity: 0;
    transform: translateY(1.5rem);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

html.wow-js-ready .wow-stats.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.wow-stats__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.wow-stats__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    flex: 1 1 0;
    min-width: 13rem;
    max-width: 20rem;
}

.wow-stats__body {
    min-width: 0;
}

.wow-stats__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--wow-text-muted);
    margin: 0;
}

.wow-stats__value {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.2rem 0 0;
}

.wow-stats__icon {
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 2.5rem;
    aspect-ratio: 1 / 1;
    align-self: center;
    background: var(--wow-accent);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 1.6rem;
    mask-size: 1.6rem;
}

.wow-stats__icon--bed {
    --wow-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23c9a962'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M2%204v16'/%3E%3Cpath%20d='M2%208h18a2%202%200%200%201%202%202v10'/%3E%3Cpath%20d='M2%2017h20'/%3E%3Cpath%20d='M6%208v9'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--wow-icon);
    mask-image: var(--wow-icon);
}

.wow-stats__icon--calendar {
    --wow-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23c9a962'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20x='3'%20y='4'%20width='18'%20height='18'%20rx='2'/%3E%3Cpath%20d='M3%2010h18'/%3E%3Cpath%20d='M8%202v4'/%3E%3Cpath%20d='M16%202v4'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--wow-icon);
    mask-image: var(--wow-icon);
}

.wow-stats__icon--location {
    --wow-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23c9a962'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20%2010c0%206-8%2012-8%2012s-8-6-8-12a8%208%200%200%201%2016%200Z'/%3E%3Ccircle%20cx='12'%20cy='10'%20r='3'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--wow-icon);
    mask-image: var(--wow-icon);
}

.wow-stats__icon--area {
    --wow-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23c9a962'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M8%203H5a2%202%200%200%200-2%202v3'/%3E%3Cpath%20d='M21%208V5a2%202%200%200%200-2-2h-3'/%3E%3Cpath%20d='M3%2016v3a2%202%200%200%200%202%202h3'/%3E%3Cpath%20d='M16%2021h3a2%202%200%200%200%202-2v-3'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--wow-icon);
    mask-image: var(--wow-icon);
}

.wow-stats__icon--price {
    --wow-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23c9a962'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20x='2'%20y='6'%20width='20'%20height='12'%20rx='2'/%3E%3Ccircle%20cx='12'%20cy='12'%20r='2'/%3E%3Cpath%20d='M6%2012h.01'/%3E%3Cpath%20d='M18%2012h.01'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--wow-icon);
    mask-image: var(--wow-icon);
}

.wow-stats__icon--plan {
    --wow-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23c9a962'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cline%20x1='19'%20y1='5'%20x2='5'%20y2='19'/%3E%3Ccircle%20cx='6.5'%20cy='6.5'%20r='2.5'/%3E%3Ccircle%20cx='17.5'%20cy='17.5'%20r='2.5'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--wow-icon);
    mask-image: var(--wow-icon);
}

.wow-stats__sub {
    font-size: 0.75rem;
    color: var(--wow-text-muted);
    margin: 0.15rem 0 0;
    font-weight: 500;
}

/* Intro */
.wow-intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .wow-intro__grid { grid-template-columns: 1.2fr 0.8fr; }
}

.wow-intro__text {
    font-size: 1.0625rem;
    color: var(--wow-text-muted);
    line-height: 1.75;
    margin: 0 0 1.5rem;
}

.wow-intro__prose p {
    margin: 0 0 1rem;
}

.wow-intro__prose p:last-child {
    margin-bottom: 0;
}

.wow-intro__prose p + p {
    margin-top: 0.75rem;
}

.wow-intro__prose strong,
.wow-intro__prose b {
    font-weight: 600;
    color: var(--wow-text);
}

.wow-intro__prose ul,
.wow-intro__prose ol {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.wow-intro__prose li + li {
    margin-top: 0.35rem;
}

.wow-intro__prose a {
    color: var(--wow-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.wow-intro__text--clamped {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
}

.wow-intro__read-more {
    display: inline-block;
    margin: 0 0 1.25rem;
    padding: 0;
    background: none;
    border: none;
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--wow-accent);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wow-intro__read-more:hover {
    color: var(--wow-text);
}

.wow-intro__read-more[hidden] {
    display: none;
}

.wow-intro__visual {
    padding: 2.5rem;
    min-height: 16rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.wow-intro__visual--image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wow-intro__visual--custom-color {
    border-color: transparent;
}

.wow-intro__visual--image .wow-intro__accent,
.wow-intro__visual--custom-color .wow-intro__accent {
    display: none;
}

.wow-intro__bg-edit {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    margin: 0;
    padding: 0.35rem 0.65rem;
    font-size: 0.6875rem;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0.375rem;
    border: 1px dashed var(--wow-primary);
    background: rgba(255, 255, 255, 0.92);
    color: var(--wow-primary);
    cursor: pointer;
}

.wow-intro__bg-edit:hover {
    background: var(--wow-primary);
    color: #fff;
    border-style: solid;
}

.wow-intro__quote-edit {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    margin: 0;
    padding: 0.35rem 0.65rem;
    font-size: 0.6875rem;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0.375rem;
    border: 1px dashed var(--wow-primary);
    background: rgba(255, 255, 255, 0.92);
    color: var(--wow-primary);
    cursor: pointer;
}

.wow-intro__quote-edit:hover {
    background: var(--wow-primary);
    color: #fff;
    border-style: solid;
}

.wow-intro__accent {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, var(--wow-accent-glow), transparent 70%);
    pointer-events: none;
}

.wow-intro__quote {
    font-family: var(--wow-display);
    font-size: 1.375rem;
    font-style: italic;
    margin: 0;
    position: relative;
}

.wow-intro__visual--image .wow-intro__quote {
    display: none;
}

/* Units */
.wow-units-swiper {
    overflow: hidden;
}

.wow-unit-card {
    border-radius: var(--wow-radius-lg);
    overflow: hidden;
    background: var(--wow-bg-alt);
    border: 1px solid var(--wow-border);
    transition: transform 0.3s;
}

.wow-unit-card__image {
    height: 18rem;
    background-size: cover;
    background-position: center;
}

.wow-unit-card__image--placeholder {
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.wow-unit-card__body { padding: 1.5rem; }

.wow-unit-card__name {
    font-family: var(--wow-display);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}

.wow-unit-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--wow-accent);
    margin: 0 0 0.25rem;
}

.wow-unit-card__area {
    font-size: 0.875rem;
    color: var(--wow-text-muted);
    margin: 0 0 1rem;
}

.wow-unit-card__cta { width: 100%; }

@media (min-width: 1024px) {
    .wow-units-swiper .wow-unit-card__image { height: 12rem; }
}

/* Downloads */
.wow-downloads__header {
    max-width: 40rem;
    margin-bottom: 2rem;
}

.wow-downloads__text {
    font-size: 1.0625rem;
    color: var(--wow-text-muted);
    line-height: 1.7;
    margin: 0.75rem 0 0;
}

.wow-downloads__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .wow-downloads__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .wow-downloads__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.wow-download-card {
    padding: 2rem;
    border-radius: var(--wow-radius-lg);
    border: 1px solid var(--wow-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
}

.wow-download-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: var(--wow-accent);
    margin-bottom: 1.25rem;
    -webkit-mask-size: 55%;
    mask-size: 55%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.wow-download-card__icon--plan {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18'/%3E%3Cpath d='M9 21V9'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18'/%3E%3Cpath d='M9 21V9'/%3E%3C/svg%3E");
}

.wow-download-card__icon--brochure {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
}

.wow-download-card__icon--payment {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M8 14h.01'/%3E%3Cpath d='M12 14h.01'/%3E%3Cpath d='M16 14h.01'/%3E%3Cpath d='M8 18h.01'/%3E%3Cpath d='M12 18h.01'/%3E%3Cpath d='M16 18h.01'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M8 14h.01'/%3E%3Cpath d='M12 14h.01'/%3E%3Cpath d='M16 14h.01'/%3E%3Cpath d='M8 18h.01'/%3E%3Cpath d='M12 18h.01'/%3E%3Cpath d='M16 18h.01'/%3E%3C/svg%3E");
}

.wow-download-card__title {
    font-family: var(--wow-display);
    font-size: 1.375rem;
    margin: 0 0 0.5rem;
}

.wow-download-card__text {
    font-size: 0.9375rem;
    color: var(--wow-text-muted);
    line-height: 1.65;
    margin: 0 0 1.5rem;
    flex: 1;
}

.wow-download-card__cta { width: 100%; }

/* Carousel nav */
.wow-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.wow-carousel-nav__btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--wow-border);
    background: var(--wow-surface);
    color: var(--wow-text);
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.wow-carousel-nav__btn:hover { background: var(--wow-primary); border-color: var(--wow-primary); }

.wow-carousel-nav__btn.swiper-button-disabled,
.wow-carousel-nav__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.wow-carousel-nav__btn.swiper-button-disabled:hover,
.wow-carousel-nav__btn:disabled:hover {
    background: transparent;
    border-color: var(--wow-border);
}

.wow-carousel-nav__count {
    font-size: 0.8125rem;
    color: var(--wow-text-muted);
    min-width: 4rem;
    text-align: center;
}

/* Gallery */
.wow-gallery { padding-bottom: 3rem; }

.wow-gallery__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.wow-gallery__tab {
    padding: 0.5rem 1rem;
    border: 1px solid var(--wow-border);
    border-radius: 9999px;
    background: transparent;
    color: var(--wow-text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.wow-gallery__tab:hover {
    border-color: var(--wow-accent);
    color: var(--wow-accent);
}

.wow-gallery__tab.is-active {
    background: var(--wow-accent);
    border-color: var(--wow-accent);
    color: #fff;
}

.wow-gallery__panels {
    margin-top: 1.25rem;
}

.wow-gallery__panel[hidden] {
    display: none !important;
}

.wow-gallery__slider {
    margin-top: 0.25rem;
}

.wow-gallery__slider-frame {
    position: relative;
    width: 100%;
    border-radius: var(--wow-radius);
    overflow: hidden;
    background: var(--wow-surface-alt, #f3f4f6);
    touch-action: pan-y;
    user-select: none;
}

.wow-gallery__slide {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
}

.wow-gallery__slide-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    transition: transform 0.4s;
}

.wow-gallery__slide:hover .wow-gallery__slide-img {
    transform: scale(1.02);
}

.wow-gallery__nav {
    margin-top: 1rem;
}

.wow-gallery__nav--single {
    justify-content: center;
}

@media (max-width: 767px) {
    .wow-gallery__tabs {
        margin-top: 1.25rem;
        gap: 0.375rem;
    }

    .wow-gallery__tab {
        font-size: 0.8125rem;
        padding: 0.4rem 0.75rem;
    }

    .wow-gallery__slide-img {
        aspect-ratio: 16 / 22;
    }
}

.wow-lightbox {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 5rem 3.5rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    touch-action: pan-y;
    user-select: none;
}

body.wow-lightbox-open {
    overflow: hidden;
}

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

.wow-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.wow-lightbox__stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: calc(100vw - 10rem);
    max-height: calc(100vh - 8rem);
    max-height: calc(100dvh - 8rem);
    touch-action: pan-y;
}

.wow-lightbox__img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--wow-radius);
    pointer-events: none;
}

.wow-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.wow-lightbox__nav:hover { background: rgba(255, 255, 255, 0.25); }
.wow-lightbox__nav--prev { left: 1.5rem; }
.wow-lightbox__nav--next { right: 1.5rem; }

.wow-lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .wow-lightbox { padding: 3.5rem 1rem 4.5rem; }
    .wow-lightbox__stage {
        max-width: 100%;
        max-height: calc(100vh - 7rem);
        max-height: calc(100dvh - 7rem);
    }
    .wow-lightbox__nav { width: 2.5rem; height: 2.5rem; top: auto; bottom: 1.25rem; transform: none; }
    .wow-lightbox__nav--prev { left: 1.25rem; }
    .wow-lightbox__nav--next { right: 1.25rem; }
    .wow-lightbox__counter { bottom: 1.6rem; }
}

/* Bento features */
.wow-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .wow-bento { grid-template-columns: repeat(2, 1fr); }
}

.wow-bento__card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wow-bento__card--wide {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .wow-bento__card--wide { grid-column: span 2; }
}

.wow-bento__image {
    height: 10rem;
    background-size: cover;
    background-position: center;
}

.wow-bento__body { padding: 1.25rem 1.5rem; }

.wow-bento__title {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    color: var(--wow-accent);
}

.wow-bento__text {
    font-size: 0.875rem;
    color: var(--wow-text-muted);
    margin: 0;
    line-height: 1.6;
}

.wow-amenity-card {
    padding: 1rem;
    height: 100%;
}

.wow-amenity-card__image {
    height: 15rem;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
    margin-bottom: 0.875rem;
}

.wow-amenity-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

.wow-amenity-card__desc {
    font-size: 0.8125rem;
    color: var(--wow-text-muted);
    margin: 0.5rem 0 0;
}

.wow-features__amenities { margin-top: 1rem; }

/* Payment */
.wow-payment { background: var(--wow-bg-alt); }

.wow-payment .wow-section-eyebrow,
.wow-payment .wow-section-title {
    margin-bottom: 0;
}

.wow-payment .wow-section-title {
    margin-bottom: 1.5rem;
}

.wow-payment__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.wow-payment__tab {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid var(--wow-border);
    border-radius: 999px;
    background: var(--wow-surface);
    color: var(--wow-text-muted);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.wow-payment__tab-badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: var(--wow-accent);
    color: #fff;
}

.wow-payment__edit-btn {
    margin-bottom: 1rem;
}

.wow-payment__tab:hover {
    border-color: var(--wow-accent);
    color: var(--wow-text);
}

.wow-payment__tab.is-active {
    border-color: var(--wow-accent);
    background: color-mix(in srgb, var(--wow-accent) 12%, var(--wow-surface));
    color: var(--wow-accent);
}

.wow-payment__plan-panel[hidden] {
    display: none;
}

.wow-payment__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .wow-payment__grid { grid-template-columns: 1fr 1fr; }
}

.wow-payment__highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.wow-payment__highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--wow-text-muted);
}

.wow-payment__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--wow-accent);
}

.wow-payment__text {
    color: var(--wow-text-muted);
    margin: 0 0 1.5rem;
}

.wow-payment__timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.wow-payment__timeline::before {
    content: "";
    position: absolute;
    left: 0.4rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--wow-border);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1s ease;
}

.wow-payment.is-visible .wow-payment__timeline::before {
    transform: scaleY(1);
}

.wow-payment__milestone {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s, transform 0.5s;
}

.wow-payment.is-visible .wow-payment__milestone {
    opacity: 1;
    transform: translateX(0);
}

.wow-payment__dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--wow-accent);
    flex-shrink: 0;
    margin-top: 0.5rem;
    margin-left: -1.65rem;
    box-shadow: 0 0 12px var(--wow-accent-glow);
}

.wow-payment__milestone-body { padding: 1rem 1.25rem; flex: 1; }

.wow-payment__milestone-title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

.wow-payment__milestone-pct {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wow-accent);
    margin: 0.25rem 0 0;
}

/* Location */
.wow-location__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .wow-location__grid { grid-template-columns: 1fr 1.5fr; }
}

.wow-location__map-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wow-location__map {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--wow-radius);
    background: var(--wow-surface);
}

.wow-location__map--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 14rem;
    color: var(--wow-text-muted);
    font-size: 0.875rem;
    text-align: center;
    padding: 1.5rem;
}

.wow-location__map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.wow-location__map-link {
    align-self: flex-start;
}

.wow-location__address {
    font-size: 1rem;
    color: var(--wow-text-muted);
    margin: 0;
    line-height: 1.6;
}

.wow-location__subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wow-text-muted);
    margin: 0 0 1rem;
}

.wow-destinations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
    gap: 0.75rem;
}

.wow-destination {
    padding: 1rem;
    text-align: center;
}

.wow-destination__time {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wow-accent);
}

.wow-destination__name {
    display: block;
    font-size: 0.8125rem;
    color: var(--wow-text-muted);
    margin-top: 0.25rem;
}

/* Developer */
.wow-developer__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .wow-developer__inner { flex-direction: row; align-items: center; }
}

.wow-developer__logo {
    max-width: 8rem;
    max-height: 4rem;
    object-fit: contain;
}

.wow-developer__text {
    color: var(--wow-text-muted);
    margin: 0 0 1.5rem;
    line-height: 1.75;
}

.wow-developer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wow-developer__badge {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--wow-border);
    color: var(--wow-accent);
}

/* Register */
.wow-register { background: var(--wow-bg-alt); }

.wow-register__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .wow-register__grid { grid-template-columns: 1fr 1fr; }
}

.wow-register__text {
    color: var(--wow-text-muted);
    margin: 0;
    line-height: 1.75;
}

.wow-register__form { padding: 2rem; }

/* Forms */
.wow-form__row { margin-bottom: 0.875rem; }

.wow-form__input,
.wow-form__select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--wow-border);
    background: #ffffff;
    color: var(--wow-text);
    font-size: 0.875rem;
    font-family: inherit;
}

.wow-form__input::placeholder { color: #6b7280; }

.wow-form__phone {
    display: block;
}

.wow-form__phone .iti {
    width: 100%;
    display: block;
}

.wow-form__phone .iti__tel-input,
.wow-form__phone .iti input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--wow-border);
    background: #ffffff;
    color: var(--wow-text);
    font-size: 0.875rem;
    font-family: inherit;
}

.wow-form__phone .iti__tel-input:focus,
.wow-form__phone .iti input[type="tel"]:focus {
    outline: 2px solid var(--wow-accent);
    outline-offset: 0;
}

.wow-form__phone .iti--separate-dial-code .iti__selected-country {
    border-radius: 0.5rem 0 0 0.5rem;
    border: 1px solid var(--wow-border);
    border-right: none;
    background: #f3f4f6;
}

.wow-form__phone .iti--separate-dial-code .iti__tel-input {
    border-radius: 0 0.5rem 0.5rem 0;
    padding-left: 0.75rem;
}

.lp-cta-phone .iti {
    width: 100%;
}

.lp-cta-phone .iti__tel-input,
.lp-cta-phone .iti input[type="tel"] {
    width: 100%;
}

/* intl-tel-input: country dropdown above modals (default z-index is 1060) */
.iti--container {
    z-index: 2100 !important;
}

.iti__dropdown-content {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.iti__search-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.625rem 0.75rem;
    border: none;
    border-bottom: 1px solid var(--wow-border, #e5e7eb);
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--wow-text, #111827);
    background: #fff;
}

.iti__search-input::placeholder {
    color: #6b7280;
}

.wow-form__disclaimer {
    font-size: 0.6875rem;
    color: var(--wow-text-muted);
    line-height: 1.5;
    margin: 0.75rem 0 1rem;
}

.wow-form__submit { width: 100%; }

.wow-form__message {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    text-align: center;
}

.wow-form__message:not([hidden]) { color: var(--wow-accent); }

.wow-form__message.is-error:not([hidden]) { color: #dc2626; }

/* Download modal */
.wow-download-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    pointer-events: none;
}

.wow-download-modal.is-open { pointer-events: auto; }

.wow-download-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s;
}

.wow-download-modal.is-open .wow-download-modal__backdrop { opacity: 1; }

.wow-download-modal__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 28rem;
    height: 100%;
    background: var(--wow-bg);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}

.wow-download-modal.is-open .wow-download-modal__drawer { transform: translateX(0); }

.wow-download-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--wow-text-muted);
    cursor: pointer;
}

.wow-download-modal__title {
    font-family: var(--wow-display);
    font-size: 1.5rem;
    margin: 0 0 0.35rem;
}

.wow-download-modal__subtitle {
    font-size: 0.875rem;
    color: var(--wow-text-muted);
    margin: 0 0 1.5rem;
}

/* Enquiry modal */
.wow-enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    pointer-events: none;
}

.wow-enquiry-modal.is-open { pointer-events: auto; }

.wow-enquiry-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s;
}

.wow-enquiry-modal.is-open .wow-enquiry-modal__backdrop { opacity: 1; }

.wow-enquiry-modal__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 28rem;
    height: 100%;
    background: var(--wow-bg-alt);
    border-left: 1px solid var(--wow-border);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wow-enquiry-modal.is-open .wow-enquiry-modal__drawer { transform: translateX(0); }

.wow-enquiry-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--wow-text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}

.wow-enquiry-modal__title {
    font-family: var(--wow-display);
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
}

.wow-enquiry-modal__subtitle {
    color: var(--wow-text-muted);
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
}

/* Story / intro read-more modal */
.wow-story-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.wow-story-modal.is-open { pointer-events: auto; }

.wow-story-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s;
}

.wow-story-modal.is-open .wow-story-modal__backdrop { opacity: 1; }

.wow-story-modal__panel {
    position: relative;
    width: 100%;
    max-width: 42rem;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--wow-bg-alt);
    border: 1px solid var(--wow-border);
    border-radius: 0.75rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(1rem) scale(0.98);
    transition: opacity 0.3s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wow-story-modal.is-open .wow-story-modal__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wow-story-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--wow-text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}

.wow-story-modal__title {
    font-family: var(--wow-display);
    font-size: 1.5rem;
    margin: 0 2rem 1.25rem 0;
    padding-right: 1rem;
}

.wow-story-modal__body {
    font-size: 1.0625rem;
    color: var(--wow-text-muted);
    line-height: 1.75;
}

/* Mobile sticky bar */
.wow-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--wow-border);
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.wow-mobile-bar__price {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--wow-accent);
}

.wow-mobile-bar__cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .wow-mobile-bar { display: flex; }
    .wow-page { padding-bottom: 4.5rem; }
    .wow-hero__ctas { margin-left: 0; width: 100%; }
    .wow-nav__cta { display: none; }
}

/* Footer */
.wow-footer {
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.8125rem;
    color: var(--wow-text-muted);
    border-top: 1px solid var(--wow-border);
}

/* Public 404 */
.wow-not-found {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, var(--wow-accent-glow), transparent),
        var(--wow-bg);
}

.wow-not-found__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.wow-not-found__content {
    max-width: 28rem;
    text-align: center;
}

.wow-not-found__code {
    font-family: var(--wow-display);
    font-size: clamp(4rem, 18vw, 7rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 1rem;
    color: var(--wow-accent);
    opacity: 0.85;
}

.wow-not-found__title {
    font-family: var(--wow-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.25;
}

.wow-not-found__text {
    font-size: 1.0625rem;
    color: var(--wow-text-muted);
    line-height: 1.7;
    margin: 0;
}

.wow-not-found__footer {
    margin-top: auto;
    border-top: none;
}

/* Reveal animations (initial state before GSAP) */
.wow-reveal {
    opacity: 1;
}

html:not(.wow-js-ready) .wow-reveal {
    opacity: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .wow-unit-card,
    .wow-btn,
    .wow-gallery__slide-img { transition: none !important; }
    .wow-payment__milestone { opacity: 1 !important; transform: none !important; }
    .wow-payment__timeline::before { transform: scaleY(1) !important; }
}
