  @import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Montserrat:wght@300;400;600&family=Tenor+Sans&display=swap');
  :root {
  --cr:    #7f0200;
  --crh:   #9c0300;
  --gd:    #c4a05a;
  --ink:   #000000;
  --paper: #faf8f4;
  --wh:    #ffffff;
  --rule:  rgba(110,80,50,.13);
  --serif: 'Cormorant', Georgia, serif;
  --ui:    'Montserrat', sans-serif;
  --caps:  'Tenor Sans', sans-serif;
}
.container { max-width: 90%; }
p { margin-bottom: 0; }
select:focus { box-shadow: none !important; }
.py-100 { padding: 100px 0; }

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 500px;
  padding-top: 80px;
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: .7;
    transition: transform 9s ease;
}
.hero:hover .hero-img { transform: scale(1.04); }
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,13,12,.97) 0%, rgba(14,13,12,.55) 50%, rgba(14,13,12,.18) 100%);
}
.hero-ghost {
  position: absolute; right: -20px; bottom: -50px;
  font-family: var(--serif);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 300; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,160,90,.07);
  line-height: 1; pointer-events: none; letter-spacing: -.03em;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gd);
  font-family: var(--caps);
  font-weight:600;
}
.hero-eyebrow span { display: block; width: 40px; height: 1px; background: var(--gd); }
.hero-title {
    font-family: Oswald, sanserif;
    font-size: 60px;
    font-weight: 500;
    color: var(--wh);
    line-height: 1.09;
    margin-top: 20px;
}
.hero-title b { font-style: normal; font-weight: 300; color: var(--gd); }
.hero-sub {
  font-size: 14px; font-weight: 500;
  letter-spacing: .06em;
  color:  var(--wh);
  line-height: 1.9;
}
/* ═══════ SECTION RULE ═══════ */
.srule { display: flex; align-items: center; }
.sline { flex: 1; height: 1px; background: var(--rule); }
.sdot {
  width: 5px; height: 5px;
  border: 1px solid #7f0200;
  transform: rotate(45deg);
  flex-shrink: 0; margin: 0 8px;
}
.slbl {
  padding: 0 18px;
  font-size: 16px; letter-spacing: .10em;
  text-transform: uppercase; color: var(--ink);
  font-family: var(--caps); white-space: nowrap;
  font-weight:600;
}

/* ═══════ ONGOING PROJECT CARDS ═══════ */
/* ═══════ ONGOING PROJECT CARDS ═══════ */
.pcard {
  background: var(--wh);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  position: relative;
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1),
              transform .8s cubic-bezier(.16,1,.3,1),
              box-shadow 0.4s ease;
}
.pcard.inv { opacity: 1; transform: translateY(0); }
.pcard:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 60px rgba(127,2,0,.10), 0 4px 16px rgba(0,0,0,.08) !important;
}

.pcard-img {
  position: relative; overflow: hidden;
  height: 100%; min-height: 320px; background: #000;
}
.pcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.92);
  transition: transform 1.1s cubic-bezier(.25,.46,.45,.94), filter 0.6s ease;
}
.pcard:hover .pcard-img img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.08) saturate(1.1);
}

/* Image shine sweep */
.pcard-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.08) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none; z-index: 2;
}
.pcard:hover .pcard-img::after {
  transform: translateX(100%);
  transition: transform 0.65s ease;
}

/* Red tint overlay */
.pcard-img::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(127,2,0,0);
  transition: background 0.5s ease;
  z-index: 1; pointer-events: none;
}
.pcard:hover .pcard-img::before { background: rgba(127,2,0,.08); }

/* Badge */
.pstat {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-size: 7px; letter-spacing: .24em;
  text-transform: uppercase; font-weight: 400;
  padding: 5px 12px; font-family: var(--caps);
  display: flex; align-items: center; gap: 7px;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1);
}
.pcard:hover .pstat { transform: translateY(5px); }
.suc  { background: var(--cr); color: var(--wh); }
.snew { background: var(--gd); color: #000000; animation: badgePulse 2.4s ease-in-out infinite;font-weight:600;font-size:10px; }

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,160,90,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(196,160,90,0); }
}

/* Pulse dot inside badge */
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(0,0,0,.5); flex-shrink: 0;
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.4); }
}

/* Card body */
.pcard-body {
  padding: 32px 40px 32px 32px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Meta label: 01 / Apartment */
.pcard-meta {
  font-family: var(--caps);
  font-size: 12px;
  text-transform: uppercase;
  color: #555; margin-bottom: 10px;
  font-weight:600;
}

/* Project name */
.pcard-name {
  font-family: var(--serif); font-size: 34px; font-weight: 550;
  color: var(--ink); line-height: 1.1; margin-bottom: 4px;
  position: relative; display: inline-block;
  transition: color .25s;
}
.pcard-name::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--cr);
  transition: width 0.5s cubic-bezier(.16,1,.3,1);
}
.pcard:hover .pcard-name { color: var(--cr); }
.pcard:hover .pcard-name::after { width: 100%; }

/* Location with leading dash */
.pcard-loc-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.pcard-loc-line {
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--cr); flex-shrink: 0;
}
.pcard-loc {
  font-size: 13px; font-weight: 300;
  color: #555; letter-spacing: .04em;
  margin-bottom: 0;
}

/* Divider */
.pcard-divider {
  width: 32px; height: 1px; background: var(--rule); margin-bottom: 18px;
  transition: width 0.5s cubic-bezier(.16,1,.3,1), background 0.4s;
}
.pcard:hover .pcard-divider { width: 64px; background: var(--gd); }

/* 2-column spec grid */
.pcard-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  margin-bottom: 4px;
}
.pspec-cell .pspec-key {
  font-size: 11px; 
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 4px;
  font-family: var(--caps);
}
.pspec-cell .pspec-val {
  font-size: 15px; font-weight: 600;
  color: var(--ink);
}

/* Footer */
.pcard-footer {
  margin-top: 22px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1);
}
.pcard:hover .pcard-footer { transform: translateY(-3px); transition-delay: .1s; }

/* Register Interest button */
.btn-primary-k {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 24px;
  background: var(--cr); color: var(--wh);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; font-family: var(--caps);
  border-radius: 0;
  transition: background .25s, gap .3s;font-weight:600;
}
.btn-primary-k:hover { background: var(--crh); color: var(--wh); gap: 15px; }
.btn-primary-k svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; } 

/* Get Notified button */
.btn-notify-k {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 20px;
  border: 2px solid var(--gd); background: transparent; color: var(--gd);
  font-size: 12px; letter-spacing: .10em; text-transform: uppercase;
  text-decoration: none; font-family: var(--caps);
  border-radius: 0;
  transition: background .25s, color .25s, gap .3s;font-weight:600;
}
.btn-notify-k:hover { background: var(--gd); color: #1a0608; gap: 13px; }
.btn-notify-k svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ═══════ RESPONSIVE ═══════ */

/* Tablet */
@media (max-width: 991.98px) {
  .pcard { grid-template-columns: 300px 1fr; }
  .pcard-img { min-height: 280px; }
  .pcard-name { font-size: 26px; }
  .pcard-body { padding: 24px 24px 24px 20px; }
  .pcard-specs-grid { gap: 14px 20px; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .pcard { grid-template-columns: 1fr !important; }
  .pcard-img { height: 220px; min-height: unset; }
  .pcard-body { padding: 20px 16px; }
  .pcard-name { font-size: 24px; }
  .pcard-specs-grid { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .pspec-cell .pspec-val { font-size: 13px; }
  .pcard-loc { font-size: 11px; }
  .pcard-footer { gap: 10px; }
  .btn-primary-k, .btn-notify-k { padding: 9px 14px; font-size: 8px; }
}

/* ═══════ COMPLETED PROJECTS ═══════ */
.comp-section-alt { background: #fff; overflow: hidden; }

.comp-title-alt {
  font-family: Oswald, sanserif;
  font-size: ;
  font-weight: 600;
  line-height: 1.1; color: #000;
  color:#7f0200;
}

.ccount-alt {
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(196,160,90,.1);
  line-height: 0.8;
}

.cey {
  font-family: var(--caps);
  font-size: 14px; letter-spacing: 2px;
  text-transform: uppercase; color: #000000;
  font-weight:600;
}

/* Gallery Cards */
.ccard-alt {
  position: relative; overflow: hidden;
  height: 350px;
  background: #111; cursor: pointer;
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.ccard-alt.big-card  { height: 500px; }
.ccard-alt.tall-card { height: 500px; }
.ccard-alt.wide-card { height: 350px; }
.ccard-alt.inv { opacity: 1; transform: translateY(0); }

.ccard-alt img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) brightness(.7);
  transition: transform 1.2s cubic-bezier(.215,.61,.355,1), filter .6s;
}
.ccard-alt:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(.5);
}

.c-badge {
  position: absolute; top: 20px; right: 20px; z-index: 5;
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: #000;
  background: var(--gd); padding: 4px 12px;
}

.cinfo-alt {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px; z-index: 4;
}

.cloc-alt {
  font-family: var(--caps);
  font-size: 14px;
  color: var(--wh); text-transform: uppercase;
  display: block; margin-bottom: 8px;
  transform: translateY(10px); opacity: 0;
  transition: all 0.4s ease;
  font-weight:600;
}
.ccard-alt:hover .cloc-alt { transform: translateY(0); opacity: 1; }

.cname-alt {
  font-family: var(--serif);
  font-size: 26px; font-weight: 600;
  color: var(--wh); margin-bottom: 10px;
}

.c-line {
  width: 0; height: 1px; background: var(--cr);
  transition: width 0.6s cubic-bezier(.16,1,.3,1);
}
.ccard-alt:hover .c-line { width: 50px; }

/* View Project pill */
.view-proj-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  color: var(--cr);
  font-family: var(--caps);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(127,2,0,.6);
  border-radius: 50px;
  padding: 7px 16px;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s ease;
}
.view-proj-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.ccard-alt:hover .view-proj-link { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.view-proj-link:hover { background: var(--cr); color: #fff; border-color: var(--cr); gap: 12px; }

/* ═══════ RESPONSIVE ═══════ */

/* Tablet */
@media (max-width: 991.98px) {
  .ccard-alt.big-card,
  .ccard-alt.tall-card { height: 400px; }
  .comp-title-alt { font-size: 38px; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .ccard-alt,
  .ccard-alt.big-card,
  .ccard-alt.tall-card,
  .ccard-alt.wide-card { height: 250px !important; }

  .cinfo-alt { padding: 20px; }
  .cname-alt { font-size: 20px; margin-bottom: 8px; }
  .cloc-alt { font-size: 10px; margin-bottom: 6px; }

  .ccard-alt .cloc-alt { transform: translateY(0); opacity: 1; }
  .ccard-alt .c-line   { width: 36px; }
  .ccard-alt .view-proj-link { opacity: 1; transform: translateY(0); transition-delay: 0s; }

  .view-proj-link { font-size: 9px; padding: 6px 14px; margin-top: 10px; }
}

/* Small phones */
@media (max-width: 480px) {
  .ccard-alt,
  .ccard-alt.big-card,
  .ccard-alt.tall-card,
  .ccard-alt.wide-card { height: 210px !important; }
  .cname-alt { font-size: 18px; }
  .comp-title-alt { font-size: 28px; }
}

#brochurePopup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bpFadeIn 0.25s ease;
}
@keyframes bpFadeIn { from { opacity:0; } to { opacity:1; } }
 
.bp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.bp-modal {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 42px 36px 36px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.28);
    animation: bpSlideUp 0.3s cubic-bezier(.22,.68,0,1.2);
    z-index: 1;
    margin: 0 16px;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes bpSlideUp {
    from { transform: translateY(40px) scale(.96); opacity:0; }
    to   { transform: translateY(0) scale(1);       opacity:1; }
}
.bp-close {
    position: absolute;
    top:14px; right:16px;
    background:none; border:none;
    font-size:26px; color:#bbb;
    cursor:pointer; line-height:1;
    transition:color .2s; padding:0;
}
.bp-close:hover { color:#333; }
 
.bp-header { text-align:center; margin-bottom:24px; }
.bp-icon {
    display:inline-flex;
    align-items:center; justify-content:center;
    width:62px; height:62px;
    background:#fdf0f1; border-radius:50%;
    font-size:26px; color:#8b0712;
    margin-bottom:14px;
    box-shadow:0 4px 16px rgba(139,7,18,.12);
}
.bp-header h3 {
    font-size:21px; font-weight:700;
    color:#1a0a0a; margin:0 0 6px;
    font-family:'Playfair Display',serif;
}
.bp-header p { font-size:13px; color:#999; margin:0; }
 
.bp-field { margin-bottom:14px; }
.bp-field input[type="text"],
.bp-field input[type="email"],
.bp-field input[type="tel"],
.bp-field input[type="number"] {
    width:100%; padding:12px 15px;
    border:1.5px solid #ddd; border-radius:8px;
    font-size:14px; color:#333;
    transition:border-color .2s;
    outline:none; box-sizing:border-box;
    font-family:inherit;
}
.bp-field input:focus { border-color:#8b0712; }
.bp-error { display:block; font-size:12px; color:#e00; margin-top:5px; }
 
/* intl-tel-input inside popup */
#brochurePopup .iti { width:100%; }
#brochurePopup .iti__flag-container,
#brochurePopup .iti__country-list { z-index:9999999 !important; }
 
.bp-btn-primary {
    display:block; width:100%; padding:14px;
    background:#8b0712; color:#fff;
    border:none; border-radius:8px;
    font-size:14px; font-weight:700;
    letter-spacing:.04em; text-transform:uppercase;
    cursor:pointer; margin-top:6px;
    transition:background .2s; font-family:inherit;
}
.bp-btn-primary:hover    { background:#6a0510; }
.bp-btn-primary:disabled { background:#ccc; cursor:not-allowed; }
.bp-btn-primary i { margin-right:8px; }
 
.bp-btn-verify {
    display:block; width:100%; padding:13px;
    background:#27ae60; color:#fff;
    border:none; border-radius:8px;
    font-size:14px; font-weight:700;
    cursor:pointer; margin-top:10px;
    transition:background .2s; font-family:inherit;
}
.bp-btn-verify:hover    { background:#1e9151; }
.bp-btn-verify:disabled { background:#aaa; cursor:not-allowed; }
.bp-btn-verify i { margin-right:6px; }
 
.bp-btn-resend {
    background:none; border:none;
    color:#8b0712; font-size:13px;
    cursor:pointer; margin-top:10px;
    text-decoration:underline;
    display:block; width:100%;
    text-align:center; font-family:inherit;
}
.bp-btn-resend:disabled { color:#bbb; cursor:not-allowed; text-decoration:none; }
 
#bp_otpSection { display:none; }
.bp-otp-box {
    background:#f4fdf4;
    border:1px dashed #2d8a45;
    border-radius:8px; padding:18px; margin-top:12px;
}
.bp-otp-info { font-size:13px; color:#2d6a3f; font-weight:600; margin:0 0 12px; }
.bp-otp-info i { color:#27ae60; margin-right:5px; }
#bp_otp {
    width:100%; padding:13px 15px;
    border:1.5px solid #ddd; border-radius:8px;
    font-size:22px; letter-spacing:8px;
    text-align:center; outline:none;
    box-sizing:border-box; font-family:monospace;
}
#bp_otp:focus { border-color:#27ae60; }
.bp-timer { font-size:12px; color:#999; text-align:center; margin-top:8px; }
 
@media(max-width:480px) {
    .bp-modal { padding:32px 20px 26px; }
    .bp-header h3 { font-size:18px; }
}