[x-cloak] { display: none !important; }

:root {
    --white: #ffffff;
    --off-white: #f4f5f6;
    --soft: #eef1f3;
    --border: #dce1e5;
    --border-light: #e7eaed;
    --text: #172536;
    --text-muted: #66727e;
    --text-light: #9aa4ad;
    --gold: #b8914e;
    --gold-light: #d6b878;
    --gold-pale: #f5efe3;
    --navy: #13263b;
    --navy-deep: #0e1d2e;
    --shadow-sm: 0 2px 14px rgba(19,38,59,0.045);
    --shadow-md: 0 8px 28px rgba(19,38,59,0.07);
    --shadow-lg: 0 18px 50px rgba(19,38,59,0.11);
    --shadow-hover: 0 18px 36px rgba(19,38,59,0.14);
}

html { scroll-behavior: smooth; }

body {
    background: #ffffff;
    color: var(--text);
}

main {
    background: #ffffff;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.listing-card img,
.detail-card img,
.hero-frame img {
    object-fit: cover;
    object-position: center;
}

/* ── Typography accents ── */
.gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.detail-table-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e7e1d7;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 28px rgba(19, 38, 59, 0.06);
}

.detail-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    text-transform: none;
    margin: 0;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.detail-info-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}
.detail-info-header .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .detail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #fbfaf7;
    border: 1px solid #f0ece5;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.detail-item:hover {
    background: #f7f1e7;
    transform: translateY(-2px);
}

.detail-summary-values {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}

.detail-area-highlight {
    border-left: 1px solid #e7e1d7;
    padding-left: 1.5rem;
}

@media (max-width: 480px) {
    .detail-summary-values { gap: 1rem; }
    .detail-area-highlight { padding-left: 1rem; }
}

.detail-item-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666666;
    font-weight: 500;
}

.detail-item-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 640px) {
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .detail-item {
        padding: 0.75rem;
    }
    .detail-item-label {
        font-size: 0.65rem;
    }
    .detail-item-value {
        font-size: 0.9rem;
    }
    .detail-table-card {
        padding: 1.25rem;
        border-radius: 6px;
    }
}

/* ── Buttons ── */
.btn-gold {
    background: var(--gold);
    color: #fff;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-gold:hover {
    background: #a6854a;
    box-shadow: 0 8px 24px rgba(184,151,90,0.35);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1.5px solid var(--border);
    color: var(--text);
    background: var(--white);
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Cards ── */
.card-white {
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
}
.card-white:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: rgba(184,151,90,0.25);
}

.listing-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: 0 6px 22px rgba(19, 38, 59, 0.06);
    transition: box-shadow 0.4s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.4s ease;
}
.listing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.listing-card .card-img {
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.listing-card:hover .card-img {
    transform: scale(1.05);
}

/* ── Category blocks (white editorial) ── */
.category-block {
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    overflow: hidden;
}
.category-block:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.category-block:hover .category-img {
    transform: scale(1.06);
}
.category-block:hover .category-arrow {
    transform: translateX(6px);
    color: var(--gold);
}

/* ── Search bar ── */
.search-box {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.search-box:focus-within {
    border-color: rgba(184,151,90,0.4);
    box-shadow: 0 0 0 4px rgba(184,151,90,0.08), var(--shadow-md);
}

.search-box input,
.search-box select {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.search-box input:focus,
.search-box select:focus {
    background: var(--white);
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184,151,90,0.1);
}

/* ── Stats ── */
.stat-number {
    color: var(--text);
    font-weight: 700;
}
.stat-number span.gold { color: var(--gold); }

/* ── Nav ── */
.nav-link {
    position: relative;
    color: var(--text-muted);
    transition: color 0.25s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.header-utility {
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    background: var(--gold-pale);
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.header-utility-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(184, 151, 90, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-utility-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(184, 151, 90, 0.3);
}

.header-utility-badge {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #111111;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
    border: 1.5px solid var(--gold-pale);
}

.header-utility-email {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #4a4a4a;
}

.header-utility-email a {
    color: inherit;
    transition: color 0.2s ease;
}

.header-utility-email a:hover {
    color: var(--gold);
}

.header-language-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 1.85rem;
    padding: 0 0.55rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid rgba(184, 151, 90, 0.25);
    color: #3a3a3a;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    transition: all 0.2s ease;
}

.header-language-pill:hover,
.header-language-pill.is-active {
    background: var(--gold-pale);
    border-color: var(--gold);
    color: var(--gold);
}

.header-utility-heart svg {
    color: #ffffff;
}

.header-dropdown {
    min-width: 18rem;
}

.header-dropdown a {
    transition: background 0.25s ease, color 0.25s ease;
}

@media (max-width: 1280px) {
    .nav-link {
        padding: 0.9rem 1.1rem;
    }
}

@media (max-width: 640px) {
    .header-utility {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .header-utility-icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .header-language-pill {
        min-width: 1.95rem;
        height: 1.6rem;
        font-size: 0.56rem;
        letter-spacing: 0.06em;
    }

    .header-utility-email {
        display: none;
    }
}

/* ── Hero image frame ── */
.hero-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}
.hero-frame img {
    transition: transform 8s ease;
}
.hero-frame:hover img {
    transform: scale(1.04);
}

/* ── Luxury Hero ── */
.hero-luxury {
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.hero-luxury-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 0% 0%, rgba(184,151,90,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(184,151,90,0.05) 0%, transparent 50%),
        linear-gradient(180deg, #fff 0%, #faf9f6 100%);
    pointer-events: none;
}
.hero-luxury .gold-line {
    width: 56px;
    background: linear-gradient(90deg, var(--gold), rgba(184,151,90,0.3));
}

.hero-search-premium {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.03);
    padding: 0.5rem;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.hero-search-premium:focus-within {
    border-color: rgba(184,151,90,0.45);
    box-shadow: 0 12px 48px rgba(184,151,90,0.12), 0 0 0 4px rgba(184,151,90,0.06);
}
.hero-search-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
}
.hero-search-field {
    flex: 1;
    min-width: 120px;
    padding: 0.875rem 1.125rem;
}
.hero-search-field label {
    display: block;
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.375rem;
}
.hero-search-field input,
.hero-search-field select {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--text);
    padding: 0;
    outline: none;
}
.hero-search-field select { cursor: pointer; }
.hero-search-field input::placeholder { color: #bbb; }
.hero-search-divider {
    width: 1px;
    background: var(--border-light);
    align-self: stretch;
    margin: 0.75rem 0;
    flex-shrink: 0;
}
.hero-search-btn {
    align-self: center;
    margin: 0.375rem;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold) 0%, #a6854a 100%);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(184,151,90,0.3);
}
.hero-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(184,151,90,0.4);
}

.hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--gold-pale);
    border: 1px solid rgba(184,151,90,0.15);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}
.hero-pill svg { color: var(--gold); flex-shrink: 0; }

.hero-visual {
    position: relative;
}
.hero-frame-luxury {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.8);
    z-index: 2;
}
.hero-frame-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}
.hero-frame-luxury:hover .hero-frame-img {
    transform: scale(1.06);
}
.hero-frame-accent {
    position: absolute;
    top: 24px;
    right: -24px;
    bottom: -24px;
    left: 24px;
    border: 2px solid rgba(184,151,90,0.25);
    border-radius: 28px;
    z-index: 1;
    pointer-events: none;
}
.hero-frame-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 0.875rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}
.hero-frame-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.hero-frame-badge-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-search-inner { flex-direction: column; }
    .hero-search-divider { width: 100%; height: 1px; margin: 0; }
    .hero-search-btn { width: calc(100% - 0.75rem); justify-content: center; }
    .hero-frame-accent { display: none; }
}

/* ── Luxury Stats ── */
.stats-luxury {
    padding: 2rem 0 2.5rem;
    background: linear-gradient(180deg, #faf9f6 0%, var(--white) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.stats-luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.stats-luxury-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
    overflow: hidden;
}
.stats-luxury-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--border-light);
    transition: background 0.3s ease;
}
.stats-luxury-card--featured::before {
    background: linear-gradient(90deg, var(--gold), rgba(184,151,90,0.4));
}
.stats-luxury-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,151,90,0.3);
}
.stats-luxury-card:hover .stats-luxury-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--gold);
}
.stats-luxury-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.stats-luxury-icon svg { width: 22px; height: 22px; }
.stats-luxury-icon--grid { background: var(--gold-pale); color: var(--gold); }
.stats-luxury-icon--home { background: #eff6ff; color: #2563eb; }
.stats-luxury-icon--key { background: #ecfdf5; color: #059669; }
.stats-luxury-icon--chart { background: #f5f3ff; color: #7c3aed; }
.stats-luxury-content { flex: 1; min-width: 0; }
.stats-luxury-number {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 0.375rem;
    color: var(--text);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}
.stats-luxury-card--featured .stats-luxury-number { color: var(--gold); }
.stats-luxury-label {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
}
.stats-luxury-arrow {
    font-size: 1.125rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}
.stats-live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}
.stats-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.stats-luxury-number.updating {
    animation: stat-flash 0.5s ease;
}
@keyframes stat-flash {
    0% { color: var(--gold); transform: scale(1.05); }
    100% { color: inherit; transform: scale(1); }
}

@media (max-width: 1024px) {
    .stats-luxury-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-luxury-grid { grid-template-columns: 1fr; }
    .stats-luxury-number { font-size: 1.75rem; }
}

/* ── Detail listing features card ── */
.feature-summary-card {
    background: #fff;
    border: 1px solid rgba(224, 224, 224, 1);
    border-radius: 32px;
    padding: 1.25rem;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.06);
}
.feature-summary-card .feature-item {
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 1);
    border-radius: 24px;
    padding: 1.1rem 1rem;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-summary-card .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
    border-color: rgba(184, 151, 90, 0.35);
}
.feature-summary-card .feature-item p:first-child {
    color: #6b7280;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0;
}
.feature-summary-card .feature-item p:last-child {
    color: #111111;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}
@media (max-width: 1100px) {
    .feature-summary-card {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
@media (max-width: 640px) {
    .feature-summary-card {
        grid-template-columns: 1fr !important;
    }
}

/* ── Section backgrounds ── */
.bg-soft { background: var(--off-white); }
.bg-pale-gold { background: var(--gold-pale); }

/* ── Filter panel ── */
.filter-panel {
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    border-radius: 16px;
}

/* ── Page hero (white) ── */
.page-hero-white {
    background: var(--off-white);
    border-bottom: 1px solid var(--border-light);
}

/* ── Price box ── */
.price-box {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.pdf-action {
    background: #fff;
    border: 1px solid rgba(184,151,90,0.28);
    color: var(--gold);
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.pdf-action:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-1px);
}

.detail-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.detail-card .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.675rem 1rem;
    border-radius: 999px;
    background: rgba(184,151,90,0.08);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-card .detail-summary {
    background: var(--gold-pale);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(184,151,90,0.16);
}

.detail-card .detail-summary p {
    color: #475569;
}

.detail-card .feature-row {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card .feature-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 0.75rem;
    text-align: center;
}

.detail-card .detail-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 900px) {
    .detail-card .detail-features {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 980px) {
    .detail-card .detail-features,
    .detail-card .feature-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .detail-card .detail-features,
    .detail-card .feature-row {
        grid-template-columns: 1fr;
    }
}

.feature-highlight {
    background: #eef8e9;
    border-color: #c7e1c0;
}

.detail-card .feature-item p:first-child {
    margin-bottom: 0.25rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #64748b;
}

.detail-card .feature-item p:last-child {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
}

/* ── Service card ── */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.35s ease;
}
.service-card:hover {
    border-color: rgba(184,151,90,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-pale);
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 25px;
    height: 25px;
    color: var(--gold);
}

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-soft {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
    50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.55); }
}

.animate-fade-up { animation: fadeUp 0.9s ease forwards; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ── WhatsApp ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    animation: pulse-soft 2.5s ease infinite;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ── Social icons footer ── */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    transition: all 0.25s ease;
}
.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}

/* ── Gallery slider buttons ── */
.slider-btn {
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    color: var(--text);
    transition: all 0.25s ease;
}
.slider-btn:hover {
    background: var(--white);
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Brand refinement ── */
body.bg-white {
    background: #ffffff !important;
}

body,
button,
input,
select,
textarea {
    letter-spacing: 0;
}

.section-label {
    letter-spacing: 0.16em;
    font-size: 0.68rem;
}

.header-utility {
    background: #f6f7f8;
    border-bottom-color: #e1e6ea;
}

.header-utility-icon {
    width: 1.9rem;
    height: 1.9rem;
    background: var(--navy);
    box-shadow: none;
}

.header-utility-icon:hover {
    background: var(--gold);
    box-shadow: none;
}

header.sticky {
    background: rgba(255,255,255,0.98) !important;
    border-bottom-color: #e4e8eb;
}

header.sticky .nav-link,
header.sticky .text-dark,
header.sticky button,
header.sticky .mobile-menu-button {
    color: var(--navy) !important;
}

header.sticky .nav-link:hover,
header.sticky .nav-link.active,
header.sticky button:hover {
    color: var(--gold) !important;
}

header.sticky .nav-link::after {
    background: var(--gold-light);
}

header.sticky .header-language-pill,
header.sticky .header-utility-heart,
header.sticky .inline-flex.border-border-light {
    background: #ffffff !important;
    border-color: #dce2e7 !important;
    color: var(--navy) !important;
}

.hero-luxury {
    background: #ffffff;
    border-bottom: 1px solid #e4e8eb;
}

.hero-luxury-bg {
    background:
        linear-gradient(115deg, rgba(255,255,255,0.96) 0%, rgba(247,249,250,0.7) 52%, rgba(235,240,243,0.82) 100%),
        repeating-linear-gradient(90deg, rgba(19,38,59,0.025) 0, rgba(19,38,59,0.025) 1px, transparent 1px, transparent 7rem);
}

.hero-frame-luxury {
    border-radius: 12px;
    box-shadow: 0 24px 52px rgba(19,38,59,0.18);
}

.hero-frame-accent {
    top: 18px;
    right: -16px;
    bottom: -16px;
    left: 16px;
    border: 1px solid rgba(184,151,90,0.45);
    border-radius: 12px;
}

.hero-search-premium {
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(19,38,59,0.1);
}

.hero-search-btn {
    border-radius: 8px;
    background: var(--gold);
    box-shadow: none;
}

.hero-search-btn:hover {
    background: var(--navy);
    box-shadow: none;
}

.hero-pill {
    border-radius: 7px;
    background: rgba(255,255,255,0.68);
    border-color: #e3dbcc;
}

.bg-soft {
    background: #f6f7f8 !important;
}

.bg-white {
    background: #ffffff !important;
}

.card-white,
.listing-card,
.detail-card,
.detail-table-card,
.search-box,
.hero-search-premium,
.filter-panel {
    background: #ffffff !important;
}

main > section.bg-soft,
main > section.bg-white {
    border-color: #d8e0e5 !important;
}

.stats-luxury {
    padding: 1.5rem 0 1.75rem;
    background: #ffffff;
    border-top: 1px solid #e1e6ea;
    border-bottom: 1px solid #e1e6ea;
}

.stats-luxury-grid {
    gap: 0;
}

.stats-luxury-card {
    min-height: 92px;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 0;
    border-right: 1px solid #e1e6ea;
    border-radius: 0;
    box-shadow: none;
    color: var(--navy);
}

.stats-luxury-card:last-child {
    border-right: 0;
}

.stats-luxury-card::before,
.stats-luxury-card--featured::before {
    display: none;
}

.stats-luxury-card:hover {
    transform: none;
    background: #f8f9fa;
    box-shadow: none;
    border-color: rgba(255,255,255,0.16);
}

.stats-luxury-icon {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background: var(--gold-pale) !important;
    color: var(--gold) !important;
}

.stats-luxury-number,
.stats-luxury-card--featured .stats-luxury-number {
    color: var(--navy);
}

.stats-luxury-label,
.stats-live-indicator {
    color: var(--text-muted);
}

.stats-luxury-arrow {
    color: var(--gold-light);
}

.stats-live-indicator {
    margin-top: 0.8rem;
}

.category-block,
.listing-card,
.detail-card,
.filter-panel,
.service-card {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(19,38,59,0.06);
}

.category-block:hover,
.listing-card:hover,
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(19,38,59,0.12);
}

.category-block .aspect-\[4\/3\],
.listing-card > a {
    border-bottom: 1px solid #eee8de;
}

.page-hero-white {
    background: #f6f7f8;
    border-bottom-color: #e1e6ea;
}

.filter-panel {
    background: rgba(255,255,255,0.82);
    border-color: #dce1e5;
    box-shadow: 0 8px 24px rgba(19,38,59,0.05);
}

footer {
    background: #ffffff !important;
    border-top-color: #e1e6ea !important;
    color: var(--text);
}

footer.bg-soft {
    background: #ffffff !important;
}

footer .text-dark {
    color: var(--navy) !important;
}

footer .text-muted,
footer .text-muted\/70 {
    color: var(--text-muted) !important;
}

footer a:hover {
    color: var(--gold-light) !important;
}

footer .border-border-light {
    border-color: #e1e6ea !important;
}

@media (max-width: 1024px) {
    .stats-luxury-card:nth-child(2) {
        border-right: 0;
    }
}

/* ── Listing detail polish ── */
.listing-map-panel {
    overflow: hidden;
    border: 1px solid var(--ui-line);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(20,40,61,0.055);
}

.listing-map-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--ui-line);
}

.listing-map-pin {
    width: 26px;
    height: 26px;
    color: var(--ui-gold);
    flex: 0 0 auto;
}

.listing-map-frame {
    height: 220px;
    background: #eef2f4;
}

.listing-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.listing-map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 0.9rem 1rem 1rem;
}

.listing-map-actions a {
    min-height: 40px;
    text-align: center;
}

.listing-specs .detail-table-card {
    border-radius: 5px;
    box-shadow: 0 5px 18px rgba(20,40,61,0.055);
}

.detail-card {
    border-radius: 5px !important;
    box-shadow: 0 8px 24px rgba(20,40,61,0.07);
}

.detail-card .detail-summary {
    border-radius: 5px;
    background: #f7f2e8;
    border-color: #eadfc9;
}

.detail-card .detail-summary .rounded-2xl {
    border-radius: 4px;
    background: rgba(255,255,255,0.72);
}

.detail-card .meta-pill {
    border-radius: 4px;
    background: var(--gold-pale);
    color: var(--ui-gold);
}

.detail-card + .rounded-3xl,
.detail-card ~ form,
.detail-card ~ .rounded-2xl {
    border-radius: 5px !important;
}

@media (max-width: 520px) {
    .listing-map-frame {
        height: 190px;
    }

    .listing-map-actions {
        grid-template-columns: 1fr;
    }
}

/* ── Legal pages ── */
.legal-content {
    color: var(--ui-muted);
    font-size: 0.95rem;
    line-height: 1.85;
}

.legal-content h2 {
    margin-top: 2.25rem;
    margin-bottom: 0.65rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--ui-line);
    font-family: 'Playfair Display', 'Lora', serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--ui-navy);
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 0 0 1rem 1.25rem;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.4rem;
    padding-left: 0.25rem;
}

.legal-content a {
    color: var(--ui-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content .legal-note {
    margin-top: 2.5rem;
    padding: 1rem 1.15rem;
    border-left: 3px solid var(--ui-gold);
    background: var(--gold-pale);
    color: var(--ui-navy-soft);
    font-size: 0.86rem;
}

/* ── Authentication pages ── */
.auth-shell {
    background:
        linear-gradient(90deg, rgba(247,248,249,0.9) 0, rgba(247,248,249,0.9) 50%, #fff 50%),
        #fff;
    border-bottom: 1px solid var(--ui-line);
}

.auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(3rem, 9vw, 8rem);
}

.auth-layout-register {
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.75fr);
}

.auth-intro {
    max-width: 31rem;
    padding: 2rem 0;
}

.auth-intro h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.auth-intro h1 .text-gold {
    color: var(--ui-gold) !important;
}

.auth-detail-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 2.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ui-line);
    color: var(--ui-navy-soft);
    font-size: 0.85rem;
}

.auth-detail-list span {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.auth-detail-list strong {
    min-width: 1.6rem;
    color: var(--ui-gold);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.auth-card {
    padding: clamp(1.75rem, 4vw, 3rem);
    background: #fff;
    border: 1px solid var(--ui-line);
    border-top: 3px solid var(--ui-gold);
    box-shadow: 0 16px 40px rgba(20,40,61,0.08);
}

.auth-card-heading {
    margin-bottom: 2rem;
}

.auth-card-heading h2 {
    margin: 0;
    color: var(--ui-navy);
}

.auth-form {
    display: grid;
    gap: 1.1rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--ui-navy);
    font-size: 0.75rem;
    font-weight: 600;
}

.auth-form input {
    width: 100%;
    min-height: 46px;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--ui-line);
    border-radius: 4px;
    background: #fbfcfc;
    color: var(--ui-navy);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-form input::placeholder {
    color: #a0aab2;
}

.auth-form input:focus {
    background: #fff;
    border-color: var(--ui-gold);
    box-shadow: 0 0 0 3px rgba(183,144,76,0.12);
}

.auth-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    margin-top: 0.35rem;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 4px !important;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.auth-submit span {
    font-size: 1rem;
    font-weight: 400;
}

.auth-switch {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ui-line);
    color: var(--ui-muted);
    font-size: 0.82rem;
}

.auth-switch a {
    color: var(--ui-gold);
    font-weight: 700;
}

.auth-alert {
    margin-bottom: 1.25rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid #f0caca;
    border-left: 3px solid #c25a5a;
    background: #fff7f7;
    color: #9e3f3f;
    font-size: 0.82rem;
}

/* ── Services and contact pages ── */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.service-card-page {
    min-height: 220px;
    padding: 1.75rem;
}

.service-card-page .service-icon {
    margin-bottom: 1.4rem;
}

.service-card-page h3 {
    font-size: 1.35rem;
}

.contact-page-section {
    padding-top: 5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.75fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 8rem);
}

.contact-intro h2 {
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.contact-intro h2 .text-gold {
    color: var(--ui-gold) !important;
}

.contact-details {
    display: grid;
    gap: 1.1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ui-line);
}

.contact-detail-item {
    display: grid;
    gap: 0.15rem;
}

.contact-detail-item p:first-child {
    margin: 0;
    color: var(--ui-muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-detail-item a,
.contact-detail-item > p:last-child {
    color: var(--ui-navy);
    font-size: 1.05rem;
}

.contact-whatsapp {
    margin-top: 2rem;
    border-radius: 4px !important;
}

.contact-form {
    display: grid;
    gap: 1rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-top: 3px solid var(--ui-gold);
}

.contact-form label {
    display: block;
    color: var(--ui-navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 0.4rem;
    border-radius: 4px;
    border-color: var(--ui-line);
    background: #fbfcfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--ui-gold);
    box-shadow: 0 0 0 3px rgba(183,144,76,0.12);
    outline: none;
}

@media (max-width: 800px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-section {
        padding-top: 3rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 800px) {
    .auth-shell {
        background: #fff;
    }

    .auth-layout,
    .auth-layout-register {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 34rem;
    }

    .auth-intro {
        padding: 0;
    }

    .auth-intro h1 {
        font-size: 2.7rem;
    }

    .auth-detail-list {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-luxury-card {
        border-right: 0;
        border-bottom: 1px solid #e1e6ea;
    }

    .stats-luxury-card:last-child {
        border-bottom: 0;
    }
}

/* ── Final interface system ── */
:root {
    --ui-navy: #14283d;
    --ui-navy-soft: #294158;
    --ui-gold: #b7904c;
    --ui-paper: #ffffff;
    --ui-paper-soft: #f7f8f9;
    --ui-line: #e1e6ea;
    --ui-muted: #687582;
}

body {
    color: var(--ui-navy);
    background: var(--ui-paper) !important;
    font-size: 15px;
    line-height: 1.6;
}

main {
    background: var(--ui-paper) !important;
}

h1, h2, h3, h4,
.font-serif {
    color: var(--ui-navy);
}

.text-dark {
    color: var(--ui-navy) !important;
}

.text-muted {
    color: var(--ui-muted) !important;
}

.text-gold,
.section-label {
    color: var(--ui-gold) !important;
}

/* Header: quiet, precise and easy to scan. */
header.sticky {
    box-shadow: 0 1px 0 rgba(20,40,61,0.06) !important;
}

.header-utility {
    min-height: 38px;
    background: var(--ui-paper-soft) !important;
    color: var(--ui-muted);
}

.header-utility-icon {
    width: 28px;
    height: 28px;
    background: var(--ui-navy) !important;
    color: #fff;
    box-shadow: none !important;
}

.header-utility-icon:hover {
    background: var(--ui-gold) !important;
    transform: none;
}

.header-language-pill {
    border-radius: 4px;
    height: 26px;
    min-width: 30px;
    border-color: var(--ui-line);
    color: var(--ui-muted);
}

.header-language-pill:hover,
.header-language-pill.is-active {
    background: var(--ui-navy);
    border-color: var(--ui-navy);
    color: #fff;
}

header.sticky > div:last-child {
    background: #fff;
}

header.sticky .nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--ui-navy) !important;
}

header.sticky .nav-link::after {
    height: 2px;
    background: var(--ui-gold);
}

header.sticky .nav-link:hover,
header.sticky .nav-link.active {
    color: var(--ui-gold) !important;
}

header.sticky .inline-flex.border-border-light,
header.sticky button {
    border-radius: 5px;
    box-shadow: none;
}

/* Hero: controlled contrast instead of decorative effects. */
.hero-luxury {
    background: var(--ui-paper-soft) !important;
    border-bottom: 1px solid var(--ui-line);
}

.hero-luxury-bg {
    opacity: 0.7;
    background:
        linear-gradient(110deg, rgba(255,255,255,0.98), rgba(238,243,246,0.7)),
        linear-gradient(90deg, transparent 0 74%, rgba(183,144,76,0.12) 74% 74.2%, transparent 74.2%);
}

.hero-luxury .max-w-7xl {
    padding-top: 6rem;
    padding-bottom: 5rem;
}

.hero-luxury h1 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    letter-spacing: -0.035em;
}

.hero-luxury h1 .text-gold {
    color: var(--ui-gold) !important;
}

.gold-line {
    width: 64px;
    height: 3px;
    border-radius: 0;
    background: var(--ui-gold);
}

.hero-frame-luxury {
    border-radius: 4px;
    border: 8px solid #fff;
    box-shadow: 0 18px 40px rgba(20,40,61,0.14);
}

.hero-frame-accent {
    border-radius: 0;
    border: 1px solid rgba(183,144,76,0.6);
}

.hero-search-premium {
    border-radius: 5px;
    border-color: var(--ui-line);
    box-shadow: 0 10px 24px rgba(20,40,61,0.08);
}

.hero-search-field label,
.stats-luxury-label,
.section-label {
    letter-spacing: 0.12em;
}

.hero-search-btn {
    border-radius: 4px;
    background: var(--ui-navy);
}

.hero-search-btn:hover {
    background: var(--ui-gold);
}

.hero-pill {
    border-radius: 4px;
    padding: 0.45rem 0.8rem;
    background: #fff;
    border-color: var(--ui-line);
}

/* Stats: a restrained information rail, not four floating cards. */
.stats-luxury {
    background: #fff !important;
    padding: 0;
    border-top: 1px solid var(--ui-line);
    border-bottom: 1px solid var(--ui-line);
}

.stats-luxury-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stats-luxury-card {
    min-height: 104px;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--ui-line);
    border-radius: 0;
}

.stats-luxury-card:hover {
    background: var(--ui-paper-soft);
}

.stats-luxury-icon {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: var(--gold-pale) !important;
    color: var(--ui-gold) !important;
}

.stats-luxury-number,
.stats-luxury-card--featured .stats-luxury-number {
    color: var(--ui-navy);
}

.stats-live-indicator {
    margin: 0;
    padding: 0.65rem 0;
    border-top: 1px solid var(--ui-line);
    font-size: 0.6rem;
}

/* Cards and content sections. */
.listing-card,
.category-block,
.service-card,
.detail-card,
.card-white,
.filter-panel {
    border-radius: 5px !important;
    border-color: var(--ui-line);
    box-shadow: 0 5px 18px rgba(20,40,61,0.055);
}

.listing-card:hover,
.category-block:hover,
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(20,40,61,0.1);
}

.listing-card .card-img,
.category-block .category-img {
    filter: saturate(0.94);
}

.listing-card > a,
.category-block > div:first-child {
    border-bottom: 1px solid var(--ui-line);
}

.page-hero-white {
    background: var(--ui-paper-soft) !important;
    border-bottom: 1px solid var(--ui-line);
}

.filter-panel {
    background: #fff !important;
    padding: 1rem !important;
}

.filter-panel input,
.filter-panel select,
.search-box input,
.search-box select {
    min-height: 42px;
    border-radius: 4px;
    border-color: var(--ui-line);
    color: var(--ui-navy);
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-box input:focus,
.search-box select:focus {
    border-color: var(--ui-gold);
    box-shadow: 0 0 0 3px rgba(183,144,76,0.12);
}

.btn-gold {
    border-radius: 4px !important;
    background: var(--ui-gold);
}

.btn-gold:hover {
    background: var(--ui-navy);
}

.btn-outline {
    border-radius: 4px !important;
    border-color: var(--ui-navy);
    color: var(--ui-navy);
}

.btn-outline:hover {
    background: var(--ui-navy);
    border-color: var(--ui-navy);
    color: #fff;
}

/* Footer: clear, light and aligned with the rest of the page. */
footer,
footer.bg-soft {
    background: #fff !important;
    border-top: 3px solid var(--ui-navy) !important;
}

footer h4,
footer .text-dark {
    color: var(--ui-navy) !important;
}

footer .text-muted,
footer .text-muted\/70 {
    color: var(--ui-muted) !important;
}

footer .social-icon {
    border-radius: 4px;
    color: var(--ui-navy);
    border-color: var(--ui-line);
}

footer .social-icon:hover {
    background: var(--gold-pale);
    border-color: var(--ui-gold);
}

@media (max-width: 768px) {
    .hero-luxury .max-w-7xl {
        padding-top: 3.5rem;
        padding-bottom: 3rem;
    }

    .hero-luxury h1 {
        font-size: 3rem;
    }

    .stats-luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-luxury-card:nth-child(2) {
        border-right: 0;
    }
}
