﻿:root {
    --color-primary: #000000;
    --color-secondary: #545150;
    --color-tertiary: #878584;
    --color-white: #ffffff;
    --color-light: #f8f8f8;
    --color-surface: #111111;
    --color-surface-soft: #1a1a1a;
    --border-soft: rgba(255, 255, 255, 0.16);
    --border-dark: rgba(0, 0, 0, 0.14);
    --shadow-soft: 0 30px 70px rgba(0, 0, 0, 0.18);
    --color-gold: #d4af37;
    --color-gold-soft: #f3d27a;
    --color-gold-deep: #9d7721;
    --gold-gradient: linear-gradient(125deg, #9d7721 0%, #d4af37 45%, #f3d27a 100%);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --transition: all 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: #000000;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body.site-body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1.03rem;
    font-weight: 500;
    color: var(--color-secondary);
    background: #000000;
    line-height: 1.65;
    overflow-x: clip;
}

body.is-loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

.section-full {
    min-height: 100vh;
}

.section-padding {
    padding: 110px 0;
}

.site-main {
    opacity: 0;
    transition: opacity 0.9s ease;
    overflow-x: clip;
}

.site-main.page-ready {
    opacity: 1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--color-gold-deep);
}

.section-title-lg {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 4.1rem);
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: 0;
}

.section-lead {
    max-width: 640px;
    color: #6d6867;
    font-size: 1.14rem;
}

.text-light-soft {
    color: rgba(255, 255, 255, 0.78);
}

.btn-luxury,
.btn-luxury-outline {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 28px;
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-luxury {
    color: var(--color-white);
    background: linear-gradient(135deg, #0f0f0f 0%, #2e2510 45%, #a8822c 100%);
    border-color: rgba(243, 210, 122, 0.55);
    box-shadow: 0 14px 30px rgba(157, 119, 33, 0.3);
}

.btn-luxury:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.btn-luxury-outline {
    border-color: rgba(243, 210, 122, 0.6);
    color: var(--color-white);
    background: linear-gradient(145deg, rgba(157, 119, 33, 0.18), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(6px);
}

.btn-luxury-outline:hover {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
}

.btn-luxury i,
.btn-luxury-outline i {
    margin-right: 8px;
    font-size: 0.95em;
}

.lux-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, #1a1919 0%, #090909 60%, #000000 100%);
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.preloader-core {
    position: relative;
    text-align: center;
    z-index: 4;
}

.preloader-logo {
    width: min(280px, 62vw);
    margin-inline: auto;
    filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.15));
    animation: pulseLogo 1.6s ease-in-out infinite;
}

.preloader-line {
    width: 140px;
    height: 1px;
    display: inline-block;
    margin-top: 1.1rem;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    animation: lineTravel 1.2s ease-in-out infinite;
}

.preloader-curtain {
    position: absolute;
    top: 0;
    width: 50.2%;
    height: 100%;
    background: linear-gradient(150deg, #010101 0%, #23201f 60%, #0a0a0a 100%);
    z-index: 3;
    transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-curtain-left {
    left: 0;
}

.preloader-curtain-right {
    right: 0;
}

.lux-preloader.is-done .preloader-curtain-left {
    transform: translateX(-105%);
}

.lux-preloader.is-done .preloader-curtain-right {
    transform: translateX(105%);
}

.lux-preloader.is-done {
    opacity: 0;
    pointer-events: none;
}

@keyframes pulseLogo {
    0%,
    100% {
        opacity: 0.9;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes lineTravel {
    0%,
    100% {
        transform: scaleX(0.7);
        opacity: 0.35;
    }

    50% {
        transform: scaleX(1.15);
        opacity: 0.95;
    }
}

.hero-section {
    padding: 90px 0 80px;
    isolation: isolate;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(0, 0, 0, 0.72), rgba(22, 22, 22, 0.42));
    z-index: -1;
}

.hero-unmute-btn {
    position: absolute;
    left: clamp(10px, 2vw, 24px);
    top: 50%;
    right: auto;
    bottom: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(243, 210, 122, 0.52);
    border-radius: 999px;
    padding: 11px 18px;
    background:
        linear-gradient(135deg, rgba(157, 119, 33, 0.38), rgba(11, 11, 11, 0.88)),
        var(--gold-gradient);
    color: var(--color-white);
    font-size: 0.76rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
    backdrop-filter: blur(10px) saturate(130%);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    z-index: 4;
    opacity: 0;
    transform: translate3d(-8px, -50%, 0) scale(0.96);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    overflow: hidden;
}

.hero-unmute-btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    opacity: 0.45;
    pointer-events: none;
}

.hero-unmute-btn i {
    font-size: 0.92rem;
    color: var(--color-gold-soft);
    filter: drop-shadow(0 0 8px rgba(243, 210, 122, 0.5));
}

.hero-unmute-btn.is-visible {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scale(1);
    pointer-events: auto;
}

.hero-unmute-btn:hover {
    box-shadow:
        0 20px 36px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(243, 210, 122, 0.38) inset;
    filter: brightness(1.07);
}

.hero-unmute-btn:focus-visible {
    outline: 2px solid rgba(243, 210, 122, 0.92);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .hero-unmute-btn {
        left: 10px;
        top: 50%;
        padding: 10px 14px;
        font-size: 0.7rem;
        letter-spacing: 0.09em;
    }
}

.hero-content-wrap {
    margin-top: 0;
}

.hero-content {
    max-width: 850px;
}

.hero-logo {
    width: min(320px, 70vw);
    margin-inline: auto;
}

.hero-kicker {
    color: rgba(243, 210, 122, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.86rem;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    color: var(--color-white);
    font-size: clamp(2.4rem, 5.5vw, 5.15rem);
    letter-spacing: 0.01em;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.83);
    font-size: clamp(1.1rem, 1.8vw, 1.36rem);
    max-width: 700px;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    z-index: 2;
}

.scroll-indicator i {
    animation: bob 1.4s ease-in-out infinite;
}

.scroll-indicator:hover {
    color: var(--color-white);
}

@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }

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

.lux-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 1035;
    width: min(80%, 1080px);
    transition: transform 0.35s ease, width 0.35s ease, bottom 0.35s ease;
}

.lux-bottom-nav.is-compact {
    bottom: 10px;
    transform: translateX(-50%) scale(0.985);
}

.bottom-nav-shell {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(45, 35, 14, 0.92));
    border: 1px solid rgba(243, 210, 122, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    padding: 8px 12px;
}

.mobile-nav-toggle {
    display: none;
}

.bottom-nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.bottom-nav-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    padding: 12px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border: 1px solid transparent;
    transition: var(--transition);
}

.bottom-nav-link:hover,
.bottom-nav-link.is-active {
    color: var(--color-white);
    background: linear-gradient(118deg, rgba(212, 175, 55, 0.4), rgba(243, 210, 122, 0.2));
    border-color: rgba(243, 210, 122, 0.5);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.26);
}

.welcome-section {
    background: var(--color-white);
}

.stats-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.stats-column {
    display: grid;
    gap: 20px;
}

.stats-column-focus {
    align-content: center;
}

.stat-card {
    background: linear-gradient(140deg, #ffffff, #fbfbfb);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.12);
}

.stat-value {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
    margin-bottom: 10px;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.95rem;
    letter-spacing: 0.015em;
    color: #5f5b5a;
}

.featured-estate-section {
    background: linear-gradient(140deg, #0a0a0a 0%, #181616 52%, #090909 100%);
    color: var(--color-white);
}

.spiral-pattern {
    position: absolute;
    width: 160px;
    opacity: 0.18;
    pointer-events: none;
}

.spiral-left {
    top: 24px;
    left: 24px;
}

.spiral-right {
    top: 24px;
    right: 24px;
    transform: scaleX(-1);
}

.estate-slider-shell {
    position: relative;
    padding-inline: 12px;
}

.estate-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 4px 14px;
}

.estate-slider::-webkit-scrollbar {
    display: none;
}

.estate-card {
    flex: 0 0 min(76%, 460px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(18, 18, 18, 0.95));
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.estate-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.estate-media img,
.property-preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-preview-video {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition);
}

.estate-media-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.45));
    opacity: 0;
    transition: var(--transition);
}

.estate-media-overlay i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.35);
}

.estate-card:hover .property-preview-video,
.estate-card:hover .estate-media-overlay {
    opacity: 1;
}

.estate-media-link {
    display: block;
    color: inherit;
}

.estate-card-body {
    padding: 24px 22px;
}

.estate-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.38rem;
    color: var(--color-white);
    margin-bottom: 6px;
}

.estate-card-title a {
    color: inherit;
}

.estate-card-location {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.estate-card-copy {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.82);
}

.estate-preview-btn {
    width: 100%;
    justify-content: center;
}

.estate-slider-btn {
    position: absolute;
    top: calc(50% - 26px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    z-index: 4;
    transition: var(--transition);
}

.estate-slider-prev {
    left: -10px;
}

.estate-slider-next {
    right: -10px;
}

.estate-slider-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.feature-editorial-card {
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
}

.feature-editorial-copy {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.2rem;
}

.feature-subtitle {
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.why-list {
    display: grid;
    gap: 13px;
}

.why-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.why-number {
    min-width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--color-white);
}

.why-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #fbfbfb;
}

.why-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.feature-side-stack {
    display: grid;
    gap: 0;
    grid-template-rows: auto minmax(210px, 1fr);
    position: relative;
}

.home-cta-card {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.36);
    background: linear-gradient(150deg, #f6f3eb 0%, #ddcfad 100%);
    color: #171717;
    padding: 20px 22px 52px;
    min-height: 160px;
    display: block;
    transition: var(--transition);
}

.home-cta-card:hover {
    transform: translateY(-4px);
}

.home-cta-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.55rem;
    margin-bottom: 8px;
    color: #4b370f;
}

.home-cta-card > div {
    max-width: calc(100% - 96px);
}

.home-cta-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

.cta-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--gold-gradient);
    color: #ffffff;
    flex-shrink: 0;
    transition: var(--transition);
}

.cta-arrow:hover {
    transform: rotate(10deg) translateY(-2px);
}

.dummy-property-card {
    position: relative;
    z-index: 3;
    width: min(72%, 340px);
    margin-top: -52px;
    margin-left: auto;
    border-radius: 24px;
    overflow: hidden;
    min-height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.25);
}

.dummy-property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dummy-property-overlay {
    position: absolute;
    inset: auto 14px 14px 14px;
    border-radius: 14px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.58);
    color: var(--color-white);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-section {
    background: linear-gradient(135deg, #f3f3f3 0%, #111111 0%, #181717 45%, #0a0a0a 100%);
    color: var(--color-white);
}

.services-section .section-title-lg,
.services-section .section-tag,
.services-section .section-lead {
    color: var(--color-white);
}

.services-section .section-lead {
    color: rgba(255, 255, 255, 0.78);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(6, 6, 6, 0.88));
    padding: 28px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--color-white);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(135, 133, 132, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.service-card h3 {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.93rem;
}

.process-section {
    background: #ffffff;
}

.process-track {
    position: relative;
    display: grid;
    gap: 24px;
}

.process-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.16));
    transform: translateX(-50%);
}

.process-card {
    width: calc(50% - 28px);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    background: #fff;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
}

.process-card:nth-child(odd) {
    margin-right: auto;
}

.process-card:nth-child(even) {
    margin-left: auto;
}

.process-card:hover {
    transform: translateY(-4px);
}

.process-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    font-weight: 700;
    color: #111;
    font-family: 'Sora', sans-serif;
}

.process-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #131313;
}

.process-card p {
    color: #5f5b5a;
    font-size: 0.95rem;
}

.stories-section {
    background: var(--color-light);
}

.story-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.07);
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.story-video-wrap {
    position: relative;
    height: 260px;
    background: #101010;
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.42);
    transition: var(--transition);
}

.story-card:hover .story-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
}

.story-body {
    padding: 22px;
}

.story-body h3 {
    font-family: 'Sora', sans-serif;
    margin-bottom: 8px;
    font-size: 1.35rem;
    color: #121212;
}

.page-logo-header {
    position: relative;
    z-index: 12;
    background: #060606;
    border-bottom: 1px solid rgba(243, 210, 122, 0.24);
}

.page-logo-header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-logo-link img {
    width: min(250px, 62vw);
}

.page-logo-header + .site-main .page-hero {
    padding-top: 112px;
}

.page-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 88px;
    color: var(--color-white);
    min-height: 58vh;
    display: flex;
    align-items: center;
}

.page-hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(0, 0, 0, 0.84), rgba(34, 25, 8, 0.63));
}

.page-breadcrumb {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: rgba(243, 210, 122, 0.95);
    margin-bottom: 10px;
}

.page-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.page-hero-copy {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.page-section-light {
    background: #ffffff;
}

.page-section-dark {
    background: linear-gradient(140deg, #090909 0%, #17130b 52%, #090909 100%);
    color: var(--color-white);
}

.page-image-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.about-corporate-card {
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 20px;
    background: linear-gradient(150deg, #fffdf7 0%, #f4ebd1 100%);
    padding: 24px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.about-corporate-card .section-lead {
    max-width: 100%;
    color: #3f3b35;
    font-size: 1.1rem;
}

.page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.page-feature-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(8, 8, 8, 0.95));
}

.page-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: #121212;
    background: var(--gold-gradient);
}

.page-feature-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.page-feature-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
}

.page-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.page-stat-card {
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 20px;
    background: #ffffff;
    padding: 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.page-stat-card h3 {
    font-family: 'Sora', sans-serif;
    color: #131313;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 8px;
}

.page-stat-card p {
    font-size: 0.96rem;
    color: #5f5b5a;
}

.page-blog-card,
.page-property-card,
.page-contact-card,
.page-contact-form {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.page-blog-card,
.page-property-card {
    overflow: hidden;
}

.page-blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.page-property-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.page-blog-media,
.page-property-media {
    position: relative;
    height: 220px;
}

.page-blog-media {
    display: block;
    flex-shrink: 0;
}

.page-property-media {
    display: block;
    flex-shrink: 0;
}

.page-blog-media img,
.page-property-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-media-shell {
    overflow: hidden;
}

.property-hover-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: var(--transition);
}

.property-media-shell:hover .property-hover-video {
    opacity: 1;
}

.page-blog-body,
.page-property-body {
    padding: 22px;
}

.page-blog-body {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.page-property-body {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.page-blog-meta {
    font-size: 0.8rem;
    color: #7e7567;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.page-blog-body h3,
.page-property-body h3,
.page-contact-card h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #181818;
}

.page-blog-body h3 a {
    color: inherit;
}

.line-clamp-1,
.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.page-property-body h3 a {
    color: inherit;
}

.page-blog-body p,
.page-property-body p {
    color: #5f5b5a;
}

.page-property-status {
    position: absolute;
    top: 14px;
    right: 14px;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111111;
    font-weight: 700;
    background: var(--gold-gradient);
}

.page-property-price {
    color: #1a1a1a;
    font-size: 1.02rem;
}

.estate-card-price {
    color: rgba(243, 210, 122, 0.95);
    font-weight: 700;
    font-size: 0.95rem;
}

.property-filter-card {
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px;
    background: linear-gradient(150deg, #fffdf8 0%, #f8f1df 100%);
    padding: 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.property-filter-card .form-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5e4a1d;
}

.property-filter-card .form-select {
    border-radius: 12px;
    border: 1px solid rgba(157, 119, 33, 0.3);
    min-height: 44px;
}

.filter-loader-line {
    display: inline-block;
    width: min(220px, 60%);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(157, 119, 33, 0.18), rgba(212, 175, 55, 1), rgba(157, 119, 33, 0.18));
    animation: filterPulse 1s ease-in-out infinite;
}

@keyframes filterPulse {
    0%,
    100% {
        opacity: 0.35;
        transform: scaleX(0.72);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.theme-pagination-wrap {
    display: block;
}

.theme-pagination {
    row-gap: 8px;
}

.theme-page-pill {
    min-width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #141414, #2c220f);
    color: #ffffff;
    font-weight: 700;
    padding: 0 14px;
    transition: var(--transition);
}

.theme-page-pill:hover,
.theme-page-pill.is-active {
    color: #101010;
    background: var(--gold-gradient);
    border-color: rgba(157, 119, 33, 0.7);
}

.blog-detail-card {
    background: #ffffff;
}

.blog-detail-image {
    width: 100%;
    border-radius: 14px;
    max-height: 420px;
    object-fit: cover;
}

.blog-detail-content {
    color: #4d4740;
    font-size: 1.02rem;
}

.rich-text-content {
    color: inherit;
}

.rich-text-content p {
    margin-bottom: 0.9rem;
}

.rich-text-content ul,
.rich-text-content ol {
    margin-bottom: 0.9rem;
    padding-left: 1.2rem;
}

.rich-text-content a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rich-text-content > :last-child {
    margin-bottom: 0;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    font-family: 'Sora', sans-serif;
    color: #1a1a1a;
}

.blog-tag-pill {
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: linear-gradient(150deg, #fff7dd, #f1dfa7);
    color: #3d2c06;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    padding: 8px 12px;
}

.blog-share-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.blog-share-btn {
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: linear-gradient(140deg, #1c1c1c 0%, #2c230f 100%);
    color: #fff;
    padding: 10px 12px;
    font-size: 0.86rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.blog-share-btn:hover {
    color: #111;
    background: var(--gold-gradient);
}

.related-blog-link {
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    color: #1a1a1a;
}

.related-blog-link:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.page-contact-card {
    padding: 24px;
    background: linear-gradient(155deg, #f8f6f1, #ffffff);
}

.page-contact-card ul li {
    color: #403b35;
}

.page-contact-card i {
    width: 24px;
    color: #9d7721;
}

.page-contact-form {
    padding: 24px;
}

.page-contact-form .form-control {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 12px 14px;
}

.page-contact-form .form-control:focus {
    border-color: rgba(157, 119, 33, 0.68);
    box-shadow: 0 0 0 0.18rem rgba(212, 175, 55, 0.22);
}

.detail-hero-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
    cursor: zoom-in;
}

.detail-hero-media img {
    width: 100%;
    height: min(460px, 58vw);
    object-fit: cover;
}

.detail-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: var(--transition);
}

.detail-hero-media:hover .detail-hero-video {
    opacity: 1;
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.detail-gallery-thumb {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    cursor: zoom-in;
}

.detail-gallery-thumb img {
    width: 100%;
    height: 92px;
    object-fit: cover;
}

.detail-youtube-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.detail-youtube-wrap iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 20px;
}

.gallery-overlay.is-open {
    display: flex;
}

.gallery-overlay img {
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    border-radius: 14px;
    transition: transform 0.2s ease;
}

.gallery-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.7rem;
    line-height: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
}

.gallery-prev {
    left: 18px;
}

.gallery-next {
    right: 18px;
}

.team-founder-shell {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    border: 1px solid rgba(243, 210, 122, 0.22);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(8, 8, 8, 0.94));
    overflow: hidden;
}

.team-founder-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.team-founder-body {
    padding: 24px;
}

.team-founder-body h3,
.team-member-body h4,
.team-subtitle {
    font-family: 'Sora', sans-serif;
    color: #ffffff;
}

.team-founder-body h3 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin-bottom: 6px;
}

.team-founder-body h4 {
    color: rgba(243, 210, 122, 0.95);
    font-size: 1rem;
    margin-bottom: 12px;
}

.team-founder-body p,
.team-member-body p {
    color: rgba(255, 255, 255, 0.8);
}

.team-founder-body .rich-text-content,
.team-member-body .rich-text-content {
    color: rgba(255, 255, 255, 0.8);
}

.team-role {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(243, 210, 122, 0.9);
}

.team-subtitle {
    font-size: 1.5rem;
}

.team-members-stack {
    display: grid;
    gap: 20px;
}

.team-member-shell .team-founder-media img {
    min-height: 280px;
}

.site-footer {
    background: #0a0a0a;
    color: #dddddd;
    padding: 88px 0 36px;
    border-top: 1px solid rgba(243, 210, 122, 0.24);
}

.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #25d366 0%, #0e8f43 100%);
    color: #ffffff;
    font-size: 1.9rem;
    box-shadow: 0 14px 28px rgba(13, 96, 47, 0.42);
    z-index: 1040;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fab:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 34px rgba(13, 96, 47, 0.5);
}

.footer-title {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-link,
.footer-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand img {
    width: min(220px, 44vw);
    opacity: 0.92;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}
