:root {
    --burgundy: #552743;
    --burgundy-dark: #3d1c31;
    --gold: #b99a61;
    --cream: #f6f2ed;
    --purple-light: #eee7ed;
    --purple-soft: #f7f3f5;
    --ink: #282128;
    --muted: #766e75;
    --line: #ddd5da;

    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

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

button,
input,
select {
    font: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 84px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: white;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(61, 28, 49, 0.97);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 40px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.5);

    display: grid;
    place-items: center;

    font-family: var(--serif);
    font-size: 15px;
}

.brand-text strong {
    font-size: 17px;
    letter-spacing: 2px;
}

.brand-text strong span {
    color: var(--gold);
}

.brand-text small {
    display: block;

    font-size: 7px;
    letter-spacing: 3px;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    display: flex;
    gap: 30px;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.desktop-nav a {
    position: relative;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-contact {
    font-size: 11px;
}

.menu-button {
    display: none;

    background: none;
    border: 0;

    color: inherit;

    cursor: pointer;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;

    background: var(--burgundy-dark);

    z-index: 200;

    color: white;

    padding: 35px 8%;

    transform: translateX(100%);

    transition: transform 0.4s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-close {
    float: right;

    background: none;
    border: 0;

    color: white;

    cursor: pointer;
}

.mobile-logo {
    font-family: var(--serif);

    font-size: 25px;

    margin: 40px 0;
}

.mobile-logo span {
    color: var(--gold);
}

.mobile-menu nav {
    display: grid;
    gap: 22px;
}

.mobile-menu nav a {
    font-family: var(--serif);

    font-size: 28px;

    transition: color 0.3s ease;
}

.mobile-menu nav a:hover {
    color: var(--gold);
}

.mobile-call {
    display: inline-block;

    margin-top: 40px;

    color: var(--gold);

    font-size: 12px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    height: 100vh;
    min-height: 680px;

    position: relative;

    background: var(--burgundy-dark);

    color: white;

    overflow: hidden;
}

.hero-image,
.cta-image,
.private-image {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition: transform 0.2s ease-out;
}

.hero-image {
    background-image:
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=90");
}

.hero-overlay,
.cta-overlay,
.private-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(43, 23, 38, 0.91),
            rgba(61, 28, 49, 0.50) 60%,
            rgba(43, 23, 38, 0.25)
        );
}

.hero-content {
    position: absolute;

    left: 9%;
    top: 50%;

    transform: translateY(-45%);

    max-width: 700px;
}

.hero-label,
.eyebrow {
    font-size: 9px;

    letter-spacing: 3px;

    color: var(--gold);

    font-weight: 600;
}

.hero-label span {
    display: inline-block;

    width: 30px;
    height: 1px;

    background: var(--gold);

    vertical-align: middle;

    margin-right: 10px;
}

.hero h1 {
    font:
        500 clamp(48px, 7vw, 90px)
        / 1.05
        var(--serif);

    margin: 25px 0;
}

.hero h1 em,
.cta h2 em,
.private-content h2 em,
h2 em {
    font-style: italic;

    color: #ead8bd;
}

.hero-description {
    max-width: 550px;

    color: #eee;

    line-height: 1.9;

    font-size: 14px;
}

.hero-actions,
.cta-buttons {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 35px;
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-button,
.dark-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 15px 22px;

    background: var(--gold);

    color: var(--burgundy-dark);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    border: 0;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.primary-button:hover,
.dark-button:hover {
    transform: translateY(-2px);

    opacity: 0.9;
}

.dark-button {
    background: var(--burgundy);

    color: white;
}

.hero-link,
.gold-link {
    color: var(--gold);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    display: inline-flex;

    gap: 10px;

    align-items: center;
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {
    position: absolute;

    bottom: 40px;

    left: 9%;
    right: 9%;

    display: flex;

    justify-content: space-between;

    align-items: end;
}

.hero-location {
    display: flex;

    gap: 12px;
}

.hero-location svg {
    color: var(--gold);

    width: 18px;
}

.hero-location small {
    font-size: 7px;

    letter-spacing: 2px;

    color: #bbb;

    display: block;
}

.hero-location strong {
    font-size: 11px;
}

.hero-scroll {
    font-size: 7px;

    letter-spacing: 2px;

    color: #ccc;

    display: flex;

    gap: 15px;

    align-items: center;
}

.hero-scroll div {
    width: 80px;

    height: 1px;

    background: rgba(255, 255, 255, 0.35);
}


/* =========================================================
   SEARCH
========================================================= */

.search-section {
    padding: 0 8%;

    position: relative;

    margin-top: -60px;

    z-index: 10;
}

.search-box {
    background: white;

    padding: 35px;

    box-shadow:
        0 20px 60px rgba(61, 28, 49, 0.18);
}

.search-heading {
    display: flex;

    gap: 20px;

    align-items: center;

    margin-bottom: 30px;
}

.search-number,
.section-number {
    font-size: 9px;

    color: var(--gold);

    letter-spacing: 2px;
}

.search-heading small {
    font-size: 8px;

    letter-spacing: 2px;

    color: var(--muted);
}

.search-heading h3 {
    font:
        500 28px
        var(--serif);
}

.search-fields {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr)
        auto;

    gap: 12px;
}

.search-field label,
.calculator label {
    display: block;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: var(--muted);

    margin-bottom: 7px;
}

.search-field select,
.calculator input,
.lead-card input,
.lead-card select {
    width: 100%;

    border: 1px solid var(--line);

    background: white;

    padding: 13px;

    outline: none;

    color: var(--ink);

    border-radius: 0;
}

.search-field select:focus,
.calculator input:focus,
.lead-card input:focus,
.lead-card select:focus {
    border-color: var(--gold);
}

.search-button {
    border: 0;

    background: var(--burgundy);

    color: white;

    padding: 0 22px;

    cursor: pointer;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 120px 9%;
}

.approach-content {
    max-width: 800px;

    margin: auto;

    text-align: center;
}

.section-number {
    margin-bottom: 25px;
}

.approach h2,
.why h2,
.mumbai-intro h2,
.expertise h2,
.investment h2,
.sell-section h2,
.journal h2,
.about h2,
.trust h2,
.contact-section h2 {
    font:
        500 clamp(38px, 5vw, 62px)
        / 1.1
        var(--serif);
}

.approach p,
.investment p,
.sell-section p,
.contact-section p {
    max-width: 600px;

    margin: 25px auto;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   WHY RICHESMAKERS
========================================================= */

.why {
    background: white;
}

.why-grid,
.investment-grid,
.sell-grid,
.trust-grid,
.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}

.why-points {
    display: grid;

    gap: 25px;
}

.why-points div {
    border-top: 1px solid var(--line);

    padding-top: 20px;
}

.why-points b {
    font-size: 9px;

    color: var(--gold);
}

.why-points h3 {
    font:
        25px
        var(--serif);

    margin: 8px 0;
}

.why-points p {
    font-size: 13px;

    color: var(--muted);
}


/* =========================================================
   PROPERTY CARDS
========================================================= */

.section-header {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 45px;
}

.property-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.property-card {
    background: white;

    padding-bottom: 25px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.property-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(61, 28, 49, 0.13);
}

.property-image {
    height: 430px;

    background-size: cover;

    background-position: center;

    transition: transform 0.5s ease;
}

.property-card:hover .property-image {
    transform: scale(1.03);
}

.image-one {
    background-image:
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1500&q=90");
}

.image-two {
    background-image:
        url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1500&q=90");
}

.image-three {
    background-image:
        url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1500&q=90");
}

.property-meta {
    display: flex;

    justify-content: space-between;

    padding: 20px 22px 5px;

    font-size: 7px;

    letter-spacing: 2px;

    color: var(--gold);
}

.property-card h3,
.property-card p,
.property-card strong,
.property-card > a {
    margin-left: 22px;

    margin-right: 22px;
}

.property-card h3 {
    font:
        30px
        var(--serif);
}

.property-card p {
    font-size: 11px;

    color: var(--muted);
}

.property-card strong {
    display: block;

    margin-top: 10px;

    color: var(--burgundy);
}

.property-card > a {
    display: inline-flex;

    gap: 8px;

    margin-top: 18px;

    color: var(--burgundy);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   MUMBAI
========================================================= */

.mumbai-intro {
    background: var(--burgundy);

    color: white;

    display: grid;

    grid-template-columns: 100px 1fr;
}

.mumbai-intro p {
    max-width: 650px;

    color: #d7cbd2;

    margin-top: 25px;
}

.location-section {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: white;
}

.location-category {
    min-height: 360px;

    padding: 55px 35px;

    border-right: 1px solid var(--line);

    display: flex;

    flex-direction: column;

    justify-content: end;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.location-category:hover {
    background: var(--purple-soft);

    transform: translateY(-4px);
}

.location-category span {
    font-size: 8px;

    color: var(--gold);

    letter-spacing: 2px;
}

.location-category h3 {
    font:
        28px / 1.2
        var(--serif);

    margin: 18px 0;
}

.location-category p {
    font-size: 11px;

    color: var(--muted);
}


/* =========================================================
   MUMBAI MAP
========================================================= */

.map-section {
    display: grid;

    grid-template-columns: 40% 60%;

    background: var(--purple-soft);
}

.map-copy {
    padding: 100px 15%;
}

.map-copy h2 {
    font:
        500 55px / 1.05
        var(--serif);

    margin: 20px 0;
}

.map-copy p {
    font-size: 13px;

    color: var(--muted);

    line-height: 1.9;
}

.mumbai-map {
    min-height: 500px;

    background: #e8e0e3;

    position: relative;

    overflow: hidden;
}

.map-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    transform:
        rotate(-8deg)
        scale(1.2);
}

.pin {
    position: absolute;

    padding: 8px 12px;

    background: var(--burgundy);

    color: white;

    font-size: 9px;

    letter-spacing: 1px;

    box-shadow:
        0 8px 20px rgba(61, 28, 49, 0.18);
}

.pin:before {
    content: "";

    display: inline-block;

    width: 6px;
    height: 6px;

    background: var(--gold);

    border-radius: 50%;

    margin-right: 7px;
}

.pin-1 {
    left: 15%;
    bottom: 25%;
}

.pin-2 {
    left: 38%;
    bottom: 38%;
}

.pin-3 {
    left: 55%;
    bottom: 55%;
}

.pin-4 {
    left: 68%;
    top: 35%;
}

.pin-5 {
    right: 12%;
    top: 22%;
}


/* =========================================================
   EXPERTISE
========================================================= */

.expertise {
    background: white;
}

.expertise-list {
    margin-top: 50px;

    border-top: 1px solid var(--line);
}

.expertise-item {
    display: grid;

    grid-template-columns:
        70px
        1fr
        30px;

    gap: 20px;

    align-items: center;

    padding: 28px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.expertise-item:hover {
    padding-left: 12px;
}

.expertise-item span {
    color: var(--gold);

    font-size: 10px;
}

.expertise-item h3 {
    font:
        27px
        var(--serif);
}

.expertise-item p {
    font-size: 12px;

    color: var(--muted);

    max-width: 600px;
}

.expertise-item svg {
    color: var(--gold);
}


/* =========================================================
   INVESTMENT
========================================================= */

.investment {
    background: var(--purple-soft);
}

.calculator {
    background: white;

    padding: 35px;

    box-shadow:
        0 20px 60px rgba(85, 39, 67, 0.10);
}

.calculator label {
    margin-bottom: 15px;
}

.calculator input {
    padding: 11px;
}

.calc-results {
    margin-top: 25px;

    border-top: 1px solid var(--line);

    padding-top: 20px;

    display: grid;

    gap: 12px;
}

.calc-results div {
    font-size: 10px;

    color: var(--muted);

    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.calc-results strong {
    font-size: 18px;

    color: var(--burgundy);
}


/* =========================================================
   SELL PROCESS
========================================================= */

.process {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--line);
}

.process div {
    padding: 20px;

    border-bottom: 1px solid var(--line);

    font-family: var(--serif);

    transition:
        background 0.3s ease,
        padding-left 0.3s ease;
}

.process div:hover {
    background: white;

    padding-left: 28px;
}

.process b {
    color: var(--gold);

    font:
        9px
        var(--sans);

    margin-right: 15px;
}


/* =========================================================
   PRIVATE CLIENT
========================================================= */

.private-client {
    min-height: 650px;

    position: relative;

    color: white;

    display: flex;

    align-items: center;
}

.private-content {
    position: relative;

    z-index: 2;

    margin-left: 9%;

    max-width: 650px;
}

.private-content h2 {
    font:
        500 clamp(45px, 6vw, 75px)
        / 1.05
        var(--serif);

    margin: 25px 0;
}

.private-content p {
    max-width: 550px;

    color: #ddd;

    line-height: 1.9;

    font-size: 14px;

    margin-bottom: 30px;
}

.private-image {
    background-image:
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=90");
}


/* =========================================================
   JOURNAL
========================================================= */

.journal {
    background: white;
}

.journal-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: var(--line);

    margin-top: 45px;
}

.journal-grid article {
    background: white;

    padding: 35px;

    min-height: 250px;

    transition:
        background 0.3s ease;
}

.journal-grid article:hover {
    background: var(--purple-soft);
}

.journal-grid span {
    font-size: 8px;

    color: var(--gold);

    letter-spacing: 2px;
}

.journal-grid h3 {
    font:
        25px / 1.25
        var(--serif);

    margin: 30px 0;
}

.journal-grid a {
    font-size: 9px;

    text-transform: uppercase;

    color: var(--burgundy);

    letter-spacing: 1px;

    display: inline-flex;

    align-items: center;

    gap: 7px;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial {
    padding: 130px 15%;

    background: var(--burgundy);

    color: white;
}

.testimonial blockquote {
    font:
        italic 38px / 1.3
        var(--serif);

    max-width: 900px;

    margin: 30px 0;
}

.testimonial-line {
    width: 70px;

    height: 1px;

    background: var(--gold);

    margin: 35px 0;
}

.testimonial-author {
    display: flex;

    gap: 15px;

    align-items: center;
}

.author-circle {
    width: 45px;
    height: 45px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: var(--gold);

    font-size: 10px;
}

.testimonial-author span {
    display: block;

    font-size: 9px;

    color: #cfc4cb;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    padding: 0;
}

.about-image {
    min-height: 650px;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.about-content {
    padding: 100px 10%;
}

.about-content p {
    font-size: 13px;

    color: var(--muted);

    line-height: 1.9;

    margin: 20px 0;
}

.founder-name {
    font:
        32px
        var(--serif);

    color: var(--burgundy);

    margin-top: 35px;
}

.founder-role {
    font-size: 8px;

    color: var(--gold);

    letter-spacing: 2px;

    margin: 5px 0 30px;
}


/* =========================================================
   TRUST
========================================================= */

.trust {
    background: white;
}

.trust-list {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}

.trust-list span {
    border: 1px solid var(--line);

    padding: 10px 14px;

    font-size: 8px;

    letter-spacing: 1px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background:
        linear-gradient(
            135deg,
            var(--purple-light),
            var(--purple-soft)
        );
}

.contact-grid {
    align-items: center;
}

.contact-section h2 {
    margin-top: 15px;
}

.contact-section p {
    margin: 25px 0;
}

.contact-details {
    display: grid;

    gap: 15px;
}

.contact-details a {
    color: var(--burgundy);

    font-size: 12px;

    display: flex;

    justify-content: space-between;

    max-width: 300px;
}

.lead-card {
    background: white;

    padding: 40px;

    border-top: 4px solid var(--gold);

    box-shadow:
        0 25px 70px rgba(85, 39, 67, 0.13);
}

.lead-card form {
    display: grid;

    gap: 14px;

    margin-top: 20px;
}

.lead-card .dark-button {
    width: 100%;
}


/* =========================================================
   FINAL CTA
========================================================= */

.cta {
    height: 600px;

    position: relative;

    color: white;

    display: flex;

    align-items: center;
}

.cta-content {
    position: relative;

    z-index: 2;

    margin-left: 9%;

    max-width: 750px;
}

.cta h2 {
    font:
        500 clamp(48px, 6vw, 78px)
        / 1.05
        var(--serif);

    margin: 25px 0;
}

.cta-content p {
    color: #ddd;

    font-size: 14px;
}

.cta-email {
    color: var(--gold);

    font-size: 10px;

    letter-spacing: 1px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: var(--burgundy-dark);

    color: white;

    padding: 75px 7% 25px;
}

.footer-main {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        2fr;

    gap: 50px;
}

.footer-logo {
    font-size: 17px;

    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-brand p {
    color: #c9bcc4;

    font-size: 12px;

    line-height: 2;

    margin: 20px 0;
}

.rera {
    color: var(--gold);

    font-size: 8px;

    letter-spacing: 1px;
}

.footer-column {
    display: grid;

    align-content: start;

    gap: 12px;
}

.footer-column h4 {
    font-size: 8px;

    color: var(--gold);

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    font-size: 10px;

    color: #d4cbd0;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);

    margin-top: 55px;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    color: #a99da5;

    font-size: 8px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 18px;
    }

    .nav-contact {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .search-fields {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .search-button {
        min-height: 50px;
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .investment-grid,
    .sell-grid,
    .trust-grid,
    .contact-grid {
        gap: 50px;
    }

    .map-section {
        grid-template-columns: 1fr;
    }

    .map-copy {
        padding: 80px 9%;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 500px;
    }

    .footer-main {
        grid-template-columns:
            1fr
            1fr;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .navbar {
        padding: 0 5%;
    }

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-symbol {
        width: 36px;
        height: 36px;
    }


    /* HERO */

    .hero {
        min-height: 650px;
    }

    .hero-content {
        left: 7%;
        right: 7%;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }

    .hero-bottom {
        left: 7%;
        right: 7%;
    }

    .hero-scroll {
        display: none;
    }


    /* SEARCH */

    .search-section {
        padding: 0 5%;

        margin-top: -35px;
    }

    .search-box {
        padding: 25px 18px;
    }

    .search-heading h3 {
        font-size: 23px;
    }

    .search-fields {
        grid-template-columns: 1fr;
    }

    .search-button {
        height: 50px;
    }


    /* SECTIONS */

    .section {
        padding: 80px 7%;
    }

    .section-header {
        display: block;
    }

    .section-header .gold-link {
        margin-top: 20px;
    }


    /* PROPERTY */

    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-image {
        height: 380px;
    }


    /* MUMBAI */

    .mumbai-intro {
        display: block;
    }

    .location-section {
        grid-template-columns: 1fr;
    }

    .location-category {
        min-height: 250px;
    }


    /* EXPERTISE */

    .expertise-item {
        grid-template-columns:
            45px
            1fr
            20px;

        gap: 10px;
    }

    .expertise-item h3 {
        font-size: 24px;
    }


    /* INVESTMENT */

    .investment-grid,
    .why-grid,
    .sell-grid,
    .trust-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .calculator {
        padding: 25px 20px;
    }


    /* PROCESS */

    .process {
        grid-template-columns: 1fr;
    }


    /* PRIVATE */

    .private-client {
        min-height: 560px;
    }

    .private-content {
        margin-left: 7%;
        margin-right: 7%;
    }


    /* JOURNAL */

    .journal-grid {
        grid-template-columns: 1fr;
    }


    /* TESTIMONIAL */

    .testimonial {
        padding: 90px 7%;
    }

    .testimonial blockquote {
        font-size: 28px;
    }


    /* ABOUT */

    .about {
        display: block;
    }

    .about-image {
        min-height: 450px;
    }

    .about-content {
        padding: 80px 7%;
    }


    /* CTA */

    .cta {
        height: 550px;
    }

    .cta-content {
        margin-left: 7%;
        margin-right: 7%;
    }

    .cta h2 {
        font-size: 50px;
    }

    .cta-buttons {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;

        gap: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 43px;
    }

    .hero-description {
        font-size: 12px;
    }

    .primary-button,
    .dark-button {
        padding: 13px 17px;
    }

    .approach h2,
    .why h2,
    .mumbai-intro h2,
    .expertise h2,
    .investment h2,
    .sell-section h2,
    .journal h2,
    .about h2,
    .trust h2,
    .contact-section h2 {
        font-size: 38px;
    }

}

/* =========================================================
   INVESTMENT + EMI CALCULATORS
========================================================= */

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: stretch;
}


/* CALCULATOR CARD */

.calculator-card {
    background: #ffffff;
    padding: 36px 40px;
    box-shadow: 0 12px 35px rgba(40, 20, 35, 0.07);
}


.calculator-heading {
    margin-bottom: 26px;
}


.calculator-heading small {
    display: block;
    margin-bottom: 9px;
    letter-spacing: 3px;
    font-size: 9px;
}


.calculator-heading h2 {
    margin: 0 0 9px;
    font-size: 32px;
    line-height: 1.1;
}


.calculator-heading p {
    margin: 0;
    line-height: 1.6;
    font-size: 12px;
}


/* INPUTS */

.calculator-field {
    margin-bottom: 17px;
}


.calculator-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 9px;
    letter-spacing: 1.6px;
}


.calculator-field input,
.calculator-field select {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd2d8;
    background: #fff;
    padding: 0 14px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
}


.calculator-field input:focus,
.calculator-field select:focus {
    border-color: #6b284d;
}


/* ₹ PREFIX */

.input-prefix {
    display: flex;
    align-items: center;
    border: 1px solid #ddd2d8;
    height: 48px;
}


.input-prefix span {
    padding-left: 14px;
    font-size: 13px;
}


.input-prefix input {
    border: 0;
    height: 46px;
}


/* % / YEARS SUFFIX */

.input-suffix {
    display: flex;
    align-items: center;
    border: 1px solid #ddd2d8;
    height: 48px;
}


.input-suffix input {
    border: 0;
    height: 46px;
}


.input-suffix span {
    padding-right: 14px;
    white-space: nowrap;
    font-size: 13px;
}


/* AUTOMATIC RESULTS */

.calculator-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e8e0e4;
}


.calculator-result-row span {
    display: block;
    font-size: 9px;
    letter-spacing: 1.6px;
}


.calculator-result-row small {
    display: block;
    margin-top: 4px;
    font-size: 9px;
}


.calculator-result-row strong {
    font-size: 15px;
}


/* TOTAL */

.calculator-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 7px;
    border-top: 1px solid #ddd2d8;
}


.calculator-total span {
    font-size: 9px;
    letter-spacing: 1.6px;
}


.calculator-total strong {
    font-size: 21px;
}


/* BUTTON */

.calculator-button {
    width: 100%;
    height: 50px;
    border: 0;
    background: #6b284d;
    color: #ffffff;
    font-family: inherit;
    letter-spacing: 1.6px;
    font-size: 9px;
    cursor: pointer;
    transition: 0.3s ease;
}


.calculator-button span {
    margin-left: 10px;
    font-size: 15px;
}


.calculator-button:hover {
    opacity: 0.9;
}


/* INFORMATION SIDE */

.calculator-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}


.info-number {
    font-size: 9px;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}


.calculator-info h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 20px;
}


.calculator-info p {
    max-width: 470px;
    line-height: 1.7;
    font-size: 12px;
}


/* INFO POINTS */

.info-points {
    display: flex;
    gap: 28px;
    margin-top: 27px;
}


.info-points div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.info-points strong {
    font-size: 21px;
}


.info-points span {
    font-size: 9px;
    letter-spacing: 0.8px;
    line-height: 1.4;
}


/* EMI */

.emi-section {
    margin-top: 30px;
}


.emi-total {
    margin-top: 20px;
}


.emi-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}


.emi-results div {
    padding: 14px;
    border: 1px solid #e8e0e4;
}


.emi-results span {
    display: block;
    font-size: 9px;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}


.emi-results strong {
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 900px) {

    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .calculator-info {
        order: -1;
        padding: 10px 0 25px;
    }

    .calculator-card {
        padding: 28px 22px;
    }

}


@media (max-width: 600px) {

    .info-points {
        flex-direction: column;
        gap: 18px;
    }

    .emi-results {
        grid-template-columns: 1fr;
    }

    .calculator-total {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .calculator-heading h2 {
        font-size: 28px;
    }

}
/* =========================================
   MOBILE NAVIGATION
   ========================================= */

@media (max-width: 900px) {

    .desktop-nav {
        display: none !important;
    }

    .nav-right .nav-contact {
        display: none;
    }

    .menu-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .navbar {
        padding: 18px 20px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text small {
        font-size: 8px;
    }

}


/* =========================================
   SMALL MOBILE SCREENS
   ========================================= */

@media (max-width: 600px) {

    .navbar {
        padding: 16px 18px;
    }

    .brand-symbol {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .menu-button {
        width: 42px;
        height: 42px;
    }

    .mobile-menu {
        width: 100%;
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu nav a {
        padding: 15px 0;
        font-size: 15px;
    }

}
/* RICHESMAKER LOGO */

.brand-symbol {
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    border: none !important;
    background: transparent !important;
}

.brand-symbol img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 600px) {

    .brand-symbol {
        width: 50px !important;
        height: 50px !important;
    }

    .brand-symbol img {
        width: 100% !important;
        height: 100% !important;
    }

}
@media (max-width: 900px) {
    .desktop-nav {
        display: none !important;
    }

    .nav-contact {
        display: none !important;
    }

    .menu-button {
        display: flex !important;
    }
}
/* =========================================
   CALCULATOR PAGE NAVBAR
   ========================================= */

.calculator-page .navbar {
    background: #421d35 !important;
}

.calculator-page .desktop-nav a {
    color: #ffffff !important;
}

.calculator-page .nav-contact {
    color: #ffffff !important;
}

.calculator-page .brand-text strong {
    color: #ffffff !important;
}

.calculator-page .brand-text small {
    color: #ffffff !important;
}

.calculator-page .menu-button {
    color: #ffffff !important;
}
/* =========================================================
   MULTIPAGE WEBSITE
========================================================= */

/* ---------- LOGO ---------- */

.brand-symbol {
    width: 48px;
    height: 48px;
    border: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
}

.brand-symbol img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}


/* ---------- NAVIGATION ---------- */

.desktop-nav a.active {
    color: var(--gold-light);
}

.desktop-nav a.active::after {
    width: 100%;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 45px;
}

.mobile-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.mobile-brand strong {
    display: block;
    font-size: 20px;
    letter-spacing: 2px;
}

.mobile-brand small {
    display: block;
    color: var(--gold);
    font-size: 7px;
    letter-spacing: 3px;
    margin-top: 3px;
}


/* ---------- PAGE HERO ---------- */

.page-hero {
    min-height: 500px;
    padding: 180px 8% 90px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(
        135deg,
        var(--purple-light),
        var(--purple-soft)
    );
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: var(--burgundy);
}

.page-hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(55px, 7vw, 95px);
    line-height: .95;
    letter-spacing: -3px;
    color: var(--burgundy-dark);
}

.page-hero h1 em {
    color: var(--burgundy);
}

.page-hero p {
    max-width: 650px;
    margin-top: 25px;
    color: #675962;
    font-size: 15px;
    line-height: 1.9;
}


/* ---------- CALCULATOR ---------- */

.calculator-page .navbar {
    background: var(--burgundy);
}

.calculator-page .desktop-nav a {
    color: rgba(255,255,255,.9);
}

.calculator-page .nav-contact {
    color: #fff;
}

.calculator-section {
    background: var(--off-white);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.calculator-card {
    background: #fff;
    border-top: 4px solid var(--gold);
    padding: 38px;
    box-shadow: 0 25px 70px rgba(85,39,67,.12);
}

.calculator-heading small {
    color: var(--burgundy);
    font-size: 8px;
    letter-spacing: 2px;
}

.calculator-heading h3 {
    font-family: var(--serif);
    color: var(--burgundy-dark);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    margin: 14px 0 15px;
}

.calculator-heading p {
    color: #675962;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.calculator-field {
    margin-bottom: 22px;
}

.calculator-field label {
    display: block;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.calculator-field input,
.calculator-field select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    outline: 0;
    background: #fff;
    color: var(--text);
    font-size: 11px;
}

.calculator-field input:focus,
.calculator-field select:focus {
    border-color: var(--gold);
}

.input-prefix,
.input-suffix {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    background: #fff;
}

.input-prefix input,
.input-suffix input {
    border: 0;
    flex: 1;
    margin: 0;
}

.input-prefix span {
    padding-left: 14px;
    color: var(--muted);
}

.input-suffix span {
    padding-right: 14px;
    color: var(--muted);
    font-size: 10px;
}


/* ---------- CALCULATOR RESULTS ---------- */

.calculator-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding: 17px 0;
}

.calculator-result-row span {
    display: block;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 2px;
}

.calculator-result-row small {
    display: block;
    color: #8b7d85;
    font-size: 9px;
    margin-top: 4px;
}

.calculator-result-row strong {
    font-family: var(--serif);
    color: var(--burgundy-dark);
    font-size: 20px;
}

.calculator-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding: 24px 0;
}

.calculator-total span {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 2px;
}

.calculator-total strong {
    font-family: var(--serif);
    color: var(--burgundy-dark);
    font-size: 28px;
}


/* ---------- EMI ---------- */

.emi-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.emi-results div {
    border: 1px solid var(--line);
    padding: 15px;
    background: var(--off-white);
}

.emi-results span {
    display: block;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.emi-results strong {
    font-family: var(--serif);
    color: var(--burgundy-dark);
    font-size: 17px;
}

.calculator-button {
    width: 100%;
    border: 0;
    background: var(--burgundy);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-size: 10px;
    letter-spacing: 1px;
    transition: .3s;
}

.calculator-button:hover {
    background: var(--gold);
}


/* ---------- LOCATION PAGE ---------- */

.location-section {
    padding: 140px 8%;
    background: #fff;
}

.location-section .section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.location-section .section-heading > p {
    max-width: 500px;
    color: #675962;
    font-size: 14px;
    line-height: 1.9;
}

.location-section .location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.location-section .location-card {
    height: auto;
    min-height: 300px;
    padding: 40px;
    background: var(--purple-light);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.location-section .location-card::after {
    display: none;
}

.location-number {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.location-section .location-card h3 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--burgundy-dark);
    margin-bottom: 15px;
}

.location-section .location-card p {
    color: #675962;
    font-size: 13px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 25px;
}

.location-section .location-card a {
    color: var(--burgundy);
    font-size: 10px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
}


/* ---------- MUMBAI INTRO ---------- */

.mumbai-intro {
    padding: 140px 8%;
    background: var(--purple-light);
}

.mumbai-intro .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}

.mumbai-intro .section-heading > p {
    max-width: 550px;
    color: #675962;
    font-size: 15px;
    line-height: 1.9;
}


/* ---------- EXPERTISE PAGE ---------- */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.18);
}

.expertise-card {
    padding: 45px;
    border: 1px solid rgba(255,255,255,.12);
}

.expertise-number {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.expertise-card h3 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 15px;
}

.expertise-card p {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 25px;
}

.expertise-card a {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: 1px;
}


/* ---------- INVESTMENT SECTION ---------- */

.investment-section {
    padding: 140px 8%;
    background: var(--purple-light);
}

.investment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.investment-content {
    max-width: 600px;
}

.investment-content h2 {
    color: var(--burgundy-dark);
    margin-bottom: 25px;
}

.investment-content p {
    color: #675962;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.investment-points {
    border-top: 1px solid var(--line);
}

.investment-point {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.investment-point > span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 1px;
}

.investment-point h3 {
    font-family: var(--serif);
    color: var(--burgundy-dark);
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 5px;
}

.investment-point p {
    color: #675962;
    font-size: 12px;
    line-height: 1.7;
}


/* ---------- PRIVATE CLIENT ---------- */

.private-client {
    padding: 110px 8%;
    background: var(--burgundy-dark);
    color: #fff;
}

.private-client-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.private-client .eyebrow {
    color: var(--gold-light);
}

.private-client h2 {
    color: #fff;
}

.private-client h2 em {
    color: var(--gold-light);
}

.private-client p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 22px;
    background: var(--burgundy);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    transition: .3s;
}

.button:hover {
    background: var(--gold);
}

.button-light {
    background: var(--gold);
    color: #fff;
}

.button-light:hover {
    background: var(--gold-light);
    color: var(--burgundy-dark);
}


/* ---------- ABOUT PAGE ---------- */

.about-section {
    background: var(--purple-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.about-heading h2 {
    color: var(--burgundy-dark);
}

.about-content {
    max-width: 600px;
}

.about-content p {
    color: #675962;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.ceo-section {
    background: #fff;
}

.ceo-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.ceo-image {
    height: 600px;
    overflow: hidden;
}

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

.ceo-content {
    max-width: 600px;
}

.ceo-content h2 {
    color: var(--burgundy-dark);
    margin: 25px 0;
}

.ceo-content p {
    color: #675962;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.ceo-signature {
    margin-top: 35px;
    color: var(--burgundy);
    font-family: var(--serif);
    font-size: 24px;
    letter-spacing: 2px;
}

.values-section {
    background: var(--purple-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.value-item {
    background: var(--purple-light);
    padding: 35px;
}

.value-item > span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 2px;
}

.value-item h3 {
    font-family: var(--serif);
    color: var(--burgundy-dark);
    font-size: 28px;
    font-weight: 400;
    margin: 25px 0 12px;
}

.value-item p {
    color: #675962;
    font-size: 12px;
    line-height: 1.8;
}


/* ---------- CONTACT PAGE ---------- */

.contact-section {
    background: var(--purple-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.contact-info {
    max-width: 600px;
}

.contact-info h2 {
    color: var(--burgundy-dark);
    margin: 25px 0;
}

.contact-info > p {
    color: #675962;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-details {
    border-top: 1px solid var(--line);
}

.contact-detail {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.contact-detail > span {
    display: block;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-detail a {
    color: var(--burgundy);
    font-size: 14px;
}

.contact-detail p {
    color: #675962;
    font-size: 12px;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: #fff;
    border-top: 4px solid var(--gold);
    padding: 35px;
    box-shadow: 0 25px 70px rgba(85,39,67,.12);
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    outline: none;
    background: #fff;
    color: var(--text);
    font-size: 11px;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 950px) {

    .desktop-nav,
    .nav-contact {
        display: none !important;
    }

    .menu-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .calculator-grid,
    .investment-inner,
    .private-client-inner,
    .about-grid,
    .ceo-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-section .location-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .location-section .section-heading,
    .mumbai-intro .section-heading {
        display: block;
    }

    .location-section .section-heading > p,
    .mumbai-intro .section-heading > p {
        margin-top: 25px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .investment-inner,
    .private-client-inner,
    .contact-grid,
    .about-grid,
    .ceo-grid {
        gap: 50px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .brand-symbol {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 13px;
    }

    .brand-text small {
        font-size: 6px;
    }

    .mobile-brand img {
        width: 42px;
        height: 42px;
    }

    .page-hero {
        min-height: 430px;
        padding: 145px 6% 70px;
    }

    .page-hero h1 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .calculator-card,
    .contact-form-wrapper {
        padding: 25px;
    }

    .calculator-heading h3 {
        font-size: 34px;
    }

    .calculator-total {
        gap: 12px;
        align-items: flex-start;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .ceo-image {
        height: 480px;
    }

    .private-client {
        padding: 85px 6%;
    }

}
/* =========================================================
   FIX NAVBAR VISIBILITY
========================================================= */

.navbar {
    background: #421d35 !important;
}

.navbar .brand-text strong {
    color: #ffffff !important;
}

.navbar .brand-text small {
    color: #d6b06a !important;
}

.navbar .desktop-nav a {
    color: #ffffff !important;
}

.navbar .desktop-nav a:hover,
.navbar .desktop-nav a.active {
    color: #d6b06a !important;
}

.navbar .nav-contact {
    color: #ffffff !important;
}

.navbar .menu-button {
    color: #ffffff !important;
}
/* =========================================================
   FINAL ALIGNMENT FIX
========================================================= */

/* ---------- NAVBAR ---------- */

.navbar {
    width: 100%;
    height: 90px !important;
    min-height: 90px !important;
    padding: 0 7% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    position: relative;
    z-index: 1000;
    box-sizing: border-box;
}

.navbar .brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px;
    flex-shrink: 0;
}

.navbar .brand-symbol {
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0;
}

.navbar .brand-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    white-space: nowrap;
}

.navbar .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    gap: 35px;
    margin-left: auto;
    margin-right: 45px;
    white-space: nowrap;
}

.navbar .desktop-nav a {
    white-space: nowrap;
}

.navbar .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 25px;
    flex-shrink: 0;
}

.navbar .nav-contact {
    white-space: nowrap;
}

.navbar .menu-button {
    display: none;
}


/* ---------- HERO ---------- */

.page-hero {
    width: 100%;
    box-sizing: border-box;
}

.page-hero-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* ---------- ALL MAIN SECTIONS ---------- */

.residences,
.mumbai-intro,
.location-section,
.expertise,
.investment-section,
.private-client,
.about-section,
.ceo-section,
.values-section,
.contact-section,
.calculator-section {
    box-sizing: border-box;
}


/* ---------- PROPERTIES ---------- */

.residences {
    padding: 120px 8% !important;
}

.residences .section-heading {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    box-sizing: border-box;
}


/* ---------- MUMBAI ---------- */

.mumbai-intro {
    padding: 120px 8% !important;
}

.mumbai-intro .section-heading {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ---------- LOCATIONS ---------- */

.location-section {
    padding: 120px 8% !important;
}

.location-section .section-heading {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* ---------- EXPERTISE ---------- */

.expertise {
    padding: 120px 8% !important;
}

.expertise > .section-heading {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.expertise-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ---------- INVESTMENT ---------- */

.investment-section {
    padding: 120px 8% !important;
}

.investment-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ---------- PRIVATE CLIENT ---------- */

.private-client {
    padding: 100px 8% !important;
}

.private-client-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ---------- ABOUT ---------- */

.about-section,
.ceo-section,
.values-section {
    padding: 120px 8% !important;
}

.about-grid,
.ceo-grid,
.values-grid {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* ---------- CONTACT ---------- */

.contact-section {
    padding: 120px 8% !important;
}

.contact-grid {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* ---------- CALCULATOR ---------- */

.calculator-section {
    padding: 120px 8% !important;
}

.calculator-section > .section-heading {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.calculator-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ---------- FOOTER ---------- */

.footer,
footer {
    box-sizing: border-box;
}


/* =========================================================
   DESKTOP NAVBAR
========================================================= */

@media (min-width: 951px) {

    .navbar .menu-button {
        display: none !important;
    }

    .navbar .desktop-nav {
        display: flex !important;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 950px) {

    .navbar {
        height: 75px !important;
        min-height: 75px !important;
        padding: 0 6% !important;
    }

    .navbar .desktop-nav,
    .navbar .nav-contact {
        display: none !important;
    }

    .navbar .nav-right {
        margin-left: auto;
    }

    .navbar .menu-button {
        display: flex !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .navbar {
        padding: 0 5% !important;
    }

    .navbar .brand-symbol {
        width: 42px !important;
        height: 42px !important;
    }

    .residences,
    .mumbai-intro,
    .location-section,
    .expertise,
    .investment-section,
    .private-client,
    .about-section,
    .ceo-section,
    .values-section,
    .contact-section,
    .calculator-section {
        padding-left: 6% !important;
        padding-right: 6% !important;
    }

}
/* =========================================================
   NAVBAR FINAL FIX
========================================================= */

.navbar {
    background: #421d35 !important;
    width: 100%;
    height: 90px !important;
    padding: 0 !important;
    position: relative;
    z-index: 1000;
}

.nav-inner {
    width: 86%;
    max-width: 1400px;
    height: 90px;
    margin: 0 auto;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px;

    box-sizing: border-box;
}

/* LOGO + NAME */

.nav-inner .brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-inner .brand-symbol {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 0 !important;
}

.nav-inner .brand-symbol img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
}

.nav-inner .brand-text {
    display: flex !important;
    flex-direction: column !important;
    white-space: nowrap;
}

/* NAV LINKS */

.nav-inner .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 34px;
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-inner .desktop-nav a {
    color: #ffffff !important;
    white-space: nowrap;
    text-decoration: none;
}

.nav-inner .desktop-nav a:hover,
.nav-inner .desktop-nav a.active {
    color: #d6b06a !important;
}

/* RIGHT SIDE */

.nav-inner .nav-contact {
    color: #ffffff !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-inner .menu-button {
    display: none !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 950px) {

    .nav-inner {
        width: 90%;
        height: 75px;
    }

    .navbar {
        height: 75px !important;
    }

    .nav-inner .desktop-nav,
    .nav-inner .nav-contact {
        display: none !important;
    }

    .nav-inner .menu-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

}


@media (max-width: 600px) {

    .nav-inner {
        width: 90%;
    }

    .nav-inner .brand-symbol {
        width: 42px !important;
        height: 42px !important;
        flex-basis: 42px !important;
    }

}
/* =========================================================
   DESKTOP NAVBAR ALIGNMENT
========================================================= */

@media (min-width: 951px) {

    .navbar {
        width: 100% !important;
        padding: 0 !important;
    }

    .nav-inner {
        width: 100% !important;
        max-width: none !important;
        height: 90px !important;
        margin: 0 !important;
        padding: 0 10px !important;
        box-sizing: border-box;

        display: flex !important;
        align-items: center !important;
    }

    .nav-inner .brand {
        margin-left: 0 !important;
    }

    .nav-inner .desktop-nav {
        margin-left: auto !important;
        margin-right: 35px !important;
    }

    .nav-inner .nav-right {
        margin-left: 0 !important;
        margin-right: 5px !important;
    }

}
@media (min-width: 951px) {

    .nav-inner {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .desktop-nav {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
    }

    .nav-contact {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

}
@media (min-width: 951px) {

    .nav-inner {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .desktop-nav {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
    }

    .nav-contact {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

}
/* =========================================================
   LOCATION SECTION - FINAL DESKTOP ALIGNMENT
========================================================= */

@media (min-width: 951px) {

    .location-section {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 8% !important;
        padding-right: 8% !important;
    }

    .location-section .section-heading {
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto 60px !important;

        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-end !important;
        gap: 60px !important;
    }

    .location-section .location-grid {
        display: grid !important;

        width: 100% !important;
        max-width: 1200px !important;

        margin: 0 auto !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 24px !important;

        box-sizing: border-box !important;
    }

    .location-section .location-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        box-sizing: border-box !important;

        padding: 45px !important;
    }

    .location-section .location-card h3 {
        font-size: 38px !important;
        line-height: 1.15 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .location-section .location-card p {
        width: 100% !important;
        max-width: 100% !important;
    }

}
/* =========================================================
   LOCAL KNOWLEDGE / LOCATION MAP ALIGNMENT
========================================================= */

.location-map {
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 8% !important;
    padding-right: 8% !important;
}

.location-map-content {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.location-map-content h2,
.location-map-content p,
.location-map-content .eyebrow {
    max-width: 700px;
}

.location-map-content p {
    line-height: 1.8;
}


/* MOBILE */

@media (max-width: 600px) {

    .location-map {
        padding-left: 6% !important;
        padding-right: 6% !important;
    }

}
/* =========================================================
   FOOTER - SAME ALIGNMENT ON ALL PAGES
========================================================= */

footer {
    width: 100% !important;
    background: #421d35 !important;
    color: #fff !important;
    box-sizing: border-box !important;
    padding: 80px 8% 25px !important;
}

.footer-main {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 60px !important;

    box-sizing: border-box !important;
}

.footer-brand {
    display: block !important;
}

.footer-logo {
    color: #fff !important;
    font-size: 21px !important;
    letter-spacing: 2px !important;
    white-space: nowrap !important;
}

.footer-logo span {
    color: #d6b06a !important;
}

.footer-brand p {
    color: rgba(255,255,255,.7) !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
    margin-top: 25px !important;
}

.footer-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.footer-column h4 {
    color: #d6b06a !important;
    font-size: 9px !important;
    letter-spacing: 2px !important;
    margin-bottom: 12px !important;
}

.footer-column a {
    color: rgba(255,255,255,.75) !important;
    font-size: 12px !important;
    text-decoration: none !important;
}

.footer-column a:hover {
    color: #d6b06a !important;
}

.footer-column p {
    color: rgba(255,255,255,.7) !important;
    font-size: 12px !important;
    line-height: 1.8 !important;
    margin: 0 !important;
}

.rera {
    color: rgba(255,255,255,.5) !important;
    font-size: 9px !important;
    margin-top: 25px !important;
    letter-spacing: 1px !important;
}

.footer-bottom {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 60px auto 0 !important;
    padding-top: 20px !important;

    border-top: 1px solid rgba(255,255,255,.15) !important;

    display: flex !important;
    justify-content: space-between !important;
    gap: 20px !important;

    color: rgba(255,255,255,.45) !important;
    font-size: 9px !important;
}


/* MOBILE */

@media (max-width: 800px) {

    footer {
        padding: 60px 6% 25px !important;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px 25px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 10px !important;
    }

}


@media (max-width: 500px) {

    .footer-main {
        grid-template-columns: 1fr !important;
    }

}
/* =========================================================
   NAVBAR - FINAL DESKTOP SPACING FIX
========================================================= */

@media (min-width: 951px) {

    .nav-inner {
        width: 100% !important;
        max-width: none !important;
        padding: 0 4% !important;
        box-sizing: border-box !important;
        gap: 20px !important;
    }

    .nav-inner .desktop-nav {
        display: flex !important;
        align-items: center !important;
        gap: 26px !important;
        margin-left: auto !important;
        margin-right: 20px !important;
        flex-shrink: 1 !important;
    }

    .nav-inner .desktop-nav a {
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .nav-inner .nav-right {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    .nav-inner .nav-contact {
        white-space: nowrap !important;
        font-size: 13px !important;
        padding: 0 !important;
    }

}


/* =========================================================
   SMALL DESKTOP / LAPTOP
========================================================= */

@media (min-width: 951px) and (max-width: 1200px) {

    .nav-inner {
        padding: 0 3% !important;
        gap: 12px !important;
    }

    .nav-inner .desktop-nav {
        gap: 18px !important;
        margin-right: 12px !important;
    }

    .nav-inner .desktop-nav a,
    .nav-inner .nav-contact {
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }

    .nav-inner .brand-text strong {
        font-size: 18px !important;
    }

}
/* =========================================================
   NAVBAR - EQUAL GAP
========================================================= */

@media (min-width: 951px) {

    .nav-inner {
        width: 100% !important;
        max-width: none !important;
        height: 90px !important;
        padding: 0 35px !important;
        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .nav-inner .desktop-nav {
        display: flex !important;
        align-items: center !important;

        /* SAME GAP EVERYWHERE */
        gap: 28px !important;

        margin-left: auto !important;
        margin-right: 35px !important;

        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }

    .nav-inner .desktop-nav a {
        font-size: 12px !important;
        letter-spacing: 1.2px !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }

    .nav-inner .nav-right {
        display: flex !important;
        align-items: center !important;

        margin: 0 !important;
        padding: 0 !important;

        flex: 0 0 auto !important;
    }

    .nav-inner .nav-contact {
        font-size: 12px !important;
        letter-spacing: 1.2px !important;
        white-space: nowrap !important;
        margin: 0 !important;
        padding: 0 !important;
    }

}


/* SMALL DESKTOP */

@media (min-width: 951px) and (max-width: 1200px) {

    .nav-inner {
        padding: 0 25px !important;
    }

    .nav-inner .desktop-nav {
        gap: 20px !important;
        margin-right: 25px !important;
    }

    .nav-inner .desktop-nav a,
    .nav-inner .nav-contact {
        font-size: 10px !important;
        letter-spacing: 1px !important;
    }

}
/* =========================================================
   NAVBAR - PERFECT EQUAL SPACING
========================================================= */

@media (min-width: 951px) {

    .nav-inner {
        width: 100% !important;
        max-width: none !important;
        height: 90px !important;
        padding: 0 35px !important;
        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .nav-inner .desktop-nav {
        display: flex !important;
        align-items: center !important;

        gap: 28px !important;

        margin-left: auto !important;
        margin-right: 28px !important;

        padding: 0 !important;
        flex: 0 0 auto !important;

        white-space: nowrap !important;
    }

    .nav-inner .desktop-nav a {
        margin: 0 !important;
        padding: 0 !important;

        font-size: 12px !important;
        letter-spacing: 1.2px !important;

        white-space: nowrap !important;
    }

    .nav-inner .nav-right {
        display: flex !important;
        align-items: center !important;

        margin: 0 !important;
        padding: 0 !important;

        flex: 0 0 auto !important;
    }

    .nav-inner .nav-contact {
        margin: 0 !important;
        padding: 0 !important;

        font-size: 12px !important;
        letter-spacing: 1.2px !important;

        white-space: nowrap !important;
    }

}


/* SMALL DESKTOP */

@media (min-width: 951px) and (max-width: 1200px) {

    .nav-inner {
        padding: 0 25px !important;
    }

    .nav-inner .desktop-nav {
        gap: 20px !important;
        margin-right: 20px !important;
    }

    .nav-inner .desktop-nav a,
    .nav-inner .nav-contact {
        font-size: 10px !important;
        letter-spacing: 1px !important;
    }

}
/* =========================================================
   FINAL NAVBAR SPACING FIX
========================================================= */

@media (min-width: 951px) {

    .nav-inner {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 35px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* NAVIGATION */
    .nav-inner .desktop-nav {
        display: flex !important;
        align-items: center !important;

        gap: 28px !important;

        margin-left: auto !important;
        margin-right: 0 !important;

        padding: 0 !important;

        flex: 0 0 auto !important;
        width: auto !important;
    }

    .nav-inner .desktop-nav a {
        display: block !important;

        margin: 0 !important;
        padding: 0 !important;

        white-space: nowrap !important;

        font-size: 12px !important;
        letter-spacing: 1.2px !important;
    }

    /* ENQUIRE */
    .nav-inner .nav-right {
        display: flex !important;
        align-items: center !important;

        margin-left: 28px !important;
        margin-right: 0 !important;

        padding: 0 !important;

        width: auto !important;
        min-width: 0 !important;

        flex: 0 0 auto !important;
    }

    .nav-inner .nav-right .nav-contact {
        display: block !important;

        margin: 0 !important;
        padding: 0 !important;

        white-space: nowrap !important;

        font-size: 12px !important;
        letter-spacing: 1.2px !important;
    }

}


/* =========================================================
   SMALL DESKTOP
========================================================= */

@media (min-width: 951px) and (max-width: 1200px) {

    .nav-inner {
        padding: 0 25px !important;
    }

    .nav-inner .desktop-nav {
        gap: 20px !important;
    }

    .nav-inner .nav-right {
        margin-left: 20px !important;
    }

    .nav-inner .desktop-nav a,
    .nav-inner .nav-right .nav-contact {
        font-size: 10px !important;
        letter-spacing: 1px !important;
    }

}
.navbar {
    width: 100%;
    height: 90px;
    background: #421d35;
    box-sizing: border-box;
}

.nav-inner {
    width: 100%;
    height: 90px;
    padding: 0 54px;
    margin: 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-symbol {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
    border: 0;
}

.brand-symbol img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    display: block;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 1.2px;
}

.nav-right {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
/* RichesMaker Logo Colors */
.brand-text strong {
    color: #ffffff !important;
}

.brand-text strong span {
    color: #C6A15B !important;
}

.brand-text small {
    color: #C6A15B !important;
}
/* RICHESMAKER BRAND - ALL PAGES */
.navbar .brand .brand-text strong {
    color: #ffffff !important;
}

.navbar .brand .brand-text strong span {
    color: #C6A15B !important;
}

.navbar .brand .brand-text small {
    color: #C6A15B !important;
}
/* RICHESMAKER LOGO */
.brand-text strong {
    color: #ffffff !important;
}

.brand-text strong span {
    color: #C6A15B !important;
}

.brand-text small {
    color: #C6A15B !important;
}
/* =========================================================
   RICHESMAKER — FINAL NAVBAR FIX
========================================================= */

/* DESKTOP LOGO */
.navbar .brand-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.navbar .brand-text strong {
    color: #ffffff !important;
    white-space: nowrap !important;
}

.navbar .brand-text strong span {
    color: #C6A15B !important;
}

.navbar .brand-text small {
    color: #C6A15B !important;
}


/* DESKTOP NAVBAR ALIGNMENT */
@media (min-width: 951px) {

    .navbar {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .navbar .nav-inner {
        width: 100% !important;
        max-width: none !important;
        height: 90px !important;

        padding-left: 54px !important;
        padding-right: 54px !important;

        margin: 0 !important;

        display: flex !important;
        align-items: center !important;

        box-sizing: border-box !important;
    }

    .navbar .brand {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        margin: 0 !important;
        padding: 0 !important;

        flex-shrink: 0 !important;
    }

    .navbar .desktop-nav {
        display: flex !important;
        align-items: center !important;

        margin-left: auto !important;
        margin-right: 0 !important;

        gap: 28px !important;

        padding: 0 !important;
    }

    .navbar .desktop-nav a {
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
    }

    .navbar .nav-right {
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
    }

    .navbar .menu-button {
        display: none !important;
    }
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 950px) {

    .navbar {
        width: 100% !important;
        height: 76px !important;
        box-sizing: border-box !important;
    }

    .navbar .nav-inner {
        width: 100% !important;
        height: 76px !important;

        padding-left: 18px !important;
        padding-right: 18px !important;

        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        box-sizing: border-box !important;
    }

    /* LOGO MUST STAY LEFT */
    .navbar .brand {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        margin: 0 !important;
        padding: 0 !important;

        flex: 0 0 auto !important;
    }

    .navbar .brand-symbol {
        width: 42px !important;
        height: 42px !important;
        flex-shrink: 0 !important;
    }

    .navbar .brand-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;

        text-align: left !important;
        margin-left: 8px !important;
    }

    .navbar .brand-text strong {
        font-size: 15px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .navbar .brand-text strong span {
        color: #C6A15B !important;
    }

    .navbar .brand-text small {
        font-size: 7px !important;
        line-height: 1.2 !important;
        letter-spacing: 1.5px !important;
        color: #C6A15B !important;
    }

    /* HIDE DESKTOP LINKS */
    .navbar .desktop-nav {
        display: none !important;
    }

    /* MENU BUTTON ON RIGHT */
    .navbar .nav-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        margin-left: auto !important;
        margin-right: 0 !important;

        flex: 0 0 auto !important;
    }

    .navbar .menu-button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;
        padding: 0 !important;
    }
}


/* =========================================================
   MOBILE MENU LOGO
========================================================= */

.mobile-menu .mobile-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
}

.mobile-menu .mobile-brand img {
    width: 42px !important;
    height: 42px !important;

    object-fit: contain !important;
    flex-shrink: 0 !important;
}

.mobile-menu .mobile-brand-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;

    margin-left: 9px !important;
    text-align: left !important;
}

.mobile-menu .mobile-brand-text strong {
    color: #ffffff !important;
    white-space: nowrap !important;
}

.mobile-menu .mobile-brand-text strong span {
    color: #C6A15B !important;
}

.mobile-menu .mobile-brand-text small {
    color: #C6A15B !important;
}


/* MOBILE MENU CONTENT — LEFT LOGO */
@media (max-width: 950px) {

    .mobile-menu .mobile-menu-inner {
        position: relative !important;
    }

    .mobile-menu .mobile-brand {
        position: absolute !important;
        top: 24px !important;
        left: 20px !important;
    }

    .mobile-menu .mobile-close {
        position: absolute !important;
        top: 22px !important;
        right: 20px !important;
    }
}
/* =========================================
   FINAL NAVBAR + CEO IMAGE FIX
========================================= */

/* Navbar logo spacing */
.brand-text {
    margin-left: 8px !important;
}

/* CEO / About image */
.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile logo spacing */
@media (max-width: 950px) {
    .brand-text {
        margin-left: 5px !important;
    }

    .mobile-brand-text {
        margin-left: 5px !important;
    }
}
/* =========================================
   MOBILE MENU - REMOVE DUPLICATE LOGO
========================================= */

@media (max-width: 950px) {

    /* Keep the main navbar visible */
    .navbar {
        position: relative;
        z-index: 100000;
    }

    /* Mobile menu opens below the navbar */
    .mobile-menu {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100vh - 76px) !important;
        z-index: 99999 !important;
    }

    /* Remove duplicate logo inside menu */
    .mobile-brand {
        display: none !important;
    }

    /* Start menu links properly */
    .mobile-links {
        margin-top: 20px !important;
    }
}

@media (max-width: 600px) {

    .mobile-menu {
        top: 76px !important;
        height: calc(100vh - 76px) !important;
    }

    .mobile-links {
        margin-top: 20px !important;
    }
}
/* =========================================
   MOBILE ONLY - FIX DUPLICATE LOGO
========================================= */

@media (max-width: 950px) {

    /* Keep the main navbar above the mobile menu */
    .navbar {
        position: relative !important;
        z-index: 100000 !important;
    }

    /* Mobile menu starts BELOW the navbar */
    .mobile-menu {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100vh - 76px) !important;
        z-index: 99999 !important;
    }

    /* COMPLETELY HIDE the duplicate logo */
    .mobile-menu .mobile-brand,
    .mobile-menu .mobile-brand img,
    .mobile-menu .mobile-brand-text {
        display: none !important;
        visibility: hidden !important;
    }

    /* Menu links start from the top */
    .mobile-menu .mobile-links {
        margin-top: 15px !important;
        padding-top: 0 !important;
    }
}

/* Smaller phones */
@media (max-width: 600px) {

    .mobile-menu {
        top: 76px !important;
        height: calc(100vh - 76px) !important;
    }

    .mobile-menu .mobile-links {
        margin-top: 15px !important;
    }
}
/* =====================================================
   FINAL MOBILE MENU FIX
===================================================== */

@media (max-width: 950px) {

    /* Main navbar */
    .navbar {
        position: relative !important;
        height: 76px !important;
        z-index: 100000 !important;
    }

    .nav-inner {
        height: 76px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* Logo */
    .brand {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .brand-text {
        margin-left: 5px !important;
    }

    /* Hamburger */
    .nav-right {
        display: flex !important;
        margin-left: auto !important;
    }

    .menu-button {
        display: flex !important;
    }


    /* ===============================
       MOBILE MENU
    =============================== */

    .mobile-menu {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100% !important;
        height: calc(100vh - 76px) !important;

        background: #421d35 !important;

        z-index: 99999 !important;

        overflow-y: auto !important;
        overflow-x: hidden !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .mobile-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }


    /* Remove second logo */
    .mobile-menu .mobile-brand {
        display: none !important;
    }


    /* ===============================
       CLOSE BUTTON
       ALWAYS TOP RIGHT
    =============================== */

    .mobile-menu .mobile-close {
        position: fixed !important;

        top: 88px !important;
        right: 18px !important;

        width: 36px !important;
        height: 36px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 0 !important;
        margin: 0 !important;

        background: transparent !important;
        border: 0 !important;

        color: #ffffff !important;

        font-size: 28px !important;
        line-height: 1 !important;

        z-index: 100001 !important;
    }


    /* ===============================
       MENU LINKS
    =============================== */

    .mobile-menu nav,
    .mobile-menu .mobile-links {
        width: auto !important;

        display: flex !important;
        flex-direction: column !important;

        margin: 55px 20px 0 !important;
        padding: 0 !important;

        gap: 0 !important;
    }

    .mobile-menu nav a,
    .mobile-menu .mobile-links a {
        display: block !important;

        width: 100% !important;

        padding: 15px 0 !important;
        margin: 0 !important;

        color: #ffffff !important;

        font-family: "DM Sans", sans-serif !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;

        text-decoration: none !important;

        border-bottom: 1px solid rgba(255,255,255,0.10) !important;
    }


    /* Phone */
    .mobile-menu .mobile-call {
        display: inline-block !important;

        margin: 28px 20px !important;

        color: #C6A15B !important;

        font-size: 12px !important;
        text-decoration: none !important;
    }

    body.menu-open {
        overflow: hidden !important;
    }
}


/* Small phones */
@media (max-width: 600px) {

    .mobile-menu .mobile-close {
        top: 88px !important;
        right: 14px !important;
    }

    .mobile-menu nav,
    .mobile-menu .mobile-links {
        margin: 55px 20px 0 !important;
    }

    .mobile-menu nav a,
    .mobile-menu .mobile-links a {
        font-size: 15px !important;
        padding: 15px 0 !important;
    }
}
/* =====================================================
   PROPERTIES PAGE — COLLECTION HEADING FIX
===================================================== */

.collection-section h2,
.properties-section h2 {
    white-space: nowrap !important;
    line-height: 1.05 !important;
}

.collection-section h2 em,
.properties-section h2 em {
    display: inline !important;
}

/* Reduce excessive gap before property cards */
.collection-section .property-grid,
.properties-section .property-grid {
    margin-top: 45px !important;
}
/* =====================================================
   PROPERTY CARDS — SAME IMAGE SIZE
===================================================== */

.property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.property-card {
    overflow: hidden;
}

.property-image {
    width: 100% !important;
    height: 540px !important;
    overflow: hidden !important;
    position: relative !important;
}

.property-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
}


/* Mobile */
@media (max-width: 700px) {

    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-image {
        height: 420px !important;
    }
}
/* =====================================================
   PROPERTY CARDS — FINAL CLEAN DESIGN
===================================================== */

.property-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:32px;
    align-items:start;
}

.property-card{
    background:#ffffff;
    overflow:hidden;
    position:relative;
}


/* IMAGE */

.property-image{
    width:100% !important;
    height:430px !important;
    overflow:hidden !important;
    position:relative !important;
}

.property-image img{
    width:100% !important;
    height:100% !important;
    display:block !important;

    object-fit:cover !important;
    object-position:center !important;
}


/* CONTENT */

.property-content{
    background:#fff !important;

    padding:26px 28px 30px !important;

    position:relative !important;
    z-index:2 !important;
}


/* LOCATION */

.property-location{
    display:block !important;

    color:#b28a45 !important;

    font-family:"DM Sans",sans-serif !important;

    font-size:8px !important;
    font-weight:500 !important;

    letter-spacing:2.5px !important;

    margin:0 0 14px !important;

    position:static !important;
}


/* TITLE */

.property-content h3{
    color:#29101f !important;

    font-family:"Playfair Display",serif !important;

    font-size:34px !important;
    font-weight:400 !important;

    line-height:1.12 !important;

    letter-spacing:-.5px !important;

    margin:0 0 12px !important;

    position:static !important;
}


/* DESCRIPTION */

.property-content p{
    color:#756a71 !important;

    font-family:"DM Sans",sans-serif !important;

    font-size:11px !important;

    line-height:1.7 !important;

    margin:0 !important;

    min-height:auto !important;

    position:static !important;
}


/* FOOTER */

.property-footer{
    display:flex !important;

    align-items:center !important;
    justify-content:space-between !important;

    margin-top:24px !important;

    padding-top:17px !important;

    border-top:1px solid rgba(85,39,67,.12) !important;

    position:static !important;
}

.property-footer span{
    color:#552743 !important;

    font-family:"DM Sans",sans-serif !important;

    font-size:8px !important;

    font-weight:500 !important;

    letter-spacing:1.5px !important;

    text-transform:uppercase !important;
}

.property-footer a{
    color:#b28a45 !important;

    font-size:20px !important;

    line-height:1 !important;

    text-decoration:none !important;

    transition:transform .25s ease !important;
}

.property-footer a:hover{
    transform:translateX(5px) !important;
}


/* =====================================================
   DESKTOP — THIRD CARD
===================================================== */

@media (min-width:901px){

    .property-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width:900px){

    .property-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .property-image{
        height:400px !important;
    }

    .property-content h3{
        font-size:32px !important;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:600px){

    .property-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .property-image{
        height:350px !important;
    }

    .property-content{
        padding:23px 22px 26px !important;
    }

    .property-content h3{
        font-size:29px !important;
        line-height:1.15 !important;
    }

    .property-content p{
        font-size:11px !important;
    }
}
/* FIX IMAGE JOIN / OVERLAP */
.property-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 32px !important;
    row-gap: 50px !important;
}

.property-card {
    min-width: 0 !important;
    overflow: hidden !important;
}

.property-image {
    width: 100% !important;
    height: 430px !important;
    overflow: hidden !important;
    display: block !important;
}

.property-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 700px) {
    .property-grid {
        grid-template-columns: 1fr !important;
        column-gap: 0 !important;
        row-gap: 30px !important;
    }

    .property-image {
        height: 350px !important;
    }
}
/* FIX — PRIVATE CLIENT IMAGE SECTION */
.private-client {
    min-height: 620px !important;
    position: relative !important;
    overflow: hidden !important;
}

.private-client .private-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
}

.private-client .private-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.private-client .private-content {
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 950px) {
    .private-client {
        min-height: 560px !important;
    }
}
/* =========================================================
   FINAL FIX — PRIVATE CLIENT SECTION
========================================================= */

.private-client {
    position: relative !important;
    width: 100% !important;
    height: 620px !important;
    min-height: 620px !important;
    max-height: none !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
}

.private-client .private-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.private-client .private-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.private-client .private-content {
    position: relative !important;
    z-index: 5 !important;
}

@media (max-width: 950px) {
    .private-client {
        height: 560px !important;
        min-height: 560px !important;
    }
}