:root {
  --maroon: #3a1e17;
  --maroon-deep: #2a1310;
  --maroon-light: #5c3527;
  --cream: #f2e9dd;
  --cream-deep: #f2e9dd;
  --gold: #c9a227;
  --gold-soft: #916040;
  --gold-softt: #dec17b;
  --gold-deep: #8c5c45;
  --ink: #26150rgb(4, 4, 4)
  --white: #ffffff;
  --line: rgb(201, 163, 39);
  --shadow: 0 30px 60px -25px rgba(42, 19, 16, 0.35);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


@font-face {
    font-family: badoni;
    src: url("/assets/fonts/Bodoni.ttc");
}

@font-face {
    font-family: ceraheading;
    src: url("/assets/fonts/CERAPROMEDIUM.OTF");
}

@font-face {
    font-family: ceraregular;
    src: url("/assets/fonts/CERAPROREGULAR.OTF");
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "ceraregular";
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
}

button{
  font-family: "ceraregular";

}
.intro-quote{
  font-family: "badoni";

}

h1,
h2,
h3,
h4,
.display {
  
  font-weight: 500;
  letter-spacing: 0.01em;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: "ceraheading", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.eyebrow.on-dark {
  color: var(--gold-soft);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- utility: wavy texture ---------- */
/* .wave-tex {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: repeating-radial-gradient(
    circle at 50% -10%,
    transparent 0,
    transparent 18px,
    var(--line) 19px,
    transparent 20px
  );
}
.wave-svg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
} */

/* ---------- flourish divider (signature element) ---------- */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  width: 100%;
}
.flourish svg {
  width: 64px;
  height: 20px;
  flex: none;
}
.flourish .rule {
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line) 40%,
    var(--line) 60%,
    transparent
  );
  max-width: 220px;
}
.flourish-path {
  stroke: var(--gold);
  stroke-width: 1.3;
  fill: none;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.in-view .flourish-path {
  stroke-dashoffset: 0;
}

/* ---------- preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  transition:
    opacity 0.9s var(--ease),
    visibility 0.9s var(--ease);
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  display: flex;
  gap: 10px;
}
.loader-bar {
  width: 10px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  border-radius: 2px;
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-bar:nth-child(2) {
  animation-delay: 0.15s;
}
@keyframes loaderPulse {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
.loader-word {
  
  color: var(--cream);
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* ---------- nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid var(--gold);
  right: 0;
  z-index: 900;
  background: #3a1e17;
  padding: 15px 0;
  transition: all 0.5s var(--ease);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.scrolled {
  background: rgba(58, 30, 23, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.4);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.brand-mark {
  width: 26px;
  height: 26px;
}
.brand-name {
  
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

nav.links {
  display: flex;
  gap: 34px;
}
nav.links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
  opacity: 0.85;
  transition: opacity 0.3s;
}
nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
nav.links a:hover {
  opacity: 1;
}
nav.links a:hover::after {
  width: 100%;
}
.brand{
    width: 15%;
}
.logo{
    width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition:
    color 0.4s,
    border-color 0.4s,
    transform 0.3s;
  background: transparent;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.55) 45%,
    transparent 60%
  );
  transition: left 0.8s var(--ease);
}
.btn:hover::before {
  left: 120%;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-solid {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: #fff;
  border-color: transparent;
  font-weight: 500;
}
.btn-solid:hover {
  color: var(--maroon-deep);
}
.nav-cta {
  display: none;
}
@media (min-width: 980px) {
  .nav-cta {
    display: inline-flex;
  }
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.burger span {
  height: 1px;
  background: var(--cream);
  width: 100%;
}
@media (min-width: 980px) {
  .burger {
    display: none;
  }
}
nav.links {
  display: none;
}
@media (min-width: 980px) {
  nav.links {
    display: flex;
  }
}

#mobileMenu {
  position: fixed;
  inset: 0;
  background: var(--maroon);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
}
#mobileMenu.open {
  transform: translateY(0);
}
#mobileMenu a {
  
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}
#mobileMenu .btn {
  margin-top: 10px;
}
#closeMenu {
  position: absolute;
  top: 26px;
  right: 32px;
  color: var(--cream);
  font-size: 1.6rem;
}

/* ---------- hero ---------- */
.hero{
  min-height:100vh;
  background:var(--maroon);
  color:var(--cream);
  padding-top:87px;
  overflow:hidden;
}
.plogo{
    margin-left: 0rem;
    padding-bottom: 1rem;
}
.plogo img{
    width: 25%;
    margin-left: 15rem;
    padding: 1rem;
    /* border: 1px solid var(--gold); */
}
.hero-grid{
  display:grid;
  grid-template-columns:55% 45%;
  /* min-height:calc(100vh - 120px); */
  align-items:stretch;
}

.hero-content{
  display:flex;
  flex-direction:column;
  /* justify-content:center; */
  padding: 0 32px;
}
.textover{
    font-size: 12px;
    padding-bottom: 3rem;
}
.hero-image{
  width:100%;
  height:100%;
  border: 1px solid var(--gold);
    border-radius: 34px;
    padding: 8px;
    margin-top: -2px;
}

.hero-image img{
  width:100%;
    border-radius: 34px;

  height:100%;
  object-fit:cover;
  display:block;
}

/* Remove old SVG/frame styles */
.hero-visual,
.hero-frame,
.towers{
  display:none;
}

@media(max-width:980px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-image{
    order:-1;
    height:50vh;
  }

  .hero-content{
    padding:48px 24px;
  }
}


.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease) 0.3s forwards;
}
.hero-eyebrow .line {
  width: 46px;
  height: 1px;
  background: var(--gold);
}
h1.hero-title {
  font-size: 52px;
  font-family: "badoni";
  line-height: 1.05;
  font-weight: 500;
  opacity: 0;
  animation: heroUp 1s var(--ease) 0.5s forwards;
}
h1.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}
.hero-sub {
  margin-top: 26px;
  max-width: 520px;
  font-size: 1.02rem;
  color: rgba(246, 240, 227, 0.82);
  font-weight: 300;
  opacity: 0;
  animation: heroUp 1s var(--ease) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 42px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroUp 1s var(--ease) 0.9s forwards;
}
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroUp 1s var(--ease) 1.1s forwards;
}
.hero-stat {
  padding-right: 34px;
  margin-right: 34px;
  border-right: 1px solid var(--line);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat b {
  font-family: "ceraheading";
  font-size: 2.1rem;
  color: var(--gold-soft);
  display: block;
  font-weight: 500;
}
.hero-stat1  {
  font-family: "ceraheading";
  font-size: 2.1rem !important;
  color: var(--gold-soft) !important;
  display: unset;
  font-weight: 500;
}

.hero-stat span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 240, 227, 0.7);
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.towers {
  position: relative;
  width: 100%;
  max-width: 340px;
}
.towers svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
  animation: towerFloat 7s ease-in-out infinite;
}
@keyframes towerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.hero-frame {
  position: absolute;
  border: 1px solid var(--line);
  inset: 40px 10%;
  border-radius: 6px;
  opacity: 0;
  animation: heroUp 1.2s var(--ease) 1s forwards;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(246, 240, 227, 0.6);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue .stick {
  width: 1px;
  height: 34px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.scroll-cue .stick::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-soft);
  animation: cueDrop 2s ease-in-out infinite;
}
@keyframes cueDrop {
  0% {
    top: -100%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

/* ---------- section basics ---------- */
section {
  position: relative;
  padding: 97px 0;
}
.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-top: 16px;
  font-weight: 500;
}
.section-head p {
  margin-top: 18px;
  color: #5c4636;
  max-width: 560px;
}
.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}
.on-dark .section-head p {
  color: rgba(246, 240, 227, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* curved card */
.gold-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.gold-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--gold-soft),
    transparent 40%,
    transparent 60%,
    var(--gold-deep)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- intro strip ---------- */
.intro {
  background: var(--cream);
}
.intro-quote {
  
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
  color: var(--maroon-deep);
}
.intro-quote span {
  color: var(--gold-deep);
  font-style: normal;
}
.intro-nums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 70px;
}
@media (max-width: 820px) {
  .intro-nums {
    grid-template-columns: repeat(2, 1fr);
  }
}
.intro-num {
  text-align: center;
  padding: 30px 14px;
}
.intro-num b {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--maroon);
  display: block;
}
.intro-num span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- hallmarks ---------- */

.hallmarks-section{
  background:#F7F4EE;
  padding:100px 0;
}

.hallmarks-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  margin-top:50px;
}
.line{
    width: 40%;
}

.hallmarks-image{
  border-radius:32px;
  overflow:hidden;
  position:relative;
}

.hallmarks-image img{
  width:100%;
  height:481px;
  object-fit:cover;
  display:block;
}

.hallmarks-content{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.feature-card{
  display:flex;
  align-items:flex-start;
  gap:22px;
  padding:26px 28px;
  background:#fff;
  border:1px solid rgba(201,162,39,.25);
  border-radius:26px;
  transition:all .35s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  border-color:#C9A227;
  box-shadow:0 20px 40px rgba(42,19,16,.08);
}

.feature-card span{
  
  font-size:2rem;
  color:#C9A227;
  min-width:48px;
  line-height:1;
}

.feature-card h4{
  
  font-size:1.45rem;
  color:#2A1310;
  margin-bottom:8px;
}

.feature-card p{
  color:#6B5544;
  line-height:1.7;
  margin:0;
}

@media(max-width:980px){
  .hallmarks-wrapper{
    grid-template-columns:1fr;
    gap:30px;
  }

  .hallmarks-image img{
    height:420px;
  }
}

.feature-grid.compact{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.feature-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 18px;
  background:#fff;
  border:1px solid rgba(201,162,39,.18);
  border-radius:18px;
  transition:.3s ease;
}

.feature-item:hover{
  border-color:#C9A227;
  box-shadow:0 10px 24px rgba(42,19,16,.08);
}

.feature-item span{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(201,162,39,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#A67C2E;
  
  font-size:1rem;
  font-weight:600;
  flex-shrink:0;
}

.feature-item h4{
  
  font-size:1.05rem;
  color:#2A1310;
  margin:0 0 4px;
  line-height:1.2;
}

.feature-item p{
  margin:0;
  color:#6B5544;
  font-size:.82rem;
  line-height:1.5;
}
.error_msg, .success_msg{
    display: none;
    text-align: center;
}
.contact-grid .enq_form{
    padding: 2rem;
}
#mobileMenu{
    z-index: 0;
}


@media (max-width:1024px){
    .amen-card{
        height: 310px !important;
    }
}
/* Mobile gallery slider */
@media (max-width: 768px) {
    #mobileMenu{
        z-index: 9999;
    }
    .plan-btn {
    font-size: 12px !important;
    color: #fff;
    padding: 11px 16px !important;
    }
.hallmarks-section, section{
    padding: 60px 0;
}
.masterplan-image img{
    height: 30vh;
}
.plan-visual img{
    height: 100%;
}
  .gal-grid{
    display:flex !important;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:16px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding:0 20px 10px;
    margin:0 -20px;
  }

  .gal-grid::-webkit-scrollbar{
    display:none;
  }

  .gal-item{
    flex:0 0 100% !important;
    width:100% !important;
    height:320px;
    scroll-snap-align:center;
    border-radius:24px;
    overflow:hidden;
  }

  /* remove tall item effect on mobile */
  .gal-item.tall{
    grid-row:unset;
    height:320px;
  }

  .gal-item .bg{
    position:absolute;
    inset:0;
  }

  .gal-item .bg img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .gal-item span{
    left:20px;
    bottom:20px;
    font-size:1.25rem;
  }
}
@media (max-width:768px){

  .amen-grid{
    display:flex !important;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:16px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding:0 20px 10px;
    margin:0 -20px;
  }

  .amen-grid::-webkit-scrollbar{
    display:none;
  }

  .amen-card{
    flex:0 0 100% !important;
    width:100% !important;
    height:340px;
    scroll-snap-align:center;
    border-radius:24px;
  }

  .amen-card .bg{
    position:absolute;
    inset:0;
  }

  .amen-card .bg img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .amen-card .label{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:20px;
  }

  .amen-card .label h4{
    font-size:1.35rem;
  }
}

@media(max-width:768px){
    .plogo img {
    width: 39%;
    margin-left: 7rem;
    }
    .hero-content{
        padding-top: 0;
    }
    .textover{
        font-size: 12px;
        line-height: 12px;
        padding-top: 10px;
    }
    .logo{
        width: 77%;
    }
    .hero {
padding-top: 72px;
    }
    .hero-image img{
        object-fit: unset;
    }
    .hero-image{
        height: auto !important;
    }
    .hero-stats{
        display: none;
    }
    .hallmarks-image img{
        height: auto;
    }
    h1.hero-title {
    font-size: 41px;
    line-height: 1.3;
    }
    .brand {
    width: 47%;
}
header.scrolled{
    padding: 20px 0 !important;
}
  .feature-grid.compact{
    grid-template-columns:1fr;
  }
}

.plan-visual img{
    filter: blur(2px);
    height: 100%;
}
.hallmarks {
  background: var(--cream-deep);
}
.hallmarks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 980px) {
  .hallmarks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .hallmarks-grid {
    grid-template-columns: 1fr;
  }
}
.hallmark {
  padding: 34px 26px;
  text-align: left;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.hallmark:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 70px -30px rgba(42, 19, 16, 0.4);
}
.hallmark .icon {
  width: 44px;
  height: 44px;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.hallmark h4 {
  font-size: 1.25rem;
  color: var(--maroon-deep);
  font-weight: 500;
}
.hallmark p {
  font-size: 0.85rem;
  color: #6b5544;
  margin-top: 8px;
}

/* ---------- concierge ---------- */
.concierge {
  background: var(--maroon);
  color: var(--cream);
}
.concierge-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .concierge-grid {
    grid-template-columns: 1fr;
  }
}
.concierge-copy h2 {
  color: var(--cream);
}
.concierge-copy p {
  color: rgba(246, 240, 227, 0.78);
  margin-top: 20px;
  max-width: 480px;
}
.concierge-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.concierge-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 560px) {
  .concierge-list {
    grid-template-columns: 1fr;
  }
}
.concierge-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    background 0.4s,
    transform 0.4s;
}
.concierge-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}
.concierge-item .num {
  
  color: var(--gold-soft);
  font-size: 1.1rem;
}
.concierge-item h5 {
  
  font-size: 1.15rem;
  margin-top: 8px;
  font-weight: 500;
}
.concierge-item p {
  font-size: 0.82rem;
  color: rgba(246, 240, 227, 0.68);
  margin-top: 6px;
}

/* ---------- amenities ---------- */
.amenities {
  background: var(--cream);
}
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .amen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .amen-grid {
    grid-template-columns: 1fr;
  }
}
.amen-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 375px;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}
.amen-card .bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}
.amen-card:hover .bg {
  transform: scale(1.08);
}
.amen-card .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 19, 16, 0) 30%,
    rgba(42, 19, 16, 0.82) 100%
  );
}
.amen-card .label {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: var(--cream);
}
.amen-card .label .tag {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.amen-card .label h4 {
  font-size: 1.3rem;
  margin-top: 6px;
  font-weight: 500;
}

/* variety of generated backdrop palettes per card (no external images) */
.bg-1 {
  background: radial-gradient(120% 100% at 20% 0%, #7a4a34, #3a1e17 70%);
}
.bg-2 {
  background: radial-gradient(120% 100% at 80% 0%, #5c6b4e, #2a1310 75%);
}
.bg-3 {
  background: radial-gradient(120% 100% at 30% 100%, #8c6e32, #2a1310 75%);
}
.bg-4 {
  background: radial-gradient(120% 100% at 70% 0%, #4a5a66, #2a1310 75%);
}
.bg-5 {
  background: radial-gradient(120% 100% at 50% 100%, #6e3a2e, #2a1310 75%);
}
.bg-6 {
  background: radial-gradient(120% 100% at 20% 20%, #556b5c, #2a1310 75%);
}
.bg-7 {
  background: radial-gradient(120% 100% at 80% 80%, #7a5c34, #2a1310 75%);
}
.bg-8 {
  background: radial-gradient(120% 100% at 40% 0%, #5c3527, #2a1310 75%);
}

/* ---------- location ---------- */
.location {
  background: var(--cream-deep);
}
.loc-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 70px;
}
@media (max-width: 980px) {
  .loc-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .loc-top {
    grid-template-columns: 1fr;
  }
}
.loc-chip {
  text-align: center;
  padding: 26px 16px;
}
.loc-chip .icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  color: var(--gold-deep);
}
.loc-chip p {
  font-size: 0.85rem;
  color: var(--maroon-deep);
  font-weight: 400;
}

.loc-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  justify-content: center;
}
.loc-tab {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s;
}
.loc-tab.active,
.loc-tab:hover {
  background: var(--gold-deep);
  color: #fff;
}
.loc-panels {
  position: relative;
}
.loc-panel {
  display: none;
}
.loc-panel.active {
  display: block;
  animation: panelIn 0.5s var(--ease);
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loc-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .loc-panel ul {
    grid-template-columns: 1fr;
  }
}
.loc-panel li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
}
.loc-panel li b {
  color: var(--gold-deep);
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- gallery ---------- */
.gallery {
  background: var(--maroon-deep);
}
.gallery .section-head h2,
.gallery .section-head p {
  color: var(--cream);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .gal-grid {
    grid-template-columns: 1fr;
  }
}
.gal-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 300px;
  border: 1px solid var(--line);
}
.gal-item .bg {
  position: absolute;
  inset: 0;
  transition: transform 1s var(--ease);
}
.gal-item:hover .bg {
  transform: scale(1.12) rotate(0.5deg);
}
.gal-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--cream);
  
  font-size: 1.15rem;
  z-index: 2;
  letter-spacing: 0.02em;
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.65));
}
.gal-item.tall {
  grid-row: span 2;
  height: auto;
}

/* ---------- floor plans ---------- */
.plans {
  background: var(--cream);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 860px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}
.plan-card {
  padding: 34px;
}
.plan-card .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
}
.plan-card h3 {
  font-size: 1.6rem;
  color: var(--maroon-deep);
}
.plan-card .floors {
  font-size: 0.72rem;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.plan-table td {
  padding: 12px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}
.plan-table td:first-child {
  color: #6b5544;
}
.plan-table td:last-child {
  text-align: right;
  color: var(--maroon-deep);
  font-weight: 500;
}
.plan-visual {
  height: 252px;
  border-radius: 14px;
  margin-bottom: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(201, 162, 39, 0.12),
      rgba(201, 162, 39, 0.12) 1px,
      transparent 1px,
      transparent 26px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(201, 162, 39, 0.12),
      rgba(201, 162, 39, 0.12) 1px,
      transparent 1px,
      transparent 26px
    ),
    linear-gradient(135deg, #fbf7ee, #f1e6cf);
  border: 1px solid var(--line);
}

/* ---------- legacy ---------- */
.legacy {
  background: var(--maroon);
  color: var(--cream);
}
.legacy .section-head h2,
.legacy .section-head p {
  color: var(--cream);
}
.legacy-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.legacy-badge {
  flex: 1 1 210px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}
.legacy-badge b {
  display: block;
  
  font-size: 1.7rem;
  color: var(--gold-soft);
}
.legacy-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 240, 227, 0.65);
}
.legacy-marquee {
  margin-top: 60px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.legacy-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.legacy-track span {
  
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(246, 240, 227, 0.75);
  white-space: nowrap;
}
.legacy-track span::after {
  content: "—";
  margin-left: 60px;
  color: var(--gold);
}

/* ---------- contact ---------- */
.contact, .intro, .amenities {
  /* background: var(--cream-deep); */
  background-image: url("https://magicpage-dev.propstory.com/ImageUploads/aradhya/1nnx5eapkms74k2id.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}
.contact-info p {
  margin-top: 18px;
  color: #5c4636;
  max-width: 420px;
}
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 26px;
}
.info-row .icon {
  width: 22px;
  height: 22px;
  color: var(--gold-deep);
  flex: none;
  margin-top: 2px;
}
.info-row b {
  display: block;
  font-size: 0.9rem;
  color: var(--maroon-deep);
}
.info-row span {
  font-size: 0.82rem;
  color: #6b5544;
}


.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
  font-family: "ceraheading", sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.76rem;
  color: #8a7563;
}
.form-success {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #4b6b3f;
  display: none;
}
.form-success.show {
  display: block;
}

/* ---------- footer ---------- */
footer {
  background: var(--maroon-deep);
  color: rgba(246, 240, 227, 0.7);
  padding: 70px 0 30px;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.foot-brand .brand-name {
  font-size: 1.6rem;
}
.foot-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.foot-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.foot-col li {
  font-size: 0.85rem;
  margin-bottom: 10px;
  opacity: 0.85;
}
.foot-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.75rem;
}
.disclaimer {
  margin-top: 20px;
  font-size: 0.68rem;
  line-height: 1.8;
  opacity: 0.55;
  max-width: 1100px;
}

/* ---------- floating + sticky ---------- */
#floatEnquire {
  position: fixed;
  right: 26px;
  bottom: 100px;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  box-shadow: 0 18px 40px -12px rgba(140, 110, 50, 0.6);
  transition: transform 0.4s var(--ease);
}
#floatEnquire:hover {
  transform: scale(1.08) rotate(-6deg);
}
#floatEnquire svg {
  width: 26px;
  height: 26px;
  color: var(--maroon-deep);
}

#mobileSticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(58, 30, 23, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
#mobileSticky a {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#mobileSticky .call {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
}
#mobileSticky .enq {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: var(--maroon-deep);
  font-weight: 500;
}
@media (min-width: 760px) {
  #mobileSticky {
    display: none;
  }
}
@media (max-width: 759px) {
  #floatEnquire {
    bottom: 88px;
  }
  body {
    padding-bottom: 70px;
  }
}

.counted {
  font-variant-numeric: tabular-nums;
}

.masterplan-section{
  background:#F7F4EE;
  padding:100px 0;
}

.masterplan-card{
  background:#FCFAF6;
  border:1px solid rgba(201,162,39,.22);
  border-radius:34px;
  padding:28px;
  box-shadow:0 18px 40px rgba(42,19,16,.06);
}

.masterplan-image{
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(201,162,39,.18);
}

.masterplan-image img{
  width:100%;
  display:block;
  filter: blur(4px);
  object-fit:cover;
}

.masterplan-details{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:24px;
}

.plan-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  background:#fff;
  border:1px solid rgba(201,162,39,.16);
  border-radius:20px;
}

.plan-number{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(201,162,39,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#A67C2E;
  
  font-size:1rem;
  font-weight:600;
  flex-shrink:0;
}

.plan-item h4{
  
  font-size:1.15rem;
  color:#2A1310;
  margin:0 0 6px;
}

.plan-item p{
  margin:0;
  color:#6B5544;
  font-size:.88rem;
  line-height:1.6;
}

@media(max-width:900px){
  .masterplan-details{
    grid-template-columns:1fr;
  }

  .masterplan-card{
    padding:20px;
    border-radius:26px;
  }
}
.plan-visual{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.plan-btn{
  position: absolute;
  left: 50%;
  bottom: 45%;
  transform: translateX(-50%);
  background: var(--maroon);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all .3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.plan-btn:hover{
  background: var(--gold-soft);
  color: #fff;
  transform: translateX(-50%) translateY(-2px);
}