@font-face {
    font-family: 'Against';
    src: url('../fonts/AgainstRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.font-against {
    font-family: 'Against', 'Playfair Display', serif;
}


/* 
   DESIGN TOKENS & SYSTEM VARIABLES
   Aesthetic: Ultra-Luxury Italian Baroque meets Kerala Heritage */

:root {
    /* Brand Accents */
    --gold: #d4af37;
    /* Burnished Champagne Gold */
    --gold-light: #f3e5ab;
    /* Creamy Pale Gold */
    --gold-dark: #9a7b1c;
    /* Deep Antique Bronze Gold */
    --magenta: #9b165d;
    /* Premium Royal Magenta */
    --wine: #2f111c;
    /* Deep Tuscan Wine */
    --wine-deep: #14050b;
    /* Shadowed Plum/Black Cherry */
    /* Background Contexts */
    --bg-dark-1: #0c0408;
    /* Primary Luxury Obsidian Dark */
    --bg-dark-2: #160810;
    /* Secondary Dark */
    --bg-dark-glass: rgba(22, 8, 16, 0.72);
    --bg-light-1: #fbf9f6;
    /* Fine Linen Alabaster Light */
    --bg-light-2: #f5ede4;
    /* Soft Baroque Limestone Cream */
    --bg-light-glass: rgba(251, 249, 246, 0.82);
    /* Fonts */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'DM Sans', sans-serif;
    --font-ui: 'Josefin Sans', sans-serif;
    /* Text Coloring */
    --text-dark: #160810;
    --text-dark-mut: rgba(22, 8, 16, 0.65);
    --text-light: #fbf9f6;
    --text-light-mut: rgba(251, 249, 246, 0.72);
    --text-gold: #d4af37;
    /* Custom Easing */
    --ease-epic: cubic-bezier(0.16, 1, 0.3, 1);
    --nav-height: 84px;
    /* Border Details */
    --border-gold-tint: rgba(212, 175, 55, 0.2);
    --border-white-tint: rgba(255, 255, 255, 0.08);
    --border-dark-tint: rgba(22, 8, 16, 0.08);
}


/* â”€â”€â”€ RESET & DEFAULTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

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

html {
    scroll-behavior: auto;
    overflow-x: hidden;
    background-color: var(--bg-dark-1);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light-1);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
    /* Required for custom cursor */
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button,
select,
input,
textarea {
    font-family: inherit;
    cursor: none;
    background: none;
    border: none;
}

ul {
    list-style: none;
}


/* â”€â”€â”€ CUSTOM CURSOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#c-dot,
#c-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.c-dot-inner {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: relative;
    left: -3px;
    top: -3px;
    transition: width 0.25s, height 0.25s, background 0.25s;
}

.c-ring-inner {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: relative;
    left: -16px;
    top: -16px;
    opacity: 0.45;
    transition: width 0.3s, height 0.3s, opacity 0.3s, border-color 0.3s;
}

body:has(a:hover) .c-dot-inner,
body:has(button:hover) .c-dot-inner,
body:has(.clickable:hover) .c-dot-inner {
    width: 12px;
    height: 12px;
    background: var(--magenta);
}

body:has(a:hover) .c-ring-inner,
body:has(button:hover) .c-ring-inner,
body:has(.clickable:hover) .c-ring-inner {
    width: 48px;
    height: 48px;
    opacity: 0.15;
    border-color: var(--magenta);
}


/* â”€â”€â”€ SCROLLBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-1);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--magenta);
}


/* â”€â”€â”€ PROGRESS BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--magenta), var(--gold));
    z-index: 999;
    width: 0;
    transition: width 0.1s ease;
}


/* â”€â”€â”€ PRELOADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark-1);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-epic), visibility 0.8s var(--ease-epic);
}

#preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pre-inner {
    text-align: center;
    max-width: 320px;
    width: 100%;
}

.pre-logo {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-epic);
}

.pre-logo.show {
    opacity: 1;
    transform: translateY(0);
}

.pre-bar {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.pre-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 0.1s linear;
}

.pre-num {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-light-mut);
    text-transform: uppercase;
}


/* â”€â”€â”€ FLOATING CTA / ENQUIRE BUTTON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#stickyEnquire {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 90;
    opacity: 0;
    transform: translateX(-40px);
    pointer-events: auto;
}

.sticky-enq-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--magenta), var(--wine));
    border: 1px solid var(--border-gold-tint);
    padding: 0.9rem 1.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease-epic);
}

.sticky-enq-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(155, 22, 93, 0.45);
    border-color: var(--gold);
}

.sticky-enq-ico {
    width: 14px;
    height: 14px;
}


/* â”€â”€â”€ BACK TO TOP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.btt {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    width: 44px;
    height: 44px;
    background: var(--bg-dark-glass);
    border: 1px solid var(--border-gold-tint);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s, transform 0.4s var(--ease-epic), background 0.3s;
    pointer-events: none;
}

.btt.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.btt:hover {
    background: var(--magenta);
    border-color: var(--magenta);
}

.btt svg {
    stroke: var(--text-light);
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btt:hover svg {
    transform: translateY(-2px);
}


/* â”€â”€â”€ NAVIGATION BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.5rem;
    transition: background 0.5s var(--ease-epic), backdrop-filter 0.5s var(--ease-epic), border-color 0.5s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled,
.nav.scrolled.nav-light-state {
    background: rgba(12, 4, 8, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom-color: rgba(212, 175, 55, 0.15) !important;
}

.nav.scrolled .nav-links a,
.nav.scrolled.nav-light-state .nav-links a {
    color: var(--text-light-mut) !important;
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled.nav-light-state .nav-links a:hover {
    color: var(--gold) !important;
}

.nav.scrolled .nav-links a::after,
.nav.scrolled.nav-light-state .nav-links a::after {
    background: var(--gold) !important;
}

.nav.scrolled .nav-hamburger span,
.nav.scrolled.nav-light-state .nav-hamburger span {
    background: var(--text-light) !important;
}

.nav-logo-img {
    height: 48px;
    transition: transform 0.4s var(--ease-epic);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.8rem;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light-mut);
    position: relative;
    padding: 0.5rem 5px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-epic);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.7rem 1.6rem;
    transition: all 0.3s var(--ease-epic);
}

.nav-cta:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}


/* Hamburg menu button */

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    background: none;
    border: none;
    z-index: 601;
}

.nav-hamburger span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--text-light);
    transition: transform 0.4s var(--ease-epic), opacity 0.3s, width 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}


/* Light page layout modifications for Nav (when section intersecting is white) */

.nav.hero-nav {
    /* Dynamic text on light */
}

.nav.nav-light-state {
    background: rgba(251, 249, 246, 0.94);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(22, 8, 16, 0.05);
}

.nav.nav-light-state .nav-links a {
    color: var(--text-dark-mut);
}

.nav.nav-light-state .nav-links a:hover {
    color: var(--magenta);
}

.nav.nav-light-state .nav-links a::after {
    background: var(--magenta);
}

.nav.nav-light-state .nav-hamburger span {
    background: var(--text-dark);
}


/* â”€â”€â”€ MOBILE DRAWER MENU â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: var(--wine-deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease-epic);
}

.mob-menu.open {
    transform: translateX(0);
}

.mob-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-light-mut);
    transition: color 0.3s;
}

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

.mob-cta {
    font-family: var(--font-ui) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--magenta);
    color: #fff !important;
    border: 1px solid var(--gold);
    padding: 0.9rem 2.2rem;
    margin-top: 0.5rem;
}


/* â”€â”€â”€ HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6.5rem;
    overflow: hidden;
    background: var(--bg-dark-1);
    color: var(--text-light);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.8s ease-in-out, transform 0s 1.8s;
    will-change: transform, opacity;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.12);
    transition: opacity 1.8s ease-in-out, transform 8s linear;
}


/* Masking filters on Hero Background */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 75% 20%, rgba(155, 22, 93, 0.18) 0%, transparent 60%), radial-gradient(ellipse 60% 60% at 10% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 55%), linear-gradient(to top, var(--bg-dark-1) 12%, rgba(12, 4, 8, 0.4) 60%, var(--bg-dark-1) 100%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

.hero-glow-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(155, 22, 93, 0.15);
    filter: blur(100px);
    top: 10%;
    right: -5%;
    z-index: 1;
    animation: floatingGlow 12s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    filter: blur(90px);
    bottom: 10%;
    left: 20%;
    z-index: 1;
    animation: floatingGlow 9s ease-in-out infinite reverse;
}

@keyframes floatingGlow {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-25px, 20px) scale(1.06);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin-top: 3.5rem;
}

.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.42em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.hero-eyebrow::before {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--text-light);
    margin-bottom: 2.2rem;
    letter-spacing: -0.01em;
}

.hero-title span.font-against {
    color: var(--gold);
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light-mut);
    max-width: 48ch;
    margin-bottom: 3.5rem;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: 1px solid var(--gold);
    padding: 1.05rem 2.4rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
    transition: all 0.3s var(--ease-epic);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.45);
    color: var(--text-light);
    background: transparent;
}

.btn-gold svg {
    transition: transform 0.3s;
}

.btn-gold:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light-mut);
    border: 1px solid rgba(251, 249, 246, 0.24);
    padding: 1.05rem 2.4rem;
    transition: all 0.3s var(--ease-epic);
}

.btn-outline:hover {
    color: var(--gold-light);
    border-color: var(--gold);
    transform: translateY(-3px);
}


/* Floating Glass Cards in Hero (Redesign detail) */

.hero-floater {
    position: absolute;
    right: 6.5rem;
    bottom: 8rem;
    z-index: 2;
    background: rgba(22, 8, 16, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(12px);
    padding: 2.2rem;
    max-width: 320px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: heroFloatCard 6s ease-in-out infinite;
}

@keyframes heroFloatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floater-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 400;
}

.floater-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-light-mut);
    font-weight: 300;
}

.floater-badge {
    align-self: flex-start;
    font-family: var(--font-ui);
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--magenta);
    background: var(--gold-light);
    padding: 0.3rem 0.6rem;
    font-weight: bold;
}

.hero-address {
    position: absolute;
    bottom: 3.5rem;
    left: 6.5rem;
    z-index: 2;
}

.hero-address p {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light-mut);
}

.hero-address span {
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 3.5rem;
    right: 6.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.hero-scroll span {
    font-family: var(--font-ui);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light-mut);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLinePulse 2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollLinePulse {
    0% {
        transform: scaleY(0.1);
        opacity: 0;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
    100% {
        transform: scaleY(0.1);
        opacity: 0;
    }
}


/* â”€â”€â”€ ELEGANCE SCROLL TRANSITION OVERLAY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#eleganceOverlay {
    position: fixed;
    inset: 0;
    z-index: 390;
    background: var(--bg-dark-1);
    clip-path: circle(0% at 50% 50%);
    pointer-events: none;
}


/* â”€â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.marquee-wrap {
    overflow: hidden;
    background: var(--bg-dark-2);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1.1rem 0;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeAnimate 35s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.8rem;
    padding: 0 3.2rem;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(251, 249, 246, 0.85);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

@keyframes marqueeAnimate {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* â”€â”€â”€ STATS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-light-2);
    border-bottom: 1px solid rgba(22, 8, 16, 0.06);
    position: relative;
    z-index: 10;
}

.stat-cell {
    padding: 3.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(22, 8, 16, 0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.4s var(--ease-epic);
}

.stat-cell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-cell:hover::after {
    opacity: 1;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-icon {
    margin-bottom: 1.2rem;
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s var(--ease-epic), color 0.4s;
}

.stat-svg {
    width: 2.2rem;
    height: 2.2rem;
}

.stat-cell:hover .stat-icon {
    transform: translateY(-5px);
    color: var(--magenta);
}

.stat-num {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    color: var(--magenta);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-num-text {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 500;
    color: var(--magenta);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-lbl {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dark-mut);
}


/* â”€â”€â”€ ABOUT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.about {
    background: var(--bg-light-1);
    position: relative;
    overflow: hidden;
    padding: clamp(6rem, 11vw, 9.5rem) clamp(2rem, 6vw, 6.5rem);
}

.abt-wm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(16rem, 26vw, 26rem);
    font-weight: 700;
    color: rgba(155, 22, 93, 0.035);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.abt-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5.5rem;
    align-items: center;
}

.abt-visual {
    position: relative;
}


/* Overlapping layers to look extremely creative */

.abt-img-frame {
    position: relative;
    border: 1px solid var(--border-gold-tint);
    padding: 1.5rem;
    background: var(--bg-light-2);
}

.abt-img-frame::after {
    content: "";
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 100px;
    height: 100px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    pointer-events: none;
}

.abt-img-frame::before {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 100px;
    height: 100px;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    pointer-events: none;
}

.abt-main-img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 25px 60px rgba(22, 8, 16, 0.15);
}

.abt-float-img {
    position: absolute;
    bottom: -3.5rem;
    right: -2.5rem;
    width: 48%;
    border: 4px solid var(--bg-light-1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
    will-change: transform;
}

.abt-lbl {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.abt-lbl::before {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--magenta);
}

.abt-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 2.2rem;
}

.abt-heading span.font-against {
    color: var(--magenta);
}

.abt-body p {
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-dark-mut);
    margin-bottom: 1.8rem;
}

.abt-orn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 2.5rem 0;
    width: 180px;
}

.abt-orn-line {
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.abt-orn-dia {
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.abt-statement {
    margin-bottom: 2.8rem;
}

.abt-stmt-pre {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-dark-mut);
    display: block;
    margin-bottom: 0.45rem;
}

.abt-stmt-main {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-style: italic;
    font-weight: 400;
    color: var(--magenta);
    line-height: 1.25;
}

.btn-wine {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--magenta), var(--wine));
    border: 1px solid var(--border-gold-tint);
    padding: 1.05rem 2.4rem;
    box-shadow: 0 10px 25px rgba(155, 22, 93, 0.2);
    transition: all 0.3s var(--ease-epic);
}

.btn-wine:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(155, 22, 93, 0.4);
    border-color: var(--gold);
}


/* â”€â”€â”€ RESIDENCES SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.residences {
    background: var(--bg-light-2);
    padding: clamp(6rem, 11vw, 9.5rem) clamp(2rem, 6vw, 6.5rem);
}

.res-sec-hd {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.res-sec-hd .lbl {
    justify-content: center;
    margin-bottom: 1.1rem;
}

.lbl {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--magenta);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.lbl::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: var(--magenta);
}

.hdg {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
}

.hdg em {
    font-style: italic;
    color: var(--magenta);
}

.res-bhk-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.res-bhk-tab {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.9rem 2.8rem;
    border: 1px solid rgba(22, 8, 16, 0.08);
    color: var(--text-dark-mut);
    transition: all 0.3s var(--ease-epic);
}

.res-bhk-tab+.res-bhk-tab {
    border-left: none;
}

.res-bhk-tab.active {
    background: var(--magenta);
    color: var(--text-light);
    border-color: var(--magenta);
}

.res-bhk-tab:hover:not(.active) {
    border-color: var(--magenta);
    color: var(--magenta);
}

.res-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    min-height: 520px;
}

.res-lft {
    transition: opacity 0.4s var(--ease-epic), transform 0.4s var(--ease-epic);
}

.res-lft.fade {
    opacity: 0;
    transform: translateY(15px);
}

.res-unit-lbl {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dark-mut);
    margin-bottom: 1.1rem;
}

.res-unit-name {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.6rem;
}

.res-unit-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-dark-mut);
    margin-bottom: 2.8rem;
    max-width: 48ch;
}

.res-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 2.8rem;
    margin-bottom: 3.2rem;
}

.res-spec {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.res-spec-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--magenta);
    stroke-width: 1.3;
    fill: none;
}

.res-spec-lbl {
    font-family: var(--font-ui);
    font-size: 0.54rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark-mut);
    display: block;
}

.res-spec-val {
    font-size: 0.96rem;
    font-weight: 400;
    color: var(--text-dark);
    display: block;
    margin-top: 0.2rem;
}

.res-rgt {
    position: relative;
    height: 520px;
    overflow: hidden;
    border: 1px solid var(--border-gold-tint);
    /* padding: 0.8rem;*/
    background: var(--bg-light-1);
    box-shadow: 0 25px 65px rgba(22, 8, 16, 0.12);
}

.res-img-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.res-img-slide {
    flex: 0 0 100%;
    height: 100%;
    padding-right: 0px;
}

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

.res-controls {
    max-width: 1200px;
    margin: 2.2rem auto 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.2rem;
}

.res-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(22, 8, 16, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-epic);
}

.res-nav-btn:hover {
    background: var(--magenta);
    border-color: var(--magenta);
}

.res-nav-btn:hover svg {
    stroke: var(--text-light);
}

.res-nav-btn svg {
    stroke: var(--text-dark);
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
    fill: none;
}

.res-nav-dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.res-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(22, 8, 16, 0.15);
    transition: all 0.3s;
}

.res-nav-dot.active {
    background: var(--magenta);
    transform: scale(1.4);
}


/* â”€â”€â”€ FLOOR PLANS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.floorplan {
    background: var(--bg-light-1);
    padding: clamp(6rem, 11vw, 9.5rem) clamp(2rem, 6vw, 6.5rem);
}

.fp-hd {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.fp-hd .lbl {
    justify-content: center;
}

.gold-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto;
}

.fp-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.fp-tab {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.9rem 2.8rem;
    border: 1px solid rgba(22, 8, 16, 0.08);
    color: var(--text-dark-mut);
    transition: all 0.3s var(--ease-epic);
}

.fp-tab+.fp-tab {
    border-left: none;
}

.fp-tab.active {
    background: var(--magenta);
    color: var(--text-light);
    border-color: var(--magenta);
}

.fp-tab:hover:not(.active) {
    border-color: var(--magenta);
    color: var(--magenta);
}

.fp-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.fp-panel.active {
    display: grid;
}

.fp-blueprint {
    background: var(--wine-deep);
    border: 1px solid var(--border-gold-tint);
    position: relative;
    overflow: hidden;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.fp-blueprint::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.fp-blueprint img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.6s var(--ease-epic);
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
}

.fp-blueprint:hover img {
    transform: none;
}

.fp-blur-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 6, 12, 0.45);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
    opacity: 1;
    transition: background 0.3s ease;
}

.fp-blueprint:hover .fp-blur-overlay {
    background: rgba(16, 6, 12, 0.55);
}

.fp-blur-overlay .fp-dl-trigger {
    transform: translateY(0);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s var(--ease-epic), background 0.3s, box-shadow 0.3s;
}

.fp-blur-overlay .fp-dl-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

.fp-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--magenta);
    border: 1px solid var(--gold);
    padding: 0.4rem 1rem;
    font-family: var(--font-ui);
    font-size: 0.54rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    z-index: 5;
}

.fp-unit-name {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--magenta);
    margin-bottom: 0.4rem;
}

.fp-unit-area {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark-mut);
    margin-bottom: 2.2rem;
}

.fp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(22, 8, 16, 0.06);
    margin-bottom: 2.2rem;
    border: 1px solid rgba(22, 8, 16, 0.06);
}

.fp-stat {
    background: var(--bg-light-1);
    padding: 1.2rem 0.5rem;
    text-align: center;
    transition: background 0.3s;
}

.fp-stat:hover {
    background: var(--bg-light-2);
}

.fp-stat-ico {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    display: block;
}

.fp-stat-val {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--magenta);
    display: block;
    font-weight: 500;
}

.fp-stat-lbl {
    font-family: var(--font-ui);
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark-mut);
    display: block;
    margin-top: 0.25rem;
}

.fp-rooms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(22, 8, 16, 0.05);
    margin-bottom: 2.5rem;
}

.fp-room {
    background: var(--bg-light-1);
    padding: 0.85rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.fp-room:hover {
    background: var(--bg-light-2);
}

.fp-room-name {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-dark-mut);
}

.fp-room-dim {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--magenta);
}


/* â”€â”€â”€ MASTER PLAN SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.master-plan-sec {
    background: var(--bg-light-1);
    padding: clamp(6rem, 11vw, 9.5rem) clamp(2rem, 6vw, 6.5rem);
    border-top: 1px solid rgba(22, 8, 16, 0.05);
}

.mp-hd {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.mp-hd .lbl {
    justify-content: center;
}

.mp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.mp-visual-wrap {
    width: 100%;
}

.mp-visual {
    background: var(--wine-deep);
    border: 1px solid var(--border-gold-tint);
    position: relative;
    overflow: hidden;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
    box-shadow: 0 25px 65px rgba(22, 8, 16, 0.12);
}

.mp-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.mp-img-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    z-index: 2;
}

.mp-img-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease-epic);
}

.mp-visual:hover img {
    transform: scale(1.04);
}

.mp-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--magenta);
    border: 1px solid var(--gold);
    padding: 0.4rem 1rem;
    font-family: var(--font-ui);
    font-size: 0.54rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    z-index: 5;
}

.mp-hotspots-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}

.mp-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    z-index: 5;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s;
}

.mp-hotspot-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--magenta);
    border: 2.2px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s var(--ease-epic);
}

.mp-hotspot-btn span.num {
    font-family: var(--font-ui);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-light);
}

.mp-hotspot-btn::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.8;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.mp-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.15);
    z-index: 10;
}

.mp-hotspot.active {
    z-index: 20;
}

.mp-hotspot.active .mp-hotspot-btn {
    background: var(--gold);
    border-color: var(--wine-deep);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.mp-hotspot.active .mp-hotspot-btn span.num {
    color: var(--wine-deep);
}


/* Tooltip for master plan hotspots */

.mp-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: var(--gold);
    color: var(--wine-deep);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease-epic), transform 0.25s var(--ease-epic), visibility 0.25s;
    z-index: 30;
}

.mp-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--gold) transparent transparent transparent;
}

.mp-hotspot.active .mp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.mp-zoom-floating-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--gold);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s var(--ease-epic);
    cursor: pointer;
}

.mp-zoom-floating-btn:hover {
    background: var(--magenta);
    color: var(--text-light);
    border-color: var(--magenta);
    transform: scale(1.08);
}

.mp-zoom-floating-btn svg {
    stroke: currentColor;
}

.mp-sub-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--magenta);
    margin-bottom: 1rem;
}

.mp-desc-top {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dark-mut);
    margin-bottom: 2.2rem;
}

.mp-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.mp-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid rgba(22, 8, 16, 0.05);
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-epic);
}

.mp-item:last-child {
    border-bottom: none;
}

.mp-item.active {
    background: rgba(155, 22, 93, 0.04);
    border-left-color: var(--magenta);
    border-radius: 0 6px 6px 0;
}

.mp-num {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1.1;
    margin-top: 0.2rem;
}

.mp-title {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    transition: color 0.3s;
}

.mp-item.active .mp-title {
    color: var(--magenta);
}

.mp-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-dark-mut);
    line-height: 1.6;
}

.mp-cta-wrap {
    margin-top: 2.5rem;
}


/* Lightbox utility to hide navigation arrows */

.lightbox.no-nav .lb-nav {
    display: none !important;
}

@media (max-width: 991px) {
    .mp-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .mp-visual {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .mp-container {
        padding: 0;
    }
    .mp-visual {
        height: 300px;
        padding: 1rem;
    }
}


/* â”€â”€â”€ AMENITIES SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.amenities {
    background: var(--bg-dark-1);
    color: var(--text-light);
    overflow: hidden;
    padding: 0;
}

.amen-two-col {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 680px;
}

.amen-visual {
    position: relative;
    overflow: hidden;
    background: var(--wine-deep);
    transition: background-color 0.8s var(--ease-epic);
}


/* Grid texture background inside dark visual panel */

.amen-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle, black, transparent 80%);
}

.amen-vis-geo {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.amen-vis-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    text-align: center;
    z-index: 2;
    transition: opacity 0.4s var(--ease-epic);
}

.amen-vis-ring {
    width: 140px;
    height: 140px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
    position: relative;
}

.amen-vis-ring::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.amen-vis-ico {
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.amen-vis-ico svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.2;
    fill: none;
}

.amen-vis-name {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.amen-vis-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0.8rem auto 1.2rem;
}

.amen-vis-sub {
    font-family: var(--font-ui);
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.amen-right {
    background: var(--bg-dark-2);
    padding: clamp(5rem, 8vw, 8rem) clamp(2rem, 5vw, 5.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3.5rem;
}

.amen-right-hd .lbl {
    color: var(--gold-light);
}

.amen-right-hd .lbl::before {
    background: var(--gold-light);
}

.amen-right-hd .hdg {
    color: var(--text-light);
}

.amen-right-hd .hdg em {
    color: var(--gold);
}

.body-p-light {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light-mut);
    margin-top: 1.4rem;
}

.amen-pg-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.amen-pg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.amen-pg-card {
    background: var(--bg-dark-1);
    padding: 1.6rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-align: center;
    transition: all 0.3s;
}

.amen-pg-card:hover {
    background: rgba(212, 175, 55, 0.06);
}

.amen-pg-card.active {
    background: rgba(212, 175, 55, 0.12);
}

.apc-ico {
    width: 28px;
    height: 28px;
    color: rgba(251, 249, 246, 0.45);
    transition: color 0.3s, transform 0.3s;
}

.amen-pg-card:hover .apc-ico,
.amen-pg-card.active .apc-ico {
    color: var(--gold);
    transform: translateY(-2px);
}

.apc-ico svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.4;
    fill: none;
}

.apc-name {
    font-family: var(--font-ui);
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light-mut);
    line-height: 1.3;
}

.amen-pg-card.active .apc-name {
    color: var(--text-light);
}

.amen-pager {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    justify-content: center;
}

.amen-pg-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.amen-pg-btn:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.03);
}

.amen-pg-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-light);
    stroke-width: 1.5;
    fill: none;
}

.amen-pg-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.amen-pg-dot {
    width: 16px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.4s var(--ease-epic), background 0.4s;
}

.amen-pg-dot.active {
    width: 32px;
    background: var(--gold);
}


/* â”€â”€â”€ PRESTIGIOUS ADDRESS (LOCATION) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */


/* Styled for a dark, ultra-luxury interactive experience */

.location-sec {
    background: var(--wine-deep);
    padding: clamp(6rem, 11vw, 9.5rem) clamp(2rem, 6vw, 6.5rem);
    color: var(--text-light);
}

.location-sec .loc-hd .lbl {
    justify-content: center;
    color: var(--gold);
}

.location-sec .loc-hd .hdg {
    color: var(--text-light);
    text-align: center;
}

.location-sec .loc-hd .gold-rule {
    background: var(--gold);
}

.loc-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.loc-map-container {
    position: relative;
    width: 100%;
}

.map-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    line-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.map-pins-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    pointer-events: none;
}


/* INTERACTIVE PINS */

.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    pointer-events: auto;
    z-index: 5;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s;
}

.map-pin-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--magenta);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-epic);
    padding: 0;
    cursor: pointer;
}

.map-pin-btn svg {
    width: 12px;
    height: 12px;
    fill: #ffffff;
    transition: fill 0.3s;
}

.map-pin:hover {
    transform: translate(-50%, -100%) scale(1.15);
    z-index: 10;
}

.map-pin.active {
    z-index: 20;
}

.map-pin.active .map-pin-btn {
    background: var(--gold);
    border-color: var(--wine-deep);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.map-pin.active .map-pin-btn svg {
    fill: var(--wine-deep);
}


/* FLOATING TOOLTIP */

.pin-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: var(--gold);
    color: var(--wine-deep);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease-epic), transform 0.25s var(--ease-epic), visibility 0.25s;
    z-index: 30;
}

.pin-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--gold) transparent transparent transparent;
}

.map-pin.active .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}


/* RIGHT HAND TABS & LIST */

.loc-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.loc-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
}

.loc-tabs::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari/Opera */
}

.loc-tab-btn {
    background: transparent;
    color: rgba(251, 249, 246, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.65rem 1.4rem;
    border-radius: 100px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.loc-tab-btn:hover {
    color: #ffffff;
    border-color: var(--gold);
}

.loc-tab-btn.active {
    background: var(--gold);
    color: var(--wine-deep);
    border-color: var(--gold);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.loc-list-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.loc-places-list {
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}


/* Style scrollbar for lists */

.loc-places-list::-webkit-scrollbar {
    width: 5px;
}

.loc-places-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}

.loc-places-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.loc-places-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.loc-place-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    width: 100%;
    text-align: left;
}

.loc-place-card:last-child {
    border-bottom: none;
}

.loc-place-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.loc-place-card.active {
    background: rgba(255, 255, 255, 0.08);
}

.loc-place-name {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.92rem;
    font-family: var(--font-sans);
    font-weight: 400;
    transition: color 0.3s;
}

.loc-place-card.active .loc-place-name,
.loc-place-card:hover .loc-place-name {
    color: #ffffff;
}

.loc-place-dist {
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.loc-cta-btn {
    margin-top: 2rem;
    align-self: flex-start;
}


/* RESPONSIVE LAYOUTS */

@media (max-width: 991px) {
    .loc-wrap {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .loc-map-container {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .location-sec {
        padding: clamp(4rem, 8vw, 6rem) 1.5rem;
    }
    .loc-tabs {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .loc-tab-btn {
        padding: 0.65rem .50rem 0.55rem;
        font-size: 0.7rem;
    }
    .loc-place-card {
        padding: 1rem 1.2rem;
    }
    .loc-place-name {
        font-size: 0.85rem;
    }
    .map-card {
        padding: 8px;
        border-radius: 14px;
    }
    .map-pins-overlay {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }
    .map-pin-btn {
        width: 20px;
        height: 20px;
        border-width: 1.5px;
    }
    .map-pin-btn svg {
        width: 10px;
        height: 10px;
    }
    .pin-tooltip {
        font-size: 9px;
        padding: 3px 6px;
    }
}


/* â”€â”€â”€ LIFESTYLE SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.lifestyle {
    background: var(--bg-light-2);
    padding: clamp(6rem, 11vw, 9.5rem) clamp(2rem, 6vw, 6.5rem);
}

.life-hd {
    max-width: 1200px;
    margin: 0 auto;
}

.life-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    max-width: 1200px;
    margin: 3.5rem auto 0;
}

.life-card {
    position: relative;
    overflow: hidden;
    padding: 3.5rem clamp(2rem, 5vw, 3.5rem);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 15px 40px rgba(22, 8, 16, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.6s var(--ease-epic), box-shadow 0.6s;
}

.life-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(22, 8, 16, 0.15);
}

.life-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 4, 8, 0.94) 0%, rgba(12, 4, 8, 0.4) 50%, rgba(12, 4, 8, 0.1) 100%);
    z-index: 1;
}

.life-bg-a {
    background: url('../images/intro-building.webp') center/cover no-repeat;
}

.life-bg-b {
    background: url('../images/amenity-pool-2.webp') center/cover no-repeat;
}

.life-bg-c {
    background: url('../images/amenity-lobby.webp') center/cover no-repeat;
}

.life-bg-d {
    background: url('../images/hero-aerial.webp') center/cover no-repeat;
}

.life-num {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.035);
    z-index: 2;
    transition: color 0.4s;
}

.life-card:hover .life-num {
    color: rgba(212, 175, 55, 0.08);
}

.life-body {
    position: relative;
    z-index: 2;
}

.life-tag {
    font-family: var(--font-ui);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.65rem;
}

.life-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.life-desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light-mut);
}


/* â”€â”€â”€ GALLERY SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.gallery-sec {
    background: var(--bg-light-1);
    padding: clamp(6rem, 11vw, 9.5rem) clamp(2rem, 6vw, 6.5rem);
}

.gal-hd {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.gal-hd .lbl {
    justify-content: center;
}

.gal-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.gal-tab {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.9rem 2.8rem;
    border: 1px solid rgba(22, 8, 16, 0.08);
    color: var(--text-dark-mut);
    transition: all 0.3s var(--ease-epic);
}

.gal-tab+.gal-tab {
    border-left: none;
}

.gal-tab.active {
    background: var(--magenta);
    color: var(--text-light);
    border-color: var(--magenta);
}

.gal-tab:hover:not(.active) {
    border-color: var(--magenta);
    color: var(--magenta);
}

.gal-scene {
    position: relative;
    height: 480px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gal-item {
    position: absolute;
    top: 50%;
    overflow: hidden;
    transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-gold-tint);
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-epic);
}

.gal-item:hover img {
    transform: scale(1.04);
}

.gal-item.pos-active {
    width: 60%;
    height: 440px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow: 0 35px 80px rgba(22, 8, 16, 0.4);
}

.gal-item.pos-prev {
    width: 25%;
    height: 310px;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
    filter: grayscale(0.8) brightness(0.4);
    z-index: 3;
    opacity: 0.8;
}

.gal-item.pos-next {
    width: 25%;
    height: 310px;
    right: 0%;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    filter: grayscale(0.8) brightness(0.4);
    z-index: 3;
    opacity: 0.8;
}

.gal-item.pos-hidden {
    width: 0%;
    height: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(22, 8, 16, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gal-arrow:hover {
    background: var(--magenta);
    border-color: var(--magenta);
    transform: translateY(-50%) scale(1.08);
}

.gal-arrow.gal-prev {
    left: -1.2rem;
}

.gal-arrow.gal-next {
    right: -1.2rem;
}

.gal-arrow svg {
    stroke: var(--text-light);
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
    fill: none;
}

.gal-dots {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 2.2rem;
}

.gal-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(22, 8, 16, 0.15);
    transition: all 0.3s;
}

.gal-dot.active {
    background: var(--magenta);
    transform: scale(1.4);
}


/* â”€â”€â”€ GALLERY LIGHTBOX â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(12, 4, 8, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-epic);
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lb-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-inner img {
    max-width: 86vw;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--border-gold-tint);
}

.lb-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: var(--text-light-mut);
    font-size: 2.2rem;
    line-height: 1;
    transition: color 0.3s, transform 0.4s;
}

.lb-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lb-caption {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3010;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(22, 8, 16, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lb-nav:hover {
    background: var(--magenta);
    border-color: var(--magenta);
    transform: translateY(-50%) scale(1.08);
}

.lb-nav svg {
    stroke: var(--text-light);
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
    fill: none;
}

#lbPrev {
    left: 2rem;
}

#lbNext {
    right: 2rem;
}


/* â”€â”€â”€ VIDEOS SHOWCASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.video-sec {
    background: var(--bg-light-2);
    padding: clamp(6rem, 11vw, 9.5rem) clamp(2rem, 6vw, 6.5rem);
}

.vid-hd {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.vid-hd .lbl {
    justify-content: center;
}

.vid-stage {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.8rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.vid-player {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.vid-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--wine-deep);
    border: 1px solid var(--border-gold-tint);
    box-shadow: 0 25px 65px rgba(22, 8, 16, 0.18);
    overflow: hidden;
}

.vid-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
}

.vid-poster {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s var(--ease-epic);
}

.vid-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

.vid-poster-bg {
    position: absolute;
    inset: 0;
    transition: background 0.7s var(--ease-epic);
}

.vid-poster-vign {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, rgba(12, 4, 8, 0.85) 100%);
}

.vid-play-btn {
    position: relative;
    z-index: 5;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: rgba(22, 8, 16, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-epic), background 0.3s;
    margin-bottom: 1.8rem;
}

.vid-play-btn::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: playRipple 2s ease-out infinite;
}

@keyframes playRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.vid-play-btn:hover {
    transform: scale(1.1);
    background: var(--magenta);
    border-color: var(--magenta);
}

.vid-play-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--text-light);
    margin-left: 3px;
}

.vid-poster-meta {
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.vid-cat-badge {
    font-family: var(--font-ui);
    font-size: 0.5rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold-tint);
    padding: 0.3rem 0.8rem;
    background: rgba(22, 8, 16, 0.45);
}

.vid-poster-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--text-light);
}

.vid-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.4rem 0.5rem 0;
    border-top: 1px solid rgba(22, 8, 16, 0.08);
    margin-top: 1.4rem;
}

.vid-now-playing {
    font-family: var(--font-ui);
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.vid-now-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.vid-current-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.vid-current-sub {
    font-size: 0.8rem;
    color: var(--text-dark-mut);
}

.vid-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.vid-card {
    background: var(--bg-light-1);
    display: grid;
    grid-template-columns: 110px 1fr;
    border: 1px solid rgba(22, 8, 16, 0.05);
    transition: all 0.3s;
    overflow: hidden;
}

.vid-card.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.04);
}

.vid-card:hover:not(.active) {
    background: var(--bg-light-2);
}

.vid-thumb {
    height: 68px;
    position: relative;
    overflow: hidden;
}

.vid-thumb-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.vid-card:hover .vid-thumb-bg {
    transform: scale(1.08);
}

.vid-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid-thumb-play {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(22, 8, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid-thumb-play svg {
    width: 8px;
    height: 8px;
    fill: var(--text-light);
    margin-left: 1px;
}

.vid-playing-badge {
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    background: var(--magenta);
    font-family: var(--font-ui);
    font-size: 0.42rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
    padding: 0.15rem 0.35rem;
    text-transform: uppercase;
}

.vid-meta {
    padding: 0.7rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}

.vid-meta-cat {
    font-family: var(--font-ui);
    font-size: 0.46rem;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
    text-transform: uppercase;
}

.vid-meta-title {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

.vid-meta-dur {
    font-family: var(--font-ui);
    font-size: 0.48rem;
    color: var(--text-dark-mut);
}


/* â”€â”€â”€ CONTACT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.contact {
    background: var(--bg-dark-2);
    color: var(--text-light);
    padding: clamp(6rem, 11vw, 9.5rem) clamp(2rem, 6vw, 6.5rem);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(155, 22, 93, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-wrap .lbl {
    justify-content: center;
    color: var(--gold-light);
}

.contact-wrap .lbl::before {
    background: var(--gold-light);
}

.contact-wrap .hdg {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-wrap .hdg em {
    color: var(--gold);
}

.contact-rule {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 2.2rem auto;
}

.contact-form {
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.fld-wrap {
    position: relative;
    width: 100%;
}

.fld-wrap.full {
    grid-column: 1 / -1;
}

.fld {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.15rem 1.4rem;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s;
    outline: none;
}

.fld::placeholder {
    color: rgba(251, 249, 246, 0.35);
}

.fld:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.fld-sel {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23d4af37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.4rem center;
}

.fld-sel option {
    background: var(--bg-dark-2);
    color: var(--text-light);
}

.fld-btn {
    grid-column: 1 / -1;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    padding: 1.25rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.fld-btn:hover {
    color: var(--text-light);
    background: var(--magenta);
    letter-spacing: 0.28em;
    box-shadow: 0 15px 30px rgba(155, 22, 93, 0.4);
}

.cinfo-row {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 4.5rem;
    flex-wrap: wrap;
}

.ci {
    text-align: center;
}

.ci-lbl {
    font-family: var(--font-ui);
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.ci-val {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-light-mut);
    direction: ltr;
}


/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

footer {
    background: var(--wine-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3.5rem clamp(2rem, 6vw, 6.5rem);
    position: relative;
    z-index: 10;
}

.foot-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.foot-l p,
.foot-r p {
    font-family: var(--font-ui);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--text-light-mut);
    line-height: 2;
    direction: ltr;
}

.foot-r {
    text-align: right;
}

.foot-c {
    text-align: center;
}

.foot-c img {
    height: 50px;
    /* opacity: 0.75; */
    transition: opacity 0.3s, transform 0.3s;
    margin: 0 auto;
}

.foot-c img:hover {
    opacity: 1;
    transform: scale(1.03);
}

.foot-disc {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2.8rem;
    padding-top: 1.8rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.foot-disc p {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(251, 249, 246, 0.35);
    text-align: center;
}

.foot-rera-wrap {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    color: #fff;
}

.rera-qr-img {
    height: 100px !important;
    width: 100px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0;
    background: #ffffff;
    transition: transform 0.3s var(--ease-epic), border-color 0.3s var(--ease-epic);
}

.rera-qr-img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}


/* â”€â”€â”€ FLOATING WHATSAPP BUTTON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.whatsapp-float {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    z-index: 100;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s var(--ease-epic), box-shadow 0.3s var(--ease-epic), background-color 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #20ba5a;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}


/* â”€â”€â”€ ENQUIRE POPUP MODAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#enqBackdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(12, 4, 8, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-epic);
    padding: 1.5rem;
}

#enqBackdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.enq-card {
    background: var(--bg-dark-2);
    border: 1px solid var(--border-gold-tint);
    padding: 3.5rem 3rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.6s var(--ease-epic);
}

#enqBackdrop.open .enq-card {
    transform: scale(1) translateY(0);
}

.enq-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 28px;
    height: 28px;
    color: var(--text-light-mut);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.3s;
}

.enq-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.enq-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.enq-logo-wrap {
    text-align: center;
    margin-bottom: 1.6rem;
}

.enq-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.enq-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0.8rem auto 2.2rem;
}

.enq-fields {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 1.6rem;
}

.enq-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.enq-field label {
    font-family: var(--font-ui);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.enq-req {
    color: #ff5e5e;
}

.enq-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.enq-input:focus {
    border-color: var(--gold);
}

.enq-phone-row {
    display: flex;
    gap: 0.6rem;
}

.enq-cc-wrap {
    position: relative;
    flex-shrink: 0;
}

.enq-cc-btn {
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
}

.enq-cc-flag {
    width: 16px;
    height: 12px;
    display: inline-block;
    background-size: cover;
}

.enq-cc-code {
    font-size: 0.88rem;
}

.enq-cc-arrow {
    width: 8px;
    height: 6px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.enq-cc-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    max-height: 240px;
    overflow-y: auto;
    background: var(--bg-dark-2);
    border: 1px solid var(--border-gold-tint);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.enq-cc-drop.open {
    display: block;
}

.enq-cc-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light-mut);
    transition: all 0.2s;
}

.enq-cc-item:hover,
.enq-cc-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-light);
}

.enq-cc-item-name {
    font-size: 0.75rem;
    flex: 1;
}

.enq-cc-item-code {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--gold);
}

.enq-err {
    display: none;
    font-size: 0.75rem;
    color: #ff5e5e;
    margin-top: 0.2rem;
}

.enq-err.show {
    display: block;
}

.enq-hint {
    font-size: 0.7rem;
    color: rgba(251, 249, 246, 0.4);
    margin-top: 0.15rem;
}

.enq-check-row {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.enq-check-row input {
    margin-top: 0.25rem;
}

.enq-check-row label {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-light-mut);
}

.enq-check-row label a {
    color: var(--gold);
    text-decoration: underline;
}

.enq-submit {
    width: 100%;
    background: var(--gold);
    color: var(--text-dark);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1.1rem;
    transition: all 0.3s;
}

.enq-submit:hover {
    background: var(--magenta);
    color: var(--text-light);
}


/* Helper Class for custom inputs */

.error {
    border-color: #ff5e5e !important;
}

.reveal-fade-up {
    opacity: 0;
    transform: translateY(35px);
}

.reveal-fade-left {
    opacity: 0;
    transform: translateX(-35px);
}

.reveal-fade-right {
    opacity: 0;
    transform: translateX(35px);
}

@media (max-width: 1400px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }
}

@media (max-width: 1200px) {
    .nav {
        padding: 0 2.5rem;
    }
    .hero {
        padding: 0 4.5rem;
    }
    .hero-floater {
        right: 4.5rem;
    }
    .hero-address {
        left: 4.5rem;
    }
    .hero-scroll {
        right: 4.5rem;
    }
    .abt-inner,
    .res-inner,
    .fp-panel,
    .loc-wrap,
    .vid-stage {
        gap: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (max-width: 991px) {
    body {
        cursor: default;
        /* Reset cursor on tablets/mobiles */
    }
    #c-dot,
    #c-ring {
        display: none;
    }
    .nav {
        height: 76px;
        padding: 0 2rem;
    }
    .nav.scrolled,
    .nav.scrolled.nav-light-state {
        background: rgba(12, 4, 8, 0.9) !important;
        backdrop-filter: blur(20px) !important;
        border-bottom-color: rgba(212, 175, 55, 0.15) !important;
    }
    .nav.scrolled .nav-hamburger span,
    .nav.scrolled.nav-light-state .nav-hamburger span {
        background: var(--text-light) !important;
    }
    .nav-links {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .hero {
        padding: 0 2.5rem;
    }
    .hero-floater {
        display: none;
    }
    .hero-address {
        left: 2.5rem;
        bottom: 2rem;
    }
    .hero-scroll {
        display: none;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-cell:nth-child(2) {
        border-right: none;
    }
    .stat-cell:nth-child(n+3) {
        border-top: 1px solid rgba(22, 8, 16, 0.06);
    }
    .abt-inner {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    .abt-float-img {
        display: none;
    }
    .res-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .res-rgt {
        height: 400px;
    }
    .fp-panel {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .fp-blueprint {
        height: 400px;
    }
    .amen-two-col {
        display: flex;
        flex-direction: column;
    }
    .amen-right {
        order: 1;
    }
    .amen-visual {
        order: 2;
        min-height: 400px;
    }
    .loc-wrap {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .loc-map {
        min-height: 400px;
        order: 2;
    }
    .loc-right {
        order: 1;
    }
    .life-grid {
        grid-template-columns: 1fr;
    }
    .life-card {
        min-height: 320px;
    }
    .vid-stage {
        grid-template-columns: 1fr;
    }
    .vid-player {
        position: relative;
        top: 0;
    }
    .contact-form {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .foot-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .foot-rera-wrap {
        align-items: center;
        justify-content: center;
    }
    .foot-r {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .foot-c img {
        margin: 0 auto;
    }
    .foot-l p,
    .foot-r p {
        font-size: .8rem;
    }
    .nav {
        padding: 0 1.5rem;
    }
    .nav-logo-img {
        height: 38px;
    }
    .hero {
        padding: 0 1.5rem;
        justify-content: center;
    }
    .hero-eyebrow {
        margin-bottom: 1.5rem;
    }
    .hero-title {
        margin-bottom: 1.5rem;
    }
    .hero-sub {
        margin-bottom: 2.5rem;
    }
    .hero-address {
        left: 1.5rem;
        bottom: 1.5rem;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-cell {
        border-right: 1px solid rgba(22, 8, 16, 0.06);
        border-bottom: none;
        padding: 2.2rem 1rem;
    }
    .stat-cell:nth-child(2n) {
        border-right: none;
    }
    .stat-cell:nth-child(n+3) {
        border-top: 1px solid rgba(22, 8, 16, 0.06);
    }
    .stat-cell:last-child {
        border-bottom: none;
    }
    .about,
    .residences,
    .floorplan,
    .location-sec,
    .lifestyle,
    .gallery-sec,
    .video-sec,
    .contact {
        padding: 4.5rem 1.5rem;
    }
    .fp-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .fp-stat:nth-child(2) {
        border-right: none;
    }
    .fp-stat:nth-child(n+3) {
        border-top: 1px solid rgba(22, 8, 16, 0.06);
    }
    .amen-right {
        padding: 3.5rem 1.5rem;
    }
    .amen-pg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gal-scene {
        height: 320px;
    }
    .gal-item.pos-active {
        width: 80%;
        height: 290px;
    }
    .gal-item.pos-prev,
    .gal-item.pos-next {
        display: none;
    }
    .vid-card {
        grid-template-columns: 80px 1fr;
    }
    .vid-thumb {
        height: 52px;
    }
    .enq-card {
        padding: 2.5rem 1.5rem;
    }
}


/* Accessibility helper class for screen readers */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* â”€â”€â”€ FLOOR PLAN SEARCH MODAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#fpSearchBackdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(12, 4, 8, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-epic);
    padding: 1.5rem;
}

#fpSearchBackdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.fps-card {
    background: var(--bg-dark-2);
    border: 1px solid var(--border-gold-tint);
    padding: 3.5rem 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.6s var(--ease-epic);
    display: flex;
    flex-direction: column;
    max-height: 85vh;
}

#fpSearchBackdrop.open .fps-card {
    transform: scale(1) translateY(0);
}

.fps-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 28px;
    height: 28px;
    color: var(--text-light-mut);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.3s;
    background: transparent;
    border: none;
    cursor: pointer;
}

.fps-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.fps-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.fps-logo-wrap {
    text-align: center;
    margin-bottom: 1.2rem;
}

.fps-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.fps-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light-mut);
    text-align: center;
    max-width: 45ch;
    margin: 0 auto 1.5rem;
    line-height: 1.4;
}

.fps-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.8rem;
}

.fps-search-wrap {
    margin-bottom: 1.8rem;
}

.fps-search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.fps-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.1rem 0.9rem 2.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.fps-input:focus {
    border-color: var(--gold);
}

.fps-search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-light-mut);
    pointer-events: none;
}

.fps-results {
    flex-grow: 1;
    overflow-y: auto;
    margin-right: -1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 150px;
}

.fps-results::-webkit-scrollbar {
    width: 4px;
}

.fps-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.fps-results::-webkit-scrollbar-thumb {
    background: var(--gold);
}

.fps-result-card {
    display: flex;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    align-items: center;
    transition: background 0.3s, border-color 0.3s;
}

.fps-result-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-gold-tint);
}

.fps-result-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--wine-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fps-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fps-result-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.fps-result-meta-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fps-result-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.fps-result-desc {
    font-size: 0.72rem;
    color: var(--text-light-mut);
}

.fps-result-rooms {
    font-size: 0.65rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.fps-download-btn-small {
    padding: 0.55rem 1.1rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.fps-no-results {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-light-mut);
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .fps-card {
        padding: 2.5rem 1.5rem;
    }
    .fps-result-card {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .fps-result-thumb {
        width: 100%;
        height: 120px;
    }
    .fps-result-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .fps-result-info a {
        width: 100%;
        justify-content: center;
    }
}