/* ==========================================================================
   ELDECO ECHOES OF EDEN — DESIGN SYSTEM
   Signature: the "Garden Arch" — a recurring arch-topped frame (pergola/
   pavilion doorway) applied to imagery and key cards, echoing the project's
   "Eden" garden narrative. Paired with a warm linen + deep eden-green + gilded
   gold palette (drawn directly from the developer's own brand), an editorial
   serif for headlines, and a mono utility face for specs, prices and RERA data
   — treating the pricing/legal detail like a title-deed ledger.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,450;0,9..144,560;0,9..144,650;1,9..144,450;1,9..144,560&family=Montserrat:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
    /* ---- color tokens ---- */
    --eden-deep: #0E382B;
    --eden-ink: #0A241C;
    --gilded: #C9A050;
    --gilded-soft: #E4C783;
    --gilded-pale: #F3E6C8;
    --linen: #F7F4EC;
    --paper: #FFFFFF;
    --ink: #21261F;
    --stone: #6D7266;
    --hairline: #E4E0CE;
    --hairline-dark: rgba(244, 241, 230, 0.16);

    /* ---- type ---- */
    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    --transition: 0.45s cubic-bezier(.25, 1, .5, 1);
    --shadow-soft: 0 20px 50px rgba(14, 56, 43, 0.10);
    --shadow-deep: 0 25px 60px rgba(10, 36, 28, 0.35);
}

/* ---------------------------------- reset --------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 15.5px;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--eden-deep);
    font-weight: 560;
    letter-spacing: 0.2px;
    line-height: 1.15;
}

p {
    color: var(--stone);
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4%;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section.tight {
    padding: 70px 0;
}

.bg-linen {
    background: var(--linen);
}

.bg-eden {
    background: var(--eden-deep);
    background: linear-gradient(160deg, var(--eden-deep) 0%, var(--eden-ink) 100%);
    color: #F4F1E6;
}

.bg-eden h2,
.bg-eden h3,
.bg-eden h4 {
    color: #FBF7EA;
}

.bg-eden p {
    color: #C9D3C6;
}

.text-center {
    text-align: center;
}

/* ------------------------------ reveal anim -------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(.25, 1, .5, 1), transform 0.9s cubic-bezier(.25, 1, .5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    * {
        animation: none !important;
    }
}

/* ------------------------------ eyebrow / heading -------------------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gilded);
    font-weight: 600;
    margin-bottom: 16px;
}

.eyebrow svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bg-eden .eyebrow {
    color: var(--gilded-soft);
}

.section-head {
    max-width: 680px;
    margin-bottom: 56px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.section-head p {
    font-size: 16px;
}

.rule-gold {
    width: 52px;
    height: 2px;
    background: var(--gilded);
    border: 0;
    margin: 18px 0;
}

.section-head.center .rule-gold {
    margin: 18px auto;
}

/* ------------------------------- buttons ------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--gilded);
    color: #fff;
    border: 1px solid var(--gilded);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 10px 24px rgba(201, 160, 80, 0.28);
}

.btn:hover {
    background: var(--eden-deep);
    border-color: var(--eden-deep);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(14, 56, 43, 0.24);
}

.btn-outline {
    background: transparent;
    color: var(--eden-deep);
    border: 1.5px solid var(--eden-deep);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--eden-deep);
    color: #fff;
}

.bg-eden .btn-outline {
    color: #fff;
    border-color: rgba(244, 241, 230, 0.55);
}

.bg-eden .btn-outline:hover {
    background: #fff;
    color: var(--eden-deep);
    border-color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--gilded);
    border: none;
    box-shadow: none;
    padding: 10px 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.btn-ghost:hover {
    background: none;
    color: var(--eden-deep);
    transform: none;
}

.btn-wide {
    width: 100%;
}

.btn-wa {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
}

.btn-wa:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 11.5px;
}

/* ------------------------------- header -------------------------------------- */
header.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 16px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid var(--hairline);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

header.site-header.shrink {
    padding: 9px 4%;
    box-shadow: 0 8px 30px rgba(14, 56, 43, 0.08);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-area img {
    width: 150px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--gilded);
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--gilded);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-call {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--eden-deep);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    font-family: var(--font-mono);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--eden-deep);
    display: block;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------- HERO ----------------------------------------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 4% 150px;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-pill {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #F4F1E6;
    border: 1px solid rgba(244, 241, 230, 0.4);
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(244, 241, 230, 0.08);
}

.hero-inner h1 {
    color: #FBF9F1;
    font-size: 3.6rem;
    max-width: 820px;
    margin-bottom: 20px;
    font-weight: 560;
}

.hero-inner h1 em {
    font-style: italic;
    color: var(--gilded-soft);
    font-weight: 450;
}

.hero-inner>p {
    color: #DCE3D9;
    font-size: 17px;
    max-width: 600px;
    font-weight: 400;
    margin-bottom: 6px;
}

/* floating stat card that bridges hero into next section */
.hero-stat-bridge {
    position: relative;
    z-index: 5;
    margin-top: -64px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(6px);
    border-radius: 26px 26px 10px 10px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--gilded);
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 34px 4%;
}

.hero-stat {
    text-align: center;
    border-left: 1px solid var(--hairline);
    padding: 0 10px;
}

.hero-stat:first-child {
    border-left: none;
}

.hero-stat .num {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1.55rem;
    color: var(--eden-deep);
    display: block;
}

.hero-stat .lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--stone);
    margin-top: 6px;
    display: block;
}

/* ------------------------------- TRUST RIBBON ---------------------------------- */
.trust-ribbon {
    background: var(--eden-deep);
    padding: 22px 0;
    overflow: hidden;
}

.trust-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scrollTrust 28s linear infinite;
}

.trust-track span {
    font-family: var(--font-mono);
    color: #EFE7CE;
    font-size: 13px;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.trust-track span::before {
    content: '✦';
    color: var(--gilded);
}

@keyframes scrollTrust {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ------------------------------- ARCH FRAME (signature) ------------------------ */
.arch-frame {
    position: relative;
    border-radius: 190px 190px 14px 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Restrain the image container size */
.arch-frame {
    width: 100%;
    max-height: 350px;
    /* Adjust this value (e.g., 250px - 400px) to your preference */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure images fill the frame cleanly without stretching or overflowing */
.arch-frame img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    /* Must match .arch-frame max-height */
    object-fit: cover;
    /* Keeps image proportions sharp without distortion */
    display: block;
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arch-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 190px 190px 14px 14px;
    border: 7px solid var(--paper);
    box-shadow: inset 0 0 0 1px var(--hairline);
    pointer-events: none;
}

.arch-frame.gold-lip::before {
    border-color: var(--linen);
    box-shadow: inset 0 0 0 1px var(--hairline), 0 0 0 2px var(--gilded);
}

/* ------------------------------- OVERVIEW --------------------------------------- */
.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.overview-copy p {
    margin-bottom: 18px;
    font-size: 15.5px;
}

.overview-visual {
    aspect-ratio: 4/5;
}

.overview-tag {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: var(--eden-deep);
    color: #fff;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-deep);
    z-index: 3;
    font-family: var(--font-mono);
}

.overview-tag .big {
    font-size: 1.4rem;
    color: var(--gilded-soft);
    font-weight: 600;
    display: block;
}

.overview-tag .small {
    font-size: 10.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D8DFD4;
}

.overview-visual-wrap {
    position: relative;
}

/* ------------------------------- HIGHLIGHT CARDS -------------------------------- */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.highlight-card {
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    padding: 38px 28px;
    transition: all var(--transition);
    position: relative;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    width: 38px;
    height: 3px;
    background: var(--gilded);
}

.highlight-card .ico {
    font-size: 26px;
    margin-bottom: 18px;
    display: block;
}

.highlight-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}

/* ------------------------------- CONFIG SNAPSHOT -------------------------------- */
.config-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.config-chip {
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: 10px;
    padding: 26px 16px;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.config-chip:hover {
    border-color: var(--gilded);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.config-chip .bhk {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--eden-deep);
    font-weight: 650;
}

.config-chip .area {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gilded);
    margin-top: 8px;
    display: block;
    font-weight: 600;
}

.config-chip .unit {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--stone);
    margin-top: 2px;
    display: block;
}

/* ------------------------------- FLOORPLANS ------------------------------------- */
.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.floorplan-card {
    text-align: center;
}

.floorplan-holder {
    aspect-ratio: 1/1;
    background: var(--linen);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    margin-bottom: 22px;
}

.floorplan-holder img {
    max-height: 100%;
    object-fit: contain;
}

.floorplan-card h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.floorplan-card .area-tag {
    font-family: var(--font-mono);
    color: var(--gilded);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

/* ------------------------------- AMENITIES -------------------------------------- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

.amenity-box {
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 30px 16px;
    text-align: center;
    transition: all var(--transition);
}

.amenity-box:hover {
    border-color: var(--gilded);
    background: var(--linen);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.amenity-box .icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--linen);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
    transition: all var(--transition);
    color: var(--eden-deep);
}

.amenity-box:hover .icon-circle {
    background: var(--gilded);
    color: #fff;
}

.amenity-box h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

/* ------------------------------- GALLERY ---------------------------------------- */
.gallery-wrap {
    position: relative;
    padding: 0 56px;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 22px;
    transition: transform .55s cubic-bezier(.25, 1, .5, 1);
}

.gallery-item {
    min-width: calc(33.333% - 15px);
    flex-shrink: 0;
}

.gallery-item .arch-frame {
    aspect-ratio: 3/4;
}

.gallery-cap {
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--stone);
}

.gallery-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--eden-deep);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.gallery-nav:hover {
    background: var(--gilded);
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

/* ------------------------------- PRICING ---------------------------------------- */
.pricing-shell {
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

table.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead th {
    background: var(--eden-deep);
    color: #F4F1E6;
    padding: 20px 26px;
    text-align: left;
    font-family: var(--font-mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.pricing-table td {
    padding: 22px 26px;
    border-bottom: 1px solid var(--hairline);
    font-size: 15px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:nth-child(even) td {
    background: var(--linen);
}

.pricing-table .typology {
    font-family: var(--font-display);
    font-weight: 650;
    color: var(--eden-deep);
    font-size: 1.05rem;
}

.pricing-table .area-val {
    font-family: var(--font-mono);
    color: var(--stone);
}

.price-note {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: var(--stone);
}

/* ------------------------------- MASTER PLAN ------------------------------------ */
.master-plan-frame {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--hairline-dark);
    cursor: pointer;
    box-shadow: var(--shadow-deep);
}

.master-plan-asset {
    width: 100%;
    display: block;
    filter: blur(18px);
    transform: scale(1.05);
    transition: filter .6s ease, transform .6s ease;
}

.master-plan-asset.unlocked {
    filter: blur(0);
    transform: scale(1);
}

.blur-gate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 28, 0.78);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    z-index: 10;
    transition: opacity .4s ease;
    text-align: center;
    padding: 20px;
}

.blur-gate-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.blur-gate-overlay .lock-ico {
    font-size: 34px;
    color: var(--gilded-soft);
}

.blur-gate-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    max-width: 420px;
}

.blur-gate-overlay p {
    color: #D8DFD4;
    font-size: 13.5px;
    max-width: 380px;
}

/* ------------------------------- LOCATION --------------------------------------- */
.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.location-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 4px;
    border-bottom: 1px solid var(--hairline);
    font-weight: 600;
    font-size: 14.5px;
}

.location-row:last-child {
    border-bottom: none;
}

.location-row .dist {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--eden-deep);
    background: var(--gilded-pale);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12.5px;
    white-space: nowrap;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    min-height: 340px;
    box-shadow: var(--shadow-soft);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
    display: block;
}

/* ------------------------------- INVEST / GROWTH --------------------------------- */
.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.invest-points li {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.invest-points .mark {
    color: var(--gilded-soft);
    font-family: var(--font-mono);
    font-weight: 600;
    flex-shrink: 0;
}

.invest-points strong {
    color: #FBF9F1;
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-body);
    font-size: 15px;
}

.invest-points span.desc {
    color: #C9D3C6;
    font-size: 13.8px;
}

.invest-disclaimer {
    font-size: 12px;
    color: #9FAA98;
    margin-top: 24px;
    font-style: italic;
}

/* ------------------------------- TRUST / SAFE BUYING ------------------------------ */
.safe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.safe-card {
    text-align: center;
    padding: 30px 18px;
}

.safe-card .num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gilded);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.safe-card h4 {
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.safe-card p {
    font-size: 13.5px;
}

/* ------------------------------- DEVELOPER -------------------------------------- */
.developer-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.developer-emblem {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--linen);
    border-radius: 190px 190px 14px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    border: 1px solid var(--hairline);
}

.developer-emblem img {
    width: 100%;
}

.developer-copy p {
    margin-bottom: 16px;
}

.developer-stats {
    display: flex;
    gap: 34px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.developer-stats div {
    font-family: var(--font-mono);
}

.developer-stats .n {
    font-size: 1.6rem;
    color: var(--eden-deep);
    font-weight: 600;
    display: block;
}

.developer-stats .l {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--stone);
}

/* ------------------------------- BOOKING STEPS ----------------------------------- */
.steps-rail {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    counter-reset: step;
}

.step-card {
    text-align: left;
    padding-top: 20px;
    border-top: 2px solid var(--hairline);
    position: relative;
}

.step-card .step-num {
    font-family: var(--font-mono);
    color: var(--gilded);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.step-card h4 {
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.step-card p {
    font-size: 12.8px;
}

/* ------------------------------- FAQ -------------------------------------------- */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--hairline);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15.5px;
    color: var(--eden-deep);
}

.faq-q .plus {
    font-family: var(--font-mono);
    font-size: 20px;
    color: var(--gilded);
    transition: transform 0.35s;
    flex-shrink: 0;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-a p {
    padding: 0 4px 24px;
    font-size: 14.5px;
}

/* ------------------------------- FOOTER LEAD ------------------------------------ */
.footer-lead {
    background: linear-gradient(160deg, var(--eden-deep) 0%, var(--eden-ink) 100%);
    padding: 100px 0;
}

.footer-lead-grid {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 60px;
    align-items: center;
}

.footer-lead-copy .footer-badge {
    display: inline-block;
    background: rgba(201, 160, 80, 0.15);
    border: 1px solid var(--gilded);
    color: var(--gilded-soft);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    font-family: var(--font-mono);
}

.footer-lead-copy h2 {
    color: #FBF9F1;
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.footer-lead-copy p {
    color: #C9D3C6;
    margin-bottom: 26px;
    max-width: 520px;
}

.footer-benefits li {
    color: #EDEAD9;
    margin-bottom: 13px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-benefits li::before {
    content: '✓';
    color: var(--gilded-soft);
    font-weight: 700;
}

.form-card {
    background: var(--paper);
    padding: 38px;
    border-radius: 16px 16px 16px 16px;
    box-shadow: var(--shadow-deep);
    border-top: 5px solid var(--gilded);
}

.form-card h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-input {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #DCD8C8;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--gilded);
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.14);
}

textarea.form-input {
    resize: vertical;
    font-family: inherit;
}

.form-rera-note {
    text-align: center;
    font-size: 10.5px;
    color: var(--stone);
    margin-top: 4px;
}

/* ------------------------------- FOOTER ----------------------------------------- */
footer.site-footer {
    background: var(--eden-ink);
    color: #9FAA98;
    padding: 60px 4% 100px;
    font-size: 13px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h5 {
    color: #F4F1E6;
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: #9FAA98;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gilded-soft);
}

.footer-col p {
    color: #8D9787;
    margin-bottom: 8px;
}

.footer-disclaimer {
    text-align: justify;
    line-height: 1.7;
    padding: 28px 0;
    border-top: 1px solid var(--hairline-dark);
    border-bottom: 1px solid var(--hairline-dark);
    font-size: 12px;
    color: #4f4f4f;
}

.footer-disclaimer strong {
    color: #C9D3C6;
}

.footer-bottom {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
}

.footer-bottom a {
    color: #C9D3C6;
    text-decoration: none;
}

/* ------------------------------- FLOATING UI -------------------------------------- */
.floating-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--eden-deep);
    display: flex;
    z-index: 150;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.floating-strip a,
.floating-strip button {
    flex: 1;
    text-align: center;
    padding: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.floating-strip a:first-child {
    background: var(--gilded);
}

.whatsapp-float {
    position: fixed;
    bottom: 65px;
    right: 26px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    z-index: 160;
    animation: pulseGreen 2.2s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ------------------------------- MODALS ------------------------------------------ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 18, 0.78);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--paper);
    padding: 40px;
    width: 92%;
    max-width: 460px;
    border-radius: 16px;
    position: relative;
    border-top: 6px solid var(--gilded);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(.25, 1, .5, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-backdrop.open .modal-box {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: #B7BDAF;
    cursor: pointer;
    transition: color .3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--ink);
}

.modal-quick {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.modal-quick a {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.modal-quick .call {
    background: var(--linen);
    color: var(--eden-deep);
    border: 1px solid var(--hairline);
}

.modal-quick .wa {
    background: #25D366;
    color: #fff;
}

.modal-divider {
    text-align: center;
    font-size: 12px;
    color: var(--stone);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-box h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.modal-box>p {
    font-size: 13.5px;
    margin-bottom: 22px;
}

/* mini price popup */
.mini-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 18, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.mini-popup-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.mini-popup-box {
    position: relative;
    background: var(--paper);
    border-radius: 14px;
    padding: 34px 28px;
    width: 90%;
    max-width: 320px;
    border-top: 5px solid var(--gilded);
    text-align: center;
    transform: scale(.9);
    opacity: 0;
    transition: all .3s cubic-bezier(.25, 1, .5, 1);
}

.mini-popup-backdrop.open .mini-popup-box {
    transform: scale(1);
    opacity: 1;
}

.mini-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color .3s;
}

.mini-popup-close:hover {
    color: var(--ink);
}

.mini-popup-box h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.mini-popup-box p {
    font-size: 12.5px;
    margin-bottom: 18px;
}

.mini-popup-options {
    display: flex;
    gap: 12px;
}

.mini-popup-options a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.mini-popup-options .call-btn {
    background: var(--eden-deep);
    color: #fff;
}

.mini-popup-options .whatsapp-btn {
    background: #25D366;
    color: #fff;
}

/* ------------------------------- MOBILE NAV DRAWER -------------------------------- */
body.nav-locked {
    overflow: hidden;
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 18, 0.6);
    z-index: 198;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

@media(max-width:991px) {
    .nav-backdrop {
        display: block;
    }

    .nav-menu {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 78% !important;
        max-width: 340px !important;
        height: 100vh !important;
        background: var(--eden-deep) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 100px 30px 30px !important;
        transition: right 0.45s cubic-bezier(.25, 1, .5, 1) !important;
        z-index: 199 !important;
        gap: 22px !important;
        box-shadow: none;
    }

    .nav-menu.open {
        right: 0 !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu a {
        color: #F4F1E6 !important;
        font-size: 14px !important;
        padding: 4px 0;
        display: block !important;
        text-align: left !important;
    }

    .hamburger {
        display: flex !important;
    }

    .header-call span {
        display: none;
    }
}

/* ------------------------------- RESPONSIVE --------------------------------------- */
@media(max-width:1080px) {

    .overview-grid,
    .location-grid,
    .developer-grid,
    .invest-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        gap: 40px;
    }

    .highlight-grid,
    .safe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .config-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item {
        min-width: calc(50% - 11px);
    }

    .footer-lead-copy h2,
    .section-head h2 {
        font-size: 2rem;
    }

    .hero-stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .hero-stat:nth-child(3) {
        border-left: none;
    }

    .footer-lead-grid {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }

    .steps-rail {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 20px;
    }

    .safe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .section {
        padding: 70px 0;
    }

    .hero-inner h1 {
        font-size: 2.4rem;
    }

    .section-head h2 {
        font-size: 1.7rem;
    }

    .config-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        min-width: 100%;
    }

    .developer-emblem {
        max-width: 220px;
        margin: 0 auto;
        padding: 30px;
    }

    .steps-rail {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }

    .pricing-table tr {
        padding: 18px 20px;
        border-bottom: 8px solid var(--linen);
    }

    .pricing-table td {
        border: none;
        padding: 6px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pricing-table td::before {
        content: attr(data-label);
        font-family: var(--font-mono);
        font-size: 10.5px;
        text-transform: uppercase;
        color: var(--stone);
    }

    .pricing-table td:last-child {
        justify-content: center;
        padding-top: 14px;
    }

    .pricing-table td:last-child::before {
        display: none;
    }

    

    .developer-emblem {
        border-radius: 120px 120px 12px 12px;
    }
}

@media(max-width:560px) {
    .hero-inner h1 {
        font-size: 1.95rem;
    }

    .highlight-grid,
    .safe-grid {
        grid-template-columns: 1fr;
    }

    .config-strip {
        grid-template-columns: 1fr 1fr;
    }

    .steps-rail {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 70px;
        right: 14px;
        font-size: 26px;
    }

    .overview-tag {
        left: 10px;
        bottom: -16px;
        padding: 14px 18px;
    }

    .overview-tag .big {
        font-size: 1.15rem;
    }
}

/* ------------------------------- SMALL PHONES (<=480px) --------------------------- */
@media(max-width:480px) {
    .container {
        padding: 0 5%;
    }

    .section {
        padding: 54px 0;
    }

    .section.tight {
        padding: 44px 0;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-inner {
        padding: 0 5% 130px;
    }

    .hero-inner h1 {
        font-size: 1.65rem;
    }

    .hero-inner>p {
        font-size: 15px;
    }

    .section-head h2 {
        font-size: 1.4rem;
    }

    .section-head p {
        font-size: 14.5px;
    }

    .hero-stat-grid {
        padding: 24px 4%;
        gap: 16px 0;
    }

    .hero-stat .num {
        font-size: 1.2rem;
    }

    .config-strip {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .steps-rail {
        grid-template-columns: 1fr;
    }

    .highlight-card,
    .amenity-box {
        padding: 26px 18px;
    }

    .gallery-wrap {
        padding: 0 40px;
    }

    .gallery-nav {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .form-card {
        padding: 26px 20px;
    }

    .modal-box {
        padding: 28px 22px;
    }

    .developer-emblem {
        max-width: 170px;
        padding: 22px;
    }

    .footer-lead-copy h2 {
        font-size: 1.6rem;
    }

    .footer-disclaimer {
        text-align: left;
    }

    .floating-strip a,
    .floating-strip button {
        padding: 14px 6px;
        font-size: 11px;
        gap: 5px;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        font-size: 22px;
        bottom: 66px;
        right: 12px;
    }
}

/* NOTE: The hamburger/.nav-menu mobile-drawer styling now lives in ONE place
   only — see "MOBILE NAV DRAWER" block above (~line 1726) which uses the
   .open / .nav-backdrop / body.nav-locked system driven by main.js.
   A duplicate, conflicting block used to be here (a second hamburger/.nav-menu
   ruleset built around a ".active" class, position:absolute, and !important
   overrides). It fought with the original drawer for the same elements,
   which is why the hamburger sometimes failed to open/close correctly.
   It has been removed. The two unrelated rules below (modal button + exit
   button sizing on small screens) are kept. */
@media screen and (max-width: 768px) {
    button.btn.btn-sm.open-modal-global {
        padding: 6px;
        font-size: 10px;
    }
    span#exitModalButton {
        top: 5px;
    }
}