/* ===== ROOT VARIABLES ===== */
:root {
    --obsidian: #080808;
    --deep: #0F0F0F;
    --charcoal: #1A1A1A;
    --charcoal2: #222222;
    --fog: #C8C0B4;
    --champagne: #D4AF76;
    --pale-gold: #E8D5A3;
    --ivory: #F5F0E8;
    --white: #FDFCFA;
    --dim: #6B6560;
    --display: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', system-ui, sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: auto;
}

body {
    background: var(--obsidian);
    color: var(--fog);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--obsidian);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.pre-logo {
    font-family: var(--display);
    font-size: 52px;
    font-weight: 300;
    color: var(--champagne);
    letter-spacing: 0.25em;
    opacity: 0;
}

.pre-logo span {
    color: var(--fog);
    font-weight: 200;
}

.pre-bar-wrap {
    width: 160px;
    height: 1px;
    background: rgba(212, 175, 118, 0.15);
    position: relative;
    overflow: hidden;
}

.pre-bar {
    height: 100%;
    background: var(--champagne);
    width: 0%;
}

.pre-tagline {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--dim);
    opacity: 0;
    margin-top: 8px;
}

/* ===== NAVBAR ===== */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.95), transparent);
}

#mainNav.scrolled {
    background: rgb(8 8 8 / 9%);
    padding: 14px 60px;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 118, 0.08);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--champagne);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo span {
    font-weight: 200;
    color: var(--fog);
}

.nav-center {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
}

.nav-center a {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fog);
    text-decoration: none;
    transition: color 0.3s;
    padding: 4px 0;
    position: relative;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--champagne);
    transition: width 0.3s;
}

.nav-center a:hover {
    color: var(--champagne);
}

.nav-center a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--obsidian);
    background: var(--champagne);
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--pale-gold);
    transform: translateY(-1px);
}

.nav-toggler {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.nav-toggler span {
    width: 24px;
    height: 1px;
    background: var(--fog);
    display: block;
    transition: all 0.3s;
}

/* Mobile Nav */
#mobileMenu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 198;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

#mobileMenu.open {
    display: flex;
}

.mob-nav-link {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 300;
    color: var(--fog);
    text-decoration: none;
    padding: 16px;
    border-bottom: 1px solid rgba(212, 175, 118, 0.08);
    width: 100%;
    text-align: center;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.mob-nav-link:hover {
    color: var(--champagne);
}

.mob-nav-cta {
    margin-top: 40px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--obsidian);
    background: var(--champagne);
    padding: 16px 48px;
    border: none;
    cursor: pointer;
}

@media(max-width:600px){
    .nav-logo img {
    max-width: 150px;
}
}

/* ===== HERO SLIDER ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.38);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgb(8 8 8 / 12%) 0%, rgba(8, 8, 8, 0.2) 60%, transparent 100%), linear-gradient(to top, rgb(8 8 8 / 0%) 0%, transparent 55%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 60px 90px;
    max-width: 860px;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 28px;
    opacity: 0;
}

.hero-eyebrow::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--champagne);
}

.hero-title {
    font-family: var(--display);
    font-size: clamp(52px, 8vw, 80px);
    font-weight: 300;
    line-height: 0.88;
    color: var(--white);
    letter-spacing: -0.015em;
    margin-bottom: 28px;
    opacity: 0;
}

.hero-title em {
    font-style: italic;
    color: var(--champagne);
    display: block;
}

.hero-sub {
    font-family: var(--display);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    font-style: italic;
    color: var(--fog);
    margin-bottom: 48px;
    line-height: 1.65;
    max-width: 520px;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
}

.btn-gold {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--obsidian);
    background: var(--champagne);
    padding: 17px 44px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--pale-gold);
    transform: translateY(-2px);
    color: var(--obsidian);
}

.btn-outline {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--fog);
    background: transparent;
    padding: 17px 44px;
    border: 1px solid rgba(200, 192, 180, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--champagne);
    color: var(--champagne);
}

/* Scroll indicator */
.scroll-ind {
    position: absolute;
    right: 60px;
    bottom: 44px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-line {
    width: 1px;
    height: 72px;
    background: linear-gradient(to bottom, var(--champagne), transparent);
}

.scroll-txt {
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--dim);
    writing-mode: vertical-rl;
}

/* Slide dots */
.hero-dots {
    position: absolute;
    left: 60px;
    bottom: 44px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 28px;
    height: 1px;
    background: rgba(212, 175, 118, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--champagne);
    width: 48px;
}

/* ===== STATS BAND ===== */

.stats-band {
    background: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 118, 0.18);
    border-bottom: 1px solid rgba(212, 175, 118, 0.1);
}
.stat-item h4 {
    text-transform: uppercase;
}
.stat-item {
    padding: 38px 20px;
    text-align: center;
    border-right: 1px solid rgba(212, 175, 118, 0.1);
}

.stat-n {
    font-family: var(--display);
    font-size: 25px;
    font-weight: 300;
    color: var(--champagne);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-l {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--dim);
}

/* ===== SECTION COMMON ===== */
.sec {
    padding: 110px 60px;
}

.eyebrow {
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 18px;
}

.sec-title {
    font-family: var(--display);
    font-size: clamp(34px, 4.5vw, 68px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.02;
}

.sec-title em {
    font-style: italic;
    color: var(--champagne);
}

.gold-line {
    width: 44px;
    height: 1px;
    background: var(--champagne);
    margin: 28px 0;
    opacity: 0.6;
}

.sec-body {
    font-size: 15px;
    line-height: 1.95;
    color: var(--fog);
    max-width: 560px;
}

/* ===== ABOUT ===== */
.about-sec {
    background: var(--deep);
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

.about-corner {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 64px;
    height: 64px;
    border-top: 1px solid var(--champagne);
    border-left: 1px solid var(--champagne);
    opacity: 0.5;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--charcoal);
    border: 1px solid rgba(212, 175, 118, 0.25);
    padding: 24px 30px;
}

.about-badge-n {
    font-family: var(--display);
    font-size: 46px;
    font-weight: 300;
    color: var(--champagne);
    display: block;
    line-height: 1;
}

.about-badge-l {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dim);
    margin-top: 4px;
}

.about-facts {
    margin-top: 44px;
}

.fact {
    padding: 10px 22px;
    background: rgba(212, 175, 118, 0.02);
    border: 1px solid rgba(212, 175, 118, 0.08);
    transition: background 0.3s, border-color 0.3s;
}

.fact:hover {
    background: rgba(212, 175, 118, 0.05);
    border-color: rgba(212, 175, 118, 0.2);
}

.fact-v {
    font-family: var(--display);
    font-size: 50px;
    font-weight: 300;
    color: var(--champagne);
    display: block;
    margin-bottom: 3px;
    line-height: 1;
}

.fact-k {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dim);
}

/* ===== WHY OZAR ===== */
.why-sec {
    background: var(--obsidian);
}

.why-card {
    padding: 44px 36px;
    border: 1px solid rgba(212, 175, 118, 0.08);
    background: rgba(212, 175, 118, 0.01);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--champagne);
    transition: height 0.4s;
}

.why-card:hover {
    background: rgba(212, 175, 118, 0.04);
    border-color: rgba(212, 175, 118, 0.22);
    transform: translateY(-4px);
}

.why-card:hover::before {
    height: 100%;
}

.why-num {
    font-family: var(--display);
    font-size: 64px;
    font-weight: 300;
    color: rgba(212, 175, 118, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.why-title {
    font-family: var(--display);
    font-size: 25px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.why-desc {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.8;
}

/* ===== RESIDENCES ===== */
.res-sec {
    background: var(--charcoal2);
}

.res-card {
    background: var(--charcoal);
    overflow: hidden;
    transition: transform 0.4s;
    height: 100%;
}

.res-card:hover {
    transform: translateY(-6px);
}

.res-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.res-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
    transition: filter 0.5s, transform 0.6s;
}

.res-card:hover .res-card-img {
    filter: brightness(0.55);
    transform: scale(1.06);
}

.res-card-body {
    padding: 30px 28px 34px;
    /* border: 1px solid rgba(212, 175, 118, 0.07); */
    border-top: none;
}

.res-card-tag {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 10px;
}

.res-card-name {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}

.res-card-size {
    font-family: var(--display);
    font-size: 25px;
    font-weight: 300;
    color: var(--champagne);
    line-height: 1;
}

.res-card-unit {
    font-size: 11px;
    color: var(--dim);
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.res-feats {
    margin-top: 14px;
}

.res-feat {
    font-size: 12px;
    color: var(--fog);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(212, 175, 118, 0.05);
}

.res-feat:last-child {
    border-bottom: none;
}

.res-feat::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--champagne);
    flex-shrink: 0;
}

.res-cta {
    margin-top: 22px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--champagne);
    background: none;
    border: 1px solid rgba(212, 175, 118, 0.25);
    padding: 12px 24px;
    cursor: pointer;
    font-family: var(--sans);
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.res-cta:hover {
    background: rgba(212, 175, 118, 0.08);
    border-color: var(--champagne);
    color: var(--champagne);
}

/* ===== OVERVIEW STRIP ===== */
.overview-strip {
    background: var(--charcoal);
}

.ov-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(212, 175, 118, 0.08);
}

.ov-item:last-child {
    border-right: none;
}

.ov-icon {
    font-size: 22px;
    color: var(--champagne);
    margin-bottom: 12px;
    opacity: 0.8;
}

.ov-label {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 6px;
}

.ov-val {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
}

/* ===== IMAGE FEATURE STRIP ===== */
.img-strip {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
}

.img-strip-main {
    position: relative;
    overflow: hidden;
    height: 580px;
}

.img-strip-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.img-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 52px;
}

.img-strip-text h3 {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.img-strip-text p {
    font-size: 14px;
    color: var(--fog);
    max-width: 360px;
    line-height: 1.7;
}

.img-strip-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.side-item {
    position: relative;
    overflow: hidden;
}

.side-item img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    filter: brightness(0.55);
    transition: filter 0.4s, transform 0.5s;
}

.side-item:hover img {
    filter: brightness(0.72);
    transform: scale(1.04);
}

.side-label {
    position: absolute;
    bottom: 22px;
    left: 28px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--champagne);
}

/* ===== AMENITIES ===== */
.amenities-sec {
    background: var(--deep);
}

.amen-img-grid img {
    width: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    display: block;
    transition: filter 0.4s, transform 0.5s;
}

.amen-img-grid .amen-tall {
    height: 380px;
}

.amen-img-grid .amen-sm {
    height: 185px;
}

.amen-img-grid img:hover {
    filter: brightness(0.82);
    transform: scale(1.03);
}

.amen-card {
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(212, 175, 118, 0.07);
    transition: background 0.3s, border-color 0.3s;
    height: 100%;
}

.amen-card:hover {
    background: rgba(212, 175, 118, 0.04);
    border-color: rgba(212, 175, 118, 0.18);
}

.amen-icon {
    font-size: 20px;
    color: var(--champagne);
    margin-bottom: 14px;
    opacity: 0.75;
}

.amen-name {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 7px;
    font-weight: 400;
}

.amen-desc {
    font-size: 12px;
    color: var(--dim);
    line-height: 1.65;
}

/* ===== APARTMENT FEATURES ===== */
.apt-sec {
    background: var(--charcoal);
}

.apt-feat {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(212, 175, 118, 0.06);
}

.apt-feat:last-child {
    border-bottom: none;
}

.apt-feat-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 118, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--champagne);
}

.apt-feat-title {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 400;
}

.apt-feat-desc {
    font-size: 13px;
    color: var(--dim);
    line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery-sec {
    background: var(--obsidian);
    padding: 110px 0;
}

.gallery-hd {
    padding: 0 60px 56px;
}

.gal-grid {
    padding: 0 60px;
}

.gal-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    margin-bottom: 4px;
}

.gal-item img {
    width: 100%;
    object-fit: cover;
    filter: brightness(0.62);
    transition: filter 0.5s, transform 0.6s;
}

.gal-item.tall img {
    height: 400px;
}

.gal-item.short img {
    height: 196px;
}

.gal-item:hover img {
    filter: brightness(0.82);
    transform: scale(1.06);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.78) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

.gal-label small {
    display: block;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 3px;
}

.gal-label span {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
}

.gal-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 175, 118, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne);
    font-size: 18px;
    transition: transform 0.3s;
}

.gal-item:hover .gal-zoom {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== FLOOR PLANS ===== */
.fp-sec {
    background: var(--deep);
}

.fp-tabs-wrap {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(212, 175, 118, 0.15);
    margin-bottom: 52px;
    overflow-x: auto;
    scrollbar-width: none;
}

.fp-tabs-wrap::-webkit-scrollbar {
    display: none;
}

.fp-tab {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dim);
    background: none;
    border: none;
    padding: 16px 32px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.3s;
    white-space: nowrap;
}

.fp-tab:hover {
    color: var(--fog);
}

.fp-tab.active {
    color: var(--champagne);
    border-bottom-color: var(--champagne);
}

.fp-panel {
    display: none;
}

.fp-panel.active {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
}

.fp-img-frame {
    border: 1px solid rgba(212, 175, 118, 0.15);
    background: rgba(212, 175, 118, 0.025);
    padding: 24px;
    position: relative;
    cursor: zoom-in;
}

.fp-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(212, 175, 118, 0.025) 39px, rgba(212, 175, 118, 0.025) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(212, 175, 118, 0.025) 39px, rgba(212, 175, 118, 0.025) 40px);
    pointer-events: none;
}

.fp-img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    filter: invert(1) sepia(1) saturate(0.3) hue-rotate(10deg) brightness(0.82);
    transition: transform 0.4s;
}

.fp-img-frame:hover .fp-img {
    transform: scale(1.02);
}

.fp-corner-tl {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    border-top: 1px solid var(--champagne);
    border-left: 1px solid var(--champagne);
    opacity: 0.4;
    z-index: 2;
}

.fp-corner-br {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-bottom: 1px solid var(--champagne);
    border-right: 1px solid var(--champagne);
    opacity: 0.4;
    z-index: 2;
}

.fp-img-label {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--charcoal);
    border: 1px solid rgba(212, 175, 118, 0.2);
    padding: 10px 18px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--champagne);
    z-index: 3;
}

.fp-toggle {
    display: flex;
    gap: 2px;
    margin-top: 16px;
}

.fp-toggle-btn {
    flex: 1;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dim);
    background: var(--charcoal);
    border: 1px solid rgba(212, 175, 118, 0.1);
    padding: 11px 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--sans);
}

.fp-toggle-btn.active {
    background: rgba(212, 175, 118, 0.1);
    border-color: rgba(212, 175, 118, 0.4);
    color: var(--champagne);
}

.fp-details {
    flex: 1;
    min-width: 280px;
    padding-top: 4px;
}

.fp-tag {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 14px;
    display: block;
}

.fp-title {
    font-family: var(--display);
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 6px;
}

.fp-size {
    font-family: var(--display);
    font-size: 58px;
    font-weight: 300;
    color: var(--champagne);
    line-height: 1;
}

.fp-size-unit {
    font-size: 13px;
    color: var(--dim);
    letter-spacing: 0.12em;
}

.fp-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin: 28px 0;
    border: 1px solid rgba(212, 175, 118, 0.08);
}

.fp-spec {
    padding: 18px 16px;
    background: rgba(212, 175, 118, 0.02);
    border: 1px solid rgba(212, 175, 118, 0.05);
}

.fp-spec-v {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 300;
    color: var(--champagne);
    display: block;
    margin-bottom: 3px;
}

.fp-spec-k {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dim);
}

.fp-rooms {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 22px;
}

.fp-room {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 118, 0.06);
}

.fp-room:last-child {
    border-bottom: none;
}

.fp-room-name {
    font-size: 13px;
    color: var(--fog);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fp-room-name::before {
    content: '';
    width: 12px;
    height: 1px;
    background: var(--champagne);
}

.fp-room-dim {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 300;
    color: var(--dim);
    font-style: italic;
}

.fp-enquire {
    margin-top: 28px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--obsidian);
    background: var(--champagne);
    padding: 15px 36px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    text-decoration: none;
}

.fp-enquire:hover {
    background: var(--pale-gold);
    color: var(--obsidian);
}

/* ===== PULL QUOTE ===== */
.quote-sec {
    position: relative;
    padding: 110px 60px;
    text-align: center;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background: url('https://ozar96.com/wp-content/uploads/2026/01/living-room.webp') center/cover no-repeat;
    filter: brightness(0.1) saturate(0.5);
}

.quote-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.big-quote {
    font-family: var(--display);
    font-size: 120px;
    font-weight: 300;
    color: rgba(212, 175, 118, 0.12);
    line-height: 0.55;
    display: block;
    margin-bottom: 12px;
}

.quote-text {
    font-family: var(--display);
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.45;
}

.quote-attr {
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-top: 36px;
    display: block;
}

/* ===== ARCHITECT ===== */
.architect-sec {
    background: var(--charcoal);
}

.arch-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.55) grayscale(0.3);
    display: block;
}

.arch-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(28, 28, 28, 0.85) 100%);
}

.arch-seal {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: rgba(8, 8, 8, 0.88);
    border: 1px solid rgba(212, 175, 118, 0.25);
    padding: 22px 28px;
}

.arch-seal-n {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 300;
    color: var(--champagne);
    display: block;
    line-height: 1;
}

.arch-seal-l {
    font-size: 9px;
    letter-spacing: 0.22em;
    color: var(--dim);
    margin-top: 3px;
    text-transform: uppercase;
}

.arch-cred {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--champagne);
    background: rgba(212, 175, 118, 0.08);
    border: 1px solid rgba(212, 175, 118, 0.22);
    padding: 9px 18px;
    margin: 22px 0 24px;
}

.arch-proj {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 300;
    color: var(--fog);
    padding: 13px 0 13px 22px;
    border-left: 2px solid rgba(212, 175, 118, 0.2);
    border-bottom: 1px solid rgba(212, 175, 118, 0.05);
    transition: border-left-color 0.3s, color 0.3s;
    max-width: 400px;
}

.arch-proj:last-child {
    border-bottom: none;
}

.arch-proj:hover {
    border-left-color: var(--champagne);
    color: var(--white);
}

/* ===== LOCATION ===== */
.loc-sec {
    background: var(--deep);
}

.loc-img-wrap {
    position: relative;
    overflow: hidden;
    height: 520px;
}

.loc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.48) saturate(0.75);
}

.loc-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(8, 8, 8, 0.88);
    border: 1px solid rgba(212, 175, 118, 0.28);
    padding: 12px 20px;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--champagne);
}

.loc-cat-title {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 118, 0.15);
}

.loc-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--fog);
    padding: 7px 0;
    border-bottom: 1px solid rgba(212, 175, 118, 0.04);
}

.loc-item:last-child {
    border-bottom: none;
}

.loc-time {
    font-size: 11px;
    color: var(--dim);
    font-family: var(--display);
    font-style: italic;
}

/* ===== CONTACT ===== */
.contact-sec {
    background: var(--obsidian);
    border-top: 1px solid rgba(212, 175, 118, 0.1);
}

.f-grp {
    margin-bottom: 18px;
}

.f-lbl {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--dim);
    display: block;
    margin-bottom: 8px;
}

.f-inp,
.f-sel,
.f-ta {
    width: 100%;
    background: var(--charcoal);
    border: 1px solid rgba(212, 175, 118, 0.14);
    color: var(--white);
    padding: 14px 18px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
}

.f-inp::placeholder,
.f-ta::placeholder {
    color: var(--dim);
}

.f-inp:focus,
.f-sel:focus,
.f-ta:focus {
    border-color: rgba(212, 175, 118, 0.5);
}

.f-ta {
    resize: none;
    height: 110px;
}

.f-submit {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--obsidian);
    background: var(--champagne);
    padding: 16px 44px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
}

.f-submit:hover {
    background: var(--pale-gold);
}

.c-info-lbl {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 8px;
}

.c-info-val {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
}

.c-info-sub {
    font-size: 12px;
    color: var(--dim);
    margin-top: 3px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--fog);
    padding: 6px 0;
}

.hour-time {
    font-size: 12px;
    color: var(--dim);
}

.rera-box {
    padding: 28px;
    border: 1px solid rgba(212, 175, 118, 0.12);
    background: rgba(212, 175, 118, 0.025);
    margin-top: 36px;
}

.rera-num {
    font-family: var(--display);
    font-size: 14px;
    color: var(--champagne);
    display: block;
    margin-bottom: 8px;
}

.rera-note {
    font-size: 11px;
    color: var(--dim);
    line-height: 1.7;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: var(--charcoal);
    padding: 18px 60px;
    font-size: 11px;
    color: var(--dim);
    text-align: center;
    line-height: 1.8;
    border-top: 1px solid rgba(212, 175, 118, 0.08);
}

/* ===== FOOTER ===== */
footer {
    background: var(--obsidian);
    border-top: 1px solid rgba(212, 175, 118, 0.1);
    padding: 56px 60px 32px;
}

.footer-logo {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--champagne);
}

.footer-logo span {
    color: var(--dim);
    font-weight: 200;
}

.footer-tagline {
    font-size: 11px;
    color: var(--dim);
    margin-top: 5px;
    letter-spacing: 0.08em;
}

.footer-col-title {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--champagne);
}

.footer-divider {
    border-top: 1px solid rgba(212, 175, 118, 0.07);
    margin-top: 40px;
    padding-top: 24px;
}

.footer-copy {
    font-size: 11px;
    color: var(--dim);
}

.soc-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212, 175, 118, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}

.soc-link:hover {
    border-color: var(--champagne);
    color: var(--champagne);
}

/* ===== FLOAT CTA ===== */
.float-cta {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 190;
    background: var(--champagne);
    color: var(--obsidian);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 26px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
    transition: background 0.3s, transform 0.2s;
}

.float-cta:hover {
    background: var(--pale-gold);
    transform: translateY(-3px);
}

/* ===== GSAP REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    #mainNav {
        padding: 18px 28px;
    }

    #mainNav.scrolled {
        padding: 14px 28px;
    }

    .nav-center {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggler {
        display: flex;
    }

    .sec {
        padding: 80px 28px;
    }

    .hero-content {
        padding: 0 28px 70px;
    }

    .scroll-ind {
        right: 28px;
    }

    .hero-dots {
        left: 28px;
    }

    .img-strip {
        grid-template-columns: 1fr;
    }

    .img-strip-main {
        height: 380px;
    }

    .side-item img {
        height: 200px;
    }

    .gallery-hd {
        padding: 0 28px 40px;
    }

    .gal-grid {
        padding: 0 28px;
    }

    .gal-item.tall img {
        height: 280px;
    }

    .gal-item.short img {
        height: 140px;
    }

    footer {
        padding: 40px 28px 24px;
    }

    .disclaimer {
        padding: 16px 24px;
    }

    .quote-sec {
        padding: 80px 28px;
    }

    .about-img {
        height: 400px;
    }

    .arch-img {
        height: 380px;
    }

    .loc-img-wrap {
        height: 360px;
    }

    .amen-img-grid .amen-tall {
        height: 260px;
    }

    .amen-img-grid .amen-sm {
        height: 125px;
    }

    .fp-panel.active {
        flex-direction: column;
        gap: 36px;
    }

    .fp-details {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(44px, 10vw, 72px);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 118, 0.08);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .ov-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 118, 0.07);
    }

    .ov-item:last-child {
        border-bottom: none;
    }

    .float-cta {
        right: 16px;
        bottom: 16px;
        padding: 13px 20px;
        font-size: 9px;
    }
}

.f-grp label {
    margin: 0;
    line-height: 1;
}
.f-grp p {
    margin: 0;
    line-height: 1;
}