/* =================================================================
   VBC GROUP — Design System
   "Architectural gold on black." Sora · Fraunces · Manrope.
   ================================================================= */

:root {
    --ink: #17141B;
    /* base near-black */
    --ink-2: #1E1A24;
    /* raised panel */
    --char: #241F2B;
    /* charcoal card */
    --char-2: #2C2734;
    /* lighter charcoal */
    --line: #342F3C;
    /* hairline */
    --gold: #C8922E;
    /* brand gold */
    --gold-lt: #E4BC6A;
    /* light gold */
    --gold-dk: #9C6F1E;
    --bone: #F6F1E9;
    /* warm white */
    --bone-2: #FBF7F0;
    --mute: #9A9AA3;
    /* muted grey */
    --mute-2: #6E6E77;
    --white: #FFFFFF;
    --paper: #FFFFFF;
    --ink-text: #1B1620;
    --ink-text-2: #5A5460;
    --line-lt: #E9E2D6;
    --mute-lt: #857F8C;
    --cream: #F3EDE2;

    --ff-disp: 'Sora', system-ui, sans-serif;
    --ff-serif: 'Fraunces', Georgia, serif;
    --ff-body: 'Manrope', system-ui, sans-serif;

    --wrap: 1200px;
    --gut: clamp(1.15rem, 4vw, 2.5rem);
    --r: 14px;
    --r-lg: 22px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --shadow: 0 24px 60px -28px rgba(0, 0, 0, .7);
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important
    }
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--bone);
    font-family: var(--ff-body);
    font-size: clamp(1rem, .4vw + .9rem, 1.075rem);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer
}

.ic {
    flex: none
}

.skip-link {
    position: fixed;
    left: -9999px;
    top: 8px;
    z-index: 200;
    background: var(--gold);
    color: #000;
    padding: .6rem 1rem;
    border-radius: 8px
}

.skip-link:focus {
    left: 8px
}

:focus-visible {
    outline: 2px solid var(--gold-lt);
    outline-offset: 3px;
    border-radius: 4px
}

.wrap {
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gut)
}

.section {
    padding-block: clamp(3.5rem, 8vw, 7rem)
}

.section--tight {
    padding-block: clamp(2.5rem, 5vw, 4rem)
}

/* ---------- Type ---------- */
h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--ff-disp);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.02em;
    color: var(--white)
}

.serif {
    font-family: var(--ff-serif);
    font-weight: 400;
    letter-spacing: 0;
    font-style: normal
}

.h-xl {
    font-size: clamp(2.7rem, 8.5vw, 6.4rem);
    text-transform: uppercase
}

.h-lg {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    text-transform: uppercase
}

.h-md {
    font-size: clamp(1.5rem, 3.2vw, 2.3rem)
}

p {
    margin: 0 0 1.05em
}

.lead {
    font-family: var(--ff-serif);
    /*font-size: clamp(0.5rem, 1.2vw, 1.6rem);*/
    text-align: justify;
    line-height: 1.5;
    color: var(--bone-2)
}

.muted {
    color: var(--mute)
}

.gold {
    color: var(--gold-lt)
}

strong {
    font-weight: 700;
    color: var(--bone-2)
}

/* eyebrow — structural label with architect tick */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--ff-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin: 0 0 1.1rem
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent)
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .92rem 1.5rem;
    border-radius: 100px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .01em;
    border: 1px solid transparent;
    transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s
}

.btn .ic {
    transition: transform .35s var(--ease)
}

.btn:hover .ic {
    transform: translateX(3px)
}

.btn--gold {
    background: linear-gradient(120deg, var(--gold), var(--gold-lt));
    color: #1a1206
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -12px rgba(200, 146, 46, .6)
}

.btn--ghost {
    border-color: var(--line);
    color: var(--bone);
    background: transparent
}

.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px)
}

.btn--sm {
    padding: .62rem 1.05rem;
    font-size: .85rem
}

.btn--dark {
    background: #000;
    color: var(--bone)
}

/* ---------- Architect corner frame (signature) ---------- */
.frame {
    position: relative
}

.frame::before,
.frame::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none
}

.frame::before {
    top: 10px;
    left: 10px;
    border-top: 1.5px solid var(--gold);
    border-left: 1.5px solid var(--gold)
}

.frame::after {
    bottom: 10px;
    right: 10px;
    border-bottom: 1.5px solid var(--gold);
    border-right: 1.5px solid var(--gold)
}

/* diagonal architectural bg motif */
.diag {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.diag span {
    position: absolute;
    width: 230px;
    height: 1500px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .018), transparent);
    transform: rotate(38deg);
    border-radius: 120px
}

.diag span:nth-child(1) {
    left: 8%;
    top: -25%
}

.diag span:nth-child(2) {
    left: 42%;
    top: -40%;
    width: 140px
}

.diag span:nth-child(3) {
    right: 6%;
    top: -30%;
    width: 300px
}

/* ===================== NAV ===================== */
.nav {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background .4s, backdrop-filter .4s, border-color .4s;
    border-bottom: 1px solid transparent
}

.nav.is-stuck {
    background: rgba(11, 11, 13, .82);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--line)
}

.nav__inner {
    
    max-width: var(--wrap);
    margin-inline: auto;
    /*padding: .85rem var(--gut);*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #1a1206;
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: -.04em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15)
}

.brand__name {
    font-family: var(--ff-disp);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: .01em;
    line-height: 1
}

.brand__sub {
    display: block;
    font-size: .66rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-top: 3px
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.6rem
}

.nav__links>a {
    font-size: .92rem;
    font-weight: 600;
    color: var(--bone);
    position: relative;
    padding: .2rem 0;
    transition: color .25s
}

.nav__links>a:not(.nav__cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .3s var(--ease)
}

.nav__links>a:not(.nav__cta):hover::after,
.nav__links>a.is-active::after {
    width: 100%
}

.nav__links>a.is-active {
    color: var(--white)
}

.nav__cta{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1.35rem;
    margin-left: 1.5rem;   /* Increase spacing from Buyer Corner */
    border: 1px solid var(--gold);
    border-radius: 100px;
    color: var(--gold-lt) !important;
    font-weight: 700;
    transition: .3s ease;
}
.nav__cta:hover {
    background: var(--gold);
    color: #1a1206 !important
}
.nav__toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--bone);
    padding: 6px
}
.nav__toggle-close {
    display: none
}

body.nav-open .nav__toggle-open {
    display: none
}

body.nav-open .nav__toggle-close {
    display: block
}

@media (max-width:980px) {
    .nav__toggle {
        display: block;
        z-index: 120
    }

    .nav__links {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: 1.6rem;
        background: rgba(8, 8, 10, .97);
        backdrop-filter: blur(8px);
        transform: translateY(-100%);
        transition: transform .5s var(--ease);
        z-index: 110
    }

    body.nav-open .nav__links {
        transform: translateY(0)
    }

    .nav__links>a {
        font-size: 1.4rem;
        font-family: var(--ff-disp);
        font-weight: 700
    }
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: clamp(8rem, 11vh, 9.5rem);
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
    background: radial-gradient(120% 90% at 80% 0%, #1b1b22 0%, var(--ink) 55%), var(--ink);
    overflow: hidden
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--wrap);
    margin-inline: auto;
    width: 100%;
    padding-inline: var(--gut)
}

.hero__kicker {
    margin-bottom: 1.3rem
}

.hero h1 {
    font-size: clamp(3.1rem, 11vw, 8.4rem);
    text-transform: uppercase;
    line-height: .92
}

.hero h1 .ln2 {
    color: var(--gold-lt)
}

.hero h1 .out {
    -webkit-text-stroke: 1.5px rgba(245, 241, 232, .35);
    color: transparent
}

.hero__sub {
    max-width: 560px;
    margin: 1.6rem 0 2rem;
    font-family: var(--ff-serif);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: var(--bone-2);
    line-height: 1.45
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    align-items: center
}

.hero__scroll {
    position: absolute;
    bottom: 1.4rem;
    right: var(--gut);
    z-index: 2;
    writing-mode: vertical-rl;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--mute);
    display: flex;
    align-items: center;
    gap: 1rem
}

.hero__scroll::after {
    content: "";
    width: 1px;
    height: 46px;
    background: linear-gradient(var(--gold), transparent)
}

.hero__logos {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.4rem;
    align-items: center;
    margin-top: 2.4rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line)
}

.hero__logos span {
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mute);
    font-weight: 600
}

.hero__logos b {
    color: var(--bone);
    font-weight: 700
}

/* ===================== STAT BAND ===================== */
.stats {
    background: linear-gradient(120deg, var(--gold-dk), var(--gold));
    color: #1a1206;
    position: relative;
    overflow: hidden
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(26, 18, 6, .18)
}

.stat {
    background: linear-gradient(120deg, var(--gold-dk), var(--gold));
    padding: clamp(1.8rem, 4vw, 2.8rem) var(--gut);
    text-align: center
}

.stat__num {
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.03em
}

.stat__lbl {
    margin-top: .5rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .85
}

@media (max-width:760px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* ===================== GENERIC SECTIONS ===================== */
/*.sec-head {*/
/*    max-width: 760px;*/
/*    margin-bottom: clamp(2rem, 4vw, 3.2rem)*/
/*}*/

.sec-head .lead {
    color: var(--mute)
}

.grid {
    display: grid;
    gap: 1.4rem
}

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

.cols-3 {
    grid-template-columns: repeat(3, 1fr)
}

.cols-4 {
    grid-template-columns: repeat(4, 1fr)
}

@media (max-width:900px) {

    .cols-3,
    .cols-4 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:620px) {

    .cols-2,
    .cols-3,
    .cols-4 {
        grid-template-columns: 1fr
    }
}

/* asset class cards */
.acard {
    background: var(--char);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 1.7rem 1.5rem;
    transition: transform .4s var(--ease), border-color .4s, background .4s;
    position: relative;
    overflow: hidden
}

.acard:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dk);
    background: var(--char-2)
}

.acard__ic {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #000;
    color: var(--gold-lt);
    border: 1px solid var(--line);
    margin-bottom: 1.1rem
}

.acard h3 {
    font-size: 1.18rem;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: .5rem
}

.acard p {
    color: var(--mute);
    font-size: .95rem;
    margin: 0
}

/* ===================== FEATURED LAUNCH ===================== */
.launch {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #000;
    min-height: 520px;
    display: flex;
    align-items: flex-end
}

.launch__media {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #23282f, #0b0d10);
    background-size: cover;
    background-position: center
}

.launch__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .92) 100%)
}

.launch__body {
    position: relative;
    z-index: 2;
    padding: clamp(1.8rem, 5vw, 3.4rem);
    width: 100%
}

.launch__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(200, 146, 46, .16);
    border: 1px solid var(--gold);
    color: var(--gold-lt);
    padding: .4rem .9rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem
}

.launch__badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-lt);
    box-shadow: 0 0 0 0 rgba(228, 188, 106, .7);
    animation: pulse 2.4s infinite
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(228, 188, 106, .6)
    }

    70% {
        box-shadow: 0 0 0 9px rgba(228, 188, 106, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(228, 188, 106, 0)
    }
}

.launch h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    text-transform: uppercase;
    max-width: 14ch
}

.launch__desc {
    max-width: 50ch;
    color: var(--bone-2);
    font-family: var(--ff-serif);
    font-size: 1.12rem;
    margin: 1rem 0 1.6rem
}

.launch__hl {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-bottom: 1.8rem
}

.launch__hl div {
    border-left: 2px solid var(--gold);
    padding-left: .9rem
}

.launch__hl b {
    display: block;
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--white);
    line-height: 1
}

.launch__hl span {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mute)
}

/* ===================== PROJECT CARDS ===================== */
.pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem
}

@media (max-width:900px) {
    .pgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .pgrid {
        grid-template-columns: 1fr
    }
}

.pcard {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--char);
    border: 1px solid var(--line);
    transition: transform .45s var(--ease), border-color .45s;
    display: flex;
    flex-direction: column
}

.pcard:hover {
    transform: translateY(-6px);
    border-color: var(--gold-dk)
}

.pcard__media {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #24262c, #0e0f12);
    overflow: hidden
}

.pcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.pcard:hover .pcard__media img {
    transform: scale(1.06)
}

.pcard__ph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #3a3d45
}

.pcard__ph svg {
    width: 64px;
    height: 64px;
    opacity: .5
}

.pcard__status {
    position: absolute;
    top: .8rem;
    left: .8rem;
    z-index: 2;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    padding: .3rem .75rem;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bone)
}

.pcard__status.is-live {
    background: var(--gold);
    color: #1a1206;
    border-color: transparent
}

.pcard__body {
    padding: 1.2rem 1.25rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.pcard__loc {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-lt);
    display: flex;
    align-items: center;
    gap: .35rem
}

.pcard h3 {
    font-size: 1.22rem;
    letter-spacing: 0;
    font-family: var(--ff-disp);
    font-weight: 700;
    text-transform: none
}

.pcard__type {
    font-size: .85rem;
    color: var(--mute);
    margin-top: auto
}

.pcard__sum {
    font-size: .92rem;
    color: var(--mute);
    margin: .2rem 0 0
}

.pcard__link {
    margin-top: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    font-size: .88rem;
    color: var(--gold-lt)
}

/* filter pills */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 2rem
}

.pill {
    padding: .5rem 1.05rem;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--mute);
    font-weight: 600;
    font-size: .88rem;
    transition: all .25s
}

.pill:hover {
    color: var(--bone);
    border-color: var(--gold-dk)
}

.pill.is-on {
    background: var(--gold);
    color: #1a1206;
    border-color: transparent
}

/* ===================== SPLIT / VISION-MISSION ===================== */
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center
}

@media (max-width:860px) {
    .split {
        grid-template-columns: 1fr
    }
}

.panel {
    background: var(--char);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(1.6rem, 4vw, 2.6rem)
}

.panel--gold {
    background: linear-gradient(135deg, var(--gold-dk), var(--gold));
    color: #1a1206;
    border: 0
}

.panel--gold h3,
.panel--gold .panel__k {
    color: #1a1206
}

.panel__k {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: .7rem
}

.panel h3 {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: .7rem
}

/* ===================== TEAM ===================== */
.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem
}

@media (max-width:820px) {
    .tgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:520px) {
    .tgrid {
        grid-template-columns: 1fr
    }
}

.tcard {
    background: var(--char);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .4s, transform .4s var(--ease)
}

.tcard:hover {
    border-color: var(--gold-dk);
    transform: translateY(-4px)
}

.tcard__photo {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #23252b, #101116);
    position: relative;
    display: grid;
    place-items: center
}

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

.tcard__initials {
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: 2.6rem;
    color: #3c3f48
}

.tcard__body {
    padding: 1.2rem 1.25rem 1.4rem
}

.tcard__qual {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-lt)
}

.tcard h3 {
    font-size: 1.18rem;
    font-family: var(--ff-disp);
    font-weight: 700;
    text-transform: none;
    margin: .2rem 0
}

.tcard__role {
    font-size: .85rem;
    color: var(--bone-2);
    font-weight: 600;
    margin-bottom: .6rem
}

.tcard__bio {
    font-size: .9rem;
    color: var(--mute);
    margin: 0
}

.tband {
    margin: clamp(2.5rem, 5vw, 4rem) 0;
    padding: clamp(1.6rem, 4vw, 2.4rem) var(--gut);
    background: linear-gradient(120deg, var(--gold-dk), var(--gold));
    border-radius: var(--r-lg);
    color: #1a1206;
    text-align: center
}

.tband h2 {
    color: #1a1206;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    text-transform: uppercase
}

.tband p {
    max-width: 60ch;
    margin: .7rem auto 0;
    color: #241a08;
    font-family: var(--ff-serif);
    font-size: 1.1rem
}

/* ===================== INVESTOR PILLARS ===================== */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden
}

@media (max-width:860px) {
    .pillars {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:560px) {
    .pillars {
        grid-template-columns: 1fr
    }
}

.pillar {
    background: var(--ink);
    padding: clamp(1.6rem, 3vw, 2.2rem)
}

.pillar:nth-child(even) {
    background: var(--char)
}

.pillar__n {
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: .9rem;
    color: var(--gold);
    letter-spacing: .1em;
    margin-bottom: .9rem
}

.pillar h3 {
    font-size: 1.18rem;
    text-transform: uppercase;
    margin-bottom: .6rem;
    letter-spacing: .01em
}

.pillar p {
    color: var(--mute);
    font-size: .95rem;
    margin: 0
}

/* ===================== FAQ (AEO) ===================== */
.faq {
    border-top: 1px solid var(--line)
}

.faq__item {
    border-bottom: 1px solid var(--line)
}

.faq__q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    color: var(--white);
    padding: 1.3rem 2.5rem 1.3rem 0;
    position: relative;
    font-family: var(--ff-disp);
    font-weight: 600;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    display: block
}


.faq__q::after {
    content: "+";
    position: absolute;
    right: .3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-lt);
    font-size: 1.6rem;
    font-weight: 400;
    transition: transform .3s
}

.faq__item.is-open .faq__q::after {
    transform: translateY(-50%) rotate(45deg)
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease)
}

.faq__a p {
    color: var(--mute);
    padding-bottom: 1.3rem;
    margin: 0;
    max-width: 75ch
}

/* ===================== INSIGHTS ===================== */
.icard {
    background: var(--char);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease), border-color .4s
}

.icard:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dk)
}

.icard__media {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #23262c, #0e1014);
    display: grid;
    place-items: center
}

.icard__media svg {
    width: 54px;
    height: 54px;
    color: #3a3d45;
    opacity: .5
}

.icard__body {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1
}

.icard__tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap
}

.tag {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-lt);
    border: 1px solid var(--line);
    padding: .2rem .6rem;
    border-radius: 100px
}

.icard h3 {
    font-size: 1.2rem;
    font-family: var(--ff-disp);
    font-weight: 700;
    text-transform: none;
    line-height: 1.2
}

.icard__ex {
    font-size: .92rem;
    color: var(--mute);
    margin: 0
}

.icard time {
    font-size: .8rem;
    color: var(--mute-2);
    margin-top: auto
}

/* ===================== CTA STRIP ===================== */
.ctastrip {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: radial-gradient(120% 120% at 0% 0%, #1c1c22, var(--ink));
    border: 1px solid var(--line);
    padding: clamp(2.2rem, 5vw, 4rem);
    text-align: center
}

.ctastrip h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    text-transform: uppercase;
    margin-bottom: .6rem
}

.ctastrip p {
    max-width: 50ch;
    margin: 0 auto 1.8rem;
    color: var(--mute)
}

.ctastrip__btns {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap
}

/* ===================== PAGE HEADER ===================== */
.phead {
    position: relative;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: radial-gradient(120% 100% at 80% 0%, #1a1a20, var(--ink));
    overflow: hidden
}

.phead .wrap {
    position: relative;
    z-index: 2
}

.phead h1 {
    font-size: clamp(2.6rem, 8vw, 5.4rem);
    text-transform: uppercase
}

.phead .lead {
    margin-top: 1.1rem;
    max-width: 58ch;
    color: var(--mute)
}

.crumbs {
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 1.2rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.crumbs a {
    color: var(--gold-lt)
}

/* ===================== FORMS ===================== */
.form {
    display: grid;
    gap: 1rem
}

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

.field label {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bone-2)
}

.field input,
.field select,
.field textarea {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--bone);
    padding: .85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .25s, background .25s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #000
}

.field textarea {
    resize: vertical;
    min-height: 120px
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

@media (max-width:560px) {
    .form__row {
        grid-template-columns: 1fr
    }
}

.note {
    font-size: .82rem;
    color: var(--mute-2)
}

.alert {
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
    background: rgba(200, 146, 46, .1);
    color: var(--bone-2)
}

/* ===================== FOOTER ===================== */
.foot {
    background: #070708;
    border-top: 1px solid var(--line);
    padding-top: clamp(3rem, 6vw, 4.5rem)
}

.foot__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2rem;
    padding-bottom: 2.6rem
}

@media (max-width:900px) {
    .foot__top {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:560px) {
    .foot__top {
        grid-template-columns: 1fr
    }
}

.brand--foot .brand__mark {
    width: 38px;
    height: 38px
}

.foot__tag {
    font-family: var(--ff-serif);
    color: var(--gold-lt);
    margin: 1rem 0 .8rem;
    font-size: 1.05rem
}

.foot__alliance {
    font-size: .85rem;
    color: var(--mute);
    max-width: 42ch
}

.foot__alliance strong {
    color: var(--bone)
}

.foot__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.1rem;
    flex-wrap: wrap
}

.foot__social a {
    font-size: .82rem;
    color: var(--mute);
    letter-spacing: .06em
}

.foot__social a:hover {
    color: var(--gold-lt)
}

.foot__col h4 {
    font-family: var(--ff-disp);
    font-size: .82rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bone-2);
    margin-bottom: 1rem
}

.foot__col a {
    display: block;
    color: var(--mute);
    font-size: .92rem;
    padding: .32rem 0;
    transition: color .2s
}

.foot__col a:hover {
    color: var(--gold-lt)
}

.foot__contact a,
.foot__addr {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--mute);
    font-size: .92rem;
    padding: .32rem 0
}

.foot__contact a:hover {
    color: var(--gold-lt)
}

.foot__cta {
    margin-top: 1rem;
    display: inline-flex
}

.foot__legal {
    border-top: 1px solid var(--line);
    padding-block: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.foot__legal p {
    margin: 0;
    font-size: .8rem;
    color: var(--mute-2)
}

.foot__disc {
    max-width: none;
    line-height: 1.6
}

/* floating whatsapp */
.float-wa {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 90;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25D366;
    color: #06301a;
    box-shadow: 0 12px 26px -8px rgba(37, 211, 102, .6);
    transition: transform .3s
}

.float-wa:hover {
    transform: scale(1.08)
}

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* utilities */
.center {
    text-align: center
}

.mt-1 {
    margin-top: 1rem
}

.mt-2 {
    margin-top: 2rem
}

.mb-0 {
    margin-bottom: 0
}

.flex {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    align-items: center
}

.divider {
    height: 1px;
    background: var(--line);
    border: 0;
    margin: 0
}

/* =================================================================
   EXTENDED COMPONENTS — project detail, article, contact, utility
   ================================================================= */

/* ---------- Project detail ---------- */
.pd-hero {
    position: relative;
    min-height: clamp(54vh, 60vh, 640px);
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(11, 11, 13, .2), rgba(11, 11, 13, .55) 55%, var(--ink)), var(--char);
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.pd-hero .diag {
    opacity: .5
}

.pd-hero__inner {
    position: relative;
    z-index: 2;
    padding-block: clamp(2rem, 5vw, 3.6rem)
}

.pd-hero__status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-disp);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #000;
    background: var(--gold);
    padding: .4rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.1rem
}

.pd-hero__status.is-live {
    background: var(--gold-lt)
}

.pd-hero h1 {
    font-size: clamp(2.3rem, 6vw, 4.6rem);
    text-transform: uppercase;
    max-width: 16ch
}

.pd-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.6rem;
    margin-top: 1.1rem;
    color: var(--bone);
    font-family: var(--ff-disp);
    font-weight: 600;
    font-size: .95rem
}

.pd-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--gold-lt)
}

.pd-layout {
    display: grid;
    grid-template-columns: 1.7fr .9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start
}

@media(max-width:880px) {
    .pd-layout {
        grid-template-columns: 1fr
    }
}

.pd-spec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    margin: 1.8rem 0
}

.pd-spec div {
    background: var(--ink-2);
    padding: 1.1rem 1.25rem
}

.pd-spec dt {
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: .3rem
}

.pd-spec dd {
    margin: 0;
    font-family: var(--ff-disp);
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem
}

.pd-aside {
    position: sticky;
    top: 96px;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(1.4rem, 3vw, 2rem);
    box-shadow: var(--shadow)
}

.pd-aside h3 {
    font-size: 1.3rem;
    margin-bottom: .4rem
}

.pd-aside .btn {
    width: 100%;
    justify-content: center;
    margin-top: .7rem
}

.pd-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-top: 1.6rem
}

@media(max-width:640px) {
    .pd-gallery {
        grid-template-columns: repeat(2, 1fr)
    }
}

.pd-gallery .ph {
    aspect-ratio: 4/3;
    border-radius: var(--r);
    background:
        linear-gradient(135deg, var(--char) 0%, var(--char-2) 100%);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dk);
    overflow: hidden
}

.pd-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* ---------- Article / prose ---------- */
.article {
    max-width: 760px;
    margin-inline: auto
}

.article__media {
    aspect-ratio: 16/8;
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--char), var(--char-2));
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dk)
}

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

.prose {
    font-size: 1.09rem;
    text-align: justify;
    line-height: 1.78;
    color: #D9D5CC
}

.prose h2 {
    font-family: var(--ff-serif);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-transform: none;
    letter-spacing: 0;
    color: var(--white);
    margin: 2.4rem 0 .9rem
}

.prose h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin: 1.8rem 0 .6rem
}

.prose p {
    color: #5a5460;
    margin: 0 0 1.15rem
}

.prose ul,
.prose ol {
    margin: 0 0 1.3rem;
    padding-left: 1.3rem
}

.prose li {
    margin-bottom: .5rem
}

.prose strong {
    color: var(--bone);
    font-weight: 700
}

.prose a {
    color: var(--gold-lt);
    text-decoration: underline;
    text-underline-offset: 3px
}

.prose blockquote {
    margin: 1.6rem 0;
    padding: .4rem 0 .4rem 1.4rem;
    border-left: 3px solid var(--gold);
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    color: var(--bone)
}

/* ---------- Contact ---------- */
.contactgrid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start
}

@media(max-width:860px) {
    .contactgrid {
        grid-template-columns: 1fr
    }
}

.contact-card {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(1.6rem, 4vw, 2.6rem)
}

.contact-line {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line)
}

.contact-line:last-child {
    border-bottom: 0
}

.contact-line .ic {
    color: var(--gold);
    margin-top: .15rem
}

.contact-line h4 {
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: .25rem;
    font-family: var(--ff-disp)
}

.contact-line a,
.contact-line span {
    color: var(--bone);
    font-size: 1.05rem
}

.contact-line a:hover {
    color: var(--gold-lt)
}

/* ---------- Centered message (thank-you / 404) ---------- */
.msg-screen {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden
}

.msg-screen .diag {
    opacity: .4
}

.msg-screen__in {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 3rem 1.2rem
}

.msg-screen__big {
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: clamp(4rem, 18vw, 9rem);
    line-height: 1;
    color: var(--gold);
    letter-spacing: -.03em
}

.msg-screen .btn {
    margin: .4rem .4rem 0
}

.msg-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    background: rgba(200, 146, 46, .12);
    border: 1px solid var(--gold-dk);
    color: var(--gold-lt)
}

/* =================================================================
   V2 — BRAND REDESIGN: light sections, topbar, contact pop,
   imagery, steps, EMI, construction, floor plans, masterplan, Undri
   ================================================================= */

/* ---------- Light / paper sections (the classy alternation) ---------- */
.section--light {
    background: var(--bone-2);
    color: var(--ink-text)
}

.section--paper {
    background: var(--paper);
    color: var(--ink-text)
}

.section--cream {
    background: var(--cream);
    color: var(--ink-text)
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--paper h1,
.section--paper h2,
.section--paper h3,
.section--paper h4,
.section--cream h1,
.section--cream h2,
.section--cream h3,
.section--cream h4 {
    color: var(--ink-text)
}

.section--light .lead,
.section--paper .lead,
.section--cream .lead {
    color: #3A3540
}

.section--light .muted,
.section--paper .muted,
.section--cream .muted {
    color: var(--ink-text-2)
}

.section--light .serif,
.section--paper .serif,
.section--cream .serif {
    color: var(--gold-dk)
}

.section--light .eyebrow,
.section--paper .eyebrow,
.section--cream .eyebrow {
    color: var(--gold-dk)
}

.section--light .eyebrow::before,
.section--paper .eyebrow::before,
.section--cream .eyebrow::before {
    background: var(--gold)
}

.section--light .btn--ghost,
.section--paper .btn--ghost,
.section--cream .btn--ghost {
    border-color: var(--line-lt);
    color: var(--ink-text)
}

.section--light .btn--ghost:hover,
.section--paper .btn--ghost:hover,
.section--cream .btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold-dk)
}

.on-light {
    color: var(--ink-text)
}

/* card on light */
.lcard {
    background: #fff;
    border: 1px solid var(--line-lt);
    border-radius: var(--r-lg);
    padding: 1.6rem;
    box-shadow: 0 18px 50px -34px rgba(60, 40, 10, .35);
    transition: .3s var(--ease)
}

.lcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 60px -30px rgba(60, 40, 10, .4);
    border-color: var(--gold)
}

.lcard h3 {
    color: var(--ink-text);
    font-family: var(--ff-disp);
    font-size: 1.15rem;
    margin: .2rem 0 .4rem
}

.lcard p {
    color: var(--ink-text-2);
    margin: 0;
    font-size: .95rem
}

.lcard .ic {
    color: var(--gold-dk)
}

.lcard__ic {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--gold-dk);
    background: linear-gradient(150deg, #FBF3E2, #F3E4C5);
    border: 1px solid var(--line-lt);
    margin-bottom: 1rem
}

/* ---------- Top utility bar (social + phone) ---------- */
.topbar {
    background: #100E14;
    border-bottom: 1px solid var(--line);
    font-size: .84rem
}

.topbar__in {
    max-width: var(--wrap);
    margin-inline: auto;
    padding: .5rem var(--gut);
    display: flex;
    align-items: center;
    gap: 1rem
}

.topbar__tag {
    color: var(--mute);
    letter-spacing: .02em
}

.topbar__right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.1rem
}

.topbar__contact {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--bone);
    font-weight: 600
}

.topbar__contact:hover {
    color: var(--gold-lt)
}

.topbar__social {
    display: inline-flex;
    gap: .5rem
}

.topbar__social a {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: var(--mute);
    border: 1px solid var(--line);
    transition: .25s var(--ease)
}

.topbar__social a:hover {
    color: var(--gold-lt);
    border-color: var(--gold-dk);
    background: rgba(200, 146, 46, .08)
}

@media(max-width:760px) {
    .topbar__tag {
        display: none
    }

    .topbar__in {
        justify-content: space-between
    }

    .topbar__right {
        margin-left: 0;
        width: 100%;
        justify-content: space-between
    }
}

/* nav offset tweak when topbar present: nav remains sticky on top of scroll */

/* ---------- Sticky contact popup (corner) ---------- */
.cpop {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .7rem
}

.cpop__panel {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.1rem;
    width: 288px;
    max-width: 78vw;
    box-shadow: var(--shadow);
    transform: translateY(12px) scale(.96);
    opacity: 0;
    pointer-events: none;
    transition: .28s var(--ease);
    transform-origin: bottom right
}

.cpop.is-open .cpop__panel {
    transform: none;
    opacity: 1;
    pointer-events: auto
}

.cpop__panel h4 {
    font-family: var(--ff-disp);
    font-size: 1.05rem;
    margin: 0 0 .15rem;
    color: #fff
}

.cpop__panel p {
    margin: 0 0 .9rem;
    color: var(--mute);
    font-size: .86rem
}

.cpop__row {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.cpop__row a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem .75rem;
    border-radius: 11px;
    border: 1px solid var(--line);
    color: var(--bone);
    font-weight: 600;
    font-size: .92rem;
    transition: .25s var(--ease)
}

.cpop__row a:hover {
    border-color: var(--gold-dk);
    background: rgba(200, 146, 46, .08);
    color: var(--gold-lt)
}

.cpop__row .ic {
    color: var(--gold-lt);
    flex: none
}

.cpop__fab {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: linear-gradient(180deg, var(--gold-lt), var(--gold));
    color: #1a1205;
    font-family: var(--ff-disp);
    font-weight: 700;
    border: none;
    border-radius: 100px;
    padding: .85rem 1.25rem;
    cursor: pointer;
    box-shadow: 0 16px 36px -14px rgba(200, 146, 46, .75);
    transition: .25s var(--ease)
}

.cpop__fab:hover {
    transform: translateY(-2px)
}

.cpop__fab .lbl {
    white-space: nowrap
}

.cpop.is-open .cpop__fab .lbl {
    display: none
}

@media(max-width:520px) {
    .cpop__fab .lbl {
        display: none
    }

    .cpop__fab {
        padding: .85rem;
        border-radius: 50%
    }
}

/* ---------- Classy image media (placeholders + real) ---------- */
.media {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: linear-gradient(150deg, var(--char), var(--ink-2));
    display: flex;
    align-items: center;
    justify-content: center
}

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

.media--tall {
    aspect-ratio: 3/4
}

.media--wide {
    aspect-ratio: 16/10
}

.media--sq {
    aspect-ratio: 1/1
}

.media__ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--gold-dk);
    /* background-image: url('/assets/img/skyline.svg'); */
    background-size: cover;
    background-position: bottom
}

.media__ph span {
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mute)
}

.media__tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(15, 13, 19, .82);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: .45rem .9rem;
    font-family: var(--ff-disp);
    font-weight: 600;
    font-size: .8rem;
    color: var(--gold-lt);
    display: inline-flex;
    align-items: center;
    gap: .4rem
}

.media--light {
    border-color: var(--line-lt);
    background: linear-gradient(150deg, #F3E9D6, #EFE3CC)
}

.media--light .media__ph {
    color: var(--gold-dk)
}

.media--light .media__ph span {
    color: var(--mute-lt)
}

/* ---------- Process steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    counter-reset: s
}

@media(max-width:820px) {
    .steps {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .steps {
        grid-template-columns: 1fr
    }
}

.step {
    position: relative;
    padding: 1.5rem 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--ink-2)
}

.step__n {
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1
}

.step h3 {
    font-family: var(--ff-disp);
    font-size: 1.08rem;
    margin: .6rem 0 .35rem;
    color: #fff
}

.step p {
    margin: 0;
    color: var(--mute);
    font-size: .92rem
}

.section--light .step,
.section--paper .step,
.section--cream .step {
    background: #fff;
    border-color: var(--line-lt)
}

.section--light .step h3,
.section--paper .step h3,
.section--cream .step h3 {
    color: var(--ink-text)
}

.section--light .step p,
.section--paper .step p,
.section--cream .step p {
    color: var(--ink-text-2)
}

.section--light .step__n,
.section--paper .step__n,
.section--cream .step__n {
    color: var(--gold-dk)
}

/* ---------- Feature grid (NRI/CP/Client benefits) ---------- */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem
}

@media(max-width:900px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .feat-grid {
        grid-template-columns: 1fr
    }
}

/* ---------- EMI calculator ---------- */
.emi {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: start
}

@media(max-width:860px) {
    .emi {
        grid-template-columns: 1fr
    }
}

.emi__controls {
    background: #fff;
    border: 1px solid var(--line-lt);
    border-radius: var(--r-lg);
    padding: clamp(1.4rem, 3vw, 2rem);
    box-shadow: 0 18px 50px -34px rgba(60, 40, 10, .35)
}

.emi__field {
    margin-bottom: 1.5rem
}

.emi__field label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--ff-disp);
    font-weight: 600;
    color: var(--ink-text);
    margin-bottom: .6rem
}

.emi__field .val {
    color: var(--gold-dk);
    font-weight: 800
}

.emi__field input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--gold) var(--p, 40%), var(--line-lt) var(--p, 40%))
}

.emi__field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    cursor: pointer
}

.emi__field input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #fff;
    cursor: pointer
}

.emi__result {
    background: linear-gradient(160deg, var(--ink-2), var(--char));
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(1.6rem, 4vw, 2.4rem);
    text-align: center;
    position: relative;
    overflow: hidden
}

.emi__emi {
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: clamp(2.4rem, 7vw, 3.6rem);
    color: var(--gold-lt);
    line-height: 1;
    letter-spacing: -.02em
}

.emi__emi-lbl {
    color: var(--mute);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: .4rem
}

.emi__break {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line)
}

.emi__break div {
    flex: 1
}

.emi__break .k {
    color: var(--mute);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.emi__break .v {
    font-family: var(--ff-disp);
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    margin-top: .2rem
}

/* ---------- Construction timeline ---------- */
.ctl {
    position: relative;
    margin-top: 1rem;
    padding-left: 2rem
}

.ctl::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--line))
}

.cstep {
    position: relative;
    padding: 0 0 2rem 1.4rem
}

.cstep::before {
    content: "";
    position: absolute;
    left: -1.55rem;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 146, 46, .18)
}

.cstep .date {
    font-family: var(--ff-disp);
    font-weight: 700;
    color: var(--gold-lt);
    font-size: .85rem;
    letter-spacing: .04em
}

.cstep h3 {
    font-family: var(--ff-disp);
    font-size: 1.15rem;
    margin: .2rem 0 .35rem;
    color: #fff
}

.cstep p {
    margin: 0 0 .7rem;
    color: var(--mute);
    font-size: .94rem
}

.cbar {
    height: 7px;
    border-radius: 7px;
    background: var(--line);
    overflow: hidden;
    max-width: 320px
}

.cbar>i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-lt), var(--gold))
}

.cbar-lbl {
    font-size: .78rem;
    color: var(--mute);
    margin-top: .35rem
}

/* ---------- Floor plans ---------- */
.fplans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

@media(max-width:820px) {
    .fplans {
        grid-template-columns: 1fr
    }
}

.fplan {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--ink-2)
}

.fplan__img {
    aspect-ratio: 5/4;
    background: #15131A;
    display: flex;
    align-items: center;
    justify-content: center
}

.fplan__img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.fplan__body {
    padding: 1.2rem 1.3rem
}

.fplan__body h3 {
    font-family: var(--ff-disp);
    font-size: 1.3rem;
    margin: 0;
    color: #fff
}

.fplan__body .area {
    color: var(--gold-lt);
    font-weight: 600;
    font-size: .9rem;
    margin: .2rem 0 .5rem
}

.fplan__body p {
    margin: 0 0 1rem;
    color: var(--mute);
    font-size: .92rem
}

/* ---------- Master plan ---------- */
.mplan {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: center
}

@media(max-width:880px) {
    .mplan {
        grid-template-columns: 1fr
    }
}

.mplan__img {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #0F0D13
}

.mplan__img img {
    width: 100%;
    display: block
}

.mplan__hl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 1.4rem
}

.mplan__hl div {
    background: var(--ink-2);
    padding: 1.1rem 1.2rem
}

.mplan__hl .v {
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--gold-lt);
    line-height: 1
}

.mplan__hl .l {
    color: var(--mute);
    font-size: .84rem;
    margin-top: .25rem
}

/* ---------- Undri topic cards ---------- */
.utopics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

@media(max-width:880px) {
    .utopics {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .utopics {
        grid-template-columns: 1fr
    }
}

.utopic {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line-lt);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 50px -36px rgba(60, 40, 10, .4);
    transition: .3s var(--ease)
}

.utopic:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -30px rgba(60, 40, 10, .45);
    border-color: var(--gold)
}

.utopic__img {
    aspect-ratio: 16/10;
    position: relative
}

.utopic__body {
    padding: 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.utopic__ic {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(15, 13, 19, .85);
    border: 1px solid var(--line);
    color: var(--gold-lt)
}

.utopic h3 {
    font-family: var(--ff-disp);
    font-size: 1.18rem;
    color: var(--ink-text);
    margin: 0 0 .4rem
}

.utopic p {
    color: var(--ink-text-2);
    font-size: .93rem;
    margin: 0 0 1rem;
    flex: 1
}

.utopic .pcard__link {
    color: var(--gold-dk);
    font-family: var(--ff-disp);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    gap: .4rem;
    align-items: center
}

/* ---------- Big imagery gallery (Titan microsite) ---------- */
.biggal {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: .9rem;
    grid-auto-rows: 160px
}

.biggal figure {
    margin: 0;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--line);
    position: relative;
    background: linear-gradient(150deg, var(--char), var(--ink-2))
}

.biggal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s var(--ease)
}

.biggal figure:hover img {
    transform: scale(1.05)
}

.biggal .g-a {
    grid-column: span 7;
    grid-row: span 2
}

.biggal .g-b {
    grid-column: span 5;
    grid-row: span 1
}

.biggal .g-c {
    grid-column: span 5;
    grid-row: span 1
}

.biggal .g-d {
    grid-column: span 4;
    grid-row: span 1
}

.biggal .g-e {
    grid-column: span 4;
    grid-row: span 1
}

.biggal .g-f {
    grid-column: span 4;
    grid-row: span 1
}

@media(max-width:820px) {
    .biggal {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px
    }

    .biggal .g-a {
        grid-column: span 2;
        grid-row: span 2
    }

    .biggal figure {
        grid-column: span 1 !important;
        grid-row: span 1 !important
    }
}

.biggal .media__ph {
    position: absolute;
    inset: 0
}

/* page hero (compact, for inner pages) */
.phero {
    position: relative;
    overflow: hidden;
    padding: clamp(8.5rem, 13vw, 10rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    background: radial-gradient(110% 120% at 85% 0, rgba(200, 146, 46, .16), transparent 55%), linear-gradient(180deg, var(--ink-2), var(--ink))
}

.phero .crumbs {
    margin-bottom: 1rem;
}

.phero h1 {
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    text-transform: uppercase;
    letter-spacing: -.02em;
    color: #fff;
    line-height: 1.02
}

.phero p {
    max-width: 60ch;
    margin-top: 1rem;
    color: #D9D5CC
}

.phero .diag span {
    background: linear-gradient(180deg, transparent, rgba(200, 146, 46, .3), transparent)
}

/* ---------- Topbar fixed + nav dropdown ---------- */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    height: 38px;
    display: flex;
    align-items: center
}

.topbar__in {
    width: 100%
}

html {
    scroll-padding-top: 108px
}

.nav__group {
    position: relative
}

.nav__grp-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--bone);
    font-family: inherit;
    font-weight: 600;
    font-size: .95rem;
    padding: .4rem .2rem
}

.nav__grp-btn:hover,
.nav__grp-btn.is-active {
    color: var(--gold-lt)
}

.nav__menu {
    position: absolute;
    top: calc(100% + .6rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .5rem;
    min-width: 210px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .25s var(--ease);
    z-index: 50
}

.nav__group:hover .nav__menu,
.nav__group:focus-within .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.nav__menu a {
    display: block;
    padding: .6rem .8rem;
    border-radius: 9px;
    color: var(--bone);
    font-weight: 600;
    font-size: .92rem
}

.nav__menu a:hover {
    background: rgba(200, 146, 46, .1);
    color: var(--gold-lt)
}

@media(max-width:980px) {
    .nav__menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        border: 0;
        padding: 0 0 0 .8rem;
        min-width: 0;
        border-left: 2px solid var(--line);
        margin: .2rem 0 .4rem
    }

    .nav__menu a {
        padding: .7rem .4rem;
        border-bottom: 1px solid var(--line)
    }

    .nav__grp-btn {
        width: 100%;
        justify-content: space-between;
        padding: .85rem .4rem;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--line)
    }
}


/* ---------- Shared: stat strip + overview split (moved from titan.css) ---------- */
/* ---------- Stat strip ---------- */
.statstrip {
    background: linear-gradient(180deg, var(--gold-lt), var(--gold));
    color: #1a1205
}

.statstrip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--wrap);
    margin-inline: auto
}

.statstrip__grid>div {
    padding: clamp(1.6rem, 4vw, 2.6rem) 1rem;
    text-align: center;
    border-right: 1px solid rgba(26, 18, 5, .18)
}

.statstrip__grid>div:last-child {
    border-right: 0
}

@media(max-width:720px) {
    .statstrip__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .statstrip__grid>div:nth-child(2) {
        border-right: 0
    }

    .statstrip__grid>div:nth-child(1),
    .statstrip__grid>div:nth-child(2) {
        border-bottom: 1px solid rgba(26, 18, 5, .18)
    }
}

.statstrip .v {
    font-family: var(--ff-disp);
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.03em
}

.statstrip .v sup {
    font-size: .45em;
    vertical-align: super
}

.statstrip .l {
    font-weight: 600;
    font-size: .86rem;
    margin-top: .5rem;
    color: #3a2a08
}

/* ---------- Overview split (distinct from site .split) ---------- */
.t3split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center
}

@media(max-width:880px) {
    .t3split {
        grid-template-columns: 1fr
    }
}

.t3split__media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(150deg, var(--char), var(--char-2));
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dk)
}

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

.t3split__media .frame-tag {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    background: rgba(11, 11, 13, .78);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: .5rem 1rem;
    font-family: var(--ff-disp);
    font-weight: 600;
    font-size: .82rem;
    color: var(--gold-lt);
    display: inline-flex;
    align-items: center;
    gap: .4rem
}

/* ---------- Form card + panel rows (referral / CP) ---------- */
.formcard {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(1.4rem, 3vw, 2rem)
}

.section--light .formcard,
.section--paper .formcard,
.section--cream .formcard {
    background: #fff;
    border-color: var(--line-lt)
}

.panel {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--ink-2)
}

.panel__row {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: 1rem 1.2rem;
    color: var(--bone);
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    transition: .2s var(--ease)
}

.panel__row:last-child {
    border-bottom: 0
}

.panel__row:hover {
    background: rgba(200, 146, 46, .08);
    color: var(--gold-lt)
}
.panel__row .ic {
    color: var(--gold-lt)
}
.brand{
    display:flex;
    align-items:center;
}
.brand__logo{
    height:80px;
    width:auto;
    display:block;
    object-fit:contain;
    transition:.3s;
}
.brand__logo:hover{
    transform:scale(1.03);
}
.footer-logo{
    height:70px;
}
@media (max-width:768px){
    .brand__logo{
        height:48px;
    }

    .footer-logo{
        height:55px;
    }
}

/* ================= MOBILE MENU ================= */
@media (max-width:980px){

    .nav{
        top:0;
    }

    .nav__links{
        position:fixed;
        inset:0;
        width:100%;
        height:100vh;
        overflow-y:auto;
        padding:90px 20px 40px;
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
        align-items:center;
        gap:20px;
        background:#0b0b0d;
        transform:translateX(100%);
        transition:.35s ease;
        z-index:999;
    }

    body.nav-open .nav__links{
        transform:translateX(0);
    }

    .nav__links>a,
    .nav__grp-btn{
        width:100%;
        text-align:center;
        font-size:20px;
    }

    .nav__group{
        width:100%;
        position:relative;
    }

    .nav__menu{
        display:none;
        position:static;
        width:100%;
        margin-top:10px;
        padding:10px 0;
        background:#17141B;
        border-radius:10px;
    }

    .nav__group.open .nav__menu{
        display:flex;
        flex-direction:column;
    }

    .nav__menu a{
        padding:12px 15px;
        text-align:center;
        font-size:16px;
    }

    .nav__cta{
        margin-top:20px;
    }
}
@media (max-width:980px){

    .nav{
        position:fixed;
        top:38px;
        left:0;
        right:0;
        z-index:9999;
    }

    .nav__inner{
        position:relative;
        z-index:9999;
    }

    .nav__toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        position:relative;
        z-index:10001;
        width:46px;
        height:46px;
        color:#fff;
    }

    .nav__links{
        position:fixed;
        inset:0;
        z-index:9990;
        padding-top:110px;
    }

}
/*sudarshan*/
/* About Section */
#brand .prose{
    max-width: 560px;
}

#brand .prose p{
    font-family: 'Manrope', sans-serif;
    font-size: 17px;          /* Reduce text size */
    line-height: 1.9;         /* Better readability */
    color: #5a5460;
    text-align: justify;      /* Align paragraph properly */
    margin: 0;
    font-weight: 400;
    letter-spacing: 0;
}

/* Heading */
#brand .h-lg{
    font-size: clamp(2.5rem,4vw,4.2rem);
    line-height: .95;
    margin-bottom: 28px;
}

/* About Label */
#brand .eyebrow{
    margin-bottom: 18px;
}

/* Desktop */
@media (min-width:992px){
    #brand .t3split{
        display:grid;
        grid-template-columns: 1fr 0.9fr;
        gap:80px;
        align-items:center;
    }

    #brand .prose{
        max-width:600px;
    }

    #brand .prose p{
        font-size:16px;
        line-height:2;
    }
}

/* Tablet */
@media (max-width:991px){
    #brand .prose p{
        font-size:15px;
        line-height:1.8;
        text-align:left;
    }
}

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

    #brand .prose p{
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        word-break: normal;
        overflow-wrap: break-word;
        margin-bottom: 0;
    }

    #brand .prose{
        max-width: 100%;
    }

    #brand .reveal{
        padding: 0 5px;
    }
}

/* Left Image */
.titan-media{
    position: relative;
    width: 100%;
    height: 520px;      /* Adjust as needed */
    border-radius: 22px;
    overflow: hidden;
}

.titan-media .titan-img{
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Keeps image proportional */
    object-position: center;
    display: block;
    transition: transform .5s ease;
}

.titan-media:hover .titan-img{
    transform: scale(1.03);
}

/* Location Tag */
.titan-media .media__tag{
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
}

/* Responsive */
@media (max-width:991px){
    .titan-media{
        height:420px;
    }
}

@media (max-width:767px){
    .titan-media{
        height:320px;
    }
}

@media (max-width:576px){
    .titan-media{
        height:260px;
    }
}
/* About Left Content */
.about-content p{
    font-size: 18px;
    line-height: 1.9;
    color: #f3f1ec;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: left;
    hyphens: auto;
    margin-bottom: 0;
}

/* =====================================================
   Section Heading - Perfect Center
===================================================== */

.sec-head{
    width:100%;
    max-width:900px;
    margin:0 auto 3rem;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.sec-head .eyebrow{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 1rem;
    text-align:center;
}

.sec-head .h-lg,
.sec-head h2{
    width:100%;
    margin:0 auto;
    text-align:center;
}

.sec-head .lead{
    max-width:700px;
    margin:1rem auto 0;
    text-align:center;
}

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

    .sec-head{
        margin-bottom:2rem;
        padding:0 15px;
    }

    .sec-head .lead{
        max-width:100%;
    }
}

.phero{
    position: relative;
    overflow: hidden;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Card Footer */
.pcard__footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:20px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.08);
}

/* Date */
.pcard__date{
    font-size:14px;
    font-weight:600;
    color:var(--gold);
}

/* Read Link */
.pcard__read{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    font-weight:600;
    color:var(--gold);
    transition:.3s ease;
}

.pcard__read .ic{
    transition:transform .3s ease;
}

.icard:hover .pcard__read .ic{
    transform:translateX(4px);
}

.bdnone{
    border: none;
}
.t3hero h1 .serif{
    display:block;
    font-size:.4em;
    text-transform:none;
    color:var(--gold-lt);
    font-weight:400;
    margin-top:.5rem;
    letter-spacing:0;
    font-family:var(--ff-serif)
}
/* MahaRERA Box */
.rera-box{
    margin-top:1.5rem;
    max-width:340px;
}

.rera-box__top{
    display:flex;
    align-items:center;
    gap:1rem;
    margin-bottom:1rem;
}

.rera-box__qr{
    width:90px;
    height:90px;
    border-radius:6px;
    flex-shrink:0;
}

.rera-box__info{
    flex:1;
}

.rera-box__number{
    margin:0;
    font-size:.95rem;
    line-height:1.5;
    color:var(--bone);
}

.rera-box__number strong{
    display:block;
    color:var(--white);
    font-weight:700;
}
.rera-box__website{
    display:flex;
    align-items:center;
    gap:.6rem;
    margin:0;
    font-size:.88rem;
    color:var(--mute);
}

.rera-box__website span{
    display:flex;
    align-items:center;
    gap:.3rem;
    flex-wrap:nowrap;      /* Keep text in one line */
    white-space:nowrap;
}

.rera-box__website a{
    color:var(--bone);
    text-decoration:none;
}

.rera-box__website a:hover{
    color:var(--gold-lt);
}

.rera-logo{
    width:18px;
    height:18px;
    flex-shrink:0;
}
/* VBC SweetAlert */
.vbc-swal-popup{
    border:1px solid #C8922E;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.vbc-swal-title{
    font-size:2rem !important;
    font-weight:700 !important;
    color:#C8922E !important;
}

.vbc-swal-btn{
    background:#C8922E !important;
    color:#fff !important;
    border-radius:50px !important;
    padding:12px 36px !important;
    font-size:16px !important;
    font-weight:600 !important;
    box-shadow:none !important;
}

.vbc-swal-btn:hover{
    background:#b88424 !important;
}

.swal2-icon.swal2-success{
    border-color:#C8922E !important;
}

.swal2-success-line-tip,
.swal2-success-line-long,
.swal2-success-ring{
    border-color:#C8922E !important;
}

.swal2-success-circular-line-left,
.swal2-success-circular-line-right,
.swal2-success-fix{
    background:#111114 !important;
}