
:root{
  --ink:#071b33;
  --ink2:#0c294b;
  --navy:#071b33;
  --muted:#68778a;
  --line:#e5e9ef;
  --soft:#f6f7f9;
  --ivory:#fbf8f1;
  --gold:#c9a35d;
  --gold2:#e6cf95;
  --green:#0d766f;
  --white:#ffffff;
  --shadow:0 22px 60px rgba(7,27,51,.12);
  --shadow2:0 36px 90px rgba(7,27,51,.24);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.55;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
p{color:#4d5a6b;margin-top:0}

.dev-topbar{
  background:var(--navy);
  color:#d7dfeb;
  font-size:12px;
  padding:8px clamp(18px,4vw,64px);
  display:flex;
  justify-content:space-between;
  gap:20px;
}

/* Cleaner logo */
.site-header{
  position:sticky;
  top:0;
  z-index:90;
  min-height:78px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(229,233,239,.92);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:14px clamp(18px,4vw,64px);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:300px;
}
.brand-mark{
  width:66px;
  height:54px;
  background:var(--navy);
  color:#fff;
  display:grid;
  place-items:center;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:600;
  font-size:16px;
  letter-spacing:-.02em;
  border:1px solid rgba(201,163,93,.55);
  position:relative;
  flex:0 0 auto;
  padding:0 6px;
}
.brand-mark:after{
  content:"";
  position:absolute;
  inset:7px;
  border:1px solid rgba(201,163,93,.45);
}
.brand strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:21px;
  font-weight:500;
  letter-spacing:-.02em;
  line-height:1.05;
}
.brand small{
  display:block;
  color:#6d7888;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-top:3px;
}

/* Navigation */
nav{display:flex;gap:22px;align-items:center}
nav a{
  font-size:13px;
  color:#39475b;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  line-height:1.2;
  padding:8px 0;
}
nav a.active,nav a:hover{color:var(--gold)}

/* Fixed buttons: no clipping / cut-off */
.header-cta,.btn{
  border:0;
  border-radius:0;
  min-height:46px;
  padding:0 22px;
  line-height:46px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  transition:.22s ease;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:12px;
  white-space:nowrap;
  overflow:visible;
  text-align:center;
}
.header-cta,.btn.primary{
  background:var(--ink);
  color:#fff;
  box-shadow:0 16px 34px rgba(7,27,51,.18);
}
.btn.gold{
  background:var(--gold);
  color:#111827;
  box-shadow:0 14px 30px rgba(201,163,93,.22);
}
.btn.secondary{
  background:#fff;
  border:1px solid var(--line);
  color:var(--ink);
  box-shadow:none;
}
.btn.outline-light{
  background:transparent;
  border:1px solid rgba(255,255,255,.55);
  color:#fff;
}
.btn:hover,.header-cta:hover{transform:translateY(-2px)}
.nav-toggle{
  display:none;
  background:#fff;
  border:1px solid var(--line);
  min-height:44px;
  padding:0 14px;
  line-height:42px;
  font-size:20px;
}

.kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:950;
}

/* Single-color developer hero */
.hero-dev{
  min-height:760px;
  position:relative;
  color:#fff;
  display:grid;
  align-items:end;
  overflow:hidden;
  background:var(--navy);
}
.hero-dev:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(7,27,51,.94),rgba(7,27,51,.55) 52%,rgba(7,27,51,.12));
  z-index:1;
}
.hero-dev img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.9;
}
.hero-content{
  position:relative;
  z-index:2;
  padding:110px clamp(22px,5vw,76px) 76px;
  max-width:1050px;
}
.hero-content h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(46px,7vw,96px);
  line-height:.92;
  margin:14px 0 22px;
  letter-spacing:-.055em;
  font-weight:500;
}
.hero-content p{
  font-size:20px;
  color:#e3e9f1;
  max-width:780px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.section{padding:88px clamp(22px,5vw,76px)}
.section.soft{background:var(--soft)}
.section.ivory{background:var(--ivory)}
.section.dark{background:var(--navy);color:#fff}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:26px;
  margin-bottom:34px;
}
.section-head h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,4.2vw,58px);
  line-height:1.02;
  font-weight:500;
  letter-spacing:-.04em;
  margin:8px 0 0;
}
.section-head p{max-width:660px;color:#687588}

.filter-bar{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:2fr repeat(4,1fr);
  gap:12px;
  padding:16px;
  margin-top:40px;
}
.filter-bar input,.filter-bar select,.lead-form input,.lead-form select,.lead-form textarea,.calculator input{
  width:100%;
  border:1px solid var(--line);
  padding:14px 14px;
  min-height:46px;
  font:inherit;
  background:#fff;
  color:var(--ink);
  border-radius:0;
}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.project-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 42px rgba(7,27,51,.08);
  display:flex;
  flex-direction:column;
  transition:.25s ease;
  overflow:hidden;
}
.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 70px rgba(7,27,51,.14);
}
.project-img{
  height:248px;
  background:var(--navy);
  overflow:hidden;
  position:relative;
}
.project-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}
.project-card:hover .project-img img{transform:scale(1.04)}
.badge{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  background:#f3ead9;
  color:#785a20;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.badge.green{background:#e3f4ee;color:#0d664a}
.badge.blue{background:#e8efff;color:#2554a0}
.badge.grey{background:#eef1f4;color:#4b5666}
.card-body{
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.card-body h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  line-height:1.06;
  font-weight:500;
  margin:0;
}
.meta{font-size:14px;color:#6d7888}
.price{font-size:18px;font-weight:950;color:#111827}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:auto;
  padding-top:12px;
}

.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.info-card,.article-card,.panel,.calculator{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 38px rgba(7,27,51,.06);
  padding:26px;
}
.info-card h3,.panel h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  line-height:1.1;
  font-weight:500;
  margin:0 0 10px;
}

.cta-band{
  background:var(--navy);
  color:#fff;
  padding:46px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  box-shadow:var(--shadow2);
}
.cta-band h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:48px;
  line-height:1.02;
  font-weight:500;
  margin:0;
}
.cta-band p{color:#d2dae6;max-width:760px}

.page-hero{
  background:var(--navy);
  color:#fff;
  padding:82px clamp(22px,5vw,76px);
}
.page-hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(44px,6vw,84px);
  line-height:.96;
  font-weight:500;
  letter-spacing:-.05em;
  margin:12px 0 18px;
}
.page-hero p{color:#dce5ef;max-width:820px;font-size:18px}
.breadcrumb{font-size:13px;color:#b6c2d1;margin-bottom:16px}

.microsite-nav{
  position:sticky;
  top:78px;
  z-index:50;
  background:#fff;
  border-bottom:1px solid var(--line);
  display:flex;
  gap:0;
  overflow:auto;
  padding:0 clamp(22px,5vw,76px);
  box-shadow:0 10px 28px rgba(7,27,51,.05);
}
.microsite-nav a{
  padding:18px 17px;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#506074;
  border-right:1px solid var(--line);
  white-space:nowrap;
}
.microsite-nav a:hover{color:var(--gold)}

.project-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 420px;
  gap:34px;
  align-items:start;
}
.sticky-panel{position:sticky;top:145px}
.dev-section{
  padding:74px 0;
  border-bottom:1px solid var(--line);
}
.dev-section:first-child{padding-top:0}
.dev-section h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:52px;
  line-height:1.02;
  font-weight:500;
  letter-spacing:-.04em;
  margin:0 0 18px;
}
.project-summary-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
  background:#fff;
  margin:28px 0;
}
.summary-tile{padding:22px;border-right:1px solid var(--line)}
.summary-tile:last-child{border-right:0}
.summary-tile span,.fact span{
  display:block;
  color:#798392;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.summary-tile strong,.fact strong{
  display:block;
  margin-top:6px;
  font-size:17px;
}
.fact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
  background:#fff;
}
.fact{
  padding:18px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.media-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.media-card img{width:100%;height:auto}
.media-caption{
  border-top:1px solid var(--line);
  padding:15px 18px;
  color:#697589;
  font-size:13px;
}
.floorplan-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.floor-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 42px rgba(7,27,51,.08);
  overflow:hidden;
}
.floor-card-body{padding:20px}
.floor-card h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  font-weight:500;
  margin:0 0 6px;
}
.gallery-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:22px}
.gallery-grid .media-card:first-child{grid-row:span 2}
.facility-list{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.facility-item{
  background:#fff;
  border:1px solid var(--line);
  padding:20px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.facility-item span{
  display:block;
  color:#6d7888;
  font-size:13px;
  font-weight:500;
  text-transform:none;
  letter-spacing:0;
  margin-top:6px;
}
.table-wrap{
  overflow:auto;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 12px 32px rgba(7,27,51,.06);
}
table{border-collapse:collapse;width:100%;min-width:800px}
th,td{
  text-align:left;
  padding:16px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
th{
  background:#f7f8fa;
  color:#596779;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
tr:last-child td{border-bottom:0}

.lead-form label{
  display:block;
  font-weight:850;
  font-size:13px;
  color:#253247;
}
.lead-form label input,.lead-form label select,.lead-form label textarea{
  margin-top:7px;
  font-weight:500;
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.lead-form.compact .form-grid{grid-template-columns:1fr}
.consent{
  display:flex!important;
  gap:10px;
  align-items:flex-start;
  font-weight:500!important;
  color:#6d7888!important;
  margin:16px 0;
}
.consent input{
  width:auto!important;
  min-height:auto!important;
  margin-top:4px!important;
}
.form-note{font-size:13px;color:#6d7888;margin-bottom:0}
.form-note a{color:var(--green);font-weight:950}
.notice{
  padding:16px 18px;
  background:#fff8e8;
  border:1px solid #efd79b;
  color:#70521f;
}
.reveal-box{
  background:#f7f8fa;
  border:1px dashed #bbc6d3;
  padding:20px;
  margin-top:18px;
}
.download-card{
  background:var(--navy);
  color:#fff;
  padding:30px;
  margin:22px 0;
}
.download-card h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;
  font-weight:500;
  margin:0 0 10px;
}
.download-card p{color:#d5deea}

.article-card .category{
  color:var(--gold);
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}
.article-card h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:30px;
  line-height:1.08;
  font-weight:500;
  margin:12px 0;
}
.article-content{max-width:860px;margin:auto}
.article-content h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:40px;
  font-weight:500;
  margin-top:42px;
}
.article-content p{font-size:18px;color:#3f4d5f}

.site-footer{
  background:var(--navy);
  color:#dce6f2;
  padding:54px clamp(22px,5vw,76px) 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:34px;
}
.footer-grid a{display:block;color:#bdc9d8;margin:8px 0}
.footer-brand{min-width:0}
.site-footer .brand strong{color:#fff}
.site-footer .brand small{color:#b9c6d6}
.small{font-size:13px;color:#aab7c7}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:30px;
  padding-top:18px;
  color:#aab7c7;
  font-size:13px;
  display:flex;
  justify-content:space-between;
  gap:20px;
}
.floating-cta{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  gap:8px;
  z-index:95;
}
.floating-cta a{
  min-height:44px;
  padding:0 17px;
  line-height:44px;
  font-weight:950;
  box-shadow:0 12px 32px rgba(0,0,0,.22);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.08em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.float-call{background:#fff;color:var(--navy)}
.float-wa{background:#25d366;color:#052b14}
.calculator{padding:26px}
.result-box{
  background:var(--navy);
  color:#fff;
  padding:24px;
  margin-top:18px;
}
.result-box strong{font-size:30px;display:block}
.result-box p{color:#d6dfeb}

@media(max-width:1100px){
  .project-layout{grid-template-columns:1fr}
  .sticky-panel{position:static}
  .project-summary-strip{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:980px){
  .grid-2,.cta-band,.gallery-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .filter-bar{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  nav{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:78px;
    background:#fff;
    border:1px solid var(--line);
    padding:18px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
  }
  nav.open{display:flex}
  .nav-toggle{display:inline-flex;align-items:center;justify-content:center}
  .header-cta{display:none}
  .hero-dev{min-height:640px}
}
@media(max-width:700px){
  .dev-topbar{display:block}
  .brand{min-width:0}
  .brand strong{font-size:18px}
  .brand small{font-size:10px}
  .brand-mark{width:58px;height:48px;font-size:14px}
  .cards,.grid-3,.grid-4,.filter-bar,.form-grid,.fact-grid,.floorplan-grid,.facility-list,.project-summary-strip{
    grid-template-columns:1fr;
  }
  .summary-tile{
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .section-head{display:block}
  .project-img{height:220px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{display:block}
  .floating-cta{left:14px;right:14px}
  .floating-cta a{flex:1;text-align:center}
  .microsite-nav{top:78px;padding:0 14px}
  .hero-content{padding-top:88px}
  .hero-content h1{font-size:48px}
  .hero-content p{font-size:17px}
  .section{padding:68px 20px}
}



/* V9 rich project sections */
.update-list{display:grid;gap:12px}
.update-item{background:#fff;border:1px solid var(--line);padding:16px 18px;display:grid;grid-template-columns:160px 1fr;gap:18px;box-shadow:0 10px 28px rgba(7,27,51,.05)}
.update-item strong{color:var(--gold);font-size:13px;text-transform:uppercase;letter-spacing:.08em}
.keyfact-table td:first-child{font-weight:900;color:#071b33;width:260px}
.rich-split{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.rich-content p{font-size:17px}
.bullet-list{display:grid;gap:12px;margin:0;padding:0;list-style:none}
.bullet-list li{background:#fff;border:1px solid var(--line);padding:16px 18px;position:relative;padding-left:46px}
.bullet-list li:before{content:"";width:10px;height:10px;background:var(--gold);position:absolute;left:20px;top:23px}
.nearby-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.nearby-card{background:#fff;border:1px solid var(--line);padding:22px;box-shadow:0 12px 32px rgba(7,27,51,.06)}
.nearby-card h3{font-family:Georgia,"Times New Roman",serif;font-size:26px;font-weight:500;margin:0 0 8px}
.download-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.download-tile{background:#071b33;color:#fff;padding:24px;display:flex;flex-direction:column;gap:12px;min-height:210px}
.download-tile h3{font-family:Georgia,"Times New Roman",serif;font-size:28px;font-weight:500;margin:0;color:#fff}
.download-tile p{color:#d5deea}
.faq-list{display:grid;gap:14px}
.faq-item{background:#fff;border:1px solid var(--line);padding:20px 22px}
.faq-item h3{font-size:18px;margin:0 0 8px}
.showflat-box{background:#071b33;color:#fff;padding:30px;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center}
.showflat-box p{color:#dce6f2}
.enquiry-options{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin:8px 0 14px}
.enquiry-options label{font-weight:600!important;background:#f7f8fa;border:1px solid var(--line);padding:10px;display:flex!important;gap:8px;align-items:center}
.enquiry-options input{width:auto!important;min-height:auto!important;margin:0!important}
.admin-note{font-size:13px;color:#6d7888}
@media(max-width:900px){
  .update-item,.rich-split,.nearby-grid,.download-grid,.showflat-box{grid-template-columns:1fr}
}


/* V10 flexible gallery carousel and floor plans */
.carousel{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.carousel-track{
  display:flex;
  transition:transform .35s ease;
}
.carousel-slide{
  min-width:100%;
  display:block;
}
.carousel-slide img{
  width:100%;
  height:auto;
  display:block;
}
.carousel-caption{
  padding:16px 18px;
  color:#697589;
  font-size:14px;
  border-top:1px solid var(--line);
  background:#fff;
}
.carousel-btn{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:0;
  background:rgba(7,27,51,.86);
  color:#fff;
  cursor:pointer;
  font-size:24px;
  display:grid;
  place-items:center;
  z-index:4;
}
.carousel-btn.prev{left:14px}
.carousel-btn.next{right:14px}
.carousel-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding:14px;
  background:#fff;
  border-top:1px solid var(--line);
}
.carousel-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#cbd5e1;
  border:0;
  cursor:pointer;
}
.carousel-dot.active{background:var(--gold)}
.floorplan-grid.flexible{
  grid-template-columns:repeat(3,1fr);
}
.floor-card img{
  background:#f8fafc;
}
.floor-meta{
  font-size:13px;
  color:#6d7888;
  margin-bottom:12px;
}
@media(max-width:1100px){
  .floorplan-grid.flexible{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:700px){
  .floorplan-grid.flexible{grid-template-columns:1fr}
  .carousel-btn{width:40px;height:40px}
}



/* V13 official launch booking timeline */
.launch-timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 12px 32px rgba(7,27,51,.06);
}
.timeline-step{
  padding:22px;
  border-right:1px solid var(--line);
}
.timeline-step:last-child{border-right:0}
.timeline-step span{
  display:block;
  color:#798392;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.timeline-step strong{
  display:block;
  margin-top:8px;
  font-size:18px;
  color:#071b33;
}
.timeline-note{
  background:#fff8e8;
  border:1px solid #efd79b;
  padding:18px;
  margin-top:18px;
  color:#70521f;
}
.document-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.document-list li{
  background:#fff;
  border:1px solid var(--line);
  padding:14px 16px;
}
@media(max-width:900px){
  .launch-timeline{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .launch-timeline{grid-template-columns:1fr}
  .timeline-step{border-right:0;border-bottom:1px solid var(--line)}
}


/* V15 timeline card layout - matches facilities style */
.launch-timeline.timeline-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  border:0;
  background:transparent;
  box-shadow:none;
}
.timeline-card{
  background:#fff;
  border:1px solid var(--line);
  padding:22px;
  min-height:116px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.timeline-card span{
  display:block;
  color:#798392;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:10px;
}
.timeline-card strong{
  display:block;
  color:#071b33;
  font-size:18px;
  line-height:1.35;
}
.timeline-note{
  margin-top:18px;
  background:#fff8e8;
  border:1px solid #efd79b;
  padding:18px;
  color:#70521f;
}
@media(max-width:900px){
  .launch-timeline.timeline-card-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .launch-timeline.timeline-card-grid{grid-template-columns:1fr}
}


/* V17 fixed Residence Experience carousel */
.carousel{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
  width:100%;
}
.carousel-track{
  display:flex !important;
  flex-wrap:nowrap !important;
  transition:transform .35s ease;
  will-change:transform;
}
.carousel-slide{
  flex:0 0 100% !important;
  max-width:100% !important;
  min-width:100% !important;
  display:block;
}
.carousel-slide img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
  background:#f6f7f9;
}
.carousel-caption{
  padding:16px 18px;
  color:#697589;
  font-size:14px;
  border-top:1px solid var(--line);
  background:#fff;
}
.carousel-btn{
  position:absolute;
  top:calc(50% - 24px);
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border:0;
  background:rgba(7,27,51,.88);
  color:#fff;
  cursor:pointer;
  font-size:30px;
  line-height:1;
  display:grid;
  place-items:center;
  z-index:8;
}
.carousel-btn:hover{
  background:var(--gold);
  color:#071b33;
}
.carousel-btn.prev{left:16px}
.carousel-btn.next{right:16px}
.carousel-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding:14px;
  background:#fff;
  border-top:1px solid var(--line);
}
.carousel-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#cbd5e1;
  border:0;
  cursor:pointer;
  padding:0;
}
.carousel-dot.active{background:var(--gold)}
.carousel.single-slide .carousel-btn,
.carousel.single-slide .carousel-dots{
  display:none;
}
@media(max-width:900px){
  .carousel-slide img{height:420px}
}
@media(max-width:600px){
  .carousel-slide img{height:300px}
  .carousel-btn{width:42px;height:42px;font-size:26px}
  .carousel-btn.prev{left:10px}
  .carousel-btn.next{right:10px}
}


/* V18 inline gallery slider fallback */
.nd-gallery-slider{position:relative;width:100%;overflow:hidden;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)}
.nd-gallery-slide img{width:100%;height:clamp(260px,55vw,520px);object-fit:cover;display:block;background:#f6f7f9}


/* V21 centered buyer page + improved media sizing */
.project-layout{
  display:block !important;
  max-width:1320px;
  margin:0 auto;
}
.project-layout > div{
  width:100%;
}
.sticky-panel{
  position:static !important;
  max-width:880px;
  margin:70px auto 0;
}
.sticky-panel .panel{
  box-shadow:0 22px 60px rgba(7,27,51,.10);
}
.dev-section{
  max-width:1320px;
  margin-left:auto;
  margin-right:auto;
}
.media-card img{
  width:100%;
  max-height:720px;
  object-fit:contain;
  background:#f6f7f9;
}
.nd-gallery-slider{
  max-width:1320px;
  margin:0 auto;
}
.nd-gallery-slide img{
  height:clamp(420px,58vw,680px) !important;
  object-fit:contain !important;
  background:#f6f7f9;
}
.carousel-slide img{
  height:clamp(420px,58vw,680px) !important;
  object-fit:contain !important;
  background:#f6f7f9;
}
.floorplan-grid.flexible{
  grid-template-columns:repeat(2,1fr);
}
.floor-card img{
  max-height:560px;
  object-fit:contain;
  background:#f6f7f9;
}
.lead-form .form-grid{
  grid-template-columns:repeat(2,1fr);
}
.lead-form.compact .form-grid{
  grid-template-columns:repeat(2,1fr);
}
.lead-form textarea{
  min-height:110px;
}
@media(max-width:900px){
  .sticky-panel{margin-top:50px}
  .floorplan-grid.flexible{grid-template-columns:1fr}
  .lead-form .form-grid,
  .lead-form.compact .form-grid{
    grid-template-columns:1fr;
  }
  .nd-gallery-slide img,
  .carousel-slide img{
    height:clamp(300px,70vw,460px) !important;
  }
}


/* V22 true single-column centered project layout */
.project-main-section{
  padding-left:clamp(22px,4vw,72px);
  padding-right:clamp(22px,4vw,72px);
}
.project-content-full{
  width:100%;
  max-width:1500px;
  margin:0 auto;
}
.project-content-full .dev-section{
  width:100%;
  max-width:none;
  margin-left:0;
  margin-right:0;
}
.project-content-full .section-head{
  max-width:1500px;
}
.project-layout{
  display:block !important;
}
.project-layout > div{
  width:100% !important;
}
.register-section{
  max-width:920px;
  margin:78px auto 0;
  padding:0;
  border-bottom:0;
}
.register-panel-wrap{
  width:100%;
}
.register-panel{
  width:100%;
  box-shadow:0 22px 60px rgba(7,27,51,.12);
}
.sticky-panel{
  position:static !important;
}

/* Bigger but controlled media */
.nd-gallery-slider,
.carousel,
.media-card{
  width:100%;
  max-width:1500px;
  margin-left:auto;
  margin-right:auto;
}
.nd-gallery-slide img,
.carousel-slide img{
  width:100%;
  height:clamp(460px,52vw,760px) !important;
  object-fit:contain !important;
  background:#f6f7f9;
}
.media-card img{
  width:100%;
  max-height:760px;
  object-fit:contain !important;
  background:#f6f7f9;
}
.floorplan-grid.flexible{
  grid-template-columns:repeat(2,1fr);
}
.floor-card img{
  max-height:620px;
  object-fit:contain !important;
  background:#f6f7f9;
}
.lead-form.compact .form-grid,
.lead-form .form-grid{
  grid-template-columns:repeat(2,1fr);
}
@media(max-width:900px){
  .project-main-section{
    padding-left:18px;
    padding-right:18px;
  }
  .nd-gallery-slide img,
  .carousel-slide img{
    height:clamp(300px,72vw,460px) !important;
  }
  .floorplan-grid.flexible,
  .lead-form.compact .form-grid,
  .lead-form .form-grid{
    grid-template-columns:1fr;
  }
  .register-section{
    margin-top:48px;
  }
}


/* V23 floor plan click-to-enlarge */
.floor-zoom-trigger{
  width:100%;
  border:0;
  padding:0;
  margin:0;
  background:#f6f7f9;
  cursor:zoom-in;
  display:block;
  position:relative;
  text-align:left;
}
.floor-zoom-trigger img{
  width:100%;
  max-height:620px;
  object-fit:contain;
  display:block;
  background:#f6f7f9;
}
.floor-zoom-trigger span{
  position:absolute;
  right:14px;
  bottom:14px;
  background:rgba(7,27,51,.88);
  color:#fff;
  padding:9px 12px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.floor-img-link{
  display:block;
  text-decoration:none;
}
.floor-pdf-preview{
  min-height:260px;
  background:#f6f7f9;
  border-bottom:1px solid var(--line);
  display:grid;
  place-items:center;
  text-align:center;
  font-size:44px;
  font-weight:900;
  color:#071b33;
}
.floor-pdf-preview span{
  display:block;
  font-size:14px;
  margin-top:8px;
  color:#6d7888;
}
.floor-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.floor-modal.open{
  display:block;
}
.floor-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(7,17,31,.78);
}
.floor-modal-content{
  position:absolute;
  inset:32px;
  background:#fff;
  display:flex;
  flex-direction:column;
  box-shadow:0 30px 100px rgba(0,0,0,.45);
}
.floor-modal-header{
  min-height:60px;
  padding:12px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  border-bottom:1px solid var(--line);
}
.floor-modal-header strong{
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  font-weight:500;
}
.floor-modal-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.floor-modal-actions button{
  min-height:38px;
  border:1px solid var(--line);
  background:#fff;
  color:#071b33;
  padding:0 12px;
  font-weight:900;
  cursor:pointer;
}
.floor-modal-actions button:last-child{
  background:#071b33;
  color:#fff;
  border-color:#071b33;
  font-size:22px;
  line-height:1;
}
.floor-modal-view{
  flex:1;
  overflow:auto;
  display:grid;
  place-items:center;
  background:#f6f7f9;
  padding:24px;
}
.floor-modal-view img{
  max-width:none;
  width:auto;
  height:auto;
  max-height:none;
  transform-origin:center center;
  transition:transform .15s ease;
  background:#fff;
  box-shadow:0 12px 40px rgba(7,27,51,.18);
}
body.floor-modal-lock{
  overflow:hidden;
}
@media(max-width:700px){
  .floor-modal-content{
    inset:12px;
  }
  .floor-modal-header{
    align-items:flex-start;
    flex-direction:column;
  }
  .floor-modal-actions{
    width:100%;
  }
  .floor-modal-actions button{
    flex:1;
  }
  .floor-modal-view{
    padding:12px;
  }
}


/* V26 enhanced insights/articles */
.insights-hero{
  background:linear-gradient(135deg,#071b33,#0c294b);
  color:#fff;
  padding:88px clamp(22px,5vw,76px);
}
.insights-hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(46px,6.5vw,86px);
  line-height:.98;
  font-weight:500;
  letter-spacing:-.05em;
  margin:10px 0 18px;
}
.insights-hero p{color:#dce6f2;max-width:860px;font-size:18px}
.article-feature-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:26px;align-items:stretch}
.article-feature{background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);padding:34px;display:flex;flex-direction:column;justify-content:space-between;min-height:360px}
.article-feature h2{font-family:Georgia,"Times New Roman",serif;font-size:44px;line-height:1.02;font-weight:500;margin:12px 0}
.article-feature p{font-size:17px}
.article-card.enhanced{min-height:310px;display:flex;flex-direction:column;justify-content:space-between}
.article-card .read-time{font-size:12px;color:#6d7888;text-transform:uppercase;letter-spacing:.1em;font-weight:900}
.article-layout{display:grid;grid-template-columns:minmax(0,820px) 360px;gap:46px;align-items:start;max-width:1280px;margin:0 auto}
.article-main{min-width:0}
.article-main .lead{font-size:21px;line-height:1.65;color:#344154}
.article-main h2{font-family:Georgia,"Times New Roman",serif;font-size:42px;line-height:1.08;font-weight:500;margin:44px 0 14px;color:#071b33}
.article-main h3{font-size:22px;margin:28px 0 10px;color:#071b33}
.article-main p,.article-main li{font-size:17px;line-height:1.75;color:#3f4d5f}
.article-main ul,.article-main ol{padding-left:22px}
.article-summary-box,.article-checklist,.article-warning,.article-cta-box{border:1px solid var(--line);background:#fff;padding:24px;margin:28px 0;box-shadow:0 12px 32px rgba(7,27,51,.05)}
.article-summary-box{background:#f7f8fa}
.article-warning{background:#fff8e8;border-color:#efd79b;color:#70521f}
.article-warning p{color:#70521f}
.article-cta-box{background:#071b33;color:#fff}
.article-cta-box p{color:#dce6f2}.article-cta-box h2{color:#fff;margin-top:0}
.article-source-list{font-size:14px;color:#6d7888;margin-top:32px;border-top:1px solid var(--line);padding-top:20px}
.article-source-list a{font-weight:900;color:#071b33;text-decoration:underline;text-underline-offset:3px}
.article-side{position:sticky;top:110px}
.article-side .panel{box-shadow:0 16px 40px rgba(7,27,51,.08)}
.article-side h3{font-family:Georgia,"Times New Roman",serif;font-size:28px;font-weight:500;margin:0 0 12px}
.mini-toc a{display:block;border-bottom:1px solid var(--line);padding:11px 0;color:#3f4d5f;font-weight:800}
.mini-toc a:hover{color:var(--gold)}
.article-table{width:100%;min-width:0;border:1px solid var(--line);margin:24px 0;background:#fff}
.article-table th,.article-table td{font-size:15px;line-height:1.55}
.article-flow{display:grid;gap:14px;margin:24px 0}.article-step{background:#fff;border:1px solid var(--line);padding:18px 20px}.article-step strong{display:block;color:#071b33;font-size:18px;margin-bottom:6px}
.short-lead-form .form-grid{grid-template-columns:repeat(2,1fr)!important}.short-lead-form .enquiry-options{grid-template-columns:repeat(2,1fr)}
@media(max-width:1000px){.article-layout,.article-feature-grid{grid-template-columns:1fr}.article-side{position:static}.article-feature h2{font-size:36px}}
@media(max-width:700px){.short-lead-form .form-grid,.short-lead-form .enquiry-options{grid-template-columns:1fr!important}.article-main h2{font-size:34px}.article-feature{padding:24px}}
