:root {
    --bg-navy: #0c1b2a;
    --bg-navy-soft: #13263a;
    --bg-deep: #091421;
    --gold: #d4af37;
    --gold-soft: #f0d98b;
    --text-light: #f6f7fb;
    --text-dark: #1f2530;
    --muted: #67748a;
    --surface: #ffffff;
    --radius: 18px;
    --shadow: 0 20px 45px rgba(6, 13, 20, 0.22);
    --container: 1140px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--text-dark);
    background:
        radial-gradient(circle at 12% 8%, rgba(212, 175, 55, 0.12), transparent 34%),
        radial-gradient(circle at 92% 18%, rgba(28, 43, 64, 0.18), transparent 28%),
        linear-gradient(140deg, #eef2f7 0%, #e8edf4 50%, #f7f9fc 100%);
    line-height: 1.65;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), 92%);
    margin: 0 auto;
}

.site-header {
    position: relative;
    color: var(--text-light);
    padding-top: 14px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px;
    position: sticky;
    top: 12px;
    z-index: 4;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    background: rgba(7, 20, 32, 0.74);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.navbar.scrolled {
    box-shadow: 0 16px 30px rgba(2, 8, 14, 0.35);
    border-color: rgba(240, 217, 139, 0.34);
    background: rgba(7, 20, 32, 0.86);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 132px;
    height: 84px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    padding: 1px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-text {
    font-family: "Playfair Display", serif;
    font-size: 1.08rem;
    letter-spacing: 0.03em;
    font-weight: 800;
}

.brand-subtext {
    font-size: 0.73rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240, 217, 139, 0.85);
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.menu a {
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.28s ease;
}

.menu a:hover::after,
.menu a:focus-visible::after {
    width: 100%;
}

.menu a:hover,
.menu a:focus-visible {
    background: rgba(240, 217, 139, 0.12);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 4px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
}

.hero {
    min-height: 82vh;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    margin-top: 14px;
    background: url("https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.25), transparent 35%),
        linear-gradient(115deg, rgba(12, 27, 42, 0.94) 25%, rgba(12, 27, 42, 0.72) 65%, rgba(12, 27, 42, 0.45) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent 96%, rgba(255, 255, 255, 0.08) 97%),
        linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.08) 97%);
    background-size: 44px 44px;
    opacity: 0.14;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 72px 0;
    animation: rise 0.9s ease both;
}

.hero-kicker {
    display: inline-block;
    margin: 0 0 16px;
    border: 1px solid rgba(240, 217, 139, 0.5);
    background: rgba(12, 27, 42, 0.42);
    border-radius: 999px;
    padding: 6px 14px;
    color: var(--gold-soft);
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.9rem, 5vw, 3.65rem);
    line-height: 1.2;
}

.hero p {
    margin: 16px 0 0;
    max-width: 62ch;
    font-size: clamp(1rem, 2.4vw, 1.16rem);
    color: rgba(246, 247, 251, 0.9);
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #bf9223 100%);
    color: #1e1b13;
    box-shadow: 0 14px 24px rgba(191, 146, 35, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 20px 28px rgba(191, 146, 35, 0.38);
}

.btn-outline {
    border: 1px solid rgba(246, 247, 251, 0.56);
    color: var(--text-light);
    background: rgba(12, 27, 42, 0.38);
}

.section {
    padding: 84px 0;
}

.section-tag {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a7445;
    font-weight: 800;
}

h2 {
    margin: 10px 0 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3.2vw, 2.45rem);
    color: #0f1f32;
}

.grid-two {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 26px;
}

.about-card {
    background: linear-gradient(160deg, #0f2236 0%, #162f4a 100%);
    border-radius: var(--radius);
    color: var(--text-light);
    padding: 24px;
    box-shadow: var(--shadow);
}

.about-card h3 {
    margin-top: 0;
    font-family: "Playfair Display", serif;
    color: var(--gold-soft);
}

.about-card ul {
    margin: 0;
    padding-left: 18px;
}

.section-intro {
    margin-top: -4px;
    color: var(--muted);
}

.cards {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.property-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow);
}

.property-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgba(12, 27, 42, 0.93) 100%);
}

.property-card img {
    height: 100%;
    object-fit: cover;
    filter: blur(4.5px) saturate(78%) brightness(0.72);
    transform: scale(1.12);
    transition: transform 0.45s ease, filter 0.35s ease;
}

.property-card:hover img {
    transform: scale(1.16);
    filter: blur(4.5px) saturate(78%) brightness(0.72);
}

.card-overlay {
    position: absolute;
    inset: auto 14px 14px;
    z-index: 1;
    color: #ffffff;
    backdrop-filter: blur(12px);
    background: rgba(9, 18, 30, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
}

.btn-small {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(171, 126, 22, 0.96));
    color: #14110a;
    font-size: 0.83rem;
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
    line-height: 1.4;
    padding: 10px 12px;
}

.contact {
    background: linear-gradient(160deg, #f8fafc 0%, #edf2f8 100%);
}

address {
    font-style: normal;
    margin: 0 0 20px;
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 330px;
    box-shadow: var(--shadow);
    border: 1px solid #dbe3ee;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 330px;
}

.btn-whatsapp {
    background: #1c9a58;
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(28, 154, 88, 0.28);
}

.site-footer {
    background: #0b1826;
    color: #d9e1ed;
    text-align: center;
    padding: 24px 0;
    margin-top: 24px;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .grid-two {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .navbar {
        top: 8px;
        padding: 10px 12px;
    }

    .menu-toggle {
        display: inline-block;
    }

    .menu {
        position: absolute;
        right: 0;
        top: calc(100% + 8px);
        width: min(280px, 92vw);
        border-radius: 14px;
        background: rgba(11, 24, 38, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        padding: 12px;
        display: grid;
        gap: 6px;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .menu li a {
        display: block;
        padding: 10px;
        border-radius: 8px;
    }

    .menu li a:hover,
    .menu li a:focus-visible {
        background: rgba(240, 217, 139, 0.12);
    }

    .menu-open .menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .hero {
        min-height: 74vh;
        border-radius: 20px;
    }

    .brand-logo {
        width: 108px;
        height: 68px;
    }

    .brand-subtext {
        display: none;
    }
}

@media (max-width: 560px) {
    .brand-logo {
        width: 96px;
        height: 60px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}