  :root {
    --bg: #0b0b0a;
    --cream: #f2eee6;
    --muted: #aaa69d;
    --gold: #c7a76a;
    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--cream);
    font-family: var(--sans);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

::selection {
    background: var(--gold);
    color: #111;
}


/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;

    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        transparent
    );

    transition: 0.4s ease;
}

.navbar.scrolled {
    background: rgba(11, 11, 10, 0.92);
    backdrop-filter: blur(18px);
}

.logo {
    font-family: var(--serif);
    font-size: 27px;
    letter-spacing: 4px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 38px;
}

.nav-links a {
    position: relative;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    color: rgba(242, 238, 230, 0.78);

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-button {
    border: 1px solid rgba(242, 238, 230, 0.5);

    padding: 12px 20px;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.3px;

    transition: 0.3s ease;
}

.nav-button:hover {
    background: var(--cream);
    color: var(--bg);
}

.menu-button {
    display: none;

    border: none;
    background: transparent;

    color: white;
    font-size: 25px;
}
/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 8vw 100px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 4, 0.92) 0%,
            rgba(5, 5, 4, 0.60) 45%,
            rgba(5, 5, 4, 0.15) 100%
        ),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=90")
        center / cover;
}


/* Golden glow */

.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(199, 167, 106, 0.14),
            transparent 35%
        );

    pointer-events: none;
}


/* Hero content */

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}


/* Small heading */

.eyebrow {
    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 3px;

    color: var(--gold);

    margin-bottom: 25px;
}


/* Main heading */

.hero h1 {
    font-family: var(--serif);

    font-size: clamp(58px, 8vw, 118px);

    line-height: 0.92;

    font-weight: 400;

    letter-spacing: -4px;

    max-width: 900px;
}


/* Highlighted word */

.hero h1 span {
    display: block;

    font-style: italic;

    color: #d4c9b4;
}


/* Description */

.hero-description {
    max-width: 420px;

    margin-top: 38px;

    color: rgba(242, 238, 230, 0.68);

    font-size: 15px;

    line-height: 1.8;
}


/* Buttons */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 42px;
}


.primary-button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 16px 24px;

    background: var(--cream);

    color: #111;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: 0.3s ease;
}


.primary-button:hover {
    transform: translateY(-4px);

    background: var(--gold);
}


.text-button {
    color: var(--cream);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    border-bottom: 1px solid rgba(242, 238, 230, 0.4);

    padding-bottom: 5px;
}


/* Featured property */

.hero-property {
    position: absolute;

    right: 8vw;

    bottom: 100px;

    z-index: 3;

    width: 190px;

    border-left: 1px solid var(--gold);

    padding-left: 20px;
}


.hero-property p {
    font-size: 8px;

    letter-spacing: 2px;

    color: var(--gold);

    margin-bottom: 12px;
}


.hero-property h3 {
    font-family: var(--serif);

    font-size: 23px;

    font-weight: 400;

    margin-bottom: 4px;
}


.hero-property span {
    color: var(--muted);

    font-size: 11px;
}


.hero-property strong {
    display: block;

    margin-top: 15px;

    font-size: 14px;

    font-weight: 400;
}


/* Scroll indicator */

.scroll-indicator {
    position: absolute;

    left: 8vw;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: rgba(242, 238, 230, 0.5);
}


.scroll-indicator span {
    width: 35px;

    height: 1px;

    background: var(--gold);
}
/* =========================
   INTRO SECTION
========================= */

.intro {
    padding: 160px 8vw;

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 80px;

    background: #121210;
}

.section-label {
    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 3px;

    color: var(--gold);

    margin-bottom: 25px;
}

.intro-content {
    max-width: 850px;
}

.intro h2 {
    font-family: var(--serif);

    font-size: clamp(45px, 6vw, 82px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}

.intro h2 em {
    color: var(--gold);

    font-style: italic;
}

.intro-content > p {
    max-width: 480px;

    margin-top: 45px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 15px;
}


/* =========================
   PROPERTIES SECTION
========================= */

.properties {
    padding: 160px 8vw;

    background: var(--bg);
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 70px;
}

.section-heading h2 {
    font-family: var(--serif);

    font-size: clamp(45px, 6vw, 82px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

    max-width: 650px;
}

.section-heading h2 em {
    color: var(--gold);

    font-style: italic;
}

.view-all {
    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    border-bottom: 1px solid rgba(242,238,230,.3);

    padding-bottom: 8px;
}


/* Property grid */

.property-grid {
    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 25px;
}


/* Property card */

.property-card {
    overflow: hidden;
}


/* Property image */

.property-image {
    position: relative;

    height: 540px;

    background-size: cover;

    background-position: center;

    overflow: hidden;

    transition: transform .6s ease;
}


/* Different property sizes */

.property-card:nth-child(2) .property-image {
    height: 430px;
}

.property-card:nth-child(3) {
    grid-column: 1 / -1;

    max-width: 70%;

    margin: 0 auto;
}

.property-card:nth-child(3) .property-image {
    height: 500px;
}


/* Property images */

.image-one {
    background-image:
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=90");
}

.image-two {
    background-image:
        url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1400&q=90");
}

.image-three {
    background-image:
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=90");
}


/* Dark image overlay */

.property-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.55),
            transparent 50%
        );

    pointer-events: none;
}


/* Zoom effect */

.property-card:hover .property-image {
    transform: scale(1.025);
}


/* Property number */

.property-number {
    position: absolute;

    top: 20px;

    left: 20px;

    z-index: 2;

    font-size: 11px;

    letter-spacing: 2px;
}


/* Hover button */

.property-hover {
    position: absolute;

    right: 20px;

    bottom: 20px;

    z-index: 2;

    padding: 12px 16px;

    background: rgba(11,11,10,.75);

    backdrop-filter: blur(10px);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    opacity: 0;

    transform: translateY(10px);

    transition: .4s ease;
}

.property-card:hover .property-hover {
    opacity: 1;

    transform: translateY(0);
}


/* Property information */

.property-info {
    display: flex;

    justify-content: space-between;

    padding: 20px 0 50px;

    border-bottom: 1px solid rgba(242,238,230,.16);
}

.property-info h3 {
    font-family: var(--serif);

    font-size: 25px;

    font-weight: 400;
}

.property-info p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 5px;
}

.property-price {
    font-size: 13px;

    color: var(--gold);
}
/* PROPERTY LAYOUT FIX */

.property-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
}

.property-card {
    width: 100%;
    min-width: 0;
}

.property-image {
    width: 100%;
    height: 540px;
    display: block;
    background-size: cover;
    background-position: center;
}

.property-card:nth-child(2) .property-image {
    height: 540px;
}

.property-card:nth-child(3) {
    grid-column: 1 / -1;
    width: 70%;
    max-width: none;
    margin: 0 auto;
}

.property-card:nth-child(3) .property-image {
    width: 100%;
    height: 540px;
}
/* =========================
   3D EXPERIENCE
========================= */

.three-d-section {
    min-height: 85vh;

    padding: 140px 8vw;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

    background: #090909;

    overflow: hidden;
}

.three-d-content {
    max-width: 600px;
}

.three-d-content h2 {
    font-family: var(--serif);

    font-size: clamp(45px, 6vw, 82px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}

.three-d-content h2 em {
    color: var(--gold);

    font-style: italic;
}

.three-d-content > p:not(.section-label) {
    max-width: 420px;

    margin: 35px 0;

    color: var(--muted);

    line-height: 1.8;

    font-size: 15px;
}


/* Button */

.outline-button {
    padding: 15px 23px;

    border: 1px solid var(--gold);

    background: transparent;

    color: var(--cream);

    text-transform: uppercase;

    letter-spacing: 1.5px;

    font-size: 10px;

    transition: .3s ease;
}

.outline-button:hover {
    background: var(--gold);

    color: #111;
}


/* 3D object area */

.orb-container {
    height: 500px;

    display: grid;

    place-items: center;

    perspective: 1000px;
}


/* 3D orb */

.orb {
    position: relative;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #d6c8aa,
            #725e3e 35%,
            #191712 70%,
            #050505 100%
        );

    box-shadow:
        0 0 100px rgba(199,167,106,.16),
        inset -35px -25px 60px rgba(0,0,0,.7);

    animation: float 6s ease-in-out infinite;

    transform-style: preserve-3d;
}


/* Outer rings */

.orb::before {
    content: "";

    position: absolute;

    inset: -35px;

    border: 1px solid rgba(199,167,106,.35);

    border-radius: 50%;

    transform:
        rotateX(70deg)
        rotateZ(-15deg);
}


.orb::after {
    content: "";

    position: absolute;

    inset: -70px;

    border: 1px solid rgba(199,167,106,.13);

    border-radius: 50%;

    transform:
        rotateX(70deg)
        rotateZ(25deg);
}


/* Inner rings */

.orb-ring {
    position: absolute;

    inset: -20px;

    border: 1px solid rgba(242,238,230,.18);

    border-radius: 50%;

    transform: rotateY(70deg);
}


.ring-two {
    inset: -50px;

    transform:
        rotateX(65deg)
        rotateY(20deg);
}


/* Floating animation */

@keyframes float {

    0%, 100% {
        transform:
            translateY(0)
            rotateY(0deg);
    }

    50% {
        transform:
            translateY(-18px)
            rotateY(12deg);
    }
}
/* =========================
   GLOBAL LOCATIONS
========================= */

.locations {
    padding: 160px 8vw;
    background: #121210;
}

.locations > h2 {
    max-width: 800px;

    margin-bottom: 90px;

    font-family: var(--serif);

    font-size: clamp(45px, 6vw, 82px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}

.locations > h2 em {
    color: var(--gold);

    font-style: italic;
}


/* Location list */

.location-list {
    border-top: 1px solid rgba(242,238,230,.16);
}


/* Individual location */

.location {
    display: grid;

    grid-template-columns:
        70px
        1fr
        1fr
        40px;

    align-items: center;

    padding: 30px 0;

    border-bottom: 1px solid rgba(242,238,230,.16);

    transition: .35s ease;
}


/* Hover */

.location:hover {
    padding-left: 20px;

    background: rgba(199,167,106,.04);
}


/* Number */

.location > span:first-child {
    color: var(--gold);

    font-size: 10px;
}


/* City */

.location h3 {
    font-family: var(--serif);

    font-size: 32px;

    font-weight: 400;
}


/* Country */

.location p {
    color: var(--muted);

    font-size: 12px;
}


/* Arrow */

.location > span:last-child {
    font-size: 18px;

    transition: .3s ease;
}

.location:hover > span:last-child {
    color: var(--gold);

    transform: translateX(5px);
}
/* =========================
   ABOUT SECTION
========================= */

.about {
    padding: 160px 8vw;

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 80px;

    background: #0b0b0a;
}


/* Large number */

.about-number {
    font-family: var(--serif);

    font-size: 110px;

    line-height: 1;

    color: rgba(199,167,106,.25);
}


/* Content */

.about-content {
    max-width: 850px;
}


/* Heading */

.about h2 {
    font-family: var(--serif);

    font-size: clamp(45px, 6vw, 82px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}


.about h2 em {
    color: var(--gold);

    font-style: italic;
}


/* Description */

.about-content > p:last-child {
    max-width: 500px;

    margin-top: 45px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 15px;
}
/* =========================
   CONTACT SECTION
========================= */

.contact {
    padding: 170px 8vw;

    text-align: center;

    background: var(--gold);

    color: #111;
}


.contact .section-label {
    color: #111;
}


.contact h2 {
    max-width: 850px;

    margin: 0 auto 55px;

    font-family: var(--serif);

    font-size: clamp(50px, 7vw, 95px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -3px;
}


.contact h2 em {
    color: #111;

    font-style: italic;
}


.contact .primary-button {
    background: #111;

    color: var(--cream);
}


.contact .primary-button:hover {
    background: #222;

    transform: translateY(-4px);
}
/* =========================
   FOOTER
========================= */

footer {
    padding: 70px 8vw 35px;
    background: #070706;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 34px;
    letter-spacing: 4px;
}

.footer-logo span {
    color: var(--gold);
}

footer > p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 80px;
    padding-top: 20px;

    border-top: 1px solid rgba(242,238,230,.16);

    color: #777;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        padding: 140px 7vw 110px;
    }

    .hero h1 {
        font-size: clamp(55px, 12vw, 90px);
    }

    .hero-property {
        right: 7vw;
        bottom: 80px;
    }

    .intro,
    .about {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-card:nth-child(3) {
        grid-column: auto;
        width: 100%;
    }

    .property-image,
    .property-card:nth-child(2) .property-image,
    .property-card:nth-child(3) .property-image {
        height: 480px;
    }

    .three-d-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .orb-container {
        height: 380px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .navbar {
        height: 72px;
        padding: 0 6vw;
    }

    .logo {
        font-size: 22px;
    }

    .hero {
        min-height: 900px;
        padding: 120px 7vw 170px;
        background-position: 62% center;
    }

    .hero h1 {
        font-size: 54px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-property {
        left: 7vw;
        right: auto;
        bottom: 70px;
    }

    .scroll-indicator {
        display: none;
    }

    .intro,
    .properties,
    .locations,
    .about {
        padding: 100px 7vw;
    }

    .three-d-section {
        padding: 100px 7vw;
    }

    .section-heading {
        display: block;
    }

    .view-all {
        display: inline-block;
        margin-top: 30px;
    }

    .property-image,
    .property-card:nth-child(2) .property-image,
    .property-card:nth-child(3) .property-image {
        height: 400px;
    }

    .location {
        grid-template-columns: 40px 1fr 25px;
        gap: 10px;
    }

    .location p {
        display: none;
    }

    .location h3 {
        font-size: 25px;
    }

    .about-number {
        font-size: 70px;
    }

    .contact {
        padding: 110px 7vw;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}
/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}
/* =================================
   INTRO VISUAL FIX
================================= */

.intro {
    position: relative;
    overflow: hidden;
}


/* Turn the left column into a visual panel */

.intro > .section-label {
    position: relative;

    min-height: 480px;

    padding: 25px;

    display: flex;

    align-items: flex-end;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.75),
            rgba(0,0,0,.05)
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=900&q=90")
        center / cover;

    border: 1px solid rgba(199,167,106,.25);

    color: var(--cream);

    margin-bottom: 0;
}


/* Small gold line */

.intro > .section-label::before {
    content: "";

    position: absolute;

    left: 25px;
    top: 25px;

    width: 45px;
    height: 1px;

    background: var(--gold);
}


/* Architectural image number */

.intro > .section-label::after {
    content: "01";

    position: absolute;

    right: 22px;
    top: 20px;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;
}


/* Better spacing on the right */

.intro-content {
    padding-top: 20px;
}


/* Mobile */

@media (max-width: 900px) {

    .intro > .section-label {
        min-height: 400px;
    }

}


@media (max-width: 600px) {

    .intro > .section-label {
        min-height: 330px;
    }

}