/* @import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@font-face {
    font-family: head;
    src: url(/assets/fonts/helvetica-255/Helvetica.ttf);
}


@font-face {
    font-family: para;
    src: url(/assets/fonts/Urbanist/Urbanist-VariableFont_wght.ttf);
}



:root {
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
}

body {
    overflow-x: hidden;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    background-color: rgb(240, 240, 240);
}

header.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px;
    position: relative;
    width: 100%;
    z-index: 1000;
    /* Increased to ensure it stays on top */
    height: 100px;
    font-family: para;
}

.nav-logo {
    width: 15%;
    position: relative;
}

.nav-logo img {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    z-index: 1002;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 5px;
    border-radius: 10px;
    position: fixed;
    background-color: #333;
    right: 100px;
    top: 2.5%;
    z-index: 101;
}

.nav-links li {
    position: relative;
}

/* Updated selector to include the span trigger */
.nav-links li a,
.dropdown-trigger {
    padding: 10px 20px;
    text-decoration: none;
    font-family: para;
    font-size: 18px;
    color: #ffffff;
    transition: all 0.4s ease;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 8px;
    display: block;
    cursor: pointer;
    /* Makes it feel like a link */
}

.nav-links li a:hover,
.dropdown-trigger:hover {
    background-color: #fff;
    color: #000;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    width: max-content;
    min-width: 150px;
    list-style: none;
    border-radius: 10px;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99;
}

/* Hover logic for Desktop */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-menu li a {
    font-size: 16px;
    text-align: center;
    width: 100%;
    background: transparent;
    color: #ffffff;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    header.main-header {
        padding: 10px 10px;
        height: 70px;
    }

    .nav-logo {
        width: 150px;
    }

    .menu-toggle {
        display: block;
        background-color: #333;
        padding: 10px;
        border-radius: 10px;
        font-size: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #222;
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease-in-out;
        border-radius: 0;
        padding: 0px;
        right: -100%;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 10px 0;
        width: 80%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    /* Mobile Dropdown adjustment */
    .dropdown-menu {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Controlled by JS */
        background-color: #444;
        padding: 0;
        margin: 10px 0px 0px 0px;
    }

    .dropdown-menu li a {
        padding: 10px 0px;
    }

    /* Arrow rotation on mobile */
    .dropdown.active i {
        transform: rotate(180deg);
    }
}



/* --- HERO SECTION --- */
.home-hero-section {
    height: 100vh;
    /* Set to 100vh for full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000081;
    z-index: -1;
}

.home-hero-lr {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: flex-end;
    /* Align bottom items on desktop */
    height: auto;
    z-index: 10;
    margin-top: 0px;
}

.home-hero-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    width: 60%;
}

.home-hero-left-heading {
    font-size: clamp(80px, 5vw, 100px);
    /* Fluid typography */
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin: 0;
    line-height: 1;
    /* text-transform: uppercase; */
}



.home-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
    justify-content: flex-end;
    width: 35%;
}

.home-hero-right p {
    font-size: 22px;
    font-family: 'para', sans-serif;
    font-weight: 500;
    color: #fff;
    width: 100%;
    letter-spacing: 1px;
    text-align: right;
    margin: 0;
    line-height: 1.5;
}

.home-hero-btn {
    font-size: 17px;
    font-family: 'para', sans-serif;
    border: 2px solid #fff;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 50px;
    padding: 10px 10px 10px 25px;
    transition: all 0.4s ease;
    font-weight: 600;
    width: fit-content;
}

.home-hero-btn:hover {
    background-color: #fff;
    color: #000;
}

.home-hero-btn i {
    background-color: #fff;
    color: #000;
    padding: 12px;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-btn:hover i {
    background-color: #000;
    color: #fff;
    transform: rotate(-45deg);
}

/* --- Responsive Media Queries --- */
@media(max-width: 1570px) {
    .home-hero-left-heading {
        font-size: 65px;
    }

    .home-hero-right p {
        font-size: 20px;
    }

    .home-hero-btn {
        font-size: 16px;
        padding: 7px 7px 7px 22px;
    }
}

@media (max-width: 1200px) {
    .home-hero-section {
        padding: 0 50px;
    }

    .home-hero-left-heading {
        font-size: 70px;
    }

}

@media (max-width: 992px) {
    .home-hero-lr {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
        margin-top: 50px;
    }

    .home-hero-left,
    .home-hero-right {
        width: 100%;
        align-items: flex-start;
    }

    .home-hero-right p {
        text-align: left;
        font-size: 18px;
        width: 90%;
    }

    .home-hero-left-heading {
        font-size: 55px;
    }
}

@media (max-width: 600px) {
    .home-hero-section {
        height: 80vh;
    }

    .home-hero-section {
        padding: 0 25px;
    }

    .home-hero-left-heading {
        font-size: 42px;
    }

    .home-hero-lr {
        gap: 30px;
    }

    .home-hero-right p {
        font-size: 16px;
        width: 100%;
    }

    .home-hero-btn {
        font-size: 14px;
        padding: 8px 8px 8px 20px;
    }

    .home-hero-btn i {
        padding: 10px;
    }
}





.about-section-container {
    width: 100%;
    padding: 0px 0;
    overflow: hidden;
}

/* MAIN LAYOUT */
.about-section-content {
    display: flex;
    align-items: center;
    gap: 0px;
}

/* TEXT SIDE */
.about-section-text-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px;
}

.about-section-tag {
    font-family: para;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    color: #B88905;
}

.about-section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    opacity: 0;
}

.about-section-span {
    background: linear-gradient(135deg, #3a2a13 0%, #ad8a33 50%, #f5d97c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section-paragraph {
    font-family: para;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    opacity: 0;
}

/* IMAGE SIDE */
.about-section-image-wrapper {
    width: 50%;
    height: 100vh;
}

.about-section-pixel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1400px) {
    .about-section-heading {
        font-size: 40px;
    }

    .about-section-paragraph {
        font-size: 18px;
    }
}

@media (max-width: 968px) {
    .about-section-container {
        padding: 80px 0;
    }

    .about-section-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 24px;
    }

    .about-section-text-wrapper,
    .about-section-image-wrapper {
        width: 100%;
        padding: 0px;
    }

    .about-section-heading {
        font-size: 42px;
    }

    .about-section-paragraph {
        font-size: 16px;
        max-width: 100%;
    }

    .about-section-image-wrapper {
        height: 400px;
    }

    .about-section-image {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .about-section-heading {
        font-size: 34px;
    }

    .about-section-tag {
        font-size: 14px;
    }
}


/* --- CSS START --- */
.home-project-section {
    padding: 80px 100px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 40px;
    overflow: visible;
    /* background: #fff; */
}

.home-project-header {
    text-align: center;
    margin-bottom: 20px;
}

.home-project-title {
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 400;
    margin-bottom: 50px;
}

.home-project-span {
    /* background: linear-gradient(180deg, #F0E6B2 0%, #C9A321 30%, #F9E27D 70%, #B88905 100%); */
    background: linear-gradient(135deg, #3a2a13 0%, #ad8a33 50%, #f5d97c 100%);

    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.home-project-title-highlight {
    color: #e8b923;
    /* Default Gold */
    font-weight: 500;
}

/* --- LUXURY TABS STYLING --- */
.home-project-tabs {
    display: flex;
    gap: 20px;
    /* margin-bottom: 50px; */
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 8px;
    border-radius: 60px;
    width: fit-content;
}

.home-project-tab {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: para;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.home-project-tab:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.05);
}

/* Active State handled by JS for dynamic colors */
.home-project-tab.active {
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-2px); */
}

/* --- CAROUSEL STYLING --- */
.home-project-carousel-container {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    overflow-x: hidden;
    opacity: 0;
    display: none;
}

/* Helper to show the first one by default if JS fails, 
           but JS will override this immediately */
#residential {
    display: block;
    opacity: 1;
}


.home-project-carousel-track {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    will-change: transform;
}

.home-project-card {
    min-width: 100%;
    display: flex;
    background: transparent;
    border-radius: 0;
    /* overflow: hidden; */
    position: relative;
}

.home-project-image {
    flex: 0 0 60%;
    /* Increased image ratio slightly for luxury feel */
    overflow: hidden;
    border-radius: 30px;
    height: 700px;
    position: relative;
}

@media(max-width: 1550px) {
    .home-project-image {
        height: 600px;
    }
}

.home-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-project-content {
    flex: 0 0 40%;
    margin-left: -5%;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 30px;
    background: rgba(237, 237, 237, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    z-index: 2;
}



.home-project-tag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: para;
}

.home-project-card-title {
    color: #1a1a1a;
    font-size: 60px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1;
    /* line-height: 1.1; */
    margin-bottom: 20px;
    /* letter-spacing: 3px; */
}

.home-project-description {
    color: #000000;
    font-family: para;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 100%;
    font-weight: 500;
}

.home-project-view-btn {
    align-self: flex-start;
    padding: 15px 40px;
    background: #000000;
    /* Default black, JS will override */
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: para;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    text-decoration: none;
}

.home-project-view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- NAVIGATION ARROWS --- */
.home-project-carousel-nav {
    position: absolute;
    right: 6%;
    top: 3%;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.home-project-nav-btn {
    /* width: 60px;
    height: 60px; */
    /* border-radius: 50%; */
    /* background: #1a1a1a; */
    /* JS will override this color */
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    color: #000000;
    background-color: transparent !important;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.home-project-nav-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

@media(max-width: 1550px) {
    .home-project-title {
        font-size: 80px;
        margin-bottom: 0px;
    }

    .home-project-description {
        font-size: 20px;
    }

    .home-project-card-title {
        font-size: 40px;
        font-family: para;
        font-weight: 500;
    }
}

@media(max-width: 1400px) {
    .home-project-title {
        font-size: 60px;
        margin-bottom: 0px;
    }

    .home-project-description {
        font-size: 17px;
    }
}

/* Media Queries */
@media(max-width: 1200px) {
    .home-project-section {
        padding: 60px 40px;
    }

    .home-project-title {
        font-size: 60px;
    }

    .home-project-card-title {
        font-size: 40px;
    }

    .home-project-image {
        flex: 0 0 100%;
        margin-bottom: -100px;
    }

    .home-project-content {
        flex: 0 0 90%;
        margin-left: 0;
        margin-top: 0;
        padding: 40px;
    }

    .home-project-card {
        flex-direction: column;
    }
}

@media(max-width: 768px) {
    .home-project-section {
        padding: 60px 0px;
    }

    .home-project-title {
        font-size: 40px;
        margin: 0;
    }

    .home-project-tabs {
        justify-content: center;
        border-radius: 20px;
        width: 100%;
    }

    .home-project-tab {
        padding: 5px 10px;
        font-size: 12px;
    }

    .home-project-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .home-project-content {
        flex: 0 0 0%;
        height: fit-content;
        padding: 30px 20px;
    }

    .home-project-image {
        border-radius: 0px;
        flex: 0 0 60%;
    }

    .home-project-image img {
        height: 400px;
    }

    .home-project-description {
        font-size: 16px;
    }

    .home-project-card-title {
        font-size: 30px;
    }

    .home-project-view-btn {
        padding: 10px 25px;
    }
}










/* =========================================
           IMMERSIVE SCROLL SECTION
           ========================================= */

.immersive-section {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 400vh;
    display: block;
    /* background-color: #ffffff; */
    /* margin-top: 100vh; */
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- THE PILL --- */
.pill-object {
    height: 570px;
    width: 340px;
    background-color: #d6d6d6;
    border-radius: 999px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 5;
    will-change: transform, width, height, left, border-radius;
    mix-blend-mode: difference;
}

.pill-object video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pill-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* --- CENTER TEXT --- */
.center-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.im-head {
    font-size: 40px;
    font-family: para;
    font-weight: 500;
    width: 90%;
    word-break: keep-all;
    white-space: normal;
    color: #000;
}

.char-split {
    opacity: 0.1;
    display: inline-block;
    transition: opacity 0.1s;
}

/* --- RIGHT SIDE CONTENT --- */
.right-side-content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 40%;
    opacity: 0;
    z-index: 6;
    text-align: left;
}

.rs-tag {
    font-family: para;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 137.01%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    color: #B88905;
    display: block;
}

.rs-heading {
    font-size: 80px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif !important;
    margin-bottom: 40px;
    color: rgb(0, 0, 0);
    letter-spacing: 1;
    line-height: 1;
}

.rs-span {
    background: linear-gradient(135deg, #3a2a13 0%, #ad8a33 50%, #f5d97c 100%);

    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}


.rs-para {
    color: #000000;
    font-family: para;
    font-size: 22px;
    /* font-style: normal; */
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 137.01%;
    /* letter-spacing: 0.32px; */
}

.immersive-mobile-section {
    display: none;
}

@media(max-width: 1550px) {
    .im-head {
        font-size: 35px
    }


    .rs-heading {
        font-size: 60px;
    }

    .rs-para {
        margin-bottom: 10px;
    }
}

@media(max-width: 1400px) {
    .rs-heading {
        font-size: 40px;
    }

    .im-head {
        font-size: 30px;
    }

    .rs-para {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .immersive-section {
        display: none;
    }

    .immersive-mobile-section {
        width: 100%;
        background-color: #ffffff;
        padding: 80px 0;
        display: block;
    }

    /* ---------- VIDEO ---------- */

    .immersive-mobile-video-wrapper {
        position: relative;
        width: 100%;
        height: 60vh;
        overflow: hidden;
    }

    .immersive-mobile-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.1);
    }

    .immersive-mobile-video-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0.45) 100%);
    }

    /* ---------- CONTENT ---------- */

    .immersive-mobile-content-wrapper {
        padding: 56px 24px 0;
        opacity: 0;
        transform: translateY(40px);
    }

    .immersive-mobile-tag {
        display: block;
        font-family: para;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #b88905;
        margin-bottom: 14px;
    }

    .immersive-mobile-heading {
        font-family: para;
        font-size: 34px;
        font-weight: 500;
        line-height: 1.2;
        color: #000000;
        margin-bottom: 20px;
    }

    .immersive-mobile-text {
        font-family: para;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.65;
        color: #333333;
        max-width: 95%;
    }
}


/* Full width, no container */
.home-carousel-section {
    padding: 100px 0px;
}

.carousel-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 80px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    /* spacing between words */
}

.dynamic-wrapper {
    display: inline-flex;
    overflow: hidden;
    transition: width 0.8s ease;
    /* smooth width change */
}

#dynamicText {
    white-space: nowrap;
    /* background: linear-gradient(180deg, #F0E6B2 0%, #C9A321 30%, #F9E27D 70%, #B88905 100%); */
    background: linear-gradient(135deg, #3a2a13 0%, #ad8a33 50%, #f5d97c 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.static-text {
    display: inline-block;
}



.home-carousel-container {
    width: 100vw;
    overflow: hidden;
    /* padding: 100px 0px !important; */
}

.home-carousel-container-2 {
    width: 100vw;
    overflow: hidden;
    transform: rotate(180deg);
    /* padding: 100px 0px !important; */
}

/* Remove spacing entirely */
.slick-slider,
.slick-list,
.slick-track,
.slick-slide {
    margin: 0;
    padding: 0;
}

/* No gaps between slides */
.slick-slide {
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Full-height responsive images */
.home-carousel-slide {
    height: 40% !important;
}

.home-carousel-slide img {
    width: 100%;
    height: 100%;
    /* adjust height as needed */
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Full-height responsive images */
.home-carousel-slide-2 {
    height: 40% !important;
    transform: rotate(180deg);
}

.home-carousel-slide-2 img {
    width: 100%;
    height: 100%;
    /* adjust height as needed */
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.slick-arrow,
.slick-dots {
    display: none !important;
}

@media(max-width: 1400px) {
    .carousel-heading {
        font-size: 60px;
    }

}

@media(max-width: 768px) {
    .home-carousel-slide-2 {
        height: 200px !important;
    }

    .home-carousel-slide {
        height: 200px !important;
    }

    .carousel-heading {
        font-size: 50px;
        flex-direction: column;
        gap: 0;
    }
}



/********************************************************************** footer-section-start **********************************************************************/
/* --- FOOTER CONTAINER --- */
.main-footer-section {
    /* Pure white background */
    padding: 80px 5% 40px 5%;
    color: #1a1a1a;
    /* Soft black for luxury readability */
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.main-footer-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* --- SECTION 1: INVITATION ROW --- */
.main-footer-invitation-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 80px;
    border-bottom: 1px solid #eeeeee;
    /* Very subtle line */
}

.main-footer-small-label {
    font-family: 'para', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #5e5e5e;
    display: block;
    margin-bottom: 20px;
}

.main-footer-big-prompt {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.main-footer-cta-link {
    font-family: 'para', sans-serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    padding: 22px 45px;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-block;
}

.main-footer-cta-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.main-footer-arrow {
    margin-left: 15px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.main-footer-cta-link:hover .main-footer-arrow {
    transform: translateX(5px);
}

/* --- SECTION 2: DETAIL GRID --- */
.main-footer-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 80px 0;
}

.main-footer-grid-label {
    font-family: 'para', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #5f5f5f;
    display: block;
    margin-bottom: 30px;
}

.main-footer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-footer-item-link,
.main-footer-data-text {
    font-family: 'para', sans-serif;
    font-size: 1rem;
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    font-weight: 400;
}

.main-footer-data {
    text-decoration: none;
}

.main-footer-item-link:hover {
    color: #3a2a13;
}

/* --- SECTION 3: GRAND STATEMENT (WATERMARK) --- */
.main-footer-grand-statement {
    padding-top: 20px;
    pointer-events: none;
    user-select: none;
    position: absolute;
    bottom: 0%;
    right: 0;
    z-index: -10;
}

.main-footer-outline-logo {
    font-family: 'para', sans-serif;
    font-size: clamp(14rem, 15vw, 16rem);
    font-weight: 300;
    margin: 0;
    line-height: 0.8;
    text-align: center;
    color: #0000001e;
    letter-spacing: -0.05em;
}

/* --- SECTION 4: UTILITY BAR --- */
.main-footer-utility-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #f5f5f5;
}

.main-footer-copyright,
.main-footer-legal-link {
    font-family: 'para', sans-serif;
    font-size: 0.75rem;
    color: #aaa;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.main-footer-legal {
    display: flex;
    gap: 30px;
}

.main-footer-legal-link:hover {
    color: #1a1a1a;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .main-footer-invitation-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-bottom: 0px;
    }

    .main-footer-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .main-footer-grid-label {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .main-footer-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-footer-cta-link {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 15px 35px;
    }

    .main-footer-grand-statement {
        bottom: 6%;
        left: 0;
    }

    .main-footer-outline-logo {
        font-size: 4.5rem;
        color: #0000001e;
        font-weight: 300;
    }
}

/********************************************************************** footer-section-end   **********************************************************************/



/* about-hero-section-start */
.about-hero-section {
    /* Use 100svh to prevent height jumps on mobile browsers */
    height: 100vh;
    height: 100svh;
    width: 100%;
    background-image: url(/assets/images/banner/about-hero.JPG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.45);
    /* Adjusted for better readability */
    z-index: 10;
    width: 100%;
    height: 100%;
}

.about-hero-heading {
    /* clamp(minimum, preferred, maximum) */
    font-size: clamp(40px, 8vw, 100px);
    font-family: 'Outfit', serif;
    /* Ensure your 'para' font is loaded */
    font-weight: 400;
    position: relative;
    z-index: 11;
    text-align: center;
    color: #fff;
    /* text-transform: uppercase; */
    line-height: 1.1;
    padding: 0 20px;
    /* Prevents text from hitting screen edges on mobile */
}

.about-hero-span {
    background: linear-gradient(270deg, #ffbb00 0%, rgba(255, 208, 54, 1) 35%, rgba(255, 229, 112, 1) 68%, rgba(255, 241, 153, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Helps with rendering gradients on some browsers */
}

@media(max-width: 1550px) {
    .about-hero-heading {
        font-size: 80px;
    }
}

@media(max-width: 1400px) {
    .about-hero-heading {
        font-size: 60px;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .about-hero-section {
        background-position: 70% center;
        /* Adjusts image focal point for vertical screens */
        height: 80vh;
        /* Optionally make it slightly shorter on mobile */
    }

    .about-hero-heading {
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .about-hero-heading {
        /* Forces the break if needed or keeps it tight on small phones */
        font-size: 36px;
    }
}

/* about-hero-section-end   */


/* out-story-section-start */
.out-story-section {
    padding: 100px 5vw;
    /* Fluid side padding */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.out-story-wrapper {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
}

/* Header Section */
.out-story-header-row {
    padding-bottom: 40px;
    position: relative;
}

.out-story-meta {
    font-family: 'para', sans-serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    color: #555555;
}

.out-story-big-headline {
    font-family: 'Outfit', serif;
    /* Scales between 40px and 80px */
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

.out-story-italic {
    font-style: italic;
}

.out-story-span {
    background: linear-gradient(135deg, #3a2a13 0%, #ad8a33 50%, #f5d97c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.out-story-subheadline {
    font-size: clamp(18px, 2vw, 30px);
    font-family: 'para', sans-serif;
    margin: 30px 0 0 0;
    color: #333;
}

/* The Main Horizontal Divider */
.out-story-divider {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin-bottom: 20px;
}

/* The 3-Column Grid */
.out-story-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.out-story-column {
    padding: 40px 30px 40px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.out-story-column:first-child {
    padding-left: 0;
}

.out-story-column:last-child {
    border-right: none;
    padding-right: 0;
}

.out-story-col-title {
    font-family: 'para', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #000;
}

.out-story-text {
    font-family: 'para', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    color: #444;
}

.out-story-signature {
    margin-top: 30px;
    font-family: 'para', serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ad8a33;
}

/* --- Responsive Adjustments --- */

@media(max-width: 1400px) {
    .out-story-big-headline {
        font-size: 60px;
    }
}

@media (max-width: 1024px) {
    .out-story-content-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns for tablets */
    }

    .out-story-column:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .out-story-section {
        padding: 60px 25px;
    }

    .out-story-big-headline{
        font-size: 40px;
    }

    .out-story-content-grid {
        grid-template-columns: 1fr;
        /* Stacked for mobile */
    }

    .out-story-column {
        padding: 30px 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .out-story-column:last-child {
        border-bottom: none;
    }

    .out-story-text {
        max-width: 100%;
    }
}

/* about-story-section-end */




/****************************************************************** project-gallery-section-start ******************************************************************/
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* --- Desktop Styles (Unchanged) --- */
.project-gallery-section {
    display: flex;
    gap: 40px;
    height: 100vh;
    padding: 0 100px;
}

.project-gallery-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.project-gallery-track {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    width: 100%;
}

.project-gallery-card {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
}

/* --- Mobile "Proper" Layout Styles --- */
.project-mobile-gallery-section {
    padding: 60px 20px;
    background: #ffffff;
}

.project-mobile-gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.mobile-title {
    font-family: para;
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 500;
}

.mobile-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ad8a33;
    /* Gold Accent */
}

.project-mobile-grid {
    display: flex;
    gap: 15px;
    /* Space between columns */
}

.mobile-grid-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Space between images vertically */
}

/* This creates the editorial staggered look */
.mobile-grid-column.staggered {
    margin-top: 40px;
}

.project-mobile-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Fade in effect when page loads */
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/****************************************************************** project-gallery-section-end   ******************************************************************/


.our-approach-section {
    width: 100%;
    padding: 100px 5vw;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.our-approach-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* --- Left Column: Sticky on Desktop --- */
.our-approach-sticky-wrapper {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    /* Adjust based on your header height */
}

.approach-video-container {
    display: flex;
    align-items: flex-end;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
    width: 700px;

}

.our-approach-sticky-wrapper video {
    height: 700px;
    width: 100%;
    object-fit: cover;
}

.our-approach-heading {
    font-family: 'Outfit', serif;
    font-size: clamp(40px, 5vw, 80px);
    line-height: 1.1;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
    text-align: right;
}

.our-approach-heading span {
    background: linear-gradient(135deg, #3a2a13 0%, #ad8a33 50%, #f5d97c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.approach-tagline {
    font-size: clamp(18px, 2vw, 24px);
    font-family: 'para', sans-serif;
    margin-bottom: 10px;
    text-align: right;
    color: #555;
}

/* --- Right Column: Content --- */
.our-approach-content-wrapper {
    width: 55%;
}

.our-approach-content-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.our-approach-index {
    font-family: 'para', sans-serif;
    font-size: 16px;
    color: #ad8a33;
    border: 1px solid #ad8a33;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.our-approach-subheading {
    font-family: 'para', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    color: #1A1A1A;
}

.our-approach-paragraph {
    font-family: 'para', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    color: #333;
    font-weight: 500;
}

.our-approach-separator {
    width: 100%;
    height: 1px;
    background-color: #D1D1D1;
    margin: 60px 0;
}

/* --- Responsive Adjustments --- */


@media(max-width: 1400px) {
    .our-approach-heading {
        font-size: 60px;
    }

    .our-approach-subheading {
        font-size: 30px;
    }

    .our-approach-paragraph {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .our-approach-container {
        gap: 40px;
    }

    .approach-video-container {
        width: 300px;
    }

    .our-approach-sticky-wrapper video {
        height: 500px;
    }

    .our-approach-sticky-wrapper {
        width: 45%;
    }

    .our-approach-content-wrapper {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .our-approach-section {
        padding: 60px 25px;
    }

    .our-approach-container {
        flex-direction: column;
        /* Stack columns vertically */
        align-items: center;
    }

    .our-approach-sticky-wrapper {
        width: 100%;
        position: relative;
        /* Remove sticky */
        top: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .our-approach-heading{
        text-align: center;
        font-size: 40px;
    }
    .approach-tagline {
        text-align: center;
        /* Center text for mobile */
    }

    .our-approach-content-wrapper {
        width: 100%;
        margin-top: 40px;
    }

    .our-approach-index {
        margin: 0 auto 15px auto;
        /* Center the circle */
    }

    .our-approach-subheading{
        text-align: center
    }
    .our-approach-paragraph {
        text-align: justify;
    }

    .our-approach-separator {
        margin: 40px 0;
    }
}


.what-we-do-section {
    padding: 80px 5vw;
    color: #1A1A1A;
    display: flex;
    justify-content: center;
    background-color: #fff;
    /* or your preferred background */
}

.what-we-do-container {
    width: 100%;
    max-width: 1400px;
}

/* Header Styling */
.what-we-do-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-do-main-title {
    font-family: 'Outfit', serif;
    font-size: clamp(40px, 6vw, 80px);
    /* Fluid typography */
    font-weight: 400;
    margin-bottom: 15px;
}

.what-we-do-separator {
    width: 60px;
    height: 1px;
    background-color: #1A1A1A;
    margin: 0 auto;
}

/* Grid Layout */
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Card Styling */
.what-we-do-card {
    background-color: #F7F5F0;
    padding: 40px 30px;
    border: 1px solid rgba(26, 26, 26, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 🛑 IMPORTANT: If using GSAP, handle initial opacity in JS, not CSS 
   Or use a class like .gsap-reveal { opacity: 0; } 🛑 */

.what-we-do-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.what-we-do-index {
    font-family: 'para', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #8C7B6C;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.what-we-do-title {
    font-family: 'para', serif;
    font-size: clamp(24px, 2.5vw, 35px);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #121212;
}

.card-image {
    width: 100%;
    margin: 40px 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.what-we-do-description {
    font-family: 'para', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
}

.what-we-do-line-detail {
    width: 100%;
    height: 1px;
    background-color: #8C7B6C;
    /* transform: scaleX(0); <-- Add this in your GSAP timeline instead */
}

/* --- Responsive Adjustments --- */
@media(max-width: 1400px) {
    .what-we-do-main-title {
        font-size: 60px
    }

    .what-we-do-title {
        font-size: 30px;
    }
}

@media (max-width: 1100px) {
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }

    .what-we-do-card {
        min-height: 550px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 60px 20px;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
        /* Stack for mobile */
        gap: 25px;
    }

    .what-we-do-card {
        min-height: auto;
        /* Allow card to grow with content */
        padding: 30px 25px;
    }

    .what-we-do-main-title {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .card-image {
        margin: 20px 0;
    }
    .what-we-do-title{
        font-size: 25px
    }
}






.counter-section {
    padding: 100px 5vw;
    background-color: #FFFFFF;
    color: #1A1A1A;
    display: flex;
    justify-content: center;
}

.counter-container {
    width: 100%;
    max-width: 1400px;
}

.counter-header {
    width: 100%;
    max-width: 800px;
    margin-bottom: 60px;
}

.counter-main-title {
    font-family: 'Outfit', serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.1;
}

.counter-main-title span {
    background: linear-gradient(135deg, #3a2a13 0%, #ad8a33 50%, #f5d97c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-description {
    font-family: 'para', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

/* Grid Layout */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 50px;
}

.counter-stat-block {
    padding: 0 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.counter-stat-block:first-child {
    border-left: none;
    padding-left: 0;
}

/* Number Typography */
.counter-number {
    font-family: 'para', serif;
    font-size: clamp(45px, 6vw, 80px);
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.counter-stat-line {
    width: 50px;
    height: 3px;
    background-color: #8C7B6C;
    margin-bottom: 20px;
}

.counter-label {
    font-family: 'para', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4A4A4A;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.4;
}

/* --- Responsive Adjustments --- */
@media(max-width: 1400px) {
    .counter-main-title {
        font-size: 60px;
    }

    .counter-number {
        font-size: 50px;
    }
}

/* Tablet View (2x2 Grid) */
@media (max-width: 1024px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .counter-stat-block {
        border-left: none;
        padding-left: 0;
    }

    /* Add a subtle top border to the second row for structure */
    .counter-stat-block:nth-child(n+3) {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 30px;
    }
}

/* Mobile View (1-Column for better focus) */
@media (max-width: 600px) {
    .counter-section {
        padding: 60px 25px;
    }

    .counter-header {
        text-align: center;
    }

    .counter-grid {
        grid-template-columns: 1fr;
        padding-top: 30px;
        gap: 40px;
    }

    .counter-stat-block {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .counter-stat-block:nth-child(n+2) {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 40px;
    }

    .counter-stat-line {
        margin: 0 auto 15px auto;
    }

    .counter-main-title{
        font-size: 40px;
    }
}


.founder-section {
    position: relative;
    width: 100%;
    padding: 80px 5vw;
    /* Fluid padding */
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.founder-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styles */
.founder-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-section-title {
    font-family: 'Outfit', serif;
    /* Scales between 36px and 80px */
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 400;
    margin: 0;
    color: #000000;
    line-height: 1.1;
}

.founder-section-title span {
    background: linear-gradient(135deg, #3a2a13 0%, #ad8a33 50%, #f5d97c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-separator {
    width: 1px;
    height: 60px;
    background-color: #D4AF37;
    margin: 30px 0;
}

/* Grid Layout */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Reduced gap for desktop to fit standard screens */
}

/* Card Styles */
.founder-card {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.founder-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    /* Default height for desktop */
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f0f0f0;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Changed 'contain' to 'cover' for a better high-fashion look */
    filter: grayscale(100%) contrast(110%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
}

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

/* Content Styles */
.founder-info-wrapper {
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
    transition: border-color 0.5s ease;
}

.founder-role {
    font-family: 'para', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #B88905;
    display: block;
    margin-bottom: 8px;
}

.founder-name {
    font-family: 'para', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    margin: 0 0 12px 0;
    color: #000000;
}

.founder-bio {
    font-family: 'para', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 400;
}

.founder-socials {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.founder-social-link {
    font-family: 'para', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000000;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

/* Hover Interactions */
.founder-card:hover .founder-image {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}

.founder-card:hover .founder-info-wrapper {
    border-left: 1px solid #D4AF37;
}

.founder-card:hover .founder-socials {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media(max-width: 1400px) {
    .founder-section-title {
        font-size: 60px;
    }

    .founder-header-wrapper {
        margin-bottom: 30px;
    }
}

/* Tablets */
@media (max-width: 1100px) {
    .founder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .founder-section {
        padding: 60px 20px;
    }

    .founder-section-title{
        font-size: 40px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 50px;
    }

    .founder-image-container {
        height: 400px;
        /* Slightly shorter for mobile screens */
    }

    .founder-separator {
        height: 40px;
        margin: 20px 0;
    }

    .founder-socials {
        opacity: 1;
        /* Always visible on mobile since there is no 'hover' */
        transform: translateY(0);
    }

    .founder-info-wrapper {
        padding-left: 15px;
    }
}

/* contact-info-section-start */
/* --- SECTION LAYOUT --- */
.contact-info-section {
    padding: 150px 0;
    /* Vertical breathing room */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-info-container {
    width: 90%;
    max-width: 1400px;
    /* Reduced from 2000px for better readability */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
    /* Large architectural gap */
}

/* --- LEFT COLUMN: HEADER --- */
.contact-info-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 400px;
    padding-bottom: 20px;
}

.contact-info-title {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    /* Converted from rem for consistency */
    font-weight: 400;
    line-height: 1;
    /* letter-spacing: -3px; */
    margin-bottom: 40px;
    color: #000000;
    text-transform: capitalize;
}

.contact-info-subtitle {
    font-family: 'para', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 320px;
    line-height: 1.6;
    font-weight: 400;
}

.contact-info-social-links {
    display: flex;
    gap: 25px;
    margin-top: 60px;
}

.contact-info-social-item {
    text-decoration: none;
    color: #000;
    font-size: 28px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-info-social-item:hover {
    opacity: 0.6;
    transform: translateY(-3px);
}

/* --- RIGHT COLUMN: DETAILS & IMAGE --- */
.contact-info-content-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.contact-info-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
}

.contact-info-detail-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-category {
    font-family: 'para', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #aaa;
    font-weight: 600;
}

.contact-info-link,
.contact-info-text {
    font-family: 'para', sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #4E3921;
    /* Using your accent color from the slider */
}

/* --- IMAGE STYLING --- */
.contact-info-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.contact-info-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* --- RESPONSIVE ADAPTATION --- */

@media(max-width: 1550px) {
    .contact-info-title {
        font-size: 60px;
    }

    .contact-info-header {
        min-width: 320px;
    }

    .contact-info-details-wrapper {
        gap: 40px 0px;
    }

    .contact-info-image {
        height: 350px;
        object-position: bottom;
    }
}

@media(max-width: 1400px) {
    .contact-info-title {
        font-size: 60px;
    }

    .contact-info-header {
        min-width: 320px;
    }

    .contact-info-details-wrapper {
        gap: 40px 0px;
    }

    .contact-info-image {
        height: 350px;
        object-position: bottom;
    }
}

@media (max-width: 1200px) {
    .contact-info-container {
        gap: 0px;
    }

    .contact-info-title {
        font-size: 80px;
    }
}

@media (max-width: 1024px) {
    .contact-info-section {
        padding: 100px 0;
    }

    .contact-info-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-header {
        min-width: 100%;
        margin-bottom: 40px;
    }

    .contact-info-subtitle {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .contact-info-title {
        font-size: 60px;
        letter-spacing: -1px;
    }

    .contact-info-details-wrapper {
        grid-template-columns: 1fr;
        /* Stack details on mobile */
        gap: 40px;
    }

    .contact-info-image {
        height: 350px;
    }

    .contact-info-link,
    .contact-info-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contact-info-title {
        font-size: 48px;
    }

    .contact-info-section {
        padding: 80px 0;
    }

    .contact-info-content-grid {
        gap: 30px;
    }
}

/* contact-info-section-end   */



/* contact-form-section-start */
.main-contact-form-section {
    background-color: #FDFBF8;
    /* Subtle warm white specific to this section */
    color: #121212;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    box-sizing: border-box;
    /* Ensures padding doesn't break width */
}

.main-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* --- LEFT COLUMN: TYPOGRAPHY --- */
.main-contact-form-heading {
    font-family: 'Outfit', serif;
    font-size: 70px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 60px;
    color: #121212;
}

.main-contact-form-details {
    font-family: 'para', sans-serif;
    font-size: 0.85rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    border-left: 1px solid #121212;
    padding-left: 30px;
}

.main-contact-form-details a {
    color: #121212;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    transition: opacity 0.3s;
}

.main-contact-form-details a:hover {
    opacity: 0.6;
}

/* --- RIGHT COLUMN: THE FORM --- */
.main-contact-form-wrapper {
    padding-top: 20px;
}

.main-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.main-contact-form-group {
    position: relative;
    margin-bottom: 50px;
}

/* --- INPUTS & LABELS --- */
.main-contact-form-input,
.main-contact-form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    font-family: 'head', serif;
    font-size: 1.5rem;
    color: #121212;
    outline: none;
    transition: 0.3s;
    border-radius: 0;
    box-sizing: border-box;
}

.main-contact-form-textarea {
    min-height: 50px;
    resize: none;
    overflow: hidden;
}

/* The Label */
.main-contact-form-label {
    position: absolute;
    left: 0;
    top: 20px;
    font-family: 'para', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Floating Label Logic */
.main-contact-form-input:focus~.main-contact-form-label,
.main-contact-form-input:not(:placeholder-shown)~.main-contact-form-label,
.main-contact-form-textarea:focus~.main-contact-form-label,
.main-contact-form-textarea:not(:placeholder-shown)~.main-contact-form-label {
    top: -10px;
    font-size: 0.7rem;
    color: #121212;
    font-weight: 600;
}

/* Animated Bottom Border */
.main-contact-form-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #121212;
    transition: 0.4s;
}

.main-contact-form-input:focus~.main-contact-form-focus-border,
.main-contact-form-textarea:focus~.main-contact-form-focus-border {
    width: 100%;
    left: 0;
}

/* --- BUTTON --- */
.main-contact-form-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 20px;
    position: relative;
    display: inline-block;
}

.main-contact-form-btn-text {
    font-family: 'para', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #121212;
    display: block;
    margin-bottom: 10px;
}

.main-contact-form-btn-line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #121212;
    transition: width 0.3s ease;
}

.main-contact-form-submit:hover .main-contact-form-btn-line {
    width: 50%;
}

/* --- ERRORS & MESSAGES --- */
.main-contact-form-error {
    font-family: 'para', sans-serif;
    font-size: 0.7rem;
    color: #b33e3e;
    position: absolute;
    bottom: -25px;
    left: 0;
    opacity: 0;
    transition: 0.3s;
    letter-spacing: 0.05em;
}

.main-contact-form-error.show {
    opacity: 1;
}

.main-contact-form-success {
    font-family: 'head', serif;
    font-size: 1.2rem;
    color: #121212;
    margin-top: 30px;
    display: none;
    font-style: italic;
}

@media(max-width: 1550px) {
    .main-contact-form-heading {
        font-size: 50px;
    }
}

@media(max-width: 1400px) {
    .main-contact-form-heading {
        font-size: 50px;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .main-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .main-contact-form-heading {
        font-size: 40px;
    }

    .main-contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .main-contact-form-italic {
        margin-left: 0;
    }
}

/* contact-form-section-end   */




/* contact-map-section-start */
.contact-info-map-section {
    padding: 100px 5%;
}

.contact-info-map-container {
    max-width: 1600px;
    margin: 0 auto;
}

.contact-info-map-header {
    margin-bottom: 50px;
    text-align: left;
}

.contact-info-map-title {
    font-family: 'Outfit', serif;
    font-size: 80px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-info-map-subtitle {
    font-family: 'para', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: #888;
}

/* --- THE MAP & OVERLAY --- */
.contact-info-map-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.contact-info-map-iframe {
    width: 100%;
    height: 100%;
    /* LUXURY FILTER: Makes the map grayscale and slightly muted */
    filter: grayscale(50%) contrast(1.1) opacity(0.8);
    transition: filter 0.5s ease;
}

.contact-info-map-wrapper:hover .contact-info-map-iframe {
    filter: grayscale(0%) contrast(1) opacity(1);
    /* Reveals color on hover */
}

/* Floating Overlay Card */
.contact-info-map-overlay {
    position: absolute;
    top: 80px;
    right: 40px;
    background-color: #fff;
    padding: 40px;
    width: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.contact-info-map-tag {
    font-family: 'para', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    display: block;
    margin-bottom: 15px;
}

.contact-info-map-address-title {
    font-family: 'head', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-info-map-text {
    font-family: 'para', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.contact-info-map-link {
    font-family: 'para', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.contact-info-map-link:hover {
    opacity: 0.5;
}

@media(max-width: 1400px) {
    .contact-info-map-title {
        font-size: 60px;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .contact-info-map-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .contact-info-map-iframe {
        height: 400px;
    }

    .contact-info-map-overlay {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        padding: 40px 20px;
        box-shadow: none;
        border-top: 1px solid #eee;
    }

    .contact-info-map-title {
        font-size: 40px;
    }
}

/* contact-map-section-end   */