:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --accent-color: #cda45e;
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

body:hover .cursor-follower {
    opacity: 1;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.huge-title {
    font-size: 9vw;
    /* Reduced from 11vw */
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.huge-title .line {
    font-weight: 500;
    font-family: var(--font-main);
    /* Outfit */
}

.huge-title .indent {
    margin-left: 12vw;
    font-family: var(--font-serif);
    /* Playfair Display */
    font-weight: 400;
    font-style: italic;
    color: var(--accent-color);
    /* Gold touch for elegance */
    opacity: 0.9;
}

.section-title {
    font-size: 5vw;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.editorial-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    color: #aaa;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 6rem 0;
    /* Reduced from 10rem for a tighter look */
}

/* Hero */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 120%;
    /* For parallax */
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    padding: 0 5%;
    width: 100%;
    z-index: 1;
}

.hero-meta {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

/* Vision */
.vision-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    align-items: center;
}

.vision-image-wrapper {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.vision-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

/* Services */
/* Approach Grid */
/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 3rem;
    /* Reduced from 6rem */
}

.approach-card {
    background: transparent;
    /* Cleaner look */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Top border only for minimalist feel */
    padding: 2rem 0;
    /* Less padding, more open */
    transition: all 0.4s ease;
    position: relative;
}

.approach-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.card-number {
    font-family: var(--font-serif);
    /* Serif for elegance */
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    font-style: italic;
}

.approach-card h3 {
    font-size: 2.5rem;
    /* Larger titles */
    margin-bottom: 1.5rem;
    line-height: 1;
}

.approach-card p {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
}

.section-number {
    display: block;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: var(--font-main);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Full Image Break */
.full-image-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: grayscale(100%);
    z-index: -1;
}

.floating-quote {
    font-family: var(--font-serif);
    font-size: 4vw;
    text-align: center;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    padding: 0 5%;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: end;
}

.big-contact-title {
    font-size: 8vw;
    line-height: 0.9;
    margin-bottom: 3rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
    max-width: 400px;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-color);
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.submit-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    padding: 1.2rem 3rem;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.contact-image {
    height: 60vh;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.logo {
    width: 220px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.menu-btn {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Agency Section */
.agency-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero.jpg');
    /* Reusing hero for texture, or could use a specific agency image */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    padding: 8rem 0;
}

.agency-content {
    max-width: 800px;
    margin: 0 auto;
}

.agency-details h3 {
    font-size: 2.5rem;
    color: #cda45e;
    /* Gold */
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.agency-location {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #fff;
}

.agency-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
}

/* Market Stats */
.stats-section {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 4rem;
    font-family: var(--font-serif);
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    margin-top: 3rem;
    /* Reduced from 6rem */
}

.why-item {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    /* Vertical line guide */
}

.why-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.why-item p {
    color: #999;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Properties Section */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.property-card {
    cursor: pointer;
}

.property-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card:hover .property-img {
    transform: scale(1.05);
}

.property-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.property-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.property-location {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-left: 2px solid var(--accent-color);
}

.quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #ddd;
}

.author {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 6rem 0;
    }

    .agency-section {
        padding: 6rem 0;
    }

    .huge-title {
        font-size: 12vw;
        /* Reduced from 14vw */
    }

    .huge-title .indent {
        margin-left: 2rem;
    }

    .section-title {
        font-size: 12vw;
    }

    /* Grids to 1 column */
    .vision-layout,
    .contact-layout,
    .approach-grid,
    .stats-grid,
    .why-grid,
    .testimonials-grid,
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Adjust Images */
    .hero-img {
        object-position: 75% center;
        /* Focus on the right side where the person is */
    }

    .vision-image-wrapper {
        height: 50vh;
        order: -1;
        /* Image first for visual impact */
    }

    .contact-image {
        height: 40vh;
        margin-top: 2rem;
    }

    /* Typography adjustments */
    .big-contact-title {
        font-size: 15vw;
    }

    .stat-value {
        font-size: 3.5rem;
    }

    .agency-details h3 {
        font-size: 2rem;
    }

    /* Navigation */
    .navbar {
        padding: 1.5rem 5%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    }

    .logo {
        width: 160px;
    }

    /* Disable custom cursor */
    .cursor-follower {
        display: none;
    }

    * {
        cursor: auto;
    }
}